@avalanche-sdk/interchain
Version:
Interchain package for handling ICM/ICTT messages
12 lines • 383 B
TypeScript
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