/** * This file was generated by scripts/codegen.ts * * Original abi file: * - node_modules/@axelar-network/interchain-token-service/artifacts/contracts/interfaces/IInterchainTokenDeployer.sol/IInterchainTokenDeployer.json * * DO NOT EDIT MANUALLY */ import { Chain } from "viem"; import { PublicContractClient } from "../../PublicContractClient"; import ABI_FILE from "./IInterchainTokenDeployer.abi"; import { createIInterchainTokenDeployerReadClient } from "./IInterchainTokenDeployer.args"; declare const createReadClient: typeof createIInterchainTokenDeployerReadClient; export * from "./IInterchainTokenDeployer.args"; export declare const IINTERCHAIN_TOKEN_DEPLOYER_ABI: readonly [{ readonly inputs: readonly []; readonly name: "AddressZero"; readonly type: "error"; }, { readonly inputs: readonly []; readonly name: "TokenDeploymentFailed"; readonly type: "error"; }, { readonly inputs: readonly [{ readonly internalType: "bytes32"; readonly name: "salt"; readonly type: "bytes32"; }, { readonly internalType: "bytes32"; readonly name: "tokenId"; readonly type: "bytes32"; }, { readonly internalType: "address"; readonly name: "minter"; readonly type: "address"; }, { readonly internalType: "string"; readonly name: "name"; readonly type: "string"; }, { readonly internalType: "string"; readonly name: "symbol"; readonly type: "string"; }, { readonly internalType: "uint8"; readonly name: "decimals"; readonly type: "uint8"; }]; readonly name: "deployInterchainToken"; readonly outputs: readonly [{ readonly internalType: "address"; readonly name: "tokenAddress"; readonly type: "address"; }]; readonly stateMutability: "nonpayable"; readonly type: "function"; }, { readonly inputs: readonly [{ readonly internalType: "bytes32"; readonly name: "salt"; readonly type: "bytes32"; }]; readonly name: "deployedAddress"; readonly outputs: readonly [{ readonly internalType: "address"; readonly name: "tokenAddress"; readonly type: "address"; }]; readonly stateMutability: "view"; readonly type: "function"; }, { readonly inputs: readonly []; readonly name: "implementationAddress"; readonly outputs: readonly [{ readonly internalType: "address"; readonly name: ""; readonly type: "address"; }]; readonly stateMutability: "view"; readonly type: "function"; }]; /** * IInterchainTokenDeployerClient * * @description Type-safe contract client for IInterchainTokenDeployer * * @example * * import { sepolia } from "viem/chains"; * * const client = createIInterchainTokenDeployerClient({ * chain: sepolia, * address: "0x1234..." * }); */ export declare class IInterchainTokenDeployerClient extends PublicContractClient { static ABI: readonly [{ readonly inputs: readonly []; readonly name: "AddressZero"; readonly type: "error"; }, { readonly inputs: readonly []; readonly name: "TokenDeploymentFailed"; readonly type: "error"; }, { readonly inputs: readonly [{ readonly internalType: "bytes32"; readonly name: "salt"; readonly type: "bytes32"; }, { readonly internalType: "bytes32"; readonly name: "tokenId"; readonly type: "bytes32"; }, { readonly internalType: "address"; readonly name: "minter"; readonly type: "address"; }, { readonly internalType: "string"; readonly name: "name"; readonly type: "string"; }, { readonly internalType: "string"; readonly name: "symbol"; readonly type: "string"; }, { readonly internalType: "uint8"; readonly name: "decimals"; readonly type: "uint8"; }]; readonly name: "deployInterchainToken"; readonly outputs: readonly [{ readonly internalType: "address"; readonly name: "tokenAddress"; readonly type: "address"; }]; readonly stateMutability: "nonpayable"; readonly type: "function"; }, { readonly inputs: readonly [{ readonly internalType: "bytes32"; readonly name: "salt"; readonly type: "bytes32"; }]; readonly name: "deployedAddress"; readonly outputs: readonly [{ readonly internalType: "address"; readonly name: "tokenAddress"; readonly type: "address"; }]; readonly stateMutability: "view"; readonly type: "function"; }, { readonly inputs: readonly []; readonly name: "implementationAddress"; readonly outputs: readonly [{ readonly internalType: "address"; readonly name: ""; readonly type: "address"; }]; readonly stateMutability: "view"; readonly type: "function"; }]; static contractName: "IInterchainTokenDeployer"; readonly reads: ReturnType; constructor(options: { chain: Chain; address: `0x${string}`; }); } export declare const createIInterchainTokenDeployerClient: (options: { chain: Chain; address: `0x${string}`; }) => IInterchainTokenDeployerClient;