import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers"; import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../common"; export declare namespace IHederaTokenService { type KeyValueStruct = { inheritAccountKey: boolean; contractId: AddressLike; ed25519: BytesLike; ECDSA_secp256k1: BytesLike; delegatableContractId: AddressLike; }; type KeyValueStructOutput = [ inheritAccountKey: boolean, contractId: string, ed25519: string, ECDSA_secp256k1: string, delegatableContractId: string ] & { inheritAccountKey: boolean; contractId: string; ed25519: string; ECDSA_secp256k1: string; delegatableContractId: string; }; type TokenKeyStruct = { keyType: BigNumberish; key: IHederaTokenService.KeyValueStruct; }; type TokenKeyStructOutput = [ keyType: bigint, key: IHederaTokenService.KeyValueStructOutput ] & { keyType: bigint; key: IHederaTokenService.KeyValueStructOutput; }; type ExpiryStruct = { second: BigNumberish; autoRenewAccount: AddressLike; autoRenewPeriod: BigNumberish; }; type ExpiryStructOutput = [ second: bigint, autoRenewAccount: string, autoRenewPeriod: bigint ] & { second: bigint; autoRenewAccount: string; autoRenewPeriod: bigint; }; type HederaTokenStruct = { name: string; symbol: string; treasury: AddressLike; memo: string; tokenSupplyType: boolean; maxSupply: BigNumberish; freezeDefault: boolean; tokenKeys: IHederaTokenService.TokenKeyStruct[]; expiry: IHederaTokenService.ExpiryStruct; }; type HederaTokenStructOutput = [ name: string, symbol: string, treasury: string, memo: string, tokenSupplyType: boolean, maxSupply: bigint, freezeDefault: boolean, tokenKeys: IHederaTokenService.TokenKeyStructOutput[], expiry: IHederaTokenService.ExpiryStructOutput ] & { name: string; symbol: string; treasury: string; memo: string; tokenSupplyType: boolean; maxSupply: bigint; freezeDefault: boolean; tokenKeys: IHederaTokenService.TokenKeyStructOutput[]; expiry: IHederaTokenService.ExpiryStructOutput; }; } export interface StableCoinTokenMockInterface extends Interface { getFunction(nameOrSignature: "allowance" | "approve" | "associate" | "balanceOf" | "decimals" | "decreaseBalance" | "decreaseTotalSupply" | "dissociate" | "getKeys" | "getTokenKeys" | "increaseBalance" | "increaseTotalSupply" | "isAssociated" | "name" | "setStableCoinAddress" | "symbol" | "totalSupply" | "transfer" | "transferFrom"): FunctionFragment; getEvent(nameOrSignatureOrTopic: "Approval" | "Transfer"): EventFragment; encodeFunctionData(functionFragment: "allowance", values: [AddressLike, AddressLike]): string; encodeFunctionData(functionFragment: "approve", values: [AddressLike, BigNumberish]): string; encodeFunctionData(functionFragment: "associate", values?: undefined): string; encodeFunctionData(functionFragment: "balanceOf", values: [AddressLike]): string; encodeFunctionData(functionFragment: "decimals", values?: undefined): string; encodeFunctionData(functionFragment: "decreaseBalance", values: [AddressLike, BigNumberish]): string; encodeFunctionData(functionFragment: "decreaseTotalSupply", values: [BigNumberish]): string; encodeFunctionData(functionFragment: "dissociate", values?: undefined): string; encodeFunctionData(functionFragment: "getKeys", values?: undefined): string; encodeFunctionData(functionFragment: "getTokenKeys", values?: undefined): string; encodeFunctionData(functionFragment: "increaseBalance", values: [AddressLike, BigNumberish]): string; encodeFunctionData(functionFragment: "increaseTotalSupply", values: [BigNumberish]): string; encodeFunctionData(functionFragment: "isAssociated", values?: undefined): string; encodeFunctionData(functionFragment: "name", values?: undefined): string; encodeFunctionData(functionFragment: "setStableCoinAddress", values: [AddressLike]): string; encodeFunctionData(functionFragment: "symbol", values?: undefined): string; encodeFunctionData(functionFragment: "totalSupply", values?: undefined): string; encodeFunctionData(functionFragment: "transfer", values: [AddressLike, BigNumberish]): string; encodeFunctionData(functionFragment: "transferFrom", values: [AddressLike, AddressLike, BigNumberish]): string; decodeFunctionResult(functionFragment: "allowance", data: BytesLike): Result; decodeFunctionResult(functionFragment: "approve", data: BytesLike): Result; decodeFunctionResult(functionFragment: "associate", data: BytesLike): Result; decodeFunctionResult(functionFragment: "balanceOf", data: BytesLike): Result; decodeFunctionResult(functionFragment: "decimals", data: BytesLike): Result; decodeFunctionResult(functionFragment: "decreaseBalance", data: BytesLike): Result; decodeFunctionResult(functionFragment: "decreaseTotalSupply", data: BytesLike): Result; decodeFunctionResult(functionFragment: "dissociate", data: BytesLike): Result; decodeFunctionResult(functionFragment: "getKeys", data: BytesLike): Result; decodeFunctionResult(functionFragment: "getTokenKeys", data: BytesLike): Result; decodeFunctionResult(functionFragment: "increaseBalance", data: BytesLike): Result; decodeFunctionResult(functionFragment: "increaseTotalSupply", data: BytesLike): Result; decodeFunctionResult(functionFragment: "isAssociated", data: BytesLike): Result; decodeFunctionResult(functionFragment: "name", data: BytesLike): Result; decodeFunctionResult(functionFragment: "setStableCoinAddress", data: BytesLike): Result; decodeFunctionResult(functionFragment: "symbol", data: BytesLike): Result; decodeFunctionResult(functionFragment: "totalSupply", data: BytesLike): Result; decodeFunctionResult(functionFragment: "transfer", data: BytesLike): Result; decodeFunctionResult(functionFragment: "transferFrom", data: BytesLike): Result; } export declare namespace ApprovalEvent { type InputTuple = [ owner: AddressLike, spender: AddressLike, value: BigNumberish ]; type OutputTuple = [owner: string, spender: string, value: bigint]; interface OutputObject { owner: string; spender: string; value: bigint; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace TransferEvent { type InputTuple = [ from: AddressLike, to: AddressLike, value: BigNumberish ]; type OutputTuple = [from: string, to: string, value: bigint]; interface OutputObject { from: string; to: string; value: bigint; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export interface StableCoinTokenMock extends BaseContract { connect(runner?: ContractRunner | null): StableCoinTokenMock; waitForDeployment(): Promise; interface: StableCoinTokenMockInterface; queryFilter(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise>>; queryFilter(filter: TypedDeferredTopicFilter, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise>>; on(event: TCEvent, listener: TypedListener): Promise; on(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise; once(event: TCEvent, listener: TypedListener): Promise; once(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise; listeners(event: TCEvent): Promise>>; listeners(eventName?: string): Promise>; removeAllListeners(event?: TCEvent): Promise; allowance: TypedContractMethod<[ arg0: AddressLike, arg1: AddressLike ], [ bigint ], "view">; approve: TypedContractMethod<[ arg0: AddressLike, arg1: BigNumberish ], [ boolean ], "view">; associate: TypedContractMethod<[], [bigint], "view">; balanceOf: TypedContractMethod<[account: AddressLike], [bigint], "view">; decimals: TypedContractMethod<[], [bigint], "view">; decreaseBalance: TypedContractMethod<[ account: AddressLike, amount: BigNumberish ], [ void ], "nonpayable">; decreaseTotalSupply: TypedContractMethod<[ amount: BigNumberish ], [ void ], "nonpayable">; dissociate: TypedContractMethod<[], [bigint], "view">; getKeys: TypedContractMethod<[ ], [ IHederaTokenService.TokenKeyStructOutput[] ], "view">; getTokenKeys: TypedContractMethod<[ ], [ IHederaTokenService.TokenKeyStructOutput[] ], "view">; increaseBalance: TypedContractMethod<[ account: AddressLike, amount: BigNumberish ], [ void ], "nonpayable">; increaseTotalSupply: TypedContractMethod<[ amount: BigNumberish ], [ void ], "nonpayable">; isAssociated: TypedContractMethod<[], [boolean], "view">; name: TypedContractMethod<[], [string], "view">; setStableCoinAddress: TypedContractMethod<[ _stableCoinAddress: AddressLike ], [ void ], "nonpayable">; symbol: TypedContractMethod<[], [string], "view">; totalSupply: TypedContractMethod<[], [bigint], "view">; transfer: TypedContractMethod<[ arg0: AddressLike, arg1: BigNumberish ], [ boolean ], "view">; transferFrom: TypedContractMethod<[ arg0: AddressLike, arg1: AddressLike, arg2: BigNumberish ], [ boolean ], "view">; getFunction(key: string | FunctionFragment): T; getFunction(nameOrSignature: "allowance"): TypedContractMethod<[ arg0: AddressLike, arg1: AddressLike ], [ bigint ], "view">; getFunction(nameOrSignature: "approve"): TypedContractMethod<[ arg0: AddressLike, arg1: BigNumberish ], [ boolean ], "view">; getFunction(nameOrSignature: "associate"): TypedContractMethod<[], [bigint], "view">; getFunction(nameOrSignature: "balanceOf"): TypedContractMethod<[account: AddressLike], [bigint], "view">; getFunction(nameOrSignature: "decimals"): TypedContractMethod<[], [bigint], "view">; getFunction(nameOrSignature: "decreaseBalance"): TypedContractMethod<[ account: AddressLike, amount: BigNumberish ], [ void ], "nonpayable">; getFunction(nameOrSignature: "decreaseTotalSupply"): TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">; getFunction(nameOrSignature: "dissociate"): TypedContractMethod<[], [bigint], "view">; getFunction(nameOrSignature: "getKeys"): TypedContractMethod<[ ], [ IHederaTokenService.TokenKeyStructOutput[] ], "view">; getFunction(nameOrSignature: "getTokenKeys"): TypedContractMethod<[ ], [ IHederaTokenService.TokenKeyStructOutput[] ], "view">; getFunction(nameOrSignature: "increaseBalance"): TypedContractMethod<[ account: AddressLike, amount: BigNumberish ], [ void ], "nonpayable">; getFunction(nameOrSignature: "increaseTotalSupply"): TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">; getFunction(nameOrSignature: "isAssociated"): TypedContractMethod<[], [boolean], "view">; getFunction(nameOrSignature: "name"): TypedContractMethod<[], [string], "view">; getFunction(nameOrSignature: "setStableCoinAddress"): TypedContractMethod<[ _stableCoinAddress: AddressLike ], [ void ], "nonpayable">; getFunction(nameOrSignature: "symbol"): TypedContractMethod<[], [string], "view">; getFunction(nameOrSignature: "totalSupply"): TypedContractMethod<[], [bigint], "view">; getFunction(nameOrSignature: "transfer"): TypedContractMethod<[ arg0: AddressLike, arg1: BigNumberish ], [ boolean ], "view">; getFunction(nameOrSignature: "transferFrom"): TypedContractMethod<[ arg0: AddressLike, arg1: AddressLike, arg2: BigNumberish ], [ boolean ], "view">; getEvent(key: "Approval"): TypedContractEvent; getEvent(key: "Transfer"): TypedContractEvent; filters: { "Approval(address,address,uint256)": TypedContractEvent; Approval: TypedContractEvent; "Transfer(address,address,uint256)": TypedContractEvent; Transfer: TypedContractEvent; }; }