freemartianTotal Blast NFT
Updated 2024-03-14
99
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
›
⌄
-- collection address: 0xbc9a332209555badccf2592ab97f5ce66be69c27
WITH mints AS (
SELECT
block_timestamp,
tx_hash,
from_address,
value,
(value/0.000777) AS number_of_mints,
tx_fee
FROM blast.core.fact_transactions
WHERE
to_address = '0xbc9a332209555badccf2592ab97f5ce66be69c27'
AND block_timestamp::date >= '2024-02-28'
)
SELECT
count(tx_hash) AS transactions,
count(DISTINCT from_address) AS users,
SUM(value) AS amount,
SUM(number_of_mints) AS number_of_mints,
SUM(tx_fee) AS fee
FROM mints
Auto-refreshes every 1 hour
QueryRunArchived: QueryRun has been archived