Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,75 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: cc-by-nc-4.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-4.0
|
| 3 |
+
tags:
|
| 4 |
+
- ethereum
|
| 5 |
+
- evm
|
| 6 |
+
- blockchain
|
| 7 |
+
- cryptocurrency
|
| 8 |
+
- crypto
|
| 9 |
+
- onchain-data
|
| 10 |
+
pretty_name: BlockDB Raw Blocks - Sample
|
| 11 |
+
size_categories:
|
| 12 |
+
- 1K<n<10K
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
## Sample Notice
|
| 16 |
+
|
| 17 |
+
This dataset contains **a small sample** of the full BlockDB Raw Blocks dataset.
|
| 18 |
+
It is provided **for evaluation, research, and interoperability testing only**.
|
| 19 |
+
|
| 20 |
+
If you need full historical coverage, real-time streaming, or end-of-day (EOD) exports
|
| 21 |
+
please contact us directly:
|
| 22 |
+
|
| 23 |
+
📧 **support@blockdb.io**
|
| 24 |
+
🌐 https://www.blockdb.io
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
## Dataset Overview
|
| 28 |
+
Each block entry contains the complete structural and integrity metadata required to reconstruct or verify the block state:
|
| 29 |
+
hashes, parent linkage, miner address, gas and size metrics, timestamps, extra data, and lineage identifiers (_tracing_id, _computed_receipt_root).
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
## Chains and Coverage
|
| 33 |
+
ETH, BSC, Base, Arbitrum, Unichain, Avalanche, Polygon, Celo, Linea, Optimism (others on request).
|
| 34 |
+
Full history from chain genesis; reorg-aware real-time ingestion and updates.
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
## Schema
|
| 38 |
+
List of columns exactly as delivered:
|
| 39 |
+
• block_number BIGINT - Sequential block number
|
| 40 |
+
• block_hash BYTEA - 32-byte block hash
|
| 41 |
+
• parent_hash BYTEA - 32-byte parent block hash
|
| 42 |
+
• receipts_root BYTEA - Root hash of all receipts in the block
|
| 43 |
+
• miner BYTEA - 20-byte miner (beneficiary) address
|
| 44 |
+
• gas_limit NUMERIC(78,0) - Maximum gas allowed for the block
|
| 45 |
+
• extra_data BYTEA - Arbitrary ≤32-byte payload embedded by the block producer
|
| 46 |
+
• size BIGINT - Total block size in bytes (header + transactions + receipts)
|
| 47 |
+
• timestamp_utc TIMESTAMPTZ - UTC timestamp when the block was mined
|
| 48 |
+
• _tracing_id BYTEA - Deterministic tracing ID of this block record
|
| 49 |
+
• _computed_receipt_root BYTEA - Recomputed receipts root (BlockDB integrity check)
|
| 50 |
+
• _computed_receipt_timestamp_utc TIMESTAMPTZ - Timestamp when the receipts root was computed or revalidated
|
| 51 |
+
• _created_at TIMESTAMPTZ - Record creation timestamp
|
| 52 |
+
• _updated_at TIMESTAMPTZ - Record last update timestamp
|
| 53 |
+
|
| 54 |
+
|
| 55 |
+
### Notes
|
| 56 |
+
• Use encode(block_hash, 'hex') to convert binary values to hex for presentation or joins.
|
| 57 |
+
• Every block record is verified against the node RPC.
|
| 58 |
+
|
| 59 |
+
|
| 60 |
+
## Lineage
|
| 61 |
+
Each block record includes a deterministic _tracing_id, forming the root lineage reference for all derived BlockDB datasets (swaps, liquidity, and token prices).
|
| 62 |
+
This ensures verifiable traceability, reproducibility, and proof-of-derivation for every downstream record.
|
| 63 |
+
|
| 64 |
+
|
| 65 |
+
## Common Use Cases
|
| 66 |
+
• Benchmarking node or indexer consistency across chains
|
| 67 |
+
• Establishing canonical ground truth for analytics or compliance systems
|
| 68 |
+
• Foundation layer for derived token, swap, and liquidity datasets
|
| 69 |
+
• Validating receipts and state integrity with recomputed roots
|
| 70 |
+
|
| 71 |
+
|
| 72 |
+
## Quality
|
| 73 |
+
• Verifiable lineage: deterministic cryptographic hashes per row
|
| 74 |
+
• Reorg-aware ingestion: continuity and consistency across forks
|
| 75 |
+
• Complete historical coverage: from chain genesis to present
|