StevenJingfeng commited on
Commit
60c9a10
·
verified ·
1 Parent(s): af9fbf2

Upload DataQuery.txt

Browse files
Files changed (1) hide show
  1. data/DataQuery.txt +14 -0
data/DataQuery.txt ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ SELECT
2
+ timestamp,
3
+ number,
4
+ gas_used,
5
+ gas_limit,
6
+ base_fee_per_gas
7
+ FROM
8
+ `bigquery-public-data.ethereum_blockchain.live_blocks`
9
+
10
+ WHERE
11
+ timestamp BETWEEN TIMESTAMP("2023-06-01") AND TIMESTAMP("2023-07-01")
12
+ ORDER BY
13
+ timestamp ASC
14
+