MLDZMNKPI over time
    Updated 2025-04-01
    with tb1 as (select
    *
    from blast.core.ez_decoded_event_logs
    where CONTRACT_ADDRESS = lower('0xc15568330926e2a6f1519992b0364ca00faf6a7a')
    and ORIGIN_FUNCTION_SIGNATURE in ('0x37d8b79d','0xce55803f') --0x553be400 for BattleJoined
    )


    select
    BLOCK_TIMESTAMP::date as day,
    count(case when ORIGIN_FUNCTION_SIGNATURE= '0x37d8b79d' then tx_hash else null end) as "Battles",
    count(distinct Origin_FROM_ADDRESS) as "Players",
    sum(AMOUNT)*2 as "Volume ETH",
    sum(amount_usd)*2 as "Volume USD",
    avg(AMOUNT) as "Avg volume (ETH)",
    min(AMOUNT) as "Min volume (ETH)",
    max(AMOUNT) as "Max volume (ETH)",
    "Volume ETH"/"Players" as "Volume per player"

    from blast.core.ez_native_transfers
    where tx_hash in (select tx_hash from tb1)
    and TO_ADDRESS = '0xc9438f95aa8d9ee1b5edea15c7fa4b2cac723dce'
    group by 1



    Last run: 21 days agoAuto-refreshes every 12 hours
    DAY
    Battles
    Players
    Volume ETH
    Volume USD
    Avg volume (ETH)
    Min volume (ETH)
    Max volume (ETH)
    Volume per player
    1
    2024-04-19 00:00:00.0006593273587.3921776173.120.022210995990.0010.52.151619048
    2
    2024-05-09 00:00:00.00013036998989.65922965251.480.0186082130.0012.50.991642485
    3
    2024-05-18 00:00:00.00074031317163.31507651.020.0054669925010.00120.1240015186
    4
    2024-03-17 00:00:00.0001567155463.49521656735.620.073757988540.00112.990291613
    5
    2024-03-21 00:00:00.0001496189153.2986536409.660.025439528710.0010.50.8111037037
    6
    2024-08-28 00:00:00.00029698670.0112173263.820.0058216530850.0010.10.8140837209
    7
    2024-07-11 00:00:00.00080942651222.5854923866724.080.03726031610.00154.613530158
    8
    2024-09-01 00:00:00.000281466132.1392326969.140.011578969510.0010.52.002109091
    9
    2024-07-13 00:00:00.0009925184463.77261459654.640.01156886350.0010.512.520503261
    10
    2024-07-31 00:00:00.000589516264.9344213773.560.0027146488290.0010.050.4008296296
    11
    2024-09-19 00:00:00.0002069103129.2554313499.740.015546716380.0010.51.254906796
    12
    2024-09-12 00:00:00.000247086101.148237485.840.010143200960.00030.51.176139535
    13
    2024-03-06 00:00:00.0001364189826.6083075353.720.14893837840.00144.373587302
    14
    2024-08-30 00:00:00.000369910281.6364205985.640.0054752783370.0010.10.8003568627
    15
    2024-03-09 00:00:00.0001460199702.87142755232.280.11888893780.00113.532017085
    16
    2024-06-11 00:00:00.000102884066295.74081040631.920.0067508400290.0011.20.07273507132
    17
    2024-05-10 00:00:00.000122481120723.1062155011.620.014472540230.00110.6456303571
    18
    2024-07-22 00:00:00.0004711154181.309632691.660.0095165336970.0010.331.177331169
    19
    2024-08-18 00:00:00.00029037256.1554146873.180.0047946892080.0010.10.7799361111
    20
    2024-07-26 00:00:00.000186910330.27597900.940.004004629630.0010.10.2939320388
    ...
    212
    19KB
    62s