mirror of
https://github.com/FlipsideCrypto/avalanche-models.git
synced 2026-02-06 15:16:48 +00:00
23 lines
361 B
SQL
23 lines
361 B
SQL
{{ config(
|
|
materialized = 'view',
|
|
persist_docs ={ "relation": true,
|
|
"columns": true }
|
|
) }}
|
|
|
|
SELECT
|
|
blockchain,
|
|
creator,
|
|
address,
|
|
address_name,
|
|
label_type,
|
|
label_subtype,
|
|
project_name
|
|
FROM
|
|
{{ source(
|
|
'crosschain',
|
|
'address_labels'
|
|
) }}
|
|
WHERE
|
|
blockchain = 'avalanche'
|
|
AND address LIKE '0x%'
|