geminilightnft-mints
Updated 2023-04-10
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
›
⌄
SELECT
a.block_timestamp,
a.block_number,
a.tx_hash,
a.event_type,
a.project_name,
a.nft_address,
a.tokenid,
a.erc1155_value,
a.nft_from_address,
a.nft_to_address,
a.mint_price_eth,
a.mint_price_usd,
a.nft_count,
a.amount,
a.amount_usd,
a.mint_price_tokens,
a.mint_price_tokens_usd,
a.mint_token_symbol,
a.mint_token_address,
a.tx_fee,
a.ingested_at
FROM
ethereum.core.ez_nft_mints a
WHERE
a.nft_address = lower({{address}})
AND a.block_timestamp > '2000-01-01'
AND a.block_timestamp < '2023-04-10'
Run a query to Download Data