mirror of
https://github.com/FlipsideCrypto/kaia-models.git
synced 2026-02-06 13:51:46 +00:00
16 lines
466 B
SQL
16 lines
466 B
SQL
-- depends_on: {{ ref('bronze__streamline_traces') }}
|
|
{{ config (
|
|
materialized = "incremental",
|
|
incremental_strategy = 'delete+insert',
|
|
unique_key = "block_number",
|
|
cluster_by = ['modified_timestamp::DATE','partition_key'],
|
|
full_refresh = false,
|
|
tags = ['non_realtime']
|
|
) }}
|
|
|
|
{{ fsc_evm.silver_traces_v1(
|
|
full_reload_start_block = 149500000,
|
|
full_reload_blocks = 5000000,
|
|
use_partition_key = true,
|
|
kaia_traces_mode = true
|
|
) }} |