/** * This file was generated by scripts/codegen.ts * * Original abi file: * - node_modules/@axelar-network/interchain-token-service/artifacts/contracts/interfaces/ITokenManagerImplementation.sol/ITokenManagerImplementation.json * * DO NOT EDIT MANUALLY */ import { Chain } from "viem"; import { PublicContractClient } from "../../PublicContractClient"; import ABI_FILE from "./ITokenManagerImplementation.abi"; import { createITokenManagerImplementationReadClient } from "./ITokenManagerImplementation.args"; declare const createReadClient: typeof createITokenManagerImplementationReadClient; export * from "./ITokenManagerImplementation.args"; export declare const ITOKEN_MANAGER_IMPLEMENTATION_ABI: readonly [{ readonly inputs: readonly [{ readonly internalType: "uint256"; readonly name: "tokenManagerType"; readonly type: "uint256"; }]; readonly name: "tokenManagerImplementation"; readonly outputs: readonly [{ readonly internalType: "address"; readonly name: "tokenManagerAddress_"; readonly type: "address"; }]; readonly stateMutability: "view"; /** * ITokenManagerImplementationClient * * @description Type-safe contract client for ITokenManagerImplementation * * @example * * import { sepolia } from "viem/chains"; * * const client = createITokenManagerImplementationClient({ * chain: sepolia, * address: "0x1234..." * }); */ readonly type: "function"; }]; /** * ITokenManagerImplementationClient * * @description Type-safe contract client for ITokenManagerImplementation * * @example * * import { sepolia } from "viem/chains"; * * const client = createITokenManagerImplementationClient({ * chain: sepolia, * address: "0x1234..." * }); */ export declare class ITokenManagerImplementationClient extends PublicContractClient { static ABI: readonly [{ readonly inputs: readonly [{ readonly internalType: "uint256"; readonly name: "tokenManagerType"; readonly type: "uint256"; }]; readonly name: "tokenManagerImplementation"; readonly outputs: readonly [{ readonly internalType: "address"; readonly name: "tokenManagerAddress_"; readonly type: "address"; }]; readonly stateMutability: "view"; /** * ITokenManagerImplementationClient * * @description Type-safe contract client for ITokenManagerImplementation * * @example * * import { sepolia } from "viem/chains"; * * const client = createITokenManagerImplementationClient({ * chain: sepolia, * address: "0x1234..." * }); */ readonly type: "function"; }]; static contractName: "ITokenManagerImplementation"; readonly reads: ReturnType; constructor(options: { chain: Chain; address: `0x${string}`; }); } export declare const createITokenManagerImplementationClient: (options: { chain: Chain; address: `0x${string}`; }) => ITokenManagerImplementationClient;