MLDZMNLeaderboard of Blast the Balloon based on ball points
Updated 2025-01-04
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with tb1 as (select
ORIGIN_FROM_ADDRESS as player,
min(BLOCK_TIMESTAMP) as first_spin,
count(distinct tx_hash) as no_deposits,
sum(AMOUNT) as vol_ETH,
sum(AMOUNT_USD) as vol_usd
from blast.core.ez_native_transfers
where ORIGIN_TO_ADDRESS = '0x965d03b148e82e8c99049bfcdc85ee360e0315b1'
and IDENTIFIER = 'CALL_ORIGIN'
group by 1
),
tb2 as (select
ORIGIN_FROM_ADDRESS as player,
count(distinct tx_hash) as no_claims,
sum(AMOUNT) as prize_ETH,
sum(AMOUNT_USD) as prize_usd
from blast.core.ez_native_transfers
--where tx_hash = '0x5a8befcd543ae311828eaf108dd008a1d02e549c1f29517e3fd5335473cedf65'
where ORIGIN_TO_ADDRESS = '0x965d03b148e82e8c99049bfcdc85ee360e0315b1'
and IDENTIFIER = 'CALL_0_0'
and ORIGIN_TO_ADDRESS = FROM_ADDRESS
group by 1
),
balls as (with raw as (select
d.value as raw_date
from(
select livequery.live.udf_api (
'https://api.blastballoon.xyz/v1/user/all?limit=5000&page=1&key=E5Qah2lniqErFXxhEk0ELRkpWziUwd6EcGjY1tJ4evQ%3D'
) as data
) responses join lateral flatten (input => responses.data:data) d
Auto-refreshes every 12 hours
QueryRunArchived: QueryRun has been archived