zkpQuantum Leap NFT
Updated 2023-09-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
›
⌄
with x as (
SELECT
inputs [0].value as account
from
external.tokenflow_starknet.decoded_traces
where
FUNCTION = 'mintPublic'
and CONTRACT = '0x00b719f69b00a008a797dc48585449730aa1c09901fdbac1bc94b3bdc287cf76'
LIMIT
5
), y as (
SELECT
*
FROM
external.tokenflow_starknet.decoded_transactions
where
CHAIN_ID = 'mainnet'
)
SELECT
account
from
x
INNER JOIN y ON x.account = y.contract
Run a query to Download Data