DAY | BOB_FEE | BOB_SWAP_FEE | BOB_TRANSFER_FEE | ARBITRUM_FEE | ARBITRUM_SWAP_FEE | ARBITRUM_TRANSFER_FEE | BASE_FEE | BASE_SWAP_FEE | BASE_TRANSFER_FEE | CORE_FEE | CORE_SWAP_FEE | CORE_TRANSFER_FEE | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | 2025-03-13 00:00:00.000 | 389.01 | 22.32 | 159.04 | |||||||||
2 | 2025-03-29 00:00:00.000 | 201.61 | 18.6 | 78.59 | |||||||||
3 | 2025-03-06 00:00:00.000 | 168.99 | 14.97 | 67.95 | |||||||||
4 | 2025-03-18 00:00:00.000 | 63.15 | 4.4 | 25.38 | |||||||||
5 | 2025-04-01 00:00:00.000 | 250.3 | 6.61 | 82.28 | |||||||||
6 | 2025-03-30 00:00:00.000 | 825782 | 85734.96 | 215767.3 | |||||||||
7 | 2025-03-27 00:00:00.000 | 1047.78 | 57.04 | 255.75 | |||||||||
8 | 2025-03-14 00:00:00.000 | 1053790.26 | 160589.2 | 483409.01 | |||||||||
9 | 2025-04-03 00:00:00.000 | 238300.06 | 12481.16 | 38136.2 | |||||||||
10 | 2025-03-21 00:00:00.000 | 2083.22 | 97.93 | 341.73 | |||||||||
11 | 2025-03-06 00:00:00.000 | 4178.89 | 199.21 | 617.13 | |||||||||
12 | 2025-03-23 00:00:00.000 | 1047.39 | 70.64 | 234.58 | |||||||||
13 | 2025-03-29 00:00:00.000 | 995.53 | 73.24 | 268.84 | |||||||||
14 | 2025-03-15 00:00:00.000 | 78.08 | 4.11 | 32.64 | |||||||||
15 | 2025-04-03 00:00:00.000 | 460.78 | 26.27 | 86.42 | |||||||||
16 | 2025-03-23 00:00:00.000 | 53.1 | 3.32 | 20.61 | |||||||||
17 | 2025-03-23 00:00:00.000 | 786590.86 | 70066.53 | 213470.75 | |||||||||
18 | 2025-03-11 00:00:00.000 | 5104.48 | 382.85 | 1423.47 | |||||||||
19 | 2025-03-15 00:00:00.000 | 2878.12 | 18.27 | 100.61 | |||||||||
20 | 2025-03-16 00:00:00.000 | 103.75 | 3.81 | 39.94 |
mamad-5XN3k3BOB Paid Fee by Events
Updated 3 days ago
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
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with pricet as (
select
'Core' as sym,
Hour::date as pdate,
avg(price) as price
from core.price.ez_prices_Hourly
where symbol = 'CORE'
group by 1,2
union
select
'ETH' as sym,
Hour::date as pdate,
avg(price) as price
from ethereum.price.ez_prices_Hourly
where symbol = 'ETH'
and token_address is null
group by 1,2
)
select
distinct day,
case when chain = 'BOB' then fee end as BOB_Fee,
case when chain = 'BOB' then swap_fee end as BOB_swap_fee,
case when chain = 'BOB' then transfer_fee end as BOB_transfer_fee,
case when chain = 'Arbitrum' then fee end as Arbitrum_Fee,
case when chain = 'Arbitrum' then swap_fee end as Arbitrum_swap_fee,
case when chain = 'Arbitrum' then transfer_fee end as Arbitrum_transfer_fee,
case when chain = 'Base' then fee end as Base_Fee,
case when chain = 'Base' then swap_fee end as Base_swap_fee,
case when chain = 'Base' then transfer_fee end as Base_transfer_fee,
case when chain = 'Core' then fee end as Core_Fee,
case when chain = 'Core' then swap_fee end as Core_swap_fee,
case when chain = 'Core' then transfer_fee end as Core_transfer_fee
from(
Last run: 3 days ago
...
124
12KB
523s