Movement Team8_1. Total Daily Gas Fee
    Updated 2 days ago
    select trunc(block_timestamp,'day') as day,
    sum((gas_used * gas_unit_price)/1e8) as total_gas,
    max((gas_used * gas_unit_price)/1e8) as max_gas,
    median((gas_used * gas_unit_price)/1e8) as median_gas,
    avg((gas_used * gas_unit_price)/1e8) as avg_gas
    from movement.core.fact_transactions
    group by 1
    order by 1 asc
    Last run: 2 days ago
    DAY
    TOTAL_GAS
    MAX_GAS
    MEDIAN_GAS
    AVG_GAS
    1
    2024-12-05 00:00:00.0000.0014580.0009990.0004420.000486
    2
    2024-12-09 00:00:00.0000.0010080.0009990.0005040.000504
    3
    2024-12-12 00:00:00.0000.0021780.0016850.00001050.000363
    4
    2024-12-13 00:00:00.0000.000010.0000050.0000050.000005
    5
    2024-12-14 00:00:00.0000.000120.0000050.0000050.000005
    6
    2024-12-15 00:00:00.00075.0201830.08720.0564260.059824707337
    7
    2024-12-16 00:00:00.000965.3804730.198150.139470.136084081336
    8
    2024-12-17 00:00:00.000320.1863270.330.23240.196674648034
    9
    2024-12-18 00:00:00.0002.7562270.20.0635150.076561861111
    10
    2024-12-19 00:00:00.00074.1900460.23240.1701480.171736217593
    11
    2024-12-20 00:00:00.000132.6009590.124230.1134390.113431102652
    12
    2024-12-21 00:00:00.00051.325620.132250.124230.120766164706
    13
    2024-12-23 00:00:00.0000.0000250.0000050.0000050.000005
    14
    2024-12-24 00:00:00.0000.000120.0000050.0000050.000005
    15
    2024-12-25 00:00:00.0000.000120.0000050.0000050.000005
    16
    2024-12-26 00:00:00.0000.0001150.0000050.0000050.000005
    17
    2024-12-27 00:00:00.0000.0001150.0000050.0000050.000005
    18
    2024-12-28 00:00:00.0000.000120.0000050.0000050.000005
    19
    2024-12-29 00:00:00.0000.000120.0000050.0000050.000005
    20
    2024-12-30 00:00:00.0000.000110.0000050.0000050.000005
    ...
    113
    7KB
    1s