FEE_ETH | |
---|---|
1 | 1031.36371645 |
Flipside Teamtap fees
Updated 2025-04-07
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
›
⌄
-- Shout out to Hessish's TurboTap Dashboard!
-- https://flipsidecrypto.xyz/Hessish/turbo-tap-9t6b2f
-- forked from Hessish / tabtrb - tap ovr @ https://flipsidecrypto.xyz/Hessish/q/euEsx-iD5YTw/tabtrb---tap-ovr
with base as (
select block_timestamp,
tx_id,
fee / pow(10,9) as tx_fee
from eclipse.core.fact_transactions
where block_timestamp::date >= '2024-12-01'
and instructions[1]:programId = 'turboe9kMc3mSR8BosPkVzoHUfn5RVNzZhkrT2hdGxN'
and succeeded = TRUE
)
select
-- tx_fee,
-- count(distinct tx_id),
sum(tx_fee) as fee_eth
from base
-- group by 1
Last run: 13 days ago
1
17B
244s