elsinadaily USDC transferring
Updated 2022-12-09
999
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
›
⌄
-- 2022-04-18
-- eth 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48
-- bsc 0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d
-- sol EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
-- ftm 0x04068da6c83afcfa0e13ba15a6696662335d5b75
-- arb 0xff970a61a04b1ca14834a43f5de4533ebddb5cc8
-- op 0x7f5c764cbc14f9669b88837ca1490cca17c31607
-- ava 0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e
-- ner a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48.factory.bridge.near
-- pol 0x2791bca1f2de4661ed88a30c99a7a9449aa84174
-- alg 31566704
-- osm ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858
select
date_trunc('day', block_timestamp) as date,
'Ethereum' as chain,
count(distinct tx_hash) as count,
count(distinct from_address) as senders,
count(distinct to_address) as receivers,
sum(amount) as volume,
avg(amount) as average_size,
sum(count) over (order by date) as cum_count,
sum(volume) over (order by date) as cum_volume
from ethereum.core.ez_token_transfers
where
date >= '{{start_date}}' and date <= '{{end_date}}' and
contract_address = '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48'
group by 1, 2
union all
select
date_trunc('day', block_timestamp) as date,
'Optimism' as chain,
count(distinct tx_hash) as count,
Run a query to Download Data