shreexStablecoin Volume
Updated 2022-12-23
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
›
⌄
(select
date_trunc('day',block_timestamp) as date,
'USDC'as stablecoin,
sum(amount) as volume,
count(distinct tx_from) as unique_senders,
count(distinct tx_to) as unique_receivers
from solana.core.fact_transfers where block_timestamp >= CURRENT_DATE - interval '2 months' and mint= 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v'
group by date
order by date )
UNION
(
select
date_trunc('day',block_timestamp) as date,
'USDT' as stablecoin,
sum(amount) as volume,
count(distinct tx_from) as unique_senders,
count(distinct tx_to) as unique_receivers
from solana.core.fact_transfers where block_timestamp >= CURRENT_DATE - interval '2 months' and mint= 'Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB'
group by date
order by date)
UNION (
(
select
date_trunc('day',block_timestamp) as date,
'PAI' as stablecoin,
sum(amount) as volume,
count(distinct tx_from) as unique_senders,
count(distinct tx_to) as unique_receivers
from solana.core.fact_transfers where block_timestamp >= CURRENT_DATE - interval '2 months' and mint= 'Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS'
group by date
order by date)
UNION (
(
select
date_trunc('day',block_timestamp) as date,
Run a query to Download Data