intents-framework
Version:
A reference ERC7683 implementation with TypeScript support
26 lines • 2.41 kB
TypeScript
import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener } from "ethers";
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "./common";
export interface ISpecifiesInterchainSecurityModuleInterface extends Interface {
getFunction(nameOrSignature: "interchainSecurityModule"): FunctionFragment;
encodeFunctionData(functionFragment: "interchainSecurityModule", values?: undefined): string;
decodeFunctionResult(functionFragment: "interchainSecurityModule", data: BytesLike): Result;
}
export interface ISpecifiesInterchainSecurityModule extends BaseContract {
connect(runner?: ContractRunner | null): ISpecifiesInterchainSecurityModule;
waitForDeployment(): Promise<this>;
interface: ISpecifiesInterchainSecurityModuleInterface;
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
listeners(eventName?: string): Promise<Array<Listener>>;
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
interchainSecurityModule: TypedContractMethod<[], [string], "view">;
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
getFunction(nameOrSignature: "interchainSecurityModule"): TypedContractMethod<[], [string], "view">;
filters: {};
}
//# sourceMappingURL=ISpecifiesInterchainSecurityModule.d.ts.map