Upload 5 files
Browse files
README.md
CHANGED
|
@@ -1,3 +1,90 @@
|
|
| 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-1155 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-1155 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-1155 Multi Token contracts discovered on-chain. Each row represents a unique ERC-1155 contract with its optional metadata (name, symbol, decimals, uri) and detection metadata. Primary detection uses ERC-165 supportsInterface(0xd9b67a26); a fallback heuristic is applied when ERC-165 is unavailable.
|
| 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-1155 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 |
+
• name TEXT – Contract name from name() (optional in EIP-1155; may be null)
|
| 54 |
+
• symbol TEXT – Contract symbol from symbol() (optional in EIP-1155; may be null)
|
| 55 |
+
• decimals SMALLINT – Contract decimals from decimals() (optional in EIP-1155; may be null)
|
| 56 |
+
• uri TEXT – URI from uri(uint256) (optional ERC1155Metadata_URI); clients replace {id} with token ID in hex (64 chars)
|
| 57 |
+
• supports_metadata_uri BOOLEAN – Whether the contract supports the ERC1155Metadata_URI extension; null when detection was via fallback
|
| 58 |
+
• _tracing_id BYTEA – Tracing ID of this ERC-1155 token record
|
| 59 |
+
• _genesis_tracing_ids BYTEA[] – Tracing IDs of the genesis records leading to this token record
|
| 60 |
+
• _parent_tracing_ids BYTEA[] – Tracing IDs of the parent records leading to this token record
|
| 61 |
+
• _created_at TIMESTAMPTZ – Record creation timestamp
|
| 62 |
+
• _updated_at TIMESTAMPTZ – Record last update timestamp
|
| 63 |
+
|
| 64 |
+
|
| 65 |
+
### Notes
|
| 66 |
+
• Primary key: contract_address guarantees uniqueness per contract.
|
| 67 |
+
• name, symbol, decimals, and uri are all optional per EIP-1155 and may be null.
|
| 68 |
+
• uri uses {id} placeholder per EIP-1155 spec; substitute the token ID (zero-padded 64-char hex) before fetching.
|
| 69 |
+
• Binary values can be rendered as hex via encode(column, 'hex') in SQL for display or downstream joins.
|
| 70 |
+
|
| 71 |
+
|
| 72 |
+
## Lineage
|
| 73 |
+
Each token record includes deterministic _tracing_id, _genesis_tracing_ids, and _parent_tracing_ids, providing:
|
| 74 |
+
|
| 75 |
+
• Provenance tracking from raw logs to decoded multi-token contract metadata
|
| 76 |
+
• Reproducible analytics and signal extraction
|
| 77 |
+
• Cross-system consistency checks (RPC vs. indexers vs. internal warehouses)
|
| 78 |
+
|
| 79 |
+
|
| 80 |
+
## Common Use Cases
|
| 81 |
+
• Multi-token and semi-fungible contract registry
|
| 82 |
+
• Game asset and metaverse item catalog construction
|
| 83 |
+
• Metadata resolution via uri(uint256) with {id} substitution
|
| 84 |
+
• Portfolio and transfer analytics for ERC-1155 holdings
|
| 85 |
+
|
| 86 |
+
|
| 87 |
+
## Quality
|
| 88 |
+
• Verifiable lineage: deterministic cryptographic hashes per row
|
| 89 |
+
• Reorg-aware ingestion: continuity and consistency across forks
|
| 90 |
+
• Complete historical coverage: from chain genesis to present
|
assets/banner.jpg
ADDED
|
Git LFS Details
|
data/blockdb0203_erc1155_tokens_v1.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/blockdb0203_erc1155_tokens_v1.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/blockdb0203_erc1155_tokens_v1.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5c23b948219acf92e08ac53281ee6c373812fcf5b7c167f0c23632d04d010b51
|
| 3 |
+
size 209943
|