UNPKG

@avalanche-sdk/interchain

Version:
15 lines (13 loc) 439 B
import { Address, WalletClient } from "viem"; import { ChainConfig } from "../../chains/types/chainConfig"; export type SendTokenParams = { walletClient: WalletClient, sourceChain: ChainConfig | undefined, destinationChain: ChainConfig | undefined, tokenHomeContract: Address, tokenRemoteContract: Address, recipient: Address, amountInBaseUnit: number, feeTokenAddress?: Address, feeAmount?: number, }