SocioAnalyticaGas Used
Updated 2024-11-17
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
30
31
32
33
34
35
36
›
⌄
with bridges as (SELECT *
FROM crosschain.defi.ez_bridge_activity
WHERE destination_chain = 'near'
AND block_timestamp >='2024-07-01'
),
bridges_tx_fee as (
SELECT tx_hash, transaction_fee as tx_fee, gas_used
FROM near.core.fact_transactions
WHERE block_timestamp >='2024-07-01'
UNION
SELECT tx_hash, tx_fee,gas_used
FROM ethereum.core.fact_transactions
WHERE block_timestamp >='2024-07-01'
UNION
SELECT tx_hash, tx_fee,gas_used
FROM avalanche.core.fact_transactions
WHERE block_timestamp >='2024-07-01'
UNION
SELECT tx_hash, tx_fee,gas_used
FROM bsc.core.fact_transactions
WHERE block_timestamp >='2024-07-01'
UNION
SELECT tx_hash, tx_fee,gas_used
FROM base.core.fact_transactions
WHERE block_timestamp >='2024-07-01'
UNION
SELECT tx_hash, 0 as tx_fee,gas_used
FROM aptos.core.fact_transactions
WHERE block_timestamp >='2024-07-01'
UNION
SELECT tx_hash, tx_fee,gas_used
FROM arbitrum.core.fact_transactions
WHERE block_timestamp >='2024-07-01'
UNION
SELECT tx_hash, tx_fee,gas_used
FROM optimism.core.fact_transactions
QueryRunArchived: QueryRun has been archived