mirror of
https://github.com/FlipsideCrypto/polygon-models.git
synced 2026-02-06 11:06:46 +00:00
28 lines
450 B
SQL
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') }}
|