EVENTS | WALLETS | VOLUME | |
---|---|---|---|
1 | 425602 | 140973 | 442090521.308725 |
mmdrezaEclipse Weekly Update(Bridge)
Updated 3 days ago
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
›
⌄
-- forked from jackguy / repulsive-pink copy copy @ https://flipsidecrypto.xyz/jackguy/q/irFTDD7sH-xu/repulsive-pink-copy-copy
with tab1 as (
SELECT
date_trunc('hour', block_timestamp) as hour,
'USDC' as token,
'mint' as type,
tx_id,
token_account as wallet,
mint_amount/power(10, 6) as volume
FROM eclipse.defi.fact_token_mint_actions --eclipse.defi.fact_token_mint_actions
where mint like 'AKEWE7Bgh87GPp171b4cJPSSZfmZwQ3KaqYqXoKLNAEE'
and succeeded
UNION all
SELECT
date_trunc('hour', block_timestamp) as hour,
'USDC' as token,
'burn' as type,
tx_id,
token_account as wallet,
burn_amount/power(10, 6) as volume
FROM eclipse.defi.fact_token_burn_actions
where mint like 'AKEWE7Bgh87GPp171b4cJPSSZfmZwQ3KaqYqXoKLNAEE'
and succeeded
UNION all
SELECT
date_trunc('hour', block_timestamp) as hour,
'WIF' as token,
'mint' as type,
tx_id,
Last run: 3 days ago
1
34B
25s