saadiqDown Bad Proof Distribution
Updated 2023-02-22
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
all_txns AS (
SELECT
*,
row_number() over (
PARTITION BY
nft_address,
tokenid
ORDER BY
block_timestamp DESC,
price DESC
) AS row_number
FROM
(
SELECT
project_name,
nft_address,
block_timestamp,
event_type,
tokenid,
mint_price_eth AS price,
mint_price_usd AS price_usd,
tx_hash,
nft_from_address AS from_address,
nft_to_address AS to_address
FROM
ethereum.core.ez_nft_mints
WHERE
nft_address = lower('0x08d7c0242953446436f34b4c78fe9da38c73668d')
UNION
SELECT
project_name,
nft_address,
block_timestamp,
event_type,
tokenid,
Run a query to Download Data