freemartianBrush Holders
Updated 2023-08-25
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
29
30
31
32
33
34
35
36
›
⌄
with mints as (
SELECT
nft_to_address as Minter,
count(tx_hash) as brush_mint_count
from base.core.ez_nft_transfers
where event_type = 'mint'
and nft_address = '0xd68fe5b53e7e1abeb5a4d0a6660667791f39263a'
group by Minter),
buys as (
select
buyer_address,
count(tx_hash) as brush_buy_count
from base.nft.ez_nft_sales
where nft_address = '0xd68fe5b53e7e1abeb5a4d0a6660667791f39263a'
group by 1
),
sells as (
select
seller_address,
count(tx_hash) as brush_sell_count
from base.nft.ez_nft_sales
where nft_address = '0xd68fe5b53e7e1abeb5a4d0a6660667791f39263a'
group by 1
),
transfers_out as (
select
nft_from_address as sender,
count(tx_hash) as brush_transferred_count
from base.core.ez_nft_transfers
where nft_address = '0xd68fe5b53e7e1abeb5a4d0a6660667791f39263a'
and nft_from_address != '0x0000000000000000000000000000000000000000'
group by 1
),
Run a query to Download Data