34 lines
2.8 KiB
TypeScript
34 lines
2.8 KiB
TypeScript
|
import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener } from "ethers";
|
||
|
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../../../../../common";
|
||
|
export interface DummySecondInterface extends Interface {
|
||
|
getFunction(nameOrSignature: "initialize" | "text" | "value"): FunctionFragment;
|
||
|
encodeFunctionData(functionFragment: "initialize", values?: undefined): string;
|
||
|
encodeFunctionData(functionFragment: "text", values?: undefined): string;
|
||
|
encodeFunctionData(functionFragment: "value", values?: undefined): string;
|
||
|
decodeFunctionResult(functionFragment: "initialize", data: BytesLike): Result;
|
||
|
decodeFunctionResult(functionFragment: "text", data: BytesLike): Result;
|
||
|
decodeFunctionResult(functionFragment: "value", data: BytesLike): Result;
|
||
|
}
|
||
|
export interface DummySecond extends BaseContract {
|
||
|
connect(runner?: ContractRunner | null): DummySecond;
|
||
|
waitForDeployment(): Promise<this>;
|
||
|
interface: DummySecondInterface;
|
||
|
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>;
|
||
|
initialize: TypedContractMethod<[], [void], "nonpayable">;
|
||
|
text: TypedContractMethod<[], [string], "view">;
|
||
|
value: TypedContractMethod<[], [bigint], "view">;
|
||
|
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
||
|
getFunction(nameOrSignature: "initialize"): TypedContractMethod<[], [void], "nonpayable">;
|
||
|
getFunction(nameOrSignature: "text"): TypedContractMethod<[], [string], "view">;
|
||
|
getFunction(nameOrSignature: "value"): TypedContractMethod<[], [bigint], "view">;
|
||
|
filters: {};
|
||
|
}
|