banterlyticsbanana stats overview copy
Updated 2022-12-21Copy Reference Fork
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 * from
(select * from
(SELECT
sum(case when from_address = lower('0x0000000000000000000000000000000000000000') then raw_amount/pow(10,18) end) as eBanana_claim
from ethereum.core.fact_token_transfers
where block_timestamp > '2022-01-01'
and contract_address = lower('0x94e496474F1725f1c1824cB5BDb92d7691A4F03a')) a
union all
select * from
(SELECT
sum(case when to_address = lower('0x0000000000000000000000000000000000000000') then raw_amount/pow(10,18) end) as eBanana_burnt
from ethereum.core.fact_token_transfers
where block_timestamp > '2022-01-01'
and contract_address = lower('0x94e496474F1725f1c1824cB5BDb92d7691A4F03a')) b
union all
select * from
(SELECT
sum(case when to_address = lower('0x000000000000000000000000000000000000dead') then raw_amount/pow(10,18) end) as pBanana_burnt
from polygon.core.fact_token_transfers
where block_timestamp > '2022-01-01'
and contract_address = lower('0xbC91347e80886453F3f8bBd6d7aC07C122D87735')) c
union all
select * from
(SELECT
sum(case when to_address = lower('0x266a647b991123770dc23b42151e85f563e07359') then raw_amount/pow(10,18) end) as vBanana
from ethereum.core.fact_token_transfers
where block_timestamp > '2022-01-01'
and contract_address = lower('0x94e496474F1725f1c1824cB5BDb92d7691A4F03a')) d
Run a query to Download Data