Update README.md
Browse files
README.md
CHANGED
|
@@ -36,6 +36,7 @@ Full history from chain genesis; reorg-aware real-time ingestion and updates.
|
|
| 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
|
|
@@ -53,8 +54,8 @@ List of columns exactly as delivered:
|
|
| 53 |
|
| 54 |
|
| 55 |
### Notes
|
| 56 |
-
|
| 57 |
-
|
| 58 |
|
| 59 |
|
| 60 |
## Lineage
|
|
@@ -63,13 +64,13 @@ This ensures verifiable traceability, reproducibility, and proof-of-derivation f
|
|
| 63 |
|
| 64 |
|
| 65 |
## Common Use Cases
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
|
| 71 |
|
| 72 |
## Quality
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
|
|
|
| 36 |
|
| 37 |
## Schema
|
| 38 |
List of columns exactly as delivered:
|
| 39 |
+
|
| 40 |
• block_number BIGINT - Sequential block number
|
| 41 |
• block_hash BYTEA - 32-byte block hash
|
| 42 |
• parent_hash BYTEA - 32-byte parent block hash
|
|
|
|
| 54 |
|
| 55 |
|
| 56 |
### Notes
|
| 57 |
+
• Use encode(block_hash, 'hex') to convert binary values to hex for presentation or joins.
|
| 58 |
+
• Every block record is verified against the node RPC.
|
| 59 |
|
| 60 |
|
| 61 |
## Lineage
|
|
|
|
| 64 |
|
| 65 |
|
| 66 |
## Common Use Cases
|
| 67 |
+
• Benchmarking node or indexer consistency across chains
|
| 68 |
+
• Establishing canonical ground truth for analytics or compliance systems
|
| 69 |
+
• Foundation layer for derived token, swap, and liquidity datasets
|
| 70 |
+
• Validating receipts and state integrity with recomputed roots
|
| 71 |
|
| 72 |
|
| 73 |
## Quality
|
| 74 |
+
• Verifiable lineage: deterministic cryptographic hashes per row
|
| 75 |
+
• Reorg-aware ingestion: continuity and consistency across forks
|
| 76 |
+
• Complete historical coverage: from chain genesis to present
|