mirror of
https://github.com/FlipsideCrypto/arbitrum-models.git
synced 2026-02-06 18:01:52 +00:00
* commit_arbitrum * commit_arbitrum * austin save * Aritrum_two_new_views * docs Co-authored-by: austinFlipside <austin@flipsidecrypto.com>
20 lines
365 B
SQL
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') }} |