SocioAnalyticadays and hours with timezone
Updated 2023-11-16
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
›
⌄
-- forked from days and hours @ https://flipsidecrypto.xyz/edit/queries/617815ba-ebfa-4055-b735-2d8322e4d7f3
with txfee as (
SELECT *
FROM (
SELECT
'arbitrum' as blockchain,
'ETH' as symbol,
block_timestamp,
tx_hash,
tx_fee,
gas_used
FROM arbitrum.core.fact_transactions
UNION
SELECT
'avalanche' as blockchain,
'AVAX' as symbol,
block_timestamp,
tx_hash,
tx_fee,
gas_used
FROM avalanche.core.fact_transactions
UNION
SELECT
'base' as blockchain,
'ETH' as symbol,
block_timestamp,
tx_hash,
tx_fee,
gas_used
FROM base.core.fact_transactions
UNION
SELECT
'bsc' as blockchain,
'BNB' as symbol,
block_timestamp,
Run a query to Download Data