mirror of
https://github.com/FlipsideCrypto/sui-models.git
synced 2026-02-06 17:26:42 +00:00
21 lines
378 B
SQL
21 lines
378 B
SQL
{{ config (
|
|
materialized = "view",
|
|
tags = ['streamline_view']
|
|
) }}
|
|
|
|
SELECT
|
|
_id AS checkpoint_number
|
|
FROM
|
|
{{ source(
|
|
'crosschain_silver',
|
|
'number_sequence'
|
|
) }}
|
|
WHERE
|
|
_id >= 96605300 -- first block of 2025
|
|
AND _id <= (
|
|
SELECT
|
|
MAX(checkpoint_number)
|
|
FROM
|
|
{{ ref('streamline__chainhead') }}
|
|
)
|