arbitrum-models/models/gold/core__fact_token_transfers.sql
robel91 77257ccc98
An 1657/arbitrum/evm (#4)
* commit_arbitrum

* commit_arbitrum

* austin save

* Aritrum_two_new_views

* docs

Co-authored-by: austinFlipside <austin@flipsidecrypto.com>
2022-06-27 14:33:17 -04:00

20 lines
365 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,
contract_address,
from_address,
to_address,
raw_amount,
_log_id
FROM
{{ ref('silver__transfers') }}