Blazesolana fee and revenue copy
    Updated 2024-02-07
    -- forked from intensodefi / solana fee and revenue @ https://flipsidecrypto.xyz/intensodefi/q/ADdNBxvan19d/solana-fee-and-revenue
    select * from
    (select
    date,
    -- chain,
    -- protocol,
    fees as sol_fee,
    revenue as sol_revenue
    from external.defillama.fact_protocol_fees_revenue
    where chain ='solana'
    and date_trunc('month',date) >date_trunc('month',CURRENT_TIMESTAMP) - interval '12 months'
    and protocol ='Solana') as t1

    join

    (select
    date,
    -- chain,
    -- protocol,
    fees as eth_fee,
    revenue as eth_revenue
    from external.defillama.fact_protocol_fees_revenue
    where chain ='ethereum'
    and date_trunc('month',date) >date_trunc('month',CURRENT_TIMESTAMP) - interval '12 months'
    and protocol ='Ethereum') as t2
    using(date)


    Last run: about 1 year ago
    DATE
    SOL_FEE
    SOL_REVENUE
    ETH_FEE
    ETH_REVENUE
    1
    2024-02-04 00:00:00.00049114424557256953424486930
    2
    2024-01-25 00:00:00.00043513721756937386212919684
    3
    2023-06-28 00:00:00.000341401707050528671110078
    4
    2023-06-29 00:00:00.000321651608348589621237024
    5
    2023-07-26 00:00:00.000472082360473984731784704
    6
    2023-07-04 00:00:00.000386531932754677261249981
    7
    2023-07-22 00:00:00.000517662588370771501640449
    8
    2023-07-24 00:00:00.000506842534252653821156906
    9
    2023-07-25 00:00:00.000468232341178214721500800
    10
    2023-07-23 00:00:00.000486592433048775341510353
    11
    2023-10-29 00:00:00.000638883194434152992633495
    12
    2023-10-26 00:00:00.000624573122957337064779883
    13
    2023-10-30 00:00:00.000682503412534406342715018
    14
    2023-10-27 00:00:00.000651383256957674004768600
    15
    2023-03-01 00:00:00.000493342466748499124127282
    16
    2023-03-10 00:00:00.000400132000761246975439747
    17
    2023-03-18 00:00:00.000414712073655768344672534
    18
    2023-03-19 00:00:00.000402762013840074713328026
    19
    2023-03-30 00:00:00.000378611893065662515742146
    20
    2023-03-28 00:00:00.000352771763957805665003708
    ...
    343
    19KB
    4s