tornado-contracts/dist/contracts/Unaudited/TovarishRegistry.sol/INameWrapper.d.ts

26 lines
2.2 KiB
TypeScript
Raw Permalink Normal View History

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