btc.transaction_inputs
SQL table schema for btc.transaction_inputs and btc.recent_transaction_inputs
All Bitcoin inputs to transactions.
Column Name | Data Type | Description |
---|---|---|
| CHARACTER VARYING | The hash of the transaction |
| BIGINT | 0 indexed number of an input within a transaction |
| CHARACTER VARYING | The hash of the transaction which contains the output that this input spends |
| BIGINT | The index of the output this input spends |
| CHARACTER VARYING | Symbolic representation of the bitcoins script language op-codes |
| CHARACTER VARYING | Hexadecimal representation of the bitcoins script language op-codes |
| BIGINT | A number intended to allow unconfirmed time-locked transactions to be updated before being finalized; not currently used except to disable locktime in a transaction |
| ANY | Addresses which own the spent output |
| DECIMAL | The value in base currency attached to the spent output |
| BIGINT | Block number |
| CHARACTER VARYING | Block hash |
| BIGINT | Block creation timestamp |
Last updated