/** * This file was generated by scripts/codegen.ts * * Original abi file: * - node_modules/@axelar-network/interchain-token-service/artifacts/contracts/interfaces/IInterchainTokenExecutable.sol/IInterchainTokenExecutable.json * * DO NOT EDIT MANUALLY */ import { Chain } from "viem"; import { PublicContractClient } from "../../PublicContractClient"; import ABI_FILE from "./IInterchainTokenExecutable.abi"; export * from "./IInterchainTokenExecutable.args"; export declare const IINTERCHAIN_TOKEN_EXECUTABLE_ABI: readonly [{ readonly inputs: readonly [{ readonly internalType: "bytes32"; readonly name: "commandId"; readonly type: "bytes32"; }, { readonly internalType: "string"; readonly name: "sourceChain"; readonly type: "string"; }, { readonly internalType: "bytes"; readonly name: "sourceAddress"; readonly type: "bytes"; }, { readonly internalType: "bytes"; readonly name: "data"; readonly type: "bytes"; }, { readonly internalType: "bytes32"; readonly name: "tokenId"; readonly type: "bytes32"; }, { readonly internalType: "address"; readonly name: "token"; readonly type: "address"; }, { readonly internalType: "uint256"; readonly name: "amount"; readonly type: "uint256"; }]; readonly name: "executeWithInterchainToken"; readonly outputs: readonly [{ readonly internalType: "bytes32"; readonly name: ""; readonly type: "bytes32"; }]; readonly stateMutability: "nonpayable"; readonly type: "function"; }]; /** * IInterchainTokenExecutableClient * * @description Type-safe contract client for IInterchainTokenExecutable * * @example * * import { sepolia } from "viem/chains"; * * const client = createIInterchainTokenExecutableClient({ * chain: sepolia, * address: "0x1234..." * }); */ export declare class IInterchainTokenExecutableClient extends PublicContractClient { static ABI: readonly [{ readonly inputs: readonly [{ readonly internalType: "bytes32"; readonly name: "commandId"; readonly type: "bytes32"; }, { readonly internalType: "string"; readonly name: "sourceChain"; readonly type: "string"; }, { readonly internalType: "bytes"; readonly name: "sourceAddress"; readonly type: "bytes"; }, { readonly internalType: "bytes"; readonly name: "data"; readonly type: "bytes"; }, { readonly internalType: "bytes32"; readonly name: "tokenId"; readonly type: "bytes32"; }, { readonly internalType: "address"; readonly name: "token"; readonly type: "address"; }, { readonly internalType: "uint256"; readonly name: "amount"; readonly type: "uint256"; }]; readonly name: "executeWithInterchainToken"; readonly outputs: readonly [{ readonly internalType: "bytes32"; readonly name: ""; readonly type: "bytes32"; }]; readonly stateMutability: "nonpayable"; readonly type: "function"; }]; static contractName: "IInterchainTokenExecutable"; constructor(options: { chain: Chain; address: `0x${string}`; }); } export declare const createIInterchainTokenExecutableClient: (options: { chain: Chain; address: `0x${string}`; }) => IInterchainTokenExecutableClient;