UNPKG

@kleros/vea-contracts

Version:

Smart contracts for Vea

38 lines (37 loc) 3.03 kB
import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener } from "ethers"; import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../../common"; export interface IBridgeInterface extends Interface { getFunction(nameOrSignature: "activeOutbox" | "allowedDelayedInboxList" | "sequencerInbox"): FunctionFragment; encodeFunctionData(functionFragment: "activeOutbox", values?: undefined): string; encodeFunctionData(functionFragment: "allowedDelayedInboxList", values: [BigNumberish]): string; encodeFunctionData(functionFragment: "sequencerInbox", values?: undefined): string; decodeFunctionResult(functionFragment: "activeOutbox", data: BytesLike): Result; decodeFunctionResult(functionFragment: "allowedDelayedInboxList", data: BytesLike): Result; decodeFunctionResult(functionFragment: "sequencerInbox", data: BytesLike): Result; } export interface IBridge extends BaseContract { connect(runner?: ContractRunner | null): IBridge; waitForDeployment(): Promise<this>; interface: IBridgeInterface; 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>; activeOutbox: TypedContractMethod<[], [string], "view">; allowedDelayedInboxList: TypedContractMethod<[ arg0: BigNumberish ], [ string ], "nonpayable">; sequencerInbox: TypedContractMethod<[], [string], "view">; getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T; getFunction(nameOrSignature: "activeOutbox"): TypedContractMethod<[], [string], "view">; getFunction(nameOrSignature: "allowedDelayedInboxList"): TypedContractMethod<[arg0: BigNumberish], [string], "nonpayable">; getFunction(nameOrSignature: "sequencerInbox"): TypedContractMethod<[], [string], "view">; filters: {}; }