bachiusdc deposits pool
Updated 2022-06-19
9
1
2
3
4
5
6
7
›
⌄
select date(block_timestamp) as day, sum(amount_usd) as total_amt from ethereum.core.ez_token_transfers
where symbol = 'USDC' and tx_hash in (
select tx_hash from ethereum.core.fact_transactions where contract_address = '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48'
and to_address = '0x0cec1a9154ff802e7934fc916ed7ca50bde6844e'
)
group by day
Run a query to Download Data