@avalanche-sdk/interchain
Version:
Interchain package for handling ICM/ICTT messages
12 lines (10 loc) • 366 B
text/typescript
import { Address, WalletClient } from "viem";
import { ChainConfig } from "../../chains/types/chainConfig";
export type RegisterRemoteWithHomeParams = {
walletClient: WalletClient,
sourceChain: ChainConfig | undefined,
destinationChain: ChainConfig | undefined,
tokenRemoteContract: Address,
feeTokenAddress?: Address,
feeAmount?: number,
}