Description
The ERC-20 Tokens stream delivers notifications whenever a new ERC-20 token is registered in the BlockDB catalog. Use this stream to discover newly deployed tokens across the canonical chain.
Subscription Parameters
Filter notifications to a specific ERC-20 token address.
Message Fields
The Ethereum address of the token.
The number of decimals for the token.
Block number of the registration event.
Row-level lineage hash for correlation.
Subscription Example
# Use wscat to connect and subscribe
wscat -c wss://stream.blockdb.io/v1/evm/ \
-H "Authorization: Bearer $BLOCKDB_API_KEY" \
-x '{"action": "subscribe", "dataset_id": "0201", "chain_id": 1, "params": {}}'
Response Example
{
"chain_id": 1,
"dataset_id": "0201",
"is_reorg": false,
"data": {
"address": "0000000000000000000000000000000000000001",
"name": "Token Name",
"symbol": "TOKEN",
"decimals": 18,
"block_number": 567890,
"block_time": "2018-07-07T12:34:56Z",
"tx_index": 4,
"log_index": 2,
"_tracing_id": "0201000000000000000000000000000000000001",
"_created_at": "2025-11-11T18:42:15.123Z"
}
}