Upload 5 files
Browse files
README.md
CHANGED
|
@@ -1,3 +1,88 @@
|
|
| 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 ERC-721 Tokens - 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 ERC-721 Tokens 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 |
+
Catalog of ERC-721 (NFT) token contracts discovered on-chain. Each row represents a unique ERC-721 token collection with its metadata (name, symbol, base token URI) and provenance information indicating where the token was first recognized or derived from on-chain activity.
|
| 37 |
+
|
| 38 |
+
Every token record includes deterministic tracing IDs that link the record to its genesis event and upstream sources, enabling full provenance tracking for downstream analytics.
|
| 39 |
+
|
| 40 |
+
|
| 41 |
+
## Chains and Coverage
|
| 42 |
+
ETH, BSC, Base, Arbitrum, Unichain, Avalanche, Polygon, Celo, Linea, Optimism (others on request).
|
| 43 |
+
Full history from chain genesis; reorg-aware real-time ingestion and updates.
|
| 44 |
+
|
| 45 |
+
|
| 46 |
+
## Schema
|
| 47 |
+
List of columns exactly as delivered:
|
| 48 |
+
|
| 49 |
+
• contract_address BYTEA – 20-byte address of the ERC-721 token contract (primary key)
|
| 50 |
+
• block_number BIGINT – Block of the log attributed as the genesis/recognition point
|
| 51 |
+
• block_time TIMESTAMPTZ – UTC timestamp when the block was mined
|
| 52 |
+
• tx_index INTEGER – Transaction index within the block
|
| 53 |
+
• log_index INTEGER – Log index within the block
|
| 54 |
+
• name TEXT – Name of the ERC-721 token collection
|
| 55 |
+
• symbol TEXT – Symbol/ticker of the ERC-721 token
|
| 56 |
+
• base_token_uri TEXT – Base URI for token metadata, if any
|
| 57 |
+
• _tracing_id BYTEA – Tracing ID of this ERC-721 token record
|
| 58 |
+
• _genesis_tracing_ids BYTEA[] – Tracing IDs of the genesis records leading to this token record
|
| 59 |
+
• _parent_tracing_ids BYTEA[] – Tracing IDs of the parent records leading to this token record
|
| 60 |
+
• _created_at TIMESTAMPTZ – Record creation timestamp
|
| 61 |
+
• _updated_at TIMESTAMPTZ – Record last update timestamp
|
| 62 |
+
|
| 63 |
+
|
| 64 |
+
### Notes
|
| 65 |
+
• Primary key: contract_address guarantees uniqueness per token collection.
|
| 66 |
+
• Indexes on (block_number, tx_index, log_index), block_number, and block_time support fast lookups.
|
| 67 |
+
• Binary values can be rendered as hex via encode(column, 'hex') in SQL for display or downstream joins.
|
| 68 |
+
|
| 69 |
+
|
| 70 |
+
## Lineage
|
| 71 |
+
Each token record includes deterministic _tracing_id, _genesis_tracing_ids, and _parent_tracing_ids, providing:
|
| 72 |
+
|
| 73 |
+
• Provenance tracking from raw logs to decoded token metadata
|
| 74 |
+
• Reproducible analytics and signal extraction
|
| 75 |
+
• Cross-system consistency checks (RPC vs. indexers vs. internal warehouses)
|
| 76 |
+
|
| 77 |
+
|
| 78 |
+
## Common Use Cases
|
| 79 |
+
• Building NFT collection registries and metadata catalogs
|
| 80 |
+
• NFT market analytics and collection tracking
|
| 81 |
+
• NFT discovery and new collection detection
|
| 82 |
+
• Wallet portfolio tracking for NFT holdings
|
| 83 |
+
|
| 84 |
+
|
| 85 |
+
## Quality
|
| 86 |
+
• Verifiable lineage: deterministic cryptographic hashes per row
|
| 87 |
+
• Reorg-aware ingestion: continuity and consistency across forks
|
| 88 |
+
• Complete historical coverage: from chain genesis to present
|
assets/banner.jpg
ADDED
|
Git LFS Details
|
data/blockdb0202_erc721_tokens_v1.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/blockdb0202_erc721_tokens_v1.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/blockdb0202_erc721_tokens_v1.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9a82f911c3c21b390bb0004f03961ac80d6ea41b06e74039f282c4aa3f8e6d57
|
| 3 |
+
size 188122
|