zkpQuantum Leap NFT
    Updated 2023-09-10
    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