From 1fe8489c9c4c3641def921e8b03d7b601f5c3809 Mon Sep 17 00:00:00 2001 From: Austin Date: Mon, 24 Nov 2025 16:14:47 -0500 Subject: [PATCH 1/2] stash --- .../workflows/dbt_run_scheduled_curated.yml | 19 +++++++++++++++++++ dbt_project.yml | 6 ++++++ 2 files changed, 25 insertions(+) create mode 100644 .github/workflows/dbt_run_scheduled_curated.yml diff --git a/.github/workflows/dbt_run_scheduled_curated.yml b/.github/workflows/dbt_run_scheduled_curated.yml new file mode 100644 index 0000000..a1fe3e9 --- /dev/null +++ b/.github/workflows/dbt_run_scheduled_curated.yml @@ -0,0 +1,19 @@ +name: dbt_run_scheduled_curated +run-name: dbt_run_scheduled_curated + +on: + workflow_dispatch: + branches: + - "main" + +concurrency: + group: ${{ github.workflow }} + +jobs: + called_workflow_template: + uses: FlipsideCrypto/fsc-evm/.github/workflows/dbt_run_template.yml@main + with: + command_name: Run Curated Models + command: | + dbt run -m "$PROJECT_NAME,tag:curated" "fsc_evm,tag:curated" + secrets: inherit \ No newline at end of file diff --git a/dbt_project.yml b/dbt_project.yml index 24008e7..5469676 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -96,6 +96,12 @@ models: +enabled: true curated_package: +enabled: false + defi: + +enabled: false + bridge: + +enabled: true + dex: + +enabled: true balances_package: +enabled: false erc20: From 18c798c537a8b6a73087afb4a8412c3733cb6feb Mon Sep 17 00:00:00 2001 From: Austin Date: Mon, 24 Nov 2025 16:40:50 -0500 Subject: [PATCH 2/2] curations --- models/sources.yml | 32 +++++++++++++++++++++++++------- 1 file changed, 25 insertions(+), 7 deletions(-) diff --git a/models/sources.yml b/models/sources.yml index 872b21a..4fca585 100644 --- a/models/sources.yml +++ b/models/sources.yml @@ -1,11 +1,6 @@ version: 2 sources: - - name: github_actions - database: "{{ target.database }}" - schema: github_actions - tables: - - name: workflows - name: bronze_streamline database: streamline schema: >- @@ -48,8 +43,31 @@ sources: schema: bronze_public tables: - name: user_abis - - name: silver + - name: complete_streamline + database: "{{ target.database }}" + schema: streamline + tables: + - name: complete_contract_abis + - name: github_actions + database: "{{ target.database }}" + schema: github_actions + tables: + - name: workflows + - name: external_gold_defillama + database: external + schema: defillama + tables: + - name: dim_chains + - name: abis_silver database: "{{ target.database }}" schema: silver tables: - - name: verified_abis \ No newline at end of file + - name: verified_abis + - name: complete_event_abis + - name: fsc_evm_admin + database: >- + {{ 'FSC_EVM_DEV' if '_DEV' in target.database.upper() else 'FSC_EVM' }} + schema: admin + tables: + - name: _master_keys + - name: rpc_node_logs \ No newline at end of file