freemartianDebank - Arbitrum Withdraws
Updated 2023-07-04
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
select
count(distinct to_address) as Arbitrum_Withdrawers_Count,
count(tx_hash) as Arbitrum_Withdraw_Count,
sum(amount) as Arbitrum_Withdraw_Amount,
(CASE
when contract_address = '0xaf88d065e77c8cc2239327c5edb3a432268e5831' then 'USDC'
when contract_address = '0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9' then 'USDT'
end) as Symbol
from arbitrum.core.ez_token_transfers
where from_address = '0xad003006ceb0934012c289d1cfdb1db915998f74'
and contract_address in ('0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9', '0xaf88d065e77c8cc2239327c5edb3a432268e5831')
and ORIGIN_FUNCTION_SIGNATURE = '0xa9059cbb'
group by contract_address
Run a query to Download Data