mirror of
https://github.com/FlipsideCrypto/near-models.git
synced 2026-02-06 13:56:44 +00:00
28 lines
387 B
SQL
28 lines
387 B
SQL
{{ config(
|
|
materialized = 'view',
|
|
secure = true,
|
|
tags = ['s3_curated']
|
|
) }}
|
|
|
|
WITH transfers AS (
|
|
|
|
SELECT
|
|
*
|
|
FROM
|
|
{{ ref('silver__transfers_s3') }}
|
|
)
|
|
SELECT
|
|
tx_hash,
|
|
action_id,
|
|
block_id,
|
|
block_timestamp,
|
|
tx_signer,
|
|
tx_receiver,
|
|
deposit,
|
|
receipt_object_id,
|
|
transaction_fee,
|
|
gas_used,
|
|
status
|
|
FROM
|
|
transfers
|