Ericmoore_11emotional-scarlet
Updated 2024-12-05
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
SELECT
chain,
AVG(gas_used) AS avg_gas,
SUM(gas_used) AS total_gas
FROM (
SELECT
'Aptos' AS chain,
gas_used
FROM
aptos.core.fact_transactions
UNION ALL
SELECT
'Ethereum' AS chain,
gas_used
FROM
ethereum.core.fact_transactions
) sub
GROUP BY
chain;
QueryRunArchived: QueryRun has been archived