| spent_transaction_hash | VARCHAR(66) | Hash of the transaction that created the output being spent by this input. |
| spent_output_index | NUMBER(38,0) | The index of the output being spent within its transaction. |
| script_asm | VARCHAR(16777216) | The script in assembly format that unlocks the spent output. |
| script_hex | VARCHAR(16777216) | The script in hexadecimal format that unlocks the spent output. |
| sequence | NUMBER(38,0) | The sequence number of this input, used for relative time-locks. |
| coinbase | VARCHAR(16777216) | For coinbase transactions, contains the coinbase data. NULL for non-coinbase inputs. |
| index | NUMBER(38,0) | The position of this input within its transaction. |
| input_id | VARCHAR(16777216) | Unique identifier for this input, composed of transaction_hash and index. |
| spent_utxo_id | VARCHAR(16777216) | Unique identifier for the spent output, composed of spent_transaction_hash and spent_output_index. |
| transaction_hash | VARCHAR(66) | Unique hash of the transaction that contains this input. |
| block_hash | VARCHAR(66) | Hash of the block containing this input’s transaction. |
| block_number | NUMBER(38,0) | Number of the block containing this input’s transaction. |
| block_timestamp | TIMESTAMP_NTZ(9) | Timestamp when the block containing this input was mined. |
| _created_at | TIMESTAMP_NTZ(9) | Timestamp when this record was created in the database. |
| _updated_at | TIMESTAMP_NTZ(9) | Timestamp when this record was last updated in the database. |