mirror of
https://github.com/FlipsideCrypto/gnosis-models.git
synced 2026-02-06 13:57:16 +00:00
21 lines
279 B
SQL
21 lines
279 B
SQL
{{ config (
|
|
materialized = 'view'
|
|
) }}
|
|
|
|
SELECT
|
|
record_id,
|
|
offset_id,
|
|
block_id,
|
|
block_timestamp,
|
|
network,
|
|
chain_id,
|
|
tx_count,
|
|
header,
|
|
ingested_at,
|
|
_inserted_timestamp
|
|
FROM
|
|
{{ source(
|
|
'prod',
|
|
'gnosis_blocks'
|
|
) }}
|