winnie-fsThe Heist JSON
    Updated 2023-11-06
    with helius_call as (
    select
    1 as page_start,
    helius_das.get_assets_by_group(
    'mainnet',
    -- the network, 'mainnet' or 'devnet'
    { 'groupKey': 'collection',
    'groupValue': '6d9pvGuM6iG9GVuxRzSVHEQCdy44arm6oyqu6aUzrzLo',
    'page': page_start,
    -- Starts at 1
    'limit': 1000,
    'sortBy': { 'sortBy': 'created',
    'sortDirection': 'asc' } }
    ) as response
    union
    all
    select
    page_start + 1 as page_end,
    helius_das.get_assets_by_group(
    'mainnet',
    -- the network, 'mainnet' or 'devnet'
    { 'groupKey': 'collection',
    'groupValue': '6d9pvGuM6iG9GVuxRzSVHEQCdy44arm6oyqu6aUzrzLo',
    'page': page_end,
    -- Starts at 1
    'limit': 1000,
    'sortBy': { 'sortBy': 'created',
    'sortDirection': 'asc' } }
    ) as response
    from
    helius_call
    where
    page_end <= 33
    ),
    heist_mints as (
    select
    Run a query to Download Data