COLLECTION | SALES | BUYERS | Avg Price (Sei) | Avg Price (USD) | |
---|---|---|---|---|---|
1 | Seiyans | 156 | 82 | 2606.1 | 1072.676597032 |
2 | Yaka Voyager | 105 | 58 | 1591.2 | 612.047860419 |
3 | RED PEPE | 67 | 23 | 999 | 401.726444709 |
4 | Fuckers | 44 | 32 | 904.74 | 384.222648427 |
5 | 234 | 129 | 831.3 | 356.606508191 | |
6 | BEEF | 11 | 9 | 691.5549 | 291.273126296 |
7 | The Seinos | 7 | 3 | 649 | 240.83330569 |
8 | The Farmors | 85 | 45 | 591.6 | 213.275675453 |
9 | Plunk | 48 | 12 | 540 | 208.73599314 |
10 | CAPPYS | 99 | 64 | 525 | 221.122562078 |
11 | Seipex Finance Founder | 1 | 1 | 505 | 202.420208923 |
12 | Seipal | 1 | 1 | 500 | 207.862975694 |
13 | The Colony | 78 | 48 | 438.6 | 200.410227981 |
14 | WeBump | 87 | 54 | 363 | 159.585882777 |
15 | ALIVE1111 | 44 | 19 | 338.64 | 139.832650823 |
hessTop Collections by Highest Sale Price (90D)
Updated 2024-12-06
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 pallet_EVM as (select a.block_timestamp::Date as date,
a.origin_from_address as buyer,
ifnull(c.sei_address,contract_address) as collection_address,
'0x' || substr(topics[1]::string, 25 ) as seller,
livequery.utils.udf_hex_to_int(topics[3]::string) as tokenid,
a.tx_hash,
value as price
from sei.core_evm.fact_event_logs a join sei.core_evm.fact_traces b on a.tx_hash = b.tx_hash
left outer join sei.core.dim_address_mapping c on a.contract_address = c.evm_address
where a.origin_to_address = '0x0000000000000000000000000000000000001002'
and topics[0] = '0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef'
and livequery.utils.udf_hex_to_int(topics[3]::string) is not null
and substr(topics[1]::string, 25 ) != '000000000000000000000000000000000000000000'
and livequery.utils.udf_hex_to_int(topics[3]::string) in (select token_id from sei.nft.ez_nft_sales)
and value != 0
and contract_address not in ('sei1u5y9zyskplm4a6y62sxdhftsat767l6hfmmjvm')
and a.block_timestamp::date >= CURRENT_DATE - INTERVAL '90 DAY'
and b.block_timestamp::date >= CURRENT_DATE - INTERVAL '90 DAY'
)
,
pallet as ( select block_timestamp::date as date,
tx_id,
seller_address as seller,
buyer_address as buyer,
amount as price,
amount_usd as price_usd,
nft_address as collection_address ,
project_name,
token_id
from sei.nft.ez_nft_sales
where tx_succeeded = 'TRUE'
and platform_name ilike '%pallet%'
and block_timestamp::date >= CURRENT_DATE - INTERVAL '90 DAY')
,
price_usd as (select date(recorded_hour) as date,
avg(price) as avg_price
Last run: 18 days ago
15
580B
116s