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