kingneduNative Stablecoin Adoption
    Updated 2025-01-14
    select
    date_trunc('month', block_timestamp) as month,
    sum(value) as "$Honey value in $Eth",
    sum(gas_used) as "total gas used"
    from berachain.testnet.fact_transactions
    where to_address = lower('0x0E4aaF1351de4c0264C5c7056Ef3777b41BD8e03') -- CA for $Honey, the Native stablecoin for Berachain
    and block_timestamp::date >= '2024-06-09' -- Berachain officially launched version 2 of its testnet called bArtio
    and gas_price > 0
    group by 1;



    QueryRunArchived: QueryRun has been archived