bronze views

This commit is contained in:
Jack Forgash 2022-09-06 15:37:15 -06:00
parent fad1328448
commit a63e406f09
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{{ config (
materialized = 'view'
) }}
SELECT
record_id,
offset_id,
block_id,
block_timestamp,
network,
chain_id,
tx_count,
header,
ingested_at AS _ingested_at,
_inserted_timestamp
FROM
{{ source(
"chainwalkers",
"terra_blocks"
) }}

View File

@ -0,0 +1,21 @@
{{ config (
materialized = 'view'
) }}
SELECT
record_id,
tx_id,
tx_block_index,
offset_id,
block_id,
block_timestamp,
network,
chain_id,
tx,
ingested_at AS _ingested_at,
_inserted_timestamp
FROM
{{ source(
"chainwalkers",
"terra_txs"
) }}