optimism-models/models/gold/core__fact_blocks.sql
Austin 5727d175e0
Initial/setup (#1)
* setup

* feeling optimistic
2022-06-16 19:05:07 -04:00

27 lines
426 B
SQL

{{ config(
materialized = 'view',
persist_docs ={ "relation": true,
"columns": true }
) }}
SELECT
block_number,
block_timestamp,
network,
blockchain,
tx_count,
difficulty,
total_difficulty,
extra_data,
gas_limit,
gas_used,
HASH,
parent_hash,
receipts_root,
sha3_uncles,
SIZE,
uncle_blocks,
block_header_json
FROM
{{ ref('silver__blocks') }}