TOKEN_NAME | TOTAL_DEPOSITORS_COUNT | TOTAL_TXS_COUNT | TOTAL_AMOUNT_USD | |
---|---|---|---|---|
1 | ETH | 139437 | 179999 | $974154725.10 |
2 | USDC | 3357 | 4270 | $72404401.31 |
3 | USDT | 3191 | 4030 | $127322168.76 |
4 | stETH | 1518 | 2085 | $321505669.79 |
5 | DAI | 443 | 550 | $23812991.74 |
Blast-->Total number of transactions, depositors, and amount of USD deposit in Blast by different tokens
CoinConverseBlast-->Total number of transactions, depositors, and amount of USD deposit in Blast by different tokens
Updated 2024-02-19
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
-- forked from Blast_total_of_all_txs @ https://flipsidecrypto.xyz/edit/queries/5d79e4f3-3bcd-4a78-96c3-c47f8fe29bc7
-- forked from Blast_amount_of_USD_each_tokens @ https://flipsidecrypto.xyz/edit/queries/b49aca20-2555-4789-b18e-143a770928ac
-- 0xf6326fb3: deposit ٍETH
-- 0x0a553dcb: deposit USDT
-- 0x3265aead: deposit stETH
-- 0xf688bcfb: deposit USDC
-- 0x365833e1: deposit DAI
with eth_data as (select origin_function_signature, count(distinct eth_from_address) as depositors_count, count(distinct tx_hash) as txs_count, sum(amount_usd) as all_amount_usd
from ethereum.core.ez_eth_transfers
where eth_to_address = lower('0x5f6ae08b8aeb7078cf2f96afb089d7c9f51da47d')
and origin_function_signature = '0xf6326fb3'
and eth_from_address <> '0x0000000000000000000000000000000000000000'
group by 1),
other_coins_data as (select origin_function_signature, count(distinct from_address) as depositors_count, count(distinct tx_hash) as txs_count, sum(amount_usd) as all_amount_usd
from ethereum.core.ez_token_transfers
where to_address = lower('0x5f6ae08b8aeb7078cf2f96afb089d7c9f51da47d')
and origin_function_signature in ('0x0a553dcb','0x3265aead','0xf688bcfb','0x365833e1')
and from_address <> '0x0000000000000000000000000000000000000000'
group by 1)
select case
when origin_function_signature = '0xf6326fb3' then 'ETH'
when origin_function_signature = '0x0a553dcb' then 'USDT'
when origin_function_signature = '0x3265aead' then 'stETH'
when origin_function_signature = '0xf688bcfb' then 'USDC'
when origin_function_signature = '0x365833e1' then 'DAI'
else null end as token_name, sum(depositors_count) as total_depositors_count, sum(txs_count) as total_txs_count, CONCAT('$', CAST(sum(all_amount_usd) as DECIMAL(18,2))) as total_amount_usd
from
(select *
from eth_data
union
select *
from other_coins_data)
Last run: about 1 year agoAuto-refreshes every 3 hours
5
175B
188s