permaryFerdy flip analysis
    Updated 2025-02-26
    with
    avax_price as
    (
    select
    date_trunc('day', hour) as day,
    avg(price) as price
    from avalanche.price.ez_prices_hourly a
    where symbol = 'WAVAX'
    group by 1
    order by 1 desc
    )
    select
    date_trunc('day', a.block_timestamp) as "date",
    count(distinct a.origin_from_address) as "player",
    count(distinct a.tx_hash) as "play count",
    sum(a.amount * b.price) as "wagered",
    case when lower(a.origin_to_address) = lower('0x7D812a58DD63Eb3A7b3b84f9290BD84dB148893F') then 'Blub Flip'
    when lower(a.origin_to_address) = lower('0x08E1e965b485Ed4f8F4E4b32bc65bBbE5F302D72') then 'Range and Limbo'
    when lower(a.origin_to_address) = lower('0x5035fC7a8b92C21e5146a4F00ccE543Df4B35A3e') then 'RPS'
    when lower(a.origin_to_address) = lower('0x0382DF14B587c51052FFcCA53DB8697849Ca1B2e') then 'Blub Plinko'
    when lower(a.origin_to_address) = lower('0x50e50B4076817b10C341CaB216C28012069eC3Ed') then 'Dice'
    when lower(a.origin_to_address) = lower('0x8425E43C147329BF5B12b17Aba180bb5834e3Bbf') then 'Keno'
    when lower(a.origin_to_address) = lower('0x02C1eDfbA909Dafd1ECf6aA9182FC69ee4c10e11') then 'Roulette'
    when lower(a.origin_to_address) = lower('0x8a06D417df79e271B99C42dfB55158de3594f963') then 'PVP Flip'
    when lower(a.origin_to_address) = lower('0x3d74Cbac40E2F23a795C665056613e3f3a83d160') then 'Blub Wheel'
    end as "game"
    from avalanche.core.ez_native_transfers a
    join avax_price b on date_trunc('day', a.block_timestamp) = b.day
    where lower(a.origin_to_address) in (
    lower('0x7D812a58DD63Eb3A7b3b84f9290BD84dB148893F'),
    lower('0x08E1e965b485Ed4f8F4E4b32bc65bBbE5F302D72'),
    lower('0x5035fC7a8b92C21e5146a4F00ccE543Df4B35A3e'),
    lower('0x0382DF14B587c51052FFcCA53DB8697849Ca1B2e'),
    lower('0x50e50B4076817b10C341CaB216C28012069eC3Ed'),
    lower('0x8425E43C147329BF5B12b17Aba180bb5834e3Bbf'),
    lower('0x02C1eDfbA909Dafd1ECf6aA9182FC69ee4c10e11'),
    Last run: about 2 months ago
    date
    player
    play count
    wagered
    game
    1
    2025-02-25 00:00:00.000612369.648825PVP Flip
    2
    2025-02-25 00:00:00.000841159462154.771143813Blub Plinko
    3
    2025-02-25 00:00:00.00064685568784.208932875Blub Wheel
    4
    2025-02-25 00:00:00.0008645171287075.36234225Blub Flip
    5
    2025-02-25 00:00:00.000387235352.047409375Dice
    6
    2025-02-25 00:00:00.000176010015.0789375Roulette
    7
    2025-02-25 00:00:00.00071067195.16500625Keno
    8
    2025-02-25 00:00:00.00022483109705.866967938Range and Limbo
    9
    2025-02-25 00:00:00.0003393.2923225RPS
    10
    2025-02-24 00:00:00.00048497.8409625RPS
    11
    2025-02-24 00:00:00.00022299173058.267090188Range and Limbo
    12
    2025-02-24 00:00:00.0007172872.972101563Dice
    13
    2025-02-24 00:00:00.000481099.96425PVP Flip
    14
    2025-02-24 00:00:00.00022623537.14694375Roulette
    15
    2025-02-24 00:00:00.00085692218651.732873438Blub Wheel
    16
    2025-02-24 00:00:00.0001051838618406.10591025Blub Plinko
    17
    2025-02-24 00:00:00.0008645632.049095313Keno
    18
    2025-02-24 00:00:00.000922888503305.552752187Blub Flip
    19
    2025-02-23 00:00:00.0008281359.264579167Keno
    20
    2025-02-23 00:00:00.0001120140.322670833RPS
    ...
    1035
    58KB
    6s