mirror of
https://github.com/FlipsideCrypto/osmosis-models.git
synced 2026-02-06 13:57:16 +00:00
22 lines
271 B
SQL
22 lines
271 B
SQL
{{ config (
|
|
materialized = 'view'
|
|
) }}
|
|
|
|
SELECT
|
|
record_id,
|
|
tx_id,
|
|
tx_block_index,
|
|
offset_id,
|
|
block_id,
|
|
block_timestamp,
|
|
network,
|
|
chain_id,
|
|
tx,
|
|
ingested_at,
|
|
_inserted_timestamp
|
|
FROM
|
|
{{ source(
|
|
'prod',
|
|
'osmosis_txs'
|
|
) }}
|
|
|