-
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 1 commit
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
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
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("BASE", "base", "traces") }} | ||
ccerv1 marked this conversation as resolved.
Show resolved
Hide resolved
|
14 changes: 14 additions & 0 deletions
14
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,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", "base", "transactions") }} | ||
ccerv1 marked this conversation as resolved.
Show resolved
Hide resolved
|
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) }} |
Oops, something went wrong.
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