TYPE | NET_SUPPLY | MARKET_CAP | |
---|---|---|---|
1 | Total | 24379.38338 | 2344370264.58756 |
2 | Base | 7735.17364 | 743829767.56968 |
3 | Ethereum | 16644.20974 | 1600540497.01788 |
damidezBTC sum
Updated 2025-02-22
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 CBsumm AS (
-- minted tokens (inflow) for Ethereum
SELECT
DATE_TRUNC('day', ef.block_timestamp) AS day,
tx_hash,
origin_from_address,
'Ethereum' AS Type,
amount_precise AS minted_amount,
0 AS burned_amount
FROM ethereum.core.ez_token_transfers ef
WHERE contract_address = '0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf'
AND from_address = '0x0000000000000000000000000000000000000000'
UNION ALL
-- burned tokens (outflow) for Ethereum
SELECT
DATE_TRUNC('day', ef.block_timestamp) AS day,
tx_hash,
origin_from_address,
'Ethereum' AS Type,
0 AS minted_amount,
amount_precise AS burned_amount
FROM ethereum.core.ez_token_transfers ef
WHERE contract_address = '0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf'
AND to_address = '0x0000000000000000000000000000000000000000'
UNION ALL
-- minted tokens (inflow) for Base
SELECT
DATE_TRUNC('day', ef.block_timestamp) AS day,
tx_hash,
origin_from_address,
'Base' AS Type,
amount_precise AS minted_amount,
Last run: about 2 months ago
3
118B
24s