near-models/models/core/core__fact_transfers.sql
2023-01-27 15:55:13 -07:00

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