UNPKG

@avalanche-sdk/interchain

Version:
12 lines 383 B
import { WalletClient } from "viem"; import { ChainConfig } from "../../chains/types/chainConfig"; import { Address } from "viem"; export type DeployERC20TokenParams = { walletClient: WalletClient; sourceChain: ChainConfig | undefined; name: string; symbol: string; initialSupply: number; recipient?: Address; }; //# sourceMappingURL=deployERC20Token.d.ts.map