Upload 5 files
Browse files
README.md
CHANGED
|
@@ -1,3 +1,92 @@
|
|
| 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 |
+
- tabular
|
| 11 |
+
- timeseries
|
| 12 |
+
- datasets
|
| 13 |
+
- pandas
|
| 14 |
+
- polars
|
| 15 |
+
- duckdb
|
| 16 |
+
pretty_name: BlockDB Raw Internal Transactions - Sample
|
| 17 |
+
size_categories:
|
| 18 |
+
- 10M<n<100M
|
| 19 |
+
---
|
| 20 |
+
|
| 21 |
+

|
| 22 |
+
|
| 23 |
+
## Sample Notice
|
| 24 |
+
|
| 25 |
+
This dataset contains **a small sample** of the full BlockDB Raw Internal Transactions dataset.
|
| 26 |
+
It is provided **for evaluation, research, and interoperability testing only**.
|
| 27 |
+
|
| 28 |
+
If you need full historical coverage, real-time streaming, or end-of-day (EOD) exports
|
| 29 |
+
please contact us directly:
|
| 30 |
+
|
| 31 |
+
📧 **support@blockdb.io**
|
| 32 |
+
🌐 https://www.blockdb.io
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
## Dataset Overview
|
| 36 |
+
Full call-trace decomposition of every EVM transaction via debug_traceTransaction. Each row represents a single internal call within a transaction, including the full call tree position, call type, addresses, value transferred, gas allocation and consumption, and input/output data — providing complete internal execution visibility beyond top-level transactions.
|
| 37 |
+
|
| 38 |
+
|
| 39 |
+
## Chains and Coverage
|
| 40 |
+
ETH, BSC, Base, Arbitrum, Unichain, Avalanche, Polygon, Celo, Linea, Optimism (others on request).
|
| 41 |
+
Full history from chain genesis; reorg-aware real-time ingestion and updates.
|
| 42 |
+
|
| 43 |
+
|
| 44 |
+
## Schema
|
| 45 |
+
List of columns exactly as delivered:
|
| 46 |
+
|
| 47 |
+
• block_number BIGINT – Block number of the parent transaction
|
| 48 |
+
• block_time TIMESTAMPTZ – UTC timestamp when the block was mined
|
| 49 |
+
• tx_index INTEGER – Zero-based index of the parent transaction within the block
|
| 50 |
+
• trace_address TEXT – Position in the call tree (e.g., "0", "0.0", "0.1")
|
| 51 |
+
• call_type TEXT – Type of call: CALL, DELEGATECALL, STATICCALL, CREATE, CREATE2
|
| 52 |
+
• from_address BYTEA – Address of the caller (20 bytes)
|
| 53 |
+
• to_address BYTEA – Address of the callee (20 bytes); null for failed CREATE/CREATE2
|
| 54 |
+
• value_wei NUMERIC – Native value (in wei) transferred in this call
|
| 55 |
+
• gas NUMERIC – Gas allocated for this call
|
| 56 |
+
• gas_used NUMERIC – Gas actually consumed by this call
|
| 57 |
+
• input BYTEA – Input data (calldata) for this call
|
| 58 |
+
• output BYTEA – Return data from the call (null if reverted)
|
| 59 |
+
• error TEXT – Error message if the call reverted
|
| 60 |
+
• tx_success BOOLEAN – Success of the underlying transaction
|
| 61 |
+
• _tracing_id BYTEA – Deterministic tracing ID of this internal transaction record
|
| 62 |
+
• _created_at TIMESTAMPTZ – Record creation timestamp
|
| 63 |
+
• _updated_at TIMESTAMPTZ – Record last update timestamp
|
| 64 |
+
|
| 65 |
+
|
| 66 |
+
### Notes
|
| 67 |
+
• Primary key: (block_number, tx_index, trace_address).
|
| 68 |
+
• trace_address encodes call depth and position: "0" is the root call, "0.1" is the second sub-call of the first call.
|
| 69 |
+
• FK: (block_number, tx_index) → blockdb_evm.b0102_transactions_v1.
|
| 70 |
+
• Use encode(from_address, 'hex') or encode(to_address, 'hex') to convert binary values to hex.
|
| 71 |
+
|
| 72 |
+
|
| 73 |
+
## Lineage
|
| 74 |
+
Each internal transaction record includes a deterministic _tracing_id, providing:
|
| 75 |
+
|
| 76 |
+
• Provenance tracking from raw call traces to internal execution events
|
| 77 |
+
• Reproducible analytics and signal extraction
|
| 78 |
+
• Cross-system consistency checks (RPC vs. indexers vs. internal warehouses)
|
| 79 |
+
|
| 80 |
+
|
| 81 |
+
## Common Use Cases
|
| 82 |
+
• Contract creation and factory flow analysis
|
| 83 |
+
• Internal call graphs and cross-contract dependencies
|
| 84 |
+
• Value flow and gas consumption per call frame
|
| 85 |
+
• Debugging failed transactions and tracing revert reasons
|
| 86 |
+
• MEV and arbitrage path reconstruction
|
| 87 |
+
|
| 88 |
+
|
| 89 |
+
## Quality
|
| 90 |
+
• Verifiable lineage: deterministic cryptographic hashes per row
|
| 91 |
+
• Reorg-aware ingestion: continuity and consistency across forks
|
| 92 |
+
• Complete historical coverage: from chain genesis to present
|
assets/banner.jpg
ADDED
|
Git LFS Details
|
data/blockdb0111_internal_transactions_v1.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/blockdb0111_internal_transactions_v1.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/blockdb0111_internal_transactions_v1.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:39ea5880169dd0377ed9d1d0dc384d9f1d58f50483e993ad819ffcfb49e3a9b8
|
| 3 |
+
size 122259
|