banterlyticsbanana stats overview copy
    Updated 2022-12-21
    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