Tokens Data

Decoded ERC token metadata.

Query ERC tokens by contract address.

select * from base.erc20_tokens 
where address = '0x833589fcd6edb6e08f4c7c32d4f71b54bda02913' -- USDC Contract

ERC20 tokens equivalent (e.g. BEP-20, TRC-20 tokens)

                                                       Table "evm.erc20_tokens"
     Column      |            Type             | Collation | Nullable |      Default      | Storage  | Compression | Stats target | Description 
-----------------+-----------------------------+-----------+----------+-------------------+----------+-------------+--------------+-------------
 address         | character varying(42)       |           | not null |                   | extended |             |              | 
 name            | character varying           |           |          |                   | extended |             |              | 
 symbol          | character varying           |           |          |                   | extended |             |              | 
 decimals        | bigint                      |           |          |                   | plain    |             |              | 
 block_timestamp | timestamp without time zone |           |          |                   | plain    |             |              | 
 block_number    | bigint                      |           |          |                   | plain    |             |              | 
 block_hash      | character varying(66)       |           |          |                   | extended |             |              | 
 _created_at     | timestamp without time zone |           |          | CURRENT_TIMESTAMP | plain    |             |              | 
 _updated_at     | timestamp without time zone |           |          | CURRENT_TIMESTAMP | plain    |             |              | 
Indexes:
    "erc20_tokens_pk" PRIMARY KEY, btree (address)
    "erc20_tokens_address_index" btree (address)
    "erc20_tokens_block_timestamp_index" btree (block_timestamp DESC)
    "erc20_tokens_symbol_index" btree (symbol)

Last updated