cosmos-models/models/streamline/streamline__blocks.sql
eric-laurello 8181586da5
AN-4842 SL 2.0 (#55)
* SL 2.0

* prod endpoints
2024-05-29 10:09:14 -04:00

21 lines
344 B
SQL

{{ config (
materialized = "view",
tags = ['streamline_view']
) }}
SELECT
_id AS block_number
FROM
{{ source(
'crosschain_silver',
'number_sequence'
) }}
WHERE
_id >= 5200791
AND _id <= (
SELECT
MAX(block_number)
FROM
{{ ref('streamline__chainhead') }}
)