@kleros/vea-contracts
Version:
Smart contracts for Vea
30 lines (29 loc) • 2.56 kB
TypeScript
import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener } from "ethers";
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../../common";
export interface VeaInboxTouchInterface extends Interface {
getFunction(nameOrSignature: "touch" | "veaInbox"): FunctionFragment;
encodeFunctionData(functionFragment: "touch", values: [BigNumberish]): string;
encodeFunctionData(functionFragment: "veaInbox", values?: undefined): string;
decodeFunctionResult(functionFragment: "touch", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "veaInbox", data: BytesLike): Result;
}
export interface VeaInboxTouch extends BaseContract {
connect(runner?: ContractRunner | null): VeaInboxTouch;
waitForDeployment(): Promise<this>;
interface: VeaInboxTouchInterface;
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>;
touch: TypedContractMethod<[random: BigNumberish], [void], "payable">;
veaInbox: TypedContractMethod<[], [string], "view">;
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
getFunction(nameOrSignature: "touch"): TypedContractMethod<[random: BigNumberish], [void], "payable">;
getFunction(nameOrSignature: "veaInbox"): TypedContractMethod<[], [string], "view">;
filters: {};
}