Land ID | POINTS | |
---|---|---|
1 | #91 | 1567067 |
2 | #405 | 1141804 |
3 | #397 | 976122 |
4 | #37 | 867198 |
5 | #339 | 632961 |
6 | #512 | 599629 |
7 | #349 | 488166 |
8 | #406 | 398004 |
9 | #54 | 189856 |
10 | #333 | 110853 |
11 | #291 | 104580 |
12 | #198 | 102762 |
13 | #213 | 91895 |
14 | #69 | 75014 |
15 | #308 | 70855 |
16 | #204 | 65349 |
17 | #207 | 58802 |
18 | #433 | 58534 |
19 | #420 | 50434 |
20 | #156 | 43409 |
sssstatisticLand Activity Points - All Time
Updated 2024-11-27
999
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
›
⌄
-- user land info
with land AS (
select
decoded_log ['account'] AS address,
decoded_log ['landId'] AS landId,
block_number,
block_timestamp
from
blast.core.ez_decoded_event_logs
where
contract_address = '0xc48f6213a1a4d3ead79db812c2b91817980532c3'
and event_name = 'NewAccount'
UNION
ALL
SELECT
decoded_log ['account'] AS address,
decoded_log ['toLandId'] AS landId,
block_number,
block_timestamp
from
blast.core.ez_decoded_event_logs el
where
contract_address = '0xc48f6213a1a4d3ead79db812c2b91817980532c3'
and event_name in (
'TeleportToLand',
'KickPlayerOutOfLand'
)
),
tables AS (
-- Lucky Coin 500 points per 10 billion Interest
select
decoded_log ['tableId'] AS tableId,
max(decoded_log ['host']) AS host,
max(decoded_log ['player']) AS player,
max(decoded_log ['winner']) AS winner,
max(decoded_log ['cost'] / pow(10, 18)) AS cost,
Last run: 3 months ago
...
555
8KB
136s