rackhaelFRIEND.TECH METRICS
    Updated 2024-01-30
    SELECT
    date_trunc('hour', t.block_timestamp) as date,
    count(t.tx_hash) as transactions,
    count(distinct t.from_address) as users,
    sum(eth_value) as ETH_volume,
    sum(t.tx_fee) as total_fees,
    avg(t.tx_fee) as avg_fee,
    sum(ETH_volume) OVER (order by date) as cum_volume,
    sum(users) OVER (order by date) as cum_users
    FROM
    base.core.fact_transactions t
    JOIN base.core.fact_decoded_event_logs e on t.tx_hash = e.tx_hash
    WHERE
    contract_address = lower('0xCF205808Ed36593aa40a44F10c7f7C2F67d4A4d4')
    GROUP BY
    1

    Last run: about 1 year agoAuto-refreshes every 3 hours
    DATE
    TRANSACTIONS
    USERS
    ETH_VOLUME
    TOTAL_FEES
    AVG_FEE
    CUM_VOLUME
    CUM_USERS
    1
    2023-09-12 15:00:00.00049011499304.8843104250.55955474680.00011417154653444.934223049619135
    2
    2023-09-12 12:00:00.00041661260181.6080451880.29219580580.0000701382155252689.893490779614976
    3
    2023-09-28 08:00:00.00068593150177.175426530.33964426670.00004951804442119642.8519123031187041
    4
    2023-10-30 11:00:00.00087424722.3291875030.034424962850.00003938782935167529.1780773942155174
    5
    2023-09-12 10:00:00.00036601066146.345569750.30627644960.0000836820900452354.048843904612607
    6
    2023-08-27 06:00:00.000140149711.8134295490.21687470910.000154799935127586.264411293422781
    7
    2023-10-31 18:00:00.00047116424.782518750.038989939530.00008278118797167936.1874861822163537
    8
    2023-08-27 02:00:00.000141645432.4926774150.1925641960.000135991663827516.55512407420904
    9
    2023-08-12 00:00:00.000375097731.2189306250.72453050620.0001932081353296.30263612633360
    10
    2023-09-23 23:00:00.0002751893112.7316196250.18839984520.00006848413129105637.1536331351036088
    11
    2023-10-31 21:00:00.0003141145.28288750.018386622250.00005855612182167972.6749083072163929
    12
    2023-10-31 20:00:00.00030513414.60401250.034852935560.0001142719199167967.3920208062163815
    13
    2023-09-23 21:00:00.0003511109597.1326498690.14077845160.00004009639748105408.4366262891034153
    14
    2023-10-31 07:00:00.00018836148.8527883750.071382160470.00003790874162167807.4768196712160976
    15
    2023-09-23 08:00:00.00034701077139.199607440.21216605750.00006114295605103134.1869695141018958
    16
    2023-08-10 17:00:00.000926839.16561250.1655663380.000178797341319.9115125229
    17
    2023-11-01 12:00:00.0007693289.6450750.045370150470.00005899889528168115.7930899632169837
    18
    2023-11-01 07:00:00.0002138101318.7253024060.079388979270.000037132357168064.5705274632168332
    19
    2023-11-01 01:00:00.0008824318.2491750.039111996990.00004434466779168003.0928023072164853
    20
    2023-11-02 13:00:00.00045418424.040089910.034063174320.00007502901833168424.6314144112176642
    ...
    4147
    414KB
    45s