freemartianDebank - BSC Deposits
Updated 2023-07-04
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
select
count(distinct from_address) as BSC_Withdrawers_Count,
count(tx_hash) as BSC_Withdraws_Count,
sum(amount) as BSC_Withdraws_Amount,
(CASE
when contract_address = '0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d' then 'USDC'
when contract_address = '0x55d398326f99059ff775485246999027b3197955' then 'USDT'
end) as Symbol
from bsc.core.ez_token_transfers
where to_address = '0x293391044c6981b6417fa0dcfd85524d4098a8d6'
and contract_address in
('0x55d398326f99059ff775485246999027b3197955',
'0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d')
and ORIGIN_FUNCTION_SIGNATURE = '0xa9059cbb'
group by contract_address
Run a query to Download Data