public static interface Transaction.Builder extends SdkPojo, CopyableBuilder<Transaction.Builder,Transaction>
| Modifier and Type | Method and Description |
|---|---|
Transaction.Builder |
blockHash(String blockHash)
The block hash is a unique identifier for a block.
|
Transaction.Builder |
blockNumber(String blockNumber)
The block number in which the transaction is recorded.
|
Transaction.Builder |
contractAddress(String contractAddress)
The blockchain address for the contract.
|
Transaction.Builder |
cumulativeGasUsed(String cumulativeGasUsed)
The amount of gas used up to the specified point in the block.
|
Transaction.Builder |
effectiveGasPrice(String effectiveGasPrice)
The effective gas price.
|
Transaction.Builder |
from(String from)
The initiator of the transaction.
|
Transaction.Builder |
gasUsed(String gasUsed)
The amount of gas used for the transaction.
|
Transaction.Builder |
network(QueryNetwork network)
The blockchain network where the transaction occured.
|
Transaction.Builder |
network(String network)
The blockchain network where the transaction occured.
|
Transaction.Builder |
numberOfTransactions(Long numberOfTransactions)
The number of transactions in the block.
|
Transaction.Builder |
signatureR(String signatureR)
The signature of the transaction.
|
Transaction.Builder |
signatureS(String signatureS)
The signature of the transaction.
|
Transaction.Builder |
signatureV(Integer signatureV)
The signature of the transaction.
|
Transaction.Builder |
status(QueryTransactionStatus status)
The status of the transaction.
|
Transaction.Builder |
status(String status)
The status of the transaction.
|
Transaction.Builder |
to(String to)
The identifier of the transaction.
|
Transaction.Builder |
transactionFee(String transactionFee)
The transaction fee.
|
Transaction.Builder |
transactionHash(String transactionHash)
The hash of the transaction.
|
Transaction.Builder |
transactionId(String transactionId)
The unique identifier of the transaction.
|
Transaction.Builder |
transactionIndex(Long transactionIndex)
The index of the transaction within a blockchain.
|
Transaction.Builder |
transactionTimestamp(Instant transactionTimestamp)
The
Timestamp of the transaction. |
equalsBySdkFields, sdkFieldscopyapplyMutation, buildTransaction.Builder network(String network)
The blockchain network where the transaction occured.
network - The blockchain network where the transaction occured.QueryNetwork,
QueryNetworkTransaction.Builder network(QueryNetwork network)
The blockchain network where the transaction occured.
network - The blockchain network where the transaction occured.QueryNetwork,
QueryNetworkTransaction.Builder blockHash(String blockHash)
The block hash is a unique identifier for a block. It is a fixed-size string that is calculated by using the information in the block. The block hash is used to verify the integrity of the data in the block.
blockHash - The block hash is a unique identifier for a block. It is a fixed-size string that is calculated by
using the information in the block. The block hash is used to verify the integrity of the data in the
block.Transaction.Builder transactionHash(String transactionHash)
The hash of the transaction. It is generated whenever a transaction is verified and added to the blockchain.
transactionHash - The hash of the transaction. It is generated whenever a transaction is verified and added to the
blockchain.Transaction.Builder blockNumber(String blockNumber)
The block number in which the transaction is recorded.
blockNumber - The block number in which the transaction is recorded.Transaction.Builder transactionTimestamp(Instant transactionTimestamp)
The Timestamp of the transaction.
transactionTimestamp - The Timestamp of the transaction.Transaction.Builder transactionIndex(Long transactionIndex)
The index of the transaction within a blockchain.
transactionIndex - The index of the transaction within a blockchain.Transaction.Builder numberOfTransactions(Long numberOfTransactions)
The number of transactions in the block.
numberOfTransactions - The number of transactions in the block.Transaction.Builder status(String status)
The status of the transaction.
status - The status of the transaction.QueryTransactionStatus,
QueryTransactionStatusTransaction.Builder status(QueryTransactionStatus status)
The status of the transaction.
status - The status of the transaction.QueryTransactionStatus,
QueryTransactionStatusTransaction.Builder to(String to)
The identifier of the transaction. It is generated whenever a transaction is verified and added to the blockchain.
to - The identifier of the transaction. It is generated whenever a transaction is verified and added to the
blockchain.Transaction.Builder from(String from)
The initiator of the transaction. It is either in the form a public key or a contract address.
from - The initiator of the transaction. It is either in the form a public key or a contract address.Transaction.Builder contractAddress(String contractAddress)
The blockchain address for the contract.
contractAddress - The blockchain address for the contract.Transaction.Builder gasUsed(String gasUsed)
The amount of gas used for the transaction.
gasUsed - The amount of gas used for the transaction.Transaction.Builder cumulativeGasUsed(String cumulativeGasUsed)
The amount of gas used up to the specified point in the block.
cumulativeGasUsed - The amount of gas used up to the specified point in the block.Transaction.Builder effectiveGasPrice(String effectiveGasPrice)
The effective gas price.
effectiveGasPrice - The effective gas price.Transaction.Builder signatureV(Integer signatureV)
The signature of the transaction. The Z coordinate of a point V.
signatureV - The signature of the transaction. The Z coordinate of a point V.Transaction.Builder signatureR(String signatureR)
The signature of the transaction. The X coordinate of a point R.
signatureR - The signature of the transaction. The X coordinate of a point R.Transaction.Builder signatureS(String signatureS)
The signature of the transaction. The Y coordinate of a point S.
signatureS - The signature of the transaction. The Y coordinate of a point S.Transaction.Builder transactionFee(String transactionFee)
The transaction fee.
transactionFee - The transaction fee.Transaction.Builder transactionId(String transactionId)
The unique identifier of the transaction. It is generated whenever a transaction is verified and added to the blockchain.
transactionId - The unique identifier of the transaction. It is generated whenever a transaction is verified and added
to the blockchain.Copyright © 2023. All rights reserved.