BUYER_COUNT | TX_COUNT | COLLECTION_COUNT | TOTAL_VOL | AVG_TX_VOL | |
---|---|---|---|---|---|
1 | 340 | 1842 | 192 | 89760.070693 | 43.849570441 |
elsinadaily activity
Updated 2025-01-23
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
SELECT
count(DISTINCT buyer_address) as buyer_count,
count(DISTINCT tx_id) as tx_count,
count(distinct project_name) as collection_count,
sum(amount) as total_vol,
avg(amount) as avg_tx_vol,
from
sei.nft.ez_nft_sales
where
block_timestamp::date >= '2025-01-01' and platform_name = 'pallet'
Last run: 3 months ago
1
42B
3s