-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(dbt): adds source and staging models for arb1 events (#2197)
* feat(dbt): adds source and staging models for arb1 events * fix: update int_arbitrum_one_traces * Update int_arbitrum_one_transactions.sql * Adds gas_price conversion * make sure the playgrounds work * Reduce the need for 80 char line length --------- Co-authored-by: Reuven V. Gonzales <[email protected]>
- Loading branch information
Showing
16 changed files
with
188 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
sources: | ||
- name: arbitrum_one | ||
database: opensource-observer | ||
schema: arbitrum_one | ||
tables: | ||
- name: transactions | ||
identifier: arbitrum_transactions | ||
|
||
- name: blocks | ||
identifier: arbitrum_blocks | ||
|
||
- name: traces | ||
identifier: arbitrum_traces |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
warehouse/dbt/models/intermediate/blockchain_artifacts/int_proxies.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
...dbt/models/intermediate/blockchain_events/int_arbitrum_one_contract_invocation_events.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{{ | ||
config( | ||
materialized='incremental', | ||
partition_by={ | ||
"field": "time", | ||
"data_type": "timestamp", | ||
"granularity": "day", | ||
}, | ||
unique_id="id", | ||
on_schema_change="append_new_columns", | ||
incremental_strategy="insert_overwrite" | ||
) | ||
}} | ||
{% if is_incremental() %} | ||
{% set start = "TIMESTAMP_SUB(_dbt_max_partition, INTERVAL 1 DAY)" %} | ||
{% else %} | ||
{% set start = "'1970-01-01'" %} | ||
{% endif %} | ||
{{ contract_invocation_events_with_l1("arbitrum_one", start) }} |
14 changes: 14 additions & 0 deletions
14
warehouse/dbt/models/intermediate/blockchain_events/int_arbitrum_one_traces.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{{ | ||
config( | ||
materialized='incremental', | ||
partition_by={ | ||
"field": "block_timestamp", | ||
"data_type": "timestamp", | ||
"granularity": "day", | ||
}, | ||
unique_id="id", | ||
on_schema_change="append_new_columns", | ||
incremental_strategy="insert_overwrite" | ||
) | ||
}} | ||
{{ filtered_blockchain_events("ARBITRUM_ONE", "arbitrum_one", "traces") }} |
82 changes: 82 additions & 0 deletions
82
warehouse/dbt/models/intermediate/blockchain_events/int_arbitrum_one_transactions.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
{{ | ||
config( | ||
materialized='incremental', | ||
partition_by={ | ||
"field": "block_timestamp", | ||
"data_type": "timestamp", | ||
"granularity": "day", | ||
}, | ||
unique_id="id", | ||
on_schema_change="append_new_columns", | ||
incremental_strategy="insert_overwrite", | ||
sql_header=''' | ||
CREATE TEMP FUNCTION from_string_to_double(input STRING) | ||
RETURNS FLOAT64 | ||
LANGUAGE js AS r""" | ||
yourNumber = BigInt(input, 10); | ||
return parseFloat(yourNumber); | ||
"""; | ||
''' | ||
) | ||
}} | ||
|
||
with filtered_transactions as ( | ||
{{ | ||
filtered_blockchain_events( | ||
"ARBITRUM_ONE", | ||
"arbitrum_one", | ||
"transactions" | ||
) | ||
}} | ||
) | ||
|
||
select | ||
id, | ||
`hash`, | ||
nonce, | ||
block_hash, | ||
block_number, | ||
transaction_index, | ||
from_address, | ||
to_address, | ||
`value`, | ||
gas, | ||
{% if target.name == 'production' %} | ||
{# | ||
We need to convert the arbitrum gas_price from bytes to a double. We | ||
intentionally lose some precision by doing this. The gas_price is | ||
actually a utf-8 string. So we convert this to a string which is a | ||
string of the integer. This transformation should only happen on | ||
production and not on the playgrounds as the playgrounds source their | ||
data originally from production | ||
#} | ||
from_string_to_double(CAST(gas_price AS STRING FORMAT 'UTF-8')) as gas_price, | ||
{% else %} | ||
gas_price, | ||
{% endif %} | ||
input, | ||
max_fee_per_gas, | ||
max_priority_fee_per_gas, | ||
transaction_type, | ||
receipt_cumulative_gas_used, | ||
receipt_gas_used, | ||
receipt_contract_address, | ||
receipt_status, | ||
receipt_effective_gas_price, | ||
receipt_root_hash, | ||
receipt_l1_fee, | ||
receipt_l1_gas_used, | ||
receipt_l1_gas_price, | ||
receipt_l1_fee_scalar, | ||
receipt_l1_blob_base_fee, | ||
receipt_l1_blob_base_fee_scalar, | ||
blob_versioned_hashes, | ||
max_fee_per_blob_gas, | ||
receipt_l1_block_number, | ||
receipt_l1_base_fee_scalar, | ||
gateway_fee, | ||
fee_currency, | ||
gateway_fee_recipient, | ||
ingestion_time, | ||
block_timestamp | ||
from filtered_transactions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
warehouse/dbt/models/staging/arbitrum_one/stg_arbitrum_one__deployers.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{{ | ||
config( | ||
materialized='incremental', | ||
partition_by={ | ||
"field": "block_timestamp", | ||
"data_type": "timestamp", | ||
"granularity": "day", | ||
}, | ||
unique_id="transaction_hash", | ||
on_schema_change="append_new_columns", | ||
incremental_strategy="insert_overwrite" | ||
) | ||
}} | ||
{{ transactions_with_receipts_deployers("arbitrum_one") }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
warehouse/dbt/models/staging/arbitrum_one/stg_arbitrum_one__proxies.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{{ | ||
config( | ||
materialized='incremental', | ||
partition_by={ | ||
"field": "block_timestamp", | ||
"data_type": "timestamp", | ||
"granularity": "day", | ||
}, | ||
unique_key="id", | ||
on_schema_change="append_new_columns", | ||
incremental_strategy="insert_overwrite" | ||
) | ||
}} | ||
{% if is_incremental() %} | ||
{% set start = "TIMESTAMP_SUB(_dbt_max_partition, INTERVAL 1 DAY)" %} | ||
{% else %} | ||
{% set start = "'1970-01-01'" %} | ||
{% endif %} | ||
{{ known_proxies("arbitrum_one", start) }} |