yolo_gamesYOLOGames Daily Transactions
    Updated 2025-02-17
    SELECT day, COUNT(DISTINCT TX_HASH) as "Daily Transactions" FROM (
    SELECT date_trunc('day', a.block_timestamp) as day, a.TX_HASH FROM blast.core.fact_event_logs a
    INNER JOIN blast.core.fact_transactions b ON a.TX_HASH = b.TX_HASH
    WHERE a.contract_address = LOWER('0x0000000000E14E87e5c80A8A90817308fFF715d3') -- yolo
    UNION ALL
    SELECT date_trunc('day', a.block_timestamp) as day, a.TX_HASH FROM blast.core.fact_event_logs a
    INNER JOIN blast.core.fact_transactions b ON a.TX_HASH = b.TX_HASH
    WHERE contract_address = LOWER('0xdCCD7560C173eC7043Ac15E52608e818746e4992') -- yoloplay
    UNION ALL
    SELECT date_trunc('day', a.block_timestamp) as day, a.TX_HASH FROM blast.core.fact_event_logs a
    INNER JOIN blast.core.fact_transactions b ON a.TX_HASH = b.TX_HASH
    WHERE contract_address = LOWER('0x00000000007FE8d7666BB0da2A5D13f72b8dABaB') -- transfermanager
    UNION ALL
    SELECT date_trunc('day', a.block_timestamp) as day, a.TX_HASH FROM blast.core.fact_event_logs a
    INNER JOIN blast.core.fact_transactions b ON a.TX_HASH = b.TX_HASH
    WHERE contract_address = LOWER('0x693B37a9859Ce9465Fb2aAdeB03811a26A0c37C0') -- eth mod
    UNION ALL
    SELECT date_trunc('day', a.block_timestamp) as day, a.TX_HASH FROM blast.core.fact_event_logs a
    INNER JOIN blast.core.fact_transactions b ON a.TX_HASH = b.TX_HASH
    WHERE contract_address = LOWER('0xA56A95F41e64Bc76CDE7423aB2A2ee1763bD8Bcc') -- btc mod
    UNION ALL
    SELECT date_trunc('day', a.block_timestamp) as day, a.TX_HASH FROM blast.core.fact_event_logs a
    INNER JOIN blast.core.fact_transactions b ON a.TX_HASH = b.TX_HASH
    WHERE contract_address = LOWER('0x63D758C3AD4c1BDF3279A3f8fEA04471462952E1') -- boost
    UNION ALL
    SELECT date_trunc('day', a.block_timestamp) as day, a.TX_HASH FROM blast.core.fact_event_logs a
    INNER JOIN blast.core.fact_transactions b ON a.TX_HASH = b.TX_HASH
    WHERE contract_address = LOWER('0x0000000000acc01064aa5280da3f1c41a35827bc') -- ptb
    UNION ALL
    SELECT date_trunc('day', a.block_timestamp) as day, a.TX_HASH FROM blast.core.fact_event_logs a
    INNER JOIN blast.core.fact_transactions b ON a.TX_HASH = b.TX_HASH
    WHERE a.contract_address = LOWER('0x28EF3eaE1AbB6D6e22e9bFc7a0944f707E4726b3') -- yololimited
    )
    GROUP BY 1
    ORDER BY 1 ASC
    Last run: 2 months ago
    DAY
    Daily Transactions
    1
    2024-02-28 00:00:00.0001
    2
    2024-02-29 00:00:00.0009608
    3
    2024-03-01 00:00:00.00090395
    4
    2024-03-02 00:00:00.00079659
    5
    2024-03-03 00:00:00.00072000
    6
    2024-03-04 00:00:00.00067750
    7
    2024-03-05 00:00:00.00069953
    8
    2024-03-06 00:00:00.00051686
    9
    2024-03-07 00:00:00.00048765
    10
    2024-03-08 00:00:00.00044519
    11
    2024-03-09 00:00:00.00030853
    12
    2024-03-10 00:00:00.00030232
    13
    2024-03-11 00:00:00.00030473
    14
    2024-03-12 00:00:00.00031423
    15
    2024-03-13 00:00:00.00022545
    16
    2024-03-14 00:00:00.00029068
    17
    2024-03-15 00:00:00.00035214
    18
    2024-03-16 00:00:00.00024316
    19
    2024-03-17 00:00:00.00025740
    20
    2024-03-18 00:00:00.00027841
    ...
    356
    12KB
    63s