KARTODGas price for different blocks
Updated 2022-06-25
99
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
›
⌄
SELECT
'Optimism' AS "Block",
AVG(GAS_PRICE) AS "AVG gas price"
FROM optimism.core.fact_transactions
WHERE BLOCK_TIMESTAMP > '2022-06-10'
UNION ALL
SELECT
'Arbitrum' AS "Block",
AVG(GAS_PRICE) AS "AVG gas price"
FROM arbitrum.core.fact_transactions
WHERE BLOCK_TIMESTAMP > '2022-06-10'
UNION ALL
SELECT
'Avalanche' AS "Block",
AVG(GAS_PRICE) AS "AVG gas price"
FROM avalanche.core.fact_transactions
WHERE BLOCK_TIMESTAMP > '2022-06-10'
UNION ALL
SELECT
'Ethereum' AS "Block",
AVG(GAS_PRICE) AS "AVG gas price"
FROM ethereum.core.fact_transactions
WHERE BLOCK_TIMESTAMP > '2022-06-10'
Run a query to Download Data