mirror of
https://github.com/FlipsideCrypto/blast-models.git
synced 2026-02-06 13:56:44 +00:00
15 lines
462 B
SQL
15 lines
462 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",
|
|
tags = ['non_realtime','core'],
|
|
full_refresh = false
|
|
) }}
|
|
{{ fsc_evm.gold_traces_v1(
|
|
full_reload_start_block = 3000000,
|
|
full_reload_blocks = 1000000
|
|
) }}
|