ahkek76NFT minted
Updated 2024-10-16
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 aptos_mint as (
select dt, count(distinct ez_nft_mints_id) as nft_minted,
count(distinct nft_to_address) as minter, sum(total_price_usd) as mint_volume
from (
select date_trunc('month', block_timestamp) as dt,
tx_hash, nft_to_address, nft_address, project_name, nft_count, total_price,
total_price_usd, ez_nft_mints_id
from aptos.nft.ez_nft_mints
where project_name not like '%swap%'
)
group by 1
),
arbitrum_mint as (
select dt, count(distinct ez_nft_transfers_id) as nft_minted,
count(distinct nft_to_address) as minter
from (
select date_trunc('month', block_timestamp) as dt,
tx_hash, nft_to_address, project_name, tokenid, ez_nft_transfers_id
from arbitrum.nft.ez_nft_transfers
where nft_from_address = lower('0x0000000000000000000000000000000000000000')
and project_name not like '%swap%'
)
group by 1
),
avax_mint as (
select dt, count(distinct ez_nft_transfers_id) as nft_minted,
count(distinct nft_to_address) as minter
from (
select date_trunc('month', block_timestamp) as dt,
tx_hash, nft_to_address, project_name, tokenid, ez_nft_transfers_id
from avalanche.nft.ez_nft_transfers
where nft_from_address = lower('0x0000000000000000000000000000000000000000')
and project_name not like '%swap%'
)
QueryRunArchived: QueryRun has been archived