Extends
Properties
Methods
confirmations()
Returns
Promise<number>
A promise resolving to the number of confirmations.
Inherited from
QuaiTransactionResponse.confirmations
Throws
If the block is not found.Source
providers/provider.ts:1921getBlock()
Parameters
Returns
Promise<null | Block>
A promise resolving to the block.
Inherited from
QuaiTransactionResponse.getBlock
Source
providers/provider.ts:1882getTransaction()
Returns
Promise<null | QuaiTransactionResponse>
A promise resolving to the transaction, or null if not found.
Inherited from
QuaiTransactionResponse.getTransaction
Source
providers/provider.ts:1906isMined()
true if this transaction has been included.
This is effective only as of the time the TransactionResponse was instantiated. To get up-to-date information,
use getTransaction.
This provides a Type Guard that this transaction will have non-null property values for properties that are null
for unmined transactions.
Returns
this is QuaiMinedTransactionResponse
True if the transaction has been mined.
Inherited from
QuaiTransactionResponse.isMined
Throws
If the transaction was replaced, repriced, or cancelled.Source
providers/provider.ts:2179removedEvent()
Returns
OrphanFilter
The orphan filter.
Inherited from
QuaiTransactionResponse.removedEvent
Source
providers/provider.ts:2188reorderedEvent()
other.
Parameters
Returns
OrphanFilter
The orphan filter.
Inherited from
QuaiTransactionResponse.reorderedEvent
Source
providers/provider.ts:2201replaceableTransaction()
startBlock.
This should generally not be used by developers and is intended primarily for internal use. Setting an incorrect
startBlock can have devastating performance consequences if used incorrectly.
Parameters
Returns
QuaiTransactionResponse
The replaceable transaction.
Inherited from
QuaiTransactionResponse.replaceableTransaction
Source
providers/provider.ts:2223toJSON()
Returns
any
Inherited from
QuaiTransactionResponse.toJSON
Source
providers/provider.ts:1850wait()
confirms blocks including it (default: 1) with an
optional timeout.
This can resolve to null only if confirms is 0 and the transaction has not been mined, otherwise this will
wait until enough confirmations have completed.
Parameters
Returns
Promise<null | ContractTransactionReceipt>
The transaction receipt, or null if confirms is 0.
Overrides
QuaiTransactionResponse.wait
