참고: 이 페이지는 아직 한국어로 번역되지 않았습니다. 아래는 영어 원문입니다.A QiTransactionResponse includes all properties about a Qi transaction that was sent to the network, which may or may not be included in a block. The TransactionResponse.isMined | TransactionResponse.isMined can be used to check if the transaction has been mined as well as type guard that the otherwise possibly
null
properties are defined.
QiTransactionLike
QiTransactionResponseParams
Property | Modifier | Type | Description |
---|---|---|---|
blockHash | readonly | null | string | The blockHash of the block that this transaction was included in. This is null for pending transactions. |
blockNumber | readonly | null | number | The block number of the block that this transaction was included in. This is null for pending transactions. |
chainId | readonly | bigint | The chain ID. |
hash | readonly | string | The transaction hash. |
index | readonly | bigint | The index within the block that this transaction resides at. |
provider | readonly | Provider | The provider this is connected to, which will influence how its methods will resolve its async inspection methods. |
signature | readonly | string | The signature. |
type | readonly | number | The EIP-2718 transaction envelope type. This is 0 for legacytransactions types. |
Promise
<number
>
A promise resolving to the number of confirmations.
Parameter | Type | Description |
---|---|---|
shard | Shard | The shard to fetch the block from. |
Promise
<null
| Block
>
A promise resolving to the block or null if not found.
Promise
<null
| QiTransactionResponse
>
A promise resolving to the transaction, or null if not found.
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.
this is QiMinedTransactionResponse
True if the transaction has been mined or false otherwise.
OrphanFilter
The orphan filter.
other
.
Parameter | Type | Description |
---|---|---|
other ? | TransactionResponse | The other transaction to compare against. |
OrphanFilter
The orphan filter.
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.
Parameter | Type | Description |
---|---|---|
startBlock | number | The block number to start scanning for replacements. |
QiTransactionResponse
The replaceable transaction.
any