Skip to content

Commit

Permalink
fix: fix imports (#135)
Browse files Browse the repository at this point in the history
fix imports
  • Loading branch information
enemycnt authored Jan 9, 2023
1 parent 333b57f commit 19c43e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/sdk/src/fee/__test__/basicFee.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable */

import { BigNumber, ethers } from 'ethers';
import { FeeDataResult } from 'types';
import { FeeDataResult } from '../../types';
import { BasicFeeHandler__factory } from '@buildwithsygma/sygma-contracts';
import { calculateBasicfee } from '../basicFee';

Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/src/fee/basicFee.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { BasicFeeHandler__factory as BasicFeeHandler } from '@buildwithsygma/sygma-contracts';
import { ethers } from 'ethers';
import { FeeDataResult } from 'types';
import { FeeDataResult } from '../types';
import { createERCDepositData } from '../utils/helpers';

export const calculateBasicfee = async ({
Expand Down

0 comments on commit 19c43e1

Please sign in to comment.