mirror of
https://github.com/FlipsideCrypto/optimism-models.git
synced 2026-02-06 13:56:45 +00:00
27 lines
426 B
SQL
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') }}
|