EBANANA_CLAIM | EBANANA_CLAIM_30 | EBANANA_CLAIM_7 | |
---|---|---|---|
1 | 12470343.8444363 | 132835.019444444 | 20332.231944444 |
2 | 152548 | 110 | 110 |
3 | 2312160.47274947 | 0 | 0 |
4 | 2850000 | 0 | 0 |
5 | 925301.754811196 | 0 | 0 |
banterlyticsbanana-overview
Updated 17 hours ago
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
COALESCE(sum(case when from_address = lower('0x0000000000000000000000000000000000000000') then raw_amount/pow(10,18) end),0) as eBanana_claim,
COALESCE(sum(case when from_address = lower('0x0000000000000000000000000000000000000000') and block_timestamp > current_date - 30 then raw_amount/pow(10,18) end),0) as eBanana_claim_30,
COALESCE(sum(case when from_address = lower('0x0000000000000000000000000000000000000000') and block_timestamp > current_date - 7 then raw_amount/pow(10,18) end),0) as eBanana_claim_7
from ethereum.core.fact_token_transfers
where block_timestamp > '2022-02-27'
and contract_address = lower('0x94e496474F1725f1c1824cB5BDb92d7691A4F03a')) a
union all
select * from
(SELECT
COALESCE(sum(case when to_address = lower('0x0000000000000000000000000000000000000000') then raw_amount/pow(10,18) end),0) as eBanana_burnt,
COALESCE(sum(case when to_address = lower('0x0000000000000000000000000000000000000000') and block_timestamp > current_date - 30 then raw_amount/pow(10,18) end),0) as eBanana_burnt_30,
COALESCE(sum(case when to_address = lower('0x0000000000000000000000000000000000000000') and block_timestamp > current_date - 7 then raw_amount/pow(10,18) end),0) as eBanana_burnt_7
from ethereum.core.fact_token_transfers
where block_timestamp > '2022-02-27'
and contract_address = lower('0x94e496474F1725f1c1824cB5BDb92d7691A4F03a')) b
union all
select * from
(SELECT
COALESCE(sum(case when to_address = lower('0x000000000000000000000000000000000000dead') then raw_amount/pow(10,18) end),0) as pBanana_burnt,
COALESCE(sum(case when to_address = lower('0x000000000000000000000000000000000000dead') and block_timestamp > current_date - 30 then raw_amount/pow(10,18) end),0) as pBanana_burnt_30,
COALESCE(sum(case when to_address = lower('0x000000000000000000000000000000000000dead') and block_timestamp > current_date - 7 then raw_amount/pow(10,18) end),0) as pBanana_burnt_7
from polygon.core.fact_token_transfers
where block_timestamp > '2022-02-27'
and contract_address = lower('0xbC91347e80886453F3f8bBd6d7aC07C122D87735')) c
union all
select * from
Last run: about 17 hours agoAuto-refreshes every 24 hours
5
130B
19s