alitaslimiNFTs Minting Cost Overview
    Updated 2023-06-30
    with
    ------------------------------ Prices ------------------------------
    prices as (
    select
    hour::date as date,
    'AVAX' as symbol,
    avg(price) as price
    from
    avalanche.core.fact_hourly_token_prices
    where
    hour::date between (current_date - 30) and (current_date - 1)
    and symbol = 'WAVAX'
    group by
    date
    union
    select
    hour::date as date,
    'BNB' as symbol,
    avg(price) as price
    from
    bsc.core.fact_hourly_token_prices
    where
    hour::date between (current_date - 30) and (current_date - 1)
    and symbol = 'WBNB'
    group by
    date
    union
    select
    hour::date as date,
    'ETH' as symbol,
    avg(price) as price
    from
    ethereum.core.fact_hourly_token_prices
    where
    hour::date between (current_date - 30) and (current_date - 1)
    and symbol = 'WETH'
    Run a query to Download Data