mirror of
https://github.com/FlipsideCrypto/movement-models.git
synced 2026-02-06 20:16:42 +00:00
23 lines
409 B
SQL
23 lines
409 B
SQL
{{ config(
|
|
materialized = 'view',
|
|
tags = ['core']
|
|
) }}
|
|
|
|
SELECT
|
|
system_created_at::TIMESTAMP_NTZ AS system_created_at,
|
|
insert_date::DATE AS insert_date,
|
|
blockchain,
|
|
address,
|
|
creator,
|
|
label_type,
|
|
label_subtype,
|
|
address_name,
|
|
project_name,
|
|
modified_timestamp
|
|
FROM
|
|
{{ source(
|
|
'crosschain',
|
|
'dim_labels'
|
|
) }}
|
|
WHERE
|
|
blockchain = 'movement' |