Skip to main content

Table description

The bitcoin.outputs table contains information about the outputs of Bitcoin transactions. An output is a record of the amount of Bitcoin being sent to a specific address.

Table Schema

ColumnTypeDescription
block_timeTIMESTAMPTimestamp of the block containing this transaction
block_dateDATEDate of the block for daily aggregations
block_heightBIGINTHeight of the block containing this transaction
block_hashVARBINARYHash of the block containing this transaction
tx_idVARBINARYHash of the transaction this output belongs to
indexBIGINTPosition of this output within the transaction’s output list
valueDOUBLEAmount of BTC assigned to this output
addressVARCHARBitcoin address that can spend this output
typeVARCHARAddress/script type of the output (e.g. pubkeyhash, scripthash, witness_v0_keyhash)
script_asmVARCHARLocking script (scriptPubKey) in human-readable ASM format
script_hexVARBINARYLocking script (scriptPubKey) in raw hex

Table Sample