Transactions

/blockchain-v2/{asset}/transactions

Transactions, just like double entry accounting transactions, are groups of balance updates that are ordered within a block. The Transactions endpoint returns a list of accounts, which have the following fields:

FieldDescription

txid

Identifier of the transaction

block_hash

Hash of the block containing the transaction

height

Height of the block containing the transaction

tx_position

Position of the transaction within a block

consensus_time

Consensus timestamp; always increases monotonically

min_chain sequence number

Starting sequence number (global ordering of the first update in this transaction relative to all other updates recorded on the ledger up until that point) for the balance updates occurring in this transaction

max_chain sequence number

Last sequence number (global ordering of the last update in this transaction relative to all other updates recorded on the ledger up until that point) for the balance updates occurring in this transaction

n_balance updates

Number of balance updates

amount

Amount of the balance updates

stale

Indicator if the block is stale.

version

Version of the transaction

physical_size

Physical size of the transaction (bytes)

consensus_size

Consensus size of the transaction

Fee

Fee of the transaction

Last updated