hessCumulative Daily New USDC users
Updated 2022-12-24
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
›
⌄
with ethereum_user as ( select min(block_timestamp) as date, FROM_ADDRESS
from ethereum.core.ez_token_transfers
where symbol = 'USDC'
and contract_address = lower('0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48')
and origin_from_address != '0x0000000000000000000000000000000000000000'
and origin_to_address != '0x0000000000000000000000000000000000000000'
and from_address != '0x0000000000000000000000000000000000000000'
and to_address != '0x0000000000000000000000000000000000000000'
group by 2)
,
optimism_user as ( select min(block_timestamp) as date, FROM_ADDRESS
from optimism.core.fact_token_transfers
where contract_address = lower('0x7f5c764cbc14f9669b88837ca1490cca17c31607')
and raw_amount::float > 0
and origin_from_address != '0x0000000000000000000000000000000000000000'
and origin_to_address != '0x0000000000000000000000000000000000000000'
and from_address != '0x0000000000000000000000000000000000000000'
and to_address != '0x0000000000000000000000000000000000000000'
group by 2)
,
avalanche_user as ( select min(block_timestamp) as date, FROM_ADDRESS
from avalanche.core.fact_token_transfers
where contract_address = lower('0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e')
and origin_from_address != '0x0000000000000000000000000000000000000000'
and origin_to_address != '0x0000000000000000000000000000000000000000'
and from_address != '0x0000000000000000000000000000000000000000'
and to_address != '0x0000000000000000000000000000000000000000'
group by 2)
,
arbitrum_user as ( select min(block_timestamp) as date, FROM_ADDRESS
from arbitrum.core.fact_token_transfers
where contract_address = lower('0xff970a61a04b1ca14834a43f5de4533ebddb5cc8')
and origin_from_address != '0x0000000000000000000000000000000000000000'
Run a query to Download Data