mirror of
https://github.com/FlipsideCrypto/aptos-models.git
synced 2026-02-06 14:06:44 +00:00
* blocks table * transactions table * messages & message attributes * silver models - some tests still failing due to test data * core models / labels / validator & token metadata * updates to blocks & packages + formatting * rename to tendermint * updates * views to tables
16 lines
223 B
SQL
16 lines
223 B
SQL
{{ config(
|
|
materialized = 'view'
|
|
) }}
|
|
|
|
SELECT
|
|
block_id,
|
|
block_timestamp,
|
|
tx_id,
|
|
tx_succeeded,
|
|
transfer_type,
|
|
sender,
|
|
amount,
|
|
currency,
|
|
receiver
|
|
FROM
|
|
{{ ref('silver__transfers') }} |