COLLECTION | CONTRACT_ADDRESS | TRANSACTIONS | BUYERS | TOTAL_AMOUNTS | |
---|---|---|---|---|---|
1 | Other Collections | 1571372 | 1170810 | 5531030.20764555 | |
2 | Skrumpets | 0xe8f0635591190fb626f9d13c49b60626561ed145 | 441 | 306 | 1840807.1 |
3 | Purple Frens | 0xc5c9425d733b9f769593bd2814b6301916f91271 | 1124 | 807 | 1371932.24922101 |
4 | Molandaks | 0x66e40f67afd710386379a6bb24d00308f81c183f | 7141 | 4467 | 1343649.22144958 |
5 | Nad Name Service | 0x3019bf1dfb84e5b46ca9d0eec37de08a59a41308 | 90664 | 51663 | 1203628.47775588 |
6 | Molandaks Mint Pass | 0x6341c537a6fc563029d8e8caa87da37f227358f4 | 212 | 191 | 1071130.1598999 |
7 | Spikes | 0x87e1f1824c9356733a25d6bed6b9c87a3b31e107 | 1443 | 925 | 727262.716332824 |
8 | Meowwnads | 0xa568cabe34c8ca0d2a8671009ae0f6486a314425 | 5821 | 3292 | 703251.275502945 |
9 | Lil Chogstars | 0x26c86f2835c114571df2b6ce9ba52296cc0fa6bb | 57 | 53 | 645789.90064594 |
10 | Monadverse: Chapter 2 | 0x3a9acc3be6e9678fa5d23810488c37a3192aaf75 | 30465 | 27382 | 596681.282058254 |
11 | Chogs Mystery Chest | 0xe6b5427b174344fd5cb1e3d5550306b0055473c6 | 215 | 177 | 592781.300655 |
12 | Sealuminati Testnetooor | 0x4870e911b1986c6822a171cdf91806c3d44ce235 | 6545 | 3711 | 495480.703410624 |
13 | The10kSquad | 0x3a9454c1b4c84d1861bb1209a647c834d137b442 | 5372 | 3218 | 471309.292006222 |
14 | Mecha Box Mint Pass | 0x3db6c11474893689cdb9d7cdedc251532cadf32b | 253 | 205 | 442183.301975 |
15 | Talentum Community Arts | 0x1af07e2367046c22bfe2b13c70b4a585cabe8875 | 6745 | 1106 | 418356.109333507 |
16 | LaMouchNFT | 0x800f8cacc990dda9f4b3f1386c84983ffb65ce94 | 5559 | 4112 | 414101.3241047 |
17 | r3tards | 0xed52e0d80f4e7b295df5e622b55eff22d262f6ed | 177 | 151 | 405922.507 |
18 | Monadverse: Chapter 8 | 0xce3be27bdf0922e92bbf3c2eefbb26487946ed4c | 27766 | 24242 | 397536.234987 |
19 | Chewy | 0x88bbcba96a52f310497774e7fd5ebadf0ece21fb | 869 | 565 | 392764.81323799 |
20 | Monadverse: Chapter 6 | 0x813fa68dd98f1e152f956ba004eb2413fcfa7a7d | 27693 | 25508 | 387863.037150231 |
freemartianTop 100 collections by Total Amount
Updated 1 hour 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 collections AS (
SELECT
value:address AS collection_address,
value:name AS collection_name
FROM (
SELECT livequery.live.udf_api('https://raw.githubusercontent.com/mehdimarjan/magiceden-on-monad/refs/heads/main/collections.json') AS response
), LATERAL FLATTEN (input => response:data)
),
transactions AS (
-- ======= single sale =======
select
el.block_timestamp,
el.tx_hash,
el.origin_from_address AS buyer,
tr.value AS amount,
count(*) as nft_count,
'MON' as token_paid,
1 as rank,
FROM monad.testnet.fact_event_logs el
LEFT JOIN monad.testnet.fact_transactions tr ON (el.tx_hash = tr.tx_hash)
WHERE
el.origin_to_address = '0x0000000000000068f116a894984e2db1123eb395'
AND el.contract_address <> '0x0000000000000068f116a894984e2db1123eb395'
AND el.origin_function_signature = '0xe7acab24'
AND el.tx_succeeded
-- AND el.block_timestamp::date > current_date - 30
group by
el.block_timestamp,
el.tx_hash,
el.origin_from_address,
tr.value
union all
-- ======= bulk sale (single buyer) =======
Last run: about 1 hour agoAuto-refreshes every 1 hour
...
101
8KB
886s