Skip to main content
A ContractUnknownEventPayload is included as the last parameter to Contract Events when the event does not match any events in the ABI.

Extends

Extended by

Properties

Methods

getBlock()

Resolves to the block the event occured in.

Parameters

Returns

Promise<Block> A promise resolving to the block the event occured in.

Source

contract/wrappers.ts:176

getTransaction()

Resolves to the transaction the event occured in.

Returns

Promise<TransactionResponse> A promise resolving to the transaction the event occured in.

Source

contract/wrappers.ts:185

getTransactionReceipt()

Resolves to the transaction receipt the event occured in.

Returns

Promise<TransactionReceipt> A promise resolving to the transaction receipt the event occured in.

Source

contract/wrappers.ts:194

removeListener()

Unregister the triggered listener for future events.

Returns

Promise<void>

Inherited from

EventPayload.removeListener

Source

utils/events.ts:99