freemartianNouns Workspace
Updated 2022-07-06
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
›
⌄
SELECT
date_trunc(DAY, BLOCK_TIMESTAMP::DATE) AS DAY,
COUNT(TOKENID) AS tokens,
sum(tokens) over (order by DAY) as cum_mint
FROM ethereum.core.ez_nft_mints
WHERE NFT_ADDRESS = LOWER('0x9C8fF314C9Bc7F6e59A9d9225Fb22946427eDC03')
GROUP BY 1
select * from ethereum.core.fact_event_logs
where tx_hash = '0xa4450914275a48b52670176ccdcfa9e9db895504052db72641bc57300533c13a'
select
tokenid
from ethereum.core.ez_nft_transfers
where nft_address = '0x9c8ff314c9bc7f6e59a9d9225fb22946427edc03'
and block_timestamp = '2022-02-08'
select max(tokenid) from ethereum.core.ez_nft_transfers
where nft_address = '0x9c8ff314c9bc7f6e59a9d9225fb22946427edc03'
and nft_from_address = '0x0000000000000000000000000000000000000000'
where block_timestamp >
Run a query to Download Data