Table Details
| Property | Value |
|---|---|
| Table Name | solana.raw.pubkey_map |
| Table Status | Production-Ready |
| Unique Key | block_timestamp, txn_id, pubkey |
Table Columns
| Column Name | Data Type | Description |
|---|---|---|
| txn_id | VARCHAR(16777216) | Base58-encoded transaction signature on Solana. Analogous to transaction_hash on EVM chains. Uniquely identifies a transaction. |
| block_timestamp | TIMESTAMP_NTZ(9) | Timestamp (UTC) of the block that contains this record. |
| success | BOOLEAN | Boolean flag indicating whether the transaction executed successfully. True = succeeded, false = failed or reverted. |
| pubkey | VARCHAR(16777216) | The validatorβs BLS public key, uniquely identifying them. 48-bytes, hex encoded with 0x prefix, case insensitive. |