mirror of
https://github.com/FlipsideCrypto/cosmos-models.git
synced 2026-02-06 13:11:50 +00:00
21 lines
344 B
SQL
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') }}
|
|
)
|