ERC20 Token Transfers

ERC20 Token Transfers table records all the transfer events of ERC20 tokens. Each row represents a single token transfer, including the token address, sender (from_address), recipient (to_address), amount (value), and the transaction and block details associated with the transfer.

ETL data class

Column Name
Data Type
Note

token_address

str

from_address

str

to_address

str

value

int

transaction_hash

str

log_index

int

block_timestamp

timestamp

block_number

int

block_hash

str

Examples

{
  "token_address": "0x80137510979822322193fc997d400d5a6c747bf7",
  "wallet_address": "0xcaab1bd9025a576cee4757506d81b32e4724f9ef",
  "balance_of": 9834981273804,
  "transaction_hash": null,
  "block_timestamp": "2023-11-16T01:06:59.000Z",
  "block_number": 590166,
  "block_hash": null
}

Model in the Database

Column Name
Data Type
Note

token_address

bytea

from_address

bytea

to_address

bytea

value

numeric(78)

transaction_hash

bytea

log_index

bigint

block_timestamp

timestamp

block_number

bigint

block_hash

bytea

Examples

Last updated