polygon-models/models/gold/core__fact_transactions.sql
Austin dc4fb4acc1
Initial/setup (#1)
* stash

* clean up mistakes

* clean up docs

* dbt docs
2022-06-07 19:13:08 -04:00

28 lines
450 B
SQL

{{ config(
materialized = 'view',
persist_docs ={ "relation": true,
"columns": true }
) }}
SELECT
block_number,
block_timestamp,
block_hash,
tx_hash,
nonce,
POSITION,
origin_function_signature,
from_address,
to_address,
matic_value,
tx_fee,
gas_price,
gas_limit,
gas_used,
cumulative_Gas_Used,
input_data,
status,
tx_json
FROM
{{ ref('silver__transactions') }}