COLLECTION_NAME | TOTAL_NFTS | TRANSACTIONS | USERS | |
---|---|---|---|---|
1 | Honey Comb | 8239 | 3794 | 3408 |
2 | Honey Jar Gen1 | 2858 | 1699 | 1633 |
3 | Honey Jar Gen2 - Enigma Key | 2636 | 1702 | 1628 |
4 | Honey Jar Gen4 - Triskelion Key | 2566 | 1650 | 1584 |
5 | Honey Jar Gen5 - Hivelexicon Key | 2750 | 1761 | 1612 |
6 | Honey Jar Gen6 - Colony Key | 2501 | 1653 | 1561 |
freemartianTotal Datas
Updated 7 minutes ago
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
›
⌄
with
dune_data AS (
SELECT live.udf_api(
'https://api.dune.com/api/v1/query/4930489/results?api_key={dune_key}',
-- 'https://api.dune.com/api/v1/query/4930489/results?api_key={dune_key}', ''Mehdi's API
-- 'APIs'
'kianAPIs'
) AS response
),
flatten_dune_data AS (
SELECT * FROM dune_data, lateral FLATTEN (input => response:data:result:rows)
),
datas as (
-- ============ honey comb ============
-- Gateway: '0x33a76173680427CBa3ffC3A625B7bC43B08ce0c5'
-- nft address: '0xcb0477d1af5b8b05795d89d59f4667b59eae9244'
select
block_timestamp,
tx_hash,
contract_address,
origin_from_address as user,
contract_name,
utils.udf_hex_to_int(topic_3) as nft_id,
'Ethereum' as chain
from ethereum.core.ez_decoded_event_logs
where origin_to_address = '0x33a76173680427cba3ffc3a625b7bc43b08ce0c5'
and contract_address = '0xcb0477d1af5b8b05795d89d59f4667b59eae9244'
and event_name = 'Transfer'
and tx_succeeded and block_timestamp::date >= '2025-01-01'
-- ================================================
union all
Last run: 7 minutes agoAuto-refreshes every 1 hour
6
262B
175s