Sandeshmdao
Updated 2023-07-28
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 sent_tokens as
(select
to_address as Participant,
sum(raw_amount/pow(10,18)) as xMETRIC
from
polygon.core.fact_token_transfers
where block_timestamp::date > '2022-07-10'::date
and contract_address = lower('0x15848C9672e99be386807b9101f83A16EB017bb5')
and to_address != lower('0x4b8923746a1D9943bbd408F477572762801efE4d')
group by 1
order by 2 desc),
burnt_tokens as
(
select
to_address as Participant,
sum(raw_amount/pow(10,18)) as xMETRIC
from
polygon.core.fact_token_transfers
where block_timestamp::date > '2022-07-10'::date
and contract_address = lower('0x15848C9672e99be386807b9101f83A16EB017bb5')
and to_address = lower('0x0000000000000000000000000000000000000000')
group by 1
order by 2 desc
),
results as
(
select
sent_tokens.Participant as "Participant",
coalesce(sent_tokens.xmetric,0) - coalesce(burnt_tokens.xMETRIC,0) as "xMETRIC Balance"
from
sent_tokens left join burnt_tokens on sent_tokens.Participant = burnt_tokens.Participant
order by 2 desc
)
,
Run a query to Download Data