The type that the promise will resolve to
The map of possible events that can be emitted
Creates a new Web3CustomPromiEvent instance
Function that defines the promise execution logic
Private
Readonly
_promiseAttaches a callback for only the rejection of the Promise
A Promise for the completion of the callback
Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected)
Optional
onfinally: (() => void)The callback to execute when the Promise is settled
A Promise for the completion of the callback
Removes a specific listener for an event
The name of the event to remove the listener from
The callback function to remove
Adds a listener for a specific event that will be called every time the event is emitted
The name of the event to listen for
The callback function to execute when the event is emitted
The instance of Web3CustomPromiEvent for chaining
Adds a one-time listener for a specific event that will be removed after being called once
The name of the event to listen for
The callback function to execute when the event is emitted
The instance of Web3CustomPromiEvent for chaining
Attaches callbacks for the resolution and/or rejection of the Promise
Optional
onfulfilled: ((value) => TResult1 | PromiseLike<TResult1>)The callback to execute when the Promise is resolved
Optional
onrejected: ((reason) => TResult2 | PromiseLike<TResult2>)The callback to execute when the Promise is rejected
A Promise for the completion of which ever callback is executed
Custom implementation of an event emitter for Web3 events that extends Promise functionality