USER | ZNS balance | |
---|---|---|
1 | 0x88a0d576608258fc44ad2b6d755f08a67335efd7 | 118 |
2 | 0x4b1a0c23014e322251eeb50a796ace410bb00515 | 32 |
3 | 0x5c5d65063d7a19e3b3e5e6480924d3e9b804cc61 | 25 |
4 | 0x800a89b16396306157093180e8a307172f798a49 | 23 |
5 | 0xdaa6c40762712a106c02f9656d898138379cd30e | 23 |
6 | 0x9d2e90b284f6200c0e2841d62c35e28b60763dd5 | 20 |
7 | 0x087994c587a6a3a95ddd0c750cc9f96c18d0c617 | 15 |
8 | 0xbd871a0119e63c410506bed673d3ee68054b869a | 13 |
9 | 0xa53deb219c657bb1e10d3c7ceeee3a4111b51117 | 9 |
10 | 0x47919b83b6855b1c722f23974daef320bd0c3384 | 9 |
11 | 0x000c53d649dce42e69c27167b72d5e0c65b5d9c1 | 8 |
12 | 0xffece259a039f51ba3edf408fbd9ee7c169ed89a | 7 |
13 | 0x8d9871a0ccc331353a8d919a441d96a73281c7c5 | 6 |
14 | 0xeb0e6ecd0e78b0a84ecd9663a041f453c454a99d | 6 |
15 | 0x4430f1337fa89f5c5dd49312a03766691d627084 | 6 |
16 | 0xcfedd5b3aae8a2c0eb6cd94d547d971092c95029 | 6 |
17 | 0xfd1efac4c7e875e6c293b479188ccac4885003f4 | 5 |
18 | 0x094f4eb0c78eb2bec0f041f4c608979aec391989 | 5 |
19 | 0x8f5457f7776191bc2381e6ce63c10c9a87c61abf | 5 |
20 | 0x65995a351356a2d1fe0d0bc21e1f8ad90ec3e67e | 5 |
Hessishzink - hld 100
Updated 9 days ago
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
›
⌄
with all_actions as (SELECT BLOCK_TIMESTAMP,
'0x'||SUBSTRING(TOPICS[2], 27) as receiver,
ethereum.public.udf_hex_to_int(topics[3]) as token_id ,TX_HASH
from ink.core.fact_event_logs
WHERE
CONTRACT_ADDRESS = lower('0xFb2Cd41a8aeC89EFBb19575C6c48d872cE97A0A5') and
TOPICS[0] = '0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef'
and TX_SUCCEEDED = 'TRUE'
),
owenrs as (select token_id, receiver
from (
select distinct token_id, receiver,
row_number() over (partition by token_id order by BLOCK_TIMESTAMP desc) as rn
from all_actions
) as ranked_actions
where rn = 1)
select distinct receiver as user ,count(distinct token_id) as "ZNS balance"
from owenrs
group by 1
order by 2 desc
limit 100
Last run: 9 days ago
100
5KB
36s