Minimal Anti Collusion Infrastructure (MACI) / EASChecker
Interface: EASChecker
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:70
Extends
BaseContract
Properties
attester
attester:
TypedContractMethod<[], [string],"view">
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:113
check
check:
TypedContractMethod<[AddressLike,BytesLike], [boolean],"view">
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:115
eas
eas:
TypedContractMethod<[], [string],"view">
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:121
filters
filters:
object
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:161
All the Events available on this contract.
Overrides
BaseContract.filters
getAppendedBytes
getAppendedBytes:
TypedContractMethod<[], [string],"view">
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:123
initialize
initialize:
TypedContractMethod<[], [void],"nonpayable">
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:125
initialized
initialized:
TypedContractMethod<[], [boolean],"view">
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:127
interface
interface:
EASCheckerInterface
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:74
The contract Interface.
Overrides
BaseContract.interface
schema
schema:
TypedContractMethod<[], [string],"view">
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:129
Methods
connect()
connect(
runner?):EASChecker
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:71
Return a new Contract instance with the same target and ABI, but a different %%runner%%.
Parameters
runner?
ContractRunner | null
Returns
EASChecker
Overrides
BaseContract.connect
getFunction()
Call Signature
getFunction<
T>(key):T
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:131
Return the function for a given name. This is useful when a contract
method name conflicts with a JavaScript name such as prototype or
when using a Contract programatically.
Type Parameters
T
T extends ContractMethod<any[], any, any> = ContractMethod<any[], any, any>
Parameters
key
string | FunctionFragment
Returns
T
Overrides
BaseContract.getFunction
Call Signature
getFunction(
nameOrSignature):TypedContractMethod<[], [string],"view">
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:135
Return the function for a given name. This is useful when a contract
method name conflicts with a JavaScript name such as prototype or
when using a Contract programatically.
Parameters
nameOrSignature
"attester"
Returns
TypedContractMethod<[], [string], "view">
Overrides
BaseContract.getFunction
Call Signature
getFunction(
nameOrSignature):TypedContractMethod<[AddressLike,BytesLike], [boolean],"view">
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:138
Return the function for a given name. This is useful when a contract
method name conflicts with a JavaScript name such as prototype or
when using a Contract programatically.
Parameters
nameOrSignature
"check"
Returns
TypedContractMethod<[AddressLike, BytesLike], [boolean], "view">
Overrides
BaseContract.getFunction
Call Signature
getFunction(
nameOrSignature):TypedContractMethod<[], [string],"view">
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:145
Return the function for a given name. This is useful when a contract
method name conflicts with a JavaScript name such as prototype or
when using a Contract programatically.
Parameters
nameOrSignature
"eas"
Returns
TypedContractMethod<[], [string], "view">
Overrides
BaseContract.getFunction
Call Signature
getFunction(
nameOrSignature):TypedContractMethod<[], [string],"view">
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:148
Return the function for a given name. This is useful when a contract
method name conflicts with a JavaScript name such as prototype or
when using a Contract programatically.
Parameters
nameOrSignature
"getAppendedBytes"
Returns
TypedContractMethod<[], [string], "view">
Overrides
BaseContract.getFunction
Call Signature
getFunction(
nameOrSignature):TypedContractMethod<[], [void],"nonpayable">
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:151
Return the function for a given name. This is useful when a contract
method name conflicts with a JavaScript name such as prototype or
when using a Contract programatically.
Parameters
nameOrSignature
"initialize"
Returns
TypedContractMethod<[], [void], "nonpayable">
Overrides
BaseContract.getFunction
Call Signature
getFunction(
nameOrSignature):TypedContractMethod<[], [boolean],"view">
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:154
Return the function for a given name. This is useful when a contract
method name conflicts with a JavaScript name such as prototype or
when using a Contract programatically.
Parameters
nameOrSignature
"initialized"
Returns
TypedContractMethod<[], [boolean], "view">
Overrides
BaseContract.getFunction
Call Signature
getFunction(
nameOrSignature):TypedContractMethod<[], [string],"view">
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:157
Return the function for a given name. This is useful when a contract
method name conflicts with a JavaScript name such as prototype or
when using a Contract programatically.
Parameters
nameOrSignature
"schema"
Returns
TypedContractMethod<[], [string], "view">
Overrides
BaseContract.getFunction
listeners()
Call Signature
listeners<
TCEvent>(event):Promise<TypedListener<TCEvent>[]>
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:105
Resolves to the listeners subscribed to %%event%% or all listeners if unspecified.
Type Parameters
TCEvent
TCEvent extends TypedContractEvent<any, any, any>
Parameters
event
TCEvent
Returns
Promise<TypedListener<TCEvent>[]>
Overrides
BaseContract.listeners
Call Signature
listeners(
eventName?):Promise<Listener[]>
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:108
Resolves to the listeners subscribed to %%event%% or all listeners if unspecified.
Parameters
eventName?
string
Returns
Promise<Listener[]>
Overrides
BaseContract.listeners
on()
Call Signature
on<
TCEvent>(event,listener):Promise<EASChecker>
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:87
Add an event %%listener%% for the %%event%%.
Type Parameters
TCEvent
TCEvent extends TypedContractEvent<any, any, any>
Parameters
event
TCEvent
listener
TypedListener<TCEvent>
Returns
Promise<EASChecker>
Overrides
BaseContract.on
Call Signature
on<
TCEvent>(filter,listener):Promise<EASChecker>
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:91
Add an event %%listener%% for the %%event%%.
Type Parameters
TCEvent
TCEvent extends TypedContractEvent<any, any, any>
Parameters
filter
TypedDeferredTopicFilter<TCEvent>
listener
TypedListener<TCEvent>
Returns
Promise<EASChecker>
Overrides
BaseContract.on
once()
Call Signature
once<
TCEvent>(event,listener):Promise<EASChecker>
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:96
Add an event %%listener%% for the %%event%%, but remove the listener after it is fired once.
Type Parameters
TCEvent
TCEvent extends TypedContractEvent<any, any, any>
Parameters
event
TCEvent
listener
TypedListener<TCEvent>
Returns
Promise<EASChecker>
Overrides
BaseContract.once
Call Signature
once<
TCEvent>(filter,listener):Promise<EASChecker>
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:100
Add an event %%listener%% for the %%event%%, but remove the listener after it is fired once.
Type Parameters
TCEvent
TCEvent extends TypedContractEvent<any, any, any>
Parameters
filter
TypedDeferredTopicFilter<TCEvent>
listener
TypedListener<TCEvent>
Returns
Promise<EASChecker>
Overrides
BaseContract.once
queryFilter()
Call Signature
queryFilter<
TCEvent>(event,fromBlockOrBlockhash?,toBlock?):Promise<TypedEventLog<TCEvent>[]>
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:76
Provide historic access to event data for %%event%% in the range
%%fromBlock%% (default: 0) to %%toBlock%% (default: "latest")
inclusive.
Type Parameters
TCEvent
TCEvent extends TypedContractEvent<any, any, any>
Parameters
event
TCEvent
fromBlockOrBlockhash?
string | number
toBlock?
string | number
Returns
Promise<TypedEventLog<TCEvent>[]>
Overrides
BaseContract.queryFilter
Call Signature
queryFilter<
TCEvent>(filter,fromBlockOrBlockhash?,toBlock?):Promise<TypedEventLog<TCEvent>[]>
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:81
Provide historic access to event data for %%event%% in the range
%%fromBlock%% (default: 0) to %%toBlock%% (default: "latest")
inclusive.
Type Parameters
TCEvent
TCEvent extends TypedContractEvent<any, any, any>
Parameters
filter
TypedDeferredTopicFilter<TCEvent>
fromBlockOrBlockhash?
string | number
toBlock?
string | number
Returns
Promise<TypedEventLog<TCEvent>[]>
Overrides
BaseContract.queryFilter
removeAllListeners()
removeAllListeners<
TCEvent>(event?):Promise<EASChecker>
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:109
Remove all the listeners for %%event%% or remove all listeners if unspecified.
Type Parameters
TCEvent
TCEvent extends TypedContractEvent<any, any, any>
Parameters
event?
TCEvent
Returns
Promise<EASChecker>
Overrides
BaseContract.removeAllListeners
waitForDeployment()
waitForDeployment():
Promise<EASChecker>
Defined in: contracts/typechain-types/@excubiae/contracts/contracts/extensions/eas/EASChecker.ts:72
Resolve to this Contract once the bytecode has been deployed, or resolve immediately if already deployed.
Returns
Promise<EASChecker>
Overrides
BaseContract.waitForDeployment