/** * This file was generated by scripts/codegen.ts * * Original abi file: * - node_modules/@axelar-network/interchain-token-service/artifacts/contracts/interchain-token/InterchainTokenStandard.sol/InterchainTokenStandard.json * * DO NOT EDIT MANUALLY */ import { Chain } from "viem"; import { PublicContractClient } from "../../PublicContractClient"; import ABI_FILE from "./InterchainTokenStandard.abi"; import { createInterchainTokenStandardReadClient } from "./InterchainTokenStandard.args"; declare const createReadClient: typeof createInterchainTokenStandardReadClient; export * from "./InterchainTokenStandard.args"; export declare const INTERCHAIN_TOKEN_STANDARD_ABI: readonly [{ readonly inputs: readonly []; readonly name: "interchainTokenId"; readonly outputs: readonly [{ readonly internalType: "bytes32"; readonly name: "tokenId_"; readonly type: "bytes32"; }]; readonly stateMutability: "view"; readonly type: "function"; }, { readonly inputs: readonly []; readonly name: "interchainTokenService"; readonly outputs: readonly [{ readonly internalType: "address"; readonly name: "service"; readonly type: "address"; }]; readonly stateMutability: "view"; readonly type: "function"; }, { readonly inputs: readonly [{ readonly internalType: "string"; readonly name: "destinationChain"; readonly type: "string"; }, { readonly internalType: "bytes"; readonly name: "recipient"; readonly type: "bytes"; }, { readonly internalType: "uint256"; readonly name: "amount"; readonly type: "uint256"; }, { readonly internalType: "bytes"; readonly name: "metadata"; readonly type: "bytes"; }]; readonly name: "interchainTransfer"; readonly outputs: readonly []; readonly stateMutability: "payable"; readonly type: "function"; }, { readonly inputs: readonly [{ readonly internalType: "address"; readonly name: "sender"; readonly type: "address"; }, { readonly internalType: "string"; readonly name: "destinationChain"; readonly type: "string"; }, { readonly internalType: "bytes"; readonly name: "recipient"; readonly type: "bytes"; }, { readonly internalType: "uint256"; readonly name: "amount"; readonly type: "uint256"; }, { readonly internalType: "bytes"; readonly name: "metadata"; readonly type: "bytes"; }]; readonly name: "interchainTransferFrom"; readonly outputs: readonly []; readonly stateMutability: "payable"; readonly type: "function"; }]; /** * InterchainTokenStandardClient * * @description Type-safe contract client for InterchainTokenStandard * * @example * * import { sepolia } from "viem/chains"; * * const client = createInterchainTokenStandardClient({ * chain: sepolia, * address: "0x1234..." * }); */ export declare class InterchainTokenStandardClient extends PublicContractClient { static ABI: readonly [{ readonly inputs: readonly []; readonly name: "interchainTokenId"; readonly outputs: readonly [{ readonly internalType: "bytes32"; readonly name: "tokenId_"; readonly type: "bytes32"; }]; readonly stateMutability: "view"; readonly type: "function"; }, { readonly inputs: readonly []; readonly name: "interchainTokenService"; readonly outputs: readonly [{ readonly internalType: "address"; readonly name: "service"; readonly type: "address"; }]; readonly stateMutability: "view"; readonly type: "function"; }, { readonly inputs: readonly [{ readonly internalType: "string"; readonly name: "destinationChain"; readonly type: "string"; }, { readonly internalType: "bytes"; readonly name: "recipient"; readonly type: "bytes"; }, { readonly internalType: "uint256"; readonly name: "amount"; readonly type: "uint256"; }, { readonly internalType: "bytes"; readonly name: "metadata"; readonly type: "bytes"; }]; readonly name: "interchainTransfer"; readonly outputs: readonly []; readonly stateMutability: "payable"; readonly type: "function"; }, { readonly inputs: readonly [{ readonly internalType: "address"; readonly name: "sender"; readonly type: "address"; }, { readonly internalType: "string"; readonly name: "destinationChain"; readonly type: "string"; }, { readonly internalType: "bytes"; readonly name: "recipient"; readonly type: "bytes"; }, { readonly internalType: "uint256"; readonly name: "amount"; readonly type: "uint256"; }, { readonly internalType: "bytes"; readonly name: "metadata"; readonly type: "bytes"; }]; readonly name: "interchainTransferFrom"; readonly outputs: readonly []; readonly stateMutability: "payable"; readonly type: "function"; }]; static contractName: "InterchainTokenStandard"; readonly reads: ReturnType; constructor(options: { chain: Chain; address: `0x${string}`; }); } export declare const createInterchainTokenStandardClient: (options: { chain: Chain; address: `0x${string}`; }) => InterchainTokenStandardClient;