kingneduNative Stablecoin Adoption
Updated 2025-01-14
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
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