79 lines
3.9 KiB
TypeScript
79 lines
3.9 KiB
TypeScript
|
import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, EventFragment, ContractRunner, ContractMethod, Listener } from "ethers";
|
||
|
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../../../common";
|
||
|
export interface EIP712Interface extends Interface {
|
||
|
getFunction(nameOrSignature: "eip712Domain"): FunctionFragment;
|
||
|
getEvent(nameOrSignatureOrTopic: "EIP712DomainChanged"): EventFragment;
|
||
|
encodeFunctionData(functionFragment: "eip712Domain", values?: undefined): string;
|
||
|
decodeFunctionResult(functionFragment: "eip712Domain", data: BytesLike): Result;
|
||
|
}
|
||
|
export declare namespace EIP712DomainChangedEvent {
|
||
|
type InputTuple = [];
|
||
|
type OutputTuple = [];
|
||
|
interface OutputObject {
|
||
|
}
|
||
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
||
|
type Filter = TypedDeferredTopicFilter<Event>;
|
||
|
type Log = TypedEventLog<Event>;
|
||
|
type LogDescription = TypedLogDescription<Event>;
|
||
|
}
|
||
|
export interface EIP712 extends BaseContract {
|
||
|
connect(runner?: ContractRunner | null): EIP712;
|
||
|
waitForDeployment(): Promise<this>;
|
||
|
interface: EIP712Interface;
|
||
|
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>;
|
||
|
eip712Domain: TypedContractMethod<[
|
||
|
], [
|
||
|
[
|
||
|
string,
|
||
|
string,
|
||
|
string,
|
||
|
bigint,
|
||
|
string,
|
||
|
string,
|
||
|
bigint[]
|
||
|
] & {
|
||
|
fields: string;
|
||
|
name: string;
|
||
|
version: string;
|
||
|
chainId: bigint;
|
||
|
verifyingContract: string;
|
||
|
salt: string;
|
||
|
extensions: bigint[];
|
||
|
}
|
||
|
], "view">;
|
||
|
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
||
|
getFunction(nameOrSignature: "eip712Domain"): TypedContractMethod<[
|
||
|
], [
|
||
|
[
|
||
|
string,
|
||
|
string,
|
||
|
string,
|
||
|
bigint,
|
||
|
string,
|
||
|
string,
|
||
|
bigint[]
|
||
|
] & {
|
||
|
fields: string;
|
||
|
name: string;
|
||
|
version: string;
|
||
|
chainId: bigint;
|
||
|
verifyingContract: string;
|
||
|
salt: string;
|
||
|
extensions: bigint[];
|
||
|
}
|
||
|
], "view">;
|
||
|
getEvent(key: "EIP712DomainChanged"): TypedContractEvent<EIP712DomainChangedEvent.InputTuple, EIP712DomainChangedEvent.OutputTuple, EIP712DomainChangedEvent.OutputObject>;
|
||
|
filters: {
|
||
|
"EIP712DomainChanged()": TypedContractEvent<EIP712DomainChangedEvent.InputTuple, EIP712DomainChangedEvent.OutputTuple, EIP712DomainChangedEvent.OutputObject>;
|
||
|
EIP712DomainChanged: TypedContractEvent<EIP712DomainChangedEvent.InputTuple, EIP712DomainChangedEvent.OutputTuple, EIP712DomainChangedEvent.OutputObject>;
|
||
|
};
|
||
|
}
|