mirror of
https://github.com/FlipsideCrypto/arbitrum-models.git
synced 2026-02-06 18:01:52 +00:00
* workflow changes * models macro * logs table docs * gold layer changes * silver legacy changes * silver core tests * timestamp cast type * workflow changes schedule * gas price column names
30 lines
469 B
SQL
30 lines
469 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,
|
|
trace_status,
|
|
error_reason,
|
|
trace_index,
|
|
before_evm_transfers,
|
|
after_evm_transfers
|
|
FROM
|
|
{{ ref('silver__traces') }}
|