CHAIN | DAY | BALANCE | |
---|---|---|---|
1 | Arbitrum | 2022-11-01 00:00:00.000 | 139.03 |
2 | Arbitrum | 2022-11-02 00:00:00.000 | 139.03 |
3 | Arbitrum | 2022-11-03 00:00:00.000 | 139.03 |
4 | Arbitrum | 2022-11-09 00:00:00.000 | 139.03 |
5 | Arbitrum | 2022-11-10 00:00:00.000 | 139.03 |
6 | Optimism | 2022-11-15 00:00:00.000 | 113.01 |
7 | Arbitrum | 2022-11-15 00:00:00.000 | 213.16 |
8 | Optimism | 2022-11-16 00:00:00.000 | 113.01 |
9 | Optimism | 2022-11-17 00:00:00.000 | 122.4 |
10 | Optimism | 2022-11-18 00:00:00.000 | 2086028.19 |
11 | Optimism | 2022-11-20 00:00:00.000 | 1383045.76 |
12 | Optimism | 2022-11-21 00:00:00.000 | 1456138.41 |
13 | Optimism | 2022-11-22 00:00:00.000 | 122.41 |
14 | Arbitrum | 2022-11-22 00:00:00.000 | 213.18 |
15 | Arbitrum | 2022-11-23 00:00:00.000 | 213.18 |
16 | Arbitrum | 2022-11-24 00:00:00.000 | 213.19 |
17 | Arbitrum | 2022-11-25 00:00:00.000 | 213.17 |
18 | Optimism | 2022-11-28 00:00:00.000 | 133.58 |
19 | Arbitrum | 2023-03-14 00:00:00.000 | 213.17 |
20 | Optimism | 2023-03-14 00:00:00.000 | 133.58 |
matejchiStablecoins: USDC
Updated 2025-04-12
99
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 supply_arbitrum as
(
select
'Arbitrum' as chain,
date_trunc('day', block_timestamp::date) as day,
sum(case
when from_address = '0x0000000000000000000000000000000000000000' then amount
when to_address = '0x0000000000000000000000000000000000000000' then - amount
end) as daily_supply_change
from arbitrum.core.ez_token_transfers
where contract_address = lower('0xaf88d065e77c8cC2239327C5EDb3A432268e5831') -- USDC
group by day
),
supply_base as
(
select
'Base' as chain,
date_trunc('day', block_timestamp::date) as day,
sum(case
when from_address = '0x0000000000000000000000000000000000000000' then amount
when to_address = '0x0000000000000000000000000000000000000000' then - amount
end) as daily_supply_change
from base.core.ez_token_transfers
where contract_address = lower('0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913') -- USDC
group by day
),
supply_optimism as
(
select
'Optimism' as chain,
date_trunc('day', block_timestamp::date) as day,
sum(case
when from_address = '0x0000000000000000000000000000000000000000' then amount
when to_address = '0x0000000000000000000000000000000000000000' then - amount
end) as daily_supply_change
from optimism.core.ez_token_transfers
Last run: 14 days ago
...
1914
101KB
44s