We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2213c5 commit 0815b75Copy full SHA for 0815b75
warehouse/oso_sqlmesh/models/staging/superchain/stg_superchain__transactions.sql
@@ -35,11 +35,15 @@ SELECT
35
to_address,
36
gas AS gas_used,
37
gas_price,
38
+ receipt_gas_used,
39
+ receipt_effective_gas_price,
40
+ receipt_l1_fee,
41
+ receipt_status,
42
value_lossless,
- @chain_name(chain) AS chain
43
+ @chain_name(chain) AS chain,
44
+ transaction_type
45
FROM @oso_source('bigquery.optimism_superchain_raw_onchain_data.transactions')
46
WHERE
47
network = 'mainnet'
- AND receipt_status = 1
48
AND gas > 0
49
AND /* Bigquery requires we specify partitions to filter for this data source */ dt BETWEEN @start_dt AND @end_dt
0 commit comments