Average transaction count per holder | Median transaction count per holder | |
---|---|---|
1 | 334.244959 | 31 |
BitmapPunksAverage transaction count per holder
Updated 2025-04-04
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
›
⌄
-- Define reusable address variables
WITH AddressData AS (
SELECT
'BitmapPunks' AS project_name,
LOWER('0xBBBB2D4d765c1e455E4896A64BA3883e914ABBBB') AS erc20_address,
LOWER('0xBBBBA1eE822c9B8fc134deA6aDfC26603a9cBBBB') AS nft_address
),
-- Process NFT ownership data
NFTData AS (
WITH OutNFTTransfers AS (
SELECT
tx_hash AS out_tx_hash,
nft_from_address AS sender,
tokenid,
block_timestamp AS out_timestamp,
nft_address
FROM
ethereum.nft.ez_nft_transfers
WHERE
nft_address IN (
SELECT
nft_address
FROM
AddressData
)
AND Block_Number >= 21530075
AND (tx_hash, tokenid, event_index) IN (
SELECT
tx_hash,
tokenid,
MAX(event_index) AS max_event_index
FROM
ethereum.nft.ez_nft_transfers
WHERE
nft_address IN (
SELECT
Last run: 23 days ago
1
17B
126s