permarybnb vs avax
Updated 2024-11-02
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
›
⌄
SELECT
DATE_TRUNC('day', block_timestamp) AS day,
AVG(tx_fee) AS avg_transaction_fee,
'Avalanche' AS blockchain
FROM
avalanche.core.fact_transactions
where block_timestamp >= '2024-07-01'
GROUP BY
day
UNION ALL
SELECT
DATE_TRUNC('day', block_timestamp) AS day,
AVG(tx_fee) AS avg_transaction_fee,
'BNB Chain' AS blockchain
FROM
bsc.core.fact_transactions
where block_timestamp >= '2024-07-01'
GROUP BY
day
ORDER BY
day;
QueryRunArchived: QueryRun has been archived