arbitrum-models/models/gold/core__fact_event_logs.sql
drethereum bc6332984b
AN-3534/arb-streamline-migration (#82)
* 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
2023-07-11 10:54:30 -06:00

23 lines
384 B
SQL

{{ config(
materialized = 'view',
persist_docs ={ "relation": true,
"columns": true }
) }}
SELECT
block_number,
block_timestamp,
tx_hash,
origin_function_signature,
origin_from_address,
origin_to_address,
event_index,
contract_address,
topics,
DATA,
event_removed,
tx_status,
_log_id
FROM
{{ ref('silver__logs') }}