banterlytics2022-11-20 11:04 AM
Updated 2022-11-23
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 = '0x57a204aa1042f6e66dd7730813f4024114d74f37'
and tokenid <= 1000
),
transfers_date as (
select
distinct block_timestamp::date as day
from ethereum.core.ez_nft_transfers
where nft_address = '0x57a204aa1042f6e66dd7730813f4024114d74f37'
),
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 = '0x57a204aa1042f6e66dd7730813f4024114d74f37'
),
minters as (
select
tokenid,
nft_to_address as minters_address
from ethereum.core.ez_nft_mints
where nft_address = '0x57a204aa1042f6e66dd7730813f4024114d74f37'
),
raw_transfers as (
select
block_timestamp::date as day,
Run a query to Download Data