import { CHAIN_ID } from '../utils/supportedChains/index.js'; import { GasValue } from '../token-registry-functions/types.js'; import '../utils/gasStation/index.js'; import 'ethers'; import '../utils/network/index.js'; import 'ethersV6'; interface CommandOptions { chainId?: CHAIN_ID; maxFeePerGas?: GasValue; maxPriorityFeePerGas?: GasValue; isTransferable?: boolean; } export type { CommandOptions };