The ERC20 tokens transfers table contains the details of all transfer events of ERC20 tokens on the Arbitrum network.

It includes information such as the sender and receiver addresses, the amount of tokens transferred, the transaction hash, and the block timestamp.

Sample Query

Finding stablecoin movement volumes on Arbitrum.

select

    date_trunc('month', block_timestamp) as date,

    token_symbol,

    sum(amount) as volume

from

    arbitrum.assets.erc20_token_transfers

where

    1 = 1

    and block_timestamp >= '2022-01-01'

    and token_address IN (

        '0xff970a61a04b1ca14834a43f5de4533ebddb5cc8', -- Bridged USDC.e

        '0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9', -- Bridged USDT

        '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1', -- DAI

        '0x4d15a3a2286d883af0aa1b3f21367843fac63e07' -- TUSD

    )

group by

    1,

    2

Table Columns

Column NameDescriptionExample
from_addressAddress where the token is being transferred from.0xd1a276c0f72734d34ae2c3c6c37a82c5f26f5655
to_addressAddress where the token is being transferred to.0x62383739d68dd0f844103db8dfb05a7eded5bbe6
token_addressToken address of the asset transferred.0xff970a61a04b1ca14834a43f5de4533ebddb5cc8
token_nameName of the asset transferred.USD Coin (Arb1)
token_symbolToken symbol of the asset transferred.USDC
raw_amountAmount of tokens moved (unnormalized).226,528,583
raw_amount_strAmount of tokens moved (unnormalized) in string226528583
amountAmount of token moved, normalized.226.528583
amount_strAmount of token moved, normalized in string.226.528583
usd_amountThe amount of tokens moved, in $USD.226.5059301
usd_exchange_rateThe exchange rate used to calculate the usd_value.0.9999
transaction_from_addressThe address of the sending party of this transaction.0xd1a276c0f72734d34ae2c3c6c37a82c5f26f5655
transaction_to_addressThe address of the receiving party of this transaction (could be a contract address).0xff970a61a04b1ca14834a43f5de4533ebddb5cc8
transaction_hashTransaction hash that this transfer belongs to.0xf9df1b43f6c27f9df04cf26edbaef07df2e11e240f06bfcb5eb6d2daf685a151
log_indexThe log index that corresponds to this transfer.2
block_timestampThe time when the block that contains this transaction was included on the blockchain.2023-06-07 04:52:23
block_numberThe block number that the corresponding transaction of this transfer belongs to.98,603,175
block_hashThe block hash that the corresponding transaction of this transfer belongs to.0x308cf678ff198191e7b0a18b737cacc431f2bb756f1ea5de609cfc246526d4d3
unique_idUnique id generated to each transfer. Includes transaction hash and log index.txn-0xf9df1b43f6c27f9df04cf26edbaef07df2e11e240f06bfcb5eb6d2daf685a151_log_index-2