UNPKG

wttp-site

Version:

Web3 Transfer Protocol (WTTP) - Site Contracts and deployment tools

30 lines 2.51 kB
import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener } from "ethers"; import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../common"; export interface BaseWTTPStorageInterface extends Interface { getFunction(nameOrSignature: "DPR" | "DPS"): FunctionFragment; encodeFunctionData(functionFragment: "DPR", values?: undefined): string; encodeFunctionData(functionFragment: "DPS", values?: undefined): string; decodeFunctionResult(functionFragment: "DPR", data: BytesLike): Result; decodeFunctionResult(functionFragment: "DPS", data: BytesLike): Result; } export interface BaseWTTPStorage extends BaseContract { connect(runner?: ContractRunner | null): BaseWTTPStorage; waitForDeployment(): Promise<this>; interface: BaseWTTPStorageInterface; 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>; DPR: TypedContractMethod<[], [string], "view">; DPS: TypedContractMethod<[], [string], "view">; getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T; getFunction(nameOrSignature: "DPR"): TypedContractMethod<[], [string], "view">; getFunction(nameOrSignature: "DPS"): TypedContractMethod<[], [string], "view">; filters: {}; } //# sourceMappingURL=BaseWTTPStorage.d.ts.map