CartanGroupTotal Royalty Paying Txns
Updated 2024-01-05
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
-- forked from 62e1272d-91b7-4b49-bd2e-c207dbda517e
select
date_trunc('month', block_timestamp) as time,
platform_name,
sum(CASE WHEN creator_fee_usd > 0 THEN 1 ELSE 0 END) AS n_tx_royalty_payment,
sum(creator_fee_usd) as royalty_fees,
sum(platform_fee_usd) as platform_fees
from ethereum.nft.ez_nft_sales
where currency_symbol in ('ETH','WETH')
and block_timestamp > '2022-10-01'
and price_usd < 1000000
and platform_name in ('blur','opensea')
group by 1,2
QueryRunArchived: QueryRun has been archived