From d14859fceb6ec199f60e9ab9e38c3d1cc524a964 Mon Sep 17 00:00:00 2001 From: Eric Laurello Date: Wed, 15 Oct 2025 12:53:34 -0400 Subject: [PATCH] rm v1s --- .../streamline/bronze__streamline_FR_blocks_v1.sql | 10 ---------- .../bronze__streamline_FR_transactions_v1.sql | 10 ---------- .../streamline/bronze__streamline_FR_tx_counts_v1.sql | 10 ---------- models/sources.yml | 6 +++--- 4 files changed, 3 insertions(+), 33 deletions(-) delete mode 100644 models/bronze/core/streamline/bronze__streamline_FR_blocks_v1.sql delete mode 100644 models/bronze/core/streamline/bronze__streamline_FR_transactions_v1.sql delete mode 100644 models/bronze/core/streamline/bronze__streamline_FR_tx_counts_v1.sql diff --git a/models/bronze/core/streamline/bronze__streamline_FR_blocks_v1.sql b/models/bronze/core/streamline/bronze__streamline_FR_blocks_v1.sql deleted file mode 100644 index 32b4861..0000000 --- a/models/bronze/core/streamline/bronze__streamline_FR_blocks_v1.sql +++ /dev/null @@ -1,10 +0,0 @@ -{{ config ( - materialized = 'view', - enabled = false -) }} -{{ streamline_external_table_FR_query( - "blocks", - partition_function = "CAST(SPLIT_PART(SPLIT_PART(file_name, '/', 3), '_', 1) AS INTEGER )", - partition_name = "_partition_by_block_id", - unique_key = "block_number" -) }} diff --git a/models/bronze/core/streamline/bronze__streamline_FR_transactions_v1.sql b/models/bronze/core/streamline/bronze__streamline_FR_transactions_v1.sql deleted file mode 100644 index 90b5594..0000000 --- a/models/bronze/core/streamline/bronze__streamline_FR_transactions_v1.sql +++ /dev/null @@ -1,10 +0,0 @@ -{{ config ( - materialized = 'view', - enabled = false -) }} -{{ streamline_external_table_FR_query( - model = "transactions", - partition_function = "CAST(SPLIT_PART(SPLIT_PART(file_name, '/', 3), '_', 1) AS INTEGER )", - partition_name = "_partition_by_block_id", - unique_key = "block_number" -) }} diff --git a/models/bronze/core/streamline/bronze__streamline_FR_tx_counts_v1.sql b/models/bronze/core/streamline/bronze__streamline_FR_tx_counts_v1.sql deleted file mode 100644 index 37a5b20..0000000 --- a/models/bronze/core/streamline/bronze__streamline_FR_tx_counts_v1.sql +++ /dev/null @@ -1,10 +0,0 @@ -{{ config ( - materialized = 'view', - enabled = false -) }} -{{ streamline_external_table_FR_query( - "txcount", - partition_function = "CAST(SPLIT_PART(SPLIT_PART(file_name, '/', 3), '_', 1) AS INTEGER )", - partition_name = "_partition_by_block_id", - unique_key = "block_number" -) }} diff --git a/models/sources.yml b/models/sources.yml index 1064af6..3a0d469 100644 --- a/models/sources.yml +++ b/models/sources.yml @@ -40,9 +40,9 @@ sources: schema: | {{ "SEI_DEV" if var("STREAMLINE_USE_DEV_FOR_EXTERNAL_TABLES", False) else "SEI" }} tables: - - name: blocks - - name: transactions - - name: txcount + # - name: blocks + # - name: transactions + # - name: txcount - name: evm_blocks - name: evm_transactions - name: evm_confirm_blocks