All the Events available on this contract.
Readonly
targetThe target to connect to.
This can be an address, ENS name or any [[Addressable]], such as
another contract. To get the resovled address, use the getAddress
method.
Readonly
runnerThe connected runner. This is generally a [[Provider]] or a [[Signer]], which dictates what operations are supported.
For example, a Contract connected to a [[Provider]] may only execute read-only operations.
Readonly
fallbackThe fallback or receive function if any.
Readonly
[internal]@_ignore:
Return a new Contract instance with the same target and ABI, but a different %%runner%%.
Optional
runner: null | ContractRunnerResolve to this Contract once the bytecode has been deployed, or resolve immediately if already deployed.
Provide historic access to event data for %%event%% in the range
%%fromBlock%% (default: 0
) to %%toBlock%% (default: "latest"
)
inclusive.
Optional
fromBlockOrBlockhash: string | numberOptional
toBlock: string | numberProvide historic access to event data for %%event%% in the range
%%fromBlock%% (default: 0
) to %%toBlock%% (default: "latest"
)
inclusive.
Optional
fromBlockOrBlockhash: string | numberOptional
toBlock: string | numberAdd an event %%listener%% for the %%event%%.
Add an event %%listener%% for the %%event%%.
Add an event %%listener%% for the %%event%%, but remove the listener after it is fired once.
Add an event %%listener%% for the %%event%%, but remove the listener after it is fired once.
Resolves to the listeners subscribed to %%event%% or all listeners if unspecified.
Resolves to the listeners subscribed to %%event%% or all listeners if unspecified.
Optional
eventName: stringRemove all the listeners for %%event%% or remove all listeners if unspecified.
Optional
event: TCEventReturn 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.
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.
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.
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.
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.
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.
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.
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.
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.
Remove the %%listener%% from the listeners for %%event%% or remove all listeners if unspecified.
Optional
listener: ListenerAlias for [on].
Alias for [off].
The contract Interface.