mirror of
https://github.com/FlipsideCrypto/kaia-models.git
synced 2026-02-06 14:11:45 +00:00
16 lines
512 B
SQL
16 lines
512 B
SQL
{{ config (
|
|
materialized = "incremental",
|
|
incremental_strategy = 'delete+insert',
|
|
unique_key = "block_number",
|
|
incremental_predicates = [fsc_evm.standard_predicate()],
|
|
cluster_by = "block_timestamp::date",
|
|
post_hook = "ALTER TABLE {{ this }} ADD SEARCH OPTIMIZATION",
|
|
full_refresh = false,
|
|
tags = ['non_realtime']
|
|
) }}
|
|
{{ fsc_evm.gold_traces_v1(
|
|
full_reload_start_block = 149500000,
|
|
full_reload_blocks = 5000000,
|
|
tx_status_bool = true,
|
|
kaia_traces_mode = true
|
|
) }} |