From 9bd8104c14db0f6c1ee6d9477146bb4a5cd2c4a5 Mon Sep 17 00:00:00 2001 From: Saad Ahmed Siddiqui Date: Thu, 12 Sep 2024 14:45:22 +0200 Subject: [PATCH] fix import type --- packages/evm/src/fungibleAssetTransfer.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/evm/src/fungibleAssetTransfer.ts b/packages/evm/src/fungibleAssetTransfer.ts index aa67b065a..a17221b87 100644 --- a/packages/evm/src/fungibleAssetTransfer.ts +++ b/packages/evm/src/fungibleAssetTransfer.ts @@ -2,7 +2,8 @@ import type { EvmResource } from '@buildwithsygma/core'; import { Config, FeeHandlerType, ResourceType, SecurityModel } from '@buildwithsygma/core'; import { Bridge__factory, ERC20__factory } from '@buildwithsygma/sygma-contracts'; import { Web3Provider } from '@ethersproject/providers'; -import { BigNumber, constants, ethers, type PopulatedTransaction, utils } from 'ethers'; +import { BigNumber, constants, utils } from 'ethers'; +import type { ethers, type PopulatedTransaction } from 'ethers'; import { AssetTransfer } from './evmAssetTransfer.js'; import type {