mamad-5XN3k3stark1 copy
    Updated 2024-01-23
    -- forked from stark1 @ https://flipsidecrypto.xyz/edit/queries/64bcdb38-4379-41d2-b49e-7c7e4190d2dc

    with pricet as (
    SELECT
    HOUR::date as pdate,
    avg(price) as usd
    from crosschain.price.ez_hourly_token_prices
    where SYMBOL = 'WETH'
    group by 1
    )

    SELECT
    date_trunc('week', TIMESTAMP) as days,
    count(distinct tx_hash) as txs,
    count(distinct CONTRACT) as users,
    sum(ACTUAL_FEE/pow(10,18)) as "Paid Fee (ETH)",
    sum((ACTUAL_FEE * usd)/pow(10,18)) as "Paid Fee (USD)"
    from external.tokenflow_starknet.decoded_transactions
    left join pricet on pdate = TIMESTAMP::date
    where CHAIN_ID = 'mainnet'
    and TIMESTAMP < current_date
    and TIMESTAMP >= '2023-01-01'
    group by 1
    order by 1 asc


    Last run: about 1 year ago
    DAYS
    TXS
    USERS
    Paid Fee (ETH)
    Paid Fee (USD)
    1
    2022-12-26 00:00:00.000710921291.2030962841438.158740393
    2
    2023-01-02 00:00:00.0001192963658121.90276933627304.177193345
    3
    2023-01-09 00:00:00.000741052098517.77472671924955.397552047
    4
    2023-01-16 00:00:00.000550542059711.63030563418329.532081045
    5
    2023-01-23 00:00:00.000739542036513.46374758421484.525704005
    6
    2023-01-30 00:00:00.000840702496221.59059305235208.990508142
    7
    2023-02-06 00:00:00.000874062331123.95836883638341.85361485
    8
    2023-02-13 00:00:00.000765322109024.07623084439004.8764762
    9
    2023-02-20 00:00:00.000862112176127.02972637644332.9060946
    10
    2023-02-27 00:00:00.0001015762585028.92484196446400.210753191
    11
    2023-03-06 00:00:00.000891842266230.2042881445465.260659696
    12
    2023-03-13 00:00:00.0003101235732071.45337521124876.679381746
    13
    2023-03-20 00:00:00.000866400123640179.039757898318115.433089158
    14
    2023-03-27 00:00:00.000805602147315226.41834037404875.385608919
    15
    2023-04-03 00:00:00.000947486183176256.012941848475414.234595621
    16
    2023-04-10 00:00:00.0001035156201677300.538041665596430.103151146
    17
    2023-04-17 00:00:00.000595258152527304.949685192600560.953194391
    18
    2023-04-24 00:00:00.000592308150789250.613895189471563.874465772
    19
    2023-05-01 00:00:00.000325370130999302.951276224574287.125001952
    20
    2023-05-08 00:00:00.0001276202458288808.1200394931471766.51885364
    57
    4KB
    20s