mirror of
https://github.com/FlipsideCrypto/optimism-models.git
synced 2026-02-06 14:06:44 +00:00
25 lines
361 B
SQL
25 lines
361 B
SQL
{{ config(
|
|
materialized = 'view',
|
|
persist_docs ={ "relation": true,
|
|
"columns": true }
|
|
) }}
|
|
|
|
SELECT
|
|
tx_hash,
|
|
block_number,
|
|
block_timestamp,
|
|
from_address,
|
|
to_address,
|
|
eth_value,
|
|
gas,
|
|
gas_used,
|
|
input,
|
|
output,
|
|
TYPE,
|
|
identifier,
|
|
DATA,
|
|
tx_status,
|
|
sub_traces
|
|
FROM
|
|
{{ ref('silver__traces') }}
|