BlockchainTransaction
This represents an asset transfer within a transaction (there could be multiple transfers in a transaction)
type BlockchainTransaction implements Transaction {
from: GenericAddress!
to: GenericAddress!
amount: Amount!
status: TransactionStatus!
createdAt: String
updatedAt: String
fee: Amount!
transactionHash: String!
transactionDirection: TransactionDirection
chainTransaction: ChainRawTransaction
}
Fields
BlockchainTransaction.from ● GenericAddress! non-null interface
The exchange the transaction is sent from
BlockchainTransaction.to ● GenericAddress! non-null interface
The exchange the transaction is sent to
BlockchainTransaction.amount ● Amount! non-null object
The amount of the transferred asset
BlockchainTransaction.status ● TransactionStatus! non-null enum
Status of the transaction
BlockchainTransaction.createdAt ● String scalar
Timestamp the transaction was created at (ISO 8601 UTC date time):
BlockchainTransaction.updatedAt ● String scalar
Timestamp the transaction was last updated (ISO 8601 UTC date time):
BlockchainTransaction.fee ● Amount! non-null object
The transaction cost paid to the network for processing the transaction
BlockchainTransaction.transactionHash ● String! non-null scalar
the unique identifier of the transaction
BlockchainTransaction.transactionDirection ● TransactionDirection enum
the direction the transaction was sent
BlockchainTransaction.chainTransaction ● ChainRawTransaction interface
Chain specific raw transaction
Interfaces
Transaction interface
Transaction object