diff --git a/.github/workflows/dbt_run_heal_models.yml b/.github/workflows/dbt_run_heal_models.yml index 6eaf50f..dfbe8bb 100644 --- a/.github/workflows/dbt_run_heal_models.yml +++ b/.github/workflows/dbt_run_heal_models.yml @@ -15,5 +15,5 @@ jobs: with: command_name: Run Heal Models command: | - dbt run -m "$PROJECT_NAME,tag:heal" --vars '{"HEAL_MODEL":True}' + dbt run -m "$PROJECT_NAME,tag:heal" "fsc_evm,tag:heal" --vars '{"HEAL_MODEL":True}' secrets: inherit \ No newline at end of file diff --git a/.github/workflows/dbt_run_scheduled_main.yml b/.github/workflows/dbt_run_scheduled_main.yml index 56cca41..496fc3f 100644 --- a/.github/workflows/dbt_run_scheduled_main.yml +++ b/.github/workflows/dbt_run_scheduled_main.yml @@ -15,5 +15,5 @@ jobs: with: command_name: Run Main Models command: | - dbt run -m "fsc_evm,tag:bronze,tag:core" "fsc_evm,tag:silver,tag:core" "fsc_evm,tag:gold,tag:core" "fsc_evm,tag:silver,tag:prices" "fsc_evm,tag:gold,tag:prices" "fsc_evm,tag:silver,tag:labels" "fsc_evm,tag:gold,tag:labels" "fsc_evm,tag:gold,tag:nft" "fsc_evm,tag:streamline,tag:decoded_logs,tag:realtime" "fsc_evm,tag:streamline,tag:decoded_logs,tag:complete" "fsc_evm,tag:streamline,tag:abis,tag:realtime" "fsc_evm,tag:streamline,tag:abis,tag:complete" --exclude "fsc_evm,tag:receipts" --vars '{"STREAMLINE_INVOKE_STREAMS":True}' + dbt run -m "fsc_evm,tag:bronze,tag:core" "fsc_evm,tag:silver,tag:core" "fsc_evm,tag:gold,tag:core" "fsc_evm,tag:silver,tag:prices" "fsc_evm,tag:gold,tag:prices" "fsc_evm,tag:silver,tag:labels" "fsc_evm,tag:gold,tag:labels" "fsc_evm,tag:streamline,tag:decoded_logs,tag:realtime" "fsc_evm,tag:streamline,tag:decoded_logs,tag:complete" "fsc_evm,tag:streamline,tag:abis,tag:realtime" "fsc_evm,tag:streamline,tag:abis,tag:complete" --exclude "fsc_evm,tag:receipts" --vars '{"STREAMLINE_INVOKE_STREAMS":True}' secrets: inherit \ No newline at end of file diff --git a/.github/workflows/dbt_run_streamline_balances_history_temp.yml b/.github/workflows/dbt_run_streamline_balances_history_temp.yml new file mode 100644 index 0000000..f3c6b24 --- /dev/null +++ b/.github/workflows/dbt_run_streamline_balances_history_temp.yml @@ -0,0 +1,21 @@ +name: dbt_run_streamline_balances_history_temp +run-name: dbt_run_streamline_balances_history_temp + +on: + workflow_dispatch: + branches: + - "main" + schedule: + - cron: '26 */4 * * *' + +concurrency: + group: ${{ github.workflow }} + +jobs: + called_workflow_template: + uses: FlipsideCrypto/fsc-evm/.github/workflows/dbt_run_template.yml@pre-release/v4-beta + with: + command_name: Run Balances History Temp Models + command: | + dbt run --vars '{"STREAMLINE_INVOKE_STREAMS":True}' -m "fsc_evm,tag:streamline,tag:balances,tag:complete" "fsc_evm,tag:streamline,tag:balances,tag:history" + secrets: inherit \ No newline at end of file diff --git a/dbt_project.yml b/dbt_project.yml index 9cbb73b..8bcd227 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -95,6 +95,8 @@ models: +enabled: false stats: +enabled: true + balances_package: + +enabled: true scores_package: +enabled: true diff --git a/models/sources.yml b/models/sources.yml index 18ae91c..21ee59b 100644 --- a/models/sources.yml +++ b/models/sources.yml @@ -14,6 +14,7 @@ sources: - name: confirm_blocks - name: decoded_logs - name: contract_abis + - name: state_tracer - name: crosschain_silver database: >- {{ 'CROSSCHAIN_DEV' if '_DEV' in target.database.upper() else 'CROSSCHAIN' }} diff --git a/packages.yml b/packages.yml index 2a07c23..99b9147 100644 --- a/packages.yml +++ b/packages.yml @@ -1,3 +1,3 @@ packages: - git: https://github.com/FlipsideCrypto/fsc-evm.git - revision: v4.0.0-beta.47 + revision: v4.0.0-beta.85