mirror of
https://github.com/FlipsideCrypto/osmosis-models.git
synced 2026-02-06 11:26:55 +00:00
19 lines
286 B
SQL
19 lines
286 B
SQL
{{ config (
|
|
materialized = 'view'
|
|
) }}
|
|
|
|
SELECT
|
|
record_id,
|
|
offset_id AS block_id,
|
|
block_id AS offset_id,
|
|
block_timestamp,
|
|
network,
|
|
chain_id,
|
|
tx_count,
|
|
header,
|
|
ingested_at
|
|
FROM
|
|
{{ source(
|
|
'prod',
|
|
'osmosis_blocks'
|
|
) }} |