2024-12-26 02:18:47 +00:00
|
|
|
import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
|
|
|
|
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../../common";
|
|
|
|
export interface PuppetInterface extends Interface {
|
|
|
|
getFunction(nameOrSignature: "admin" | "callTo"): FunctionFragment;
|
|
|
|
encodeFunctionData(functionFragment: "admin", values?: undefined): string;
|
|
|
|
encodeFunctionData(functionFragment: "callTo", values: [AddressLike, BytesLike]): string;
|
|
|
|
decodeFunctionResult(functionFragment: "admin", data: BytesLike): Result;
|
|
|
|
decodeFunctionResult(functionFragment: "callTo", data: BytesLike): Result;
|
2024-10-22 11:37:10 +00:00
|
|
|
}
|
2024-12-26 02:18:47 +00:00
|
|
|
export interface Puppet extends BaseContract {
|
|
|
|
connect(runner?: ContractRunner | null): Puppet;
|
2024-10-22 11:37:10 +00:00
|
|
|
waitForDeployment(): Promise<this>;
|
2024-12-26 02:18:47 +00:00
|
|
|
interface: PuppetInterface;
|
2024-10-22 11:37:10 +00:00
|
|
|
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>;
|
2024-12-26 02:18:47 +00:00
|
|
|
admin: TypedContractMethod<[], [string], "view">;
|
|
|
|
callTo: TypedContractMethod<[
|
|
|
|
_to: AddressLike,
|
|
|
|
_data: BytesLike
|
|
|
|
], [
|
|
|
|
string
|
|
|
|
], "payable">;
|
2024-10-22 11:37:10 +00:00
|
|
|
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
2024-12-26 02:18:47 +00:00
|
|
|
getFunction(nameOrSignature: "admin"): TypedContractMethod<[], [string], "view">;
|
|
|
|
getFunction(nameOrSignature: "callTo"): TypedContractMethod<[
|
|
|
|
_to: AddressLike,
|
|
|
|
_data: BytesLike
|
|
|
|
], [
|
|
|
|
string
|
|
|
|
], "payable">;
|
2024-10-22 11:37:10 +00:00
|
|
|
filters: {};
|
|
|
|
}
|