alitaslimiNFTs Minting Cost Overview
Updated 2023-06-30
999
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
------------------------------ 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