-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(dbt): adds source and staging models for arb1 events #2197
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
f13ccdb
feat(dbt): adds source and staging models for arb1 events
ccerv1 b282572
fix: update int_arbitrum_one_traces
ccerv1 2c9309b
Update int_arbitrum_one_transactions.sql
ccerv1 1f4cda6
Adds gas_price conversion
ravenac95 f017fc0
make sure the playgrounds work
ravenac95 e81c6c0
Reduce the need for 80 char line length
ravenac95 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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) }} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ravenac95 check for gas logic