adambalah11
Updated 2023-05-03
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 mint_tokenid as (
select
tokenid
from ethereum.core.ez_nft_mints
where nft_address = '0x960b7a6bcd451c9968473f7bbfd9be826efd549a'
),
transfers_date as (
select
distinct block_timestamp::date as day
from ethereum.core.ez_nft_transfers
where nft_address = '0x960b7a6bcd451c9968473f7bbfd9be826efd549a'
),
mint_x_transfers_date as (
select* from mint_tokenid cross join transfers_date
),
mint_tx as (
select
tx_hash from ethereum.core.ez_nft_mints
where nft_address = '0x960b7a6bcd451c9968473f7bbfd9be826efd549a'
),
minters as (
select
tokenid,
nft_to_address as minters_address
from ethereum.core.ez_nft_mints
where nft_address = '0x960b7a6bcd451c9968473f7bbfd9be826efd549a'
),
raw_transfers as (
select
block_timestamp::date as day,
tokenid,
Run a query to Download Data