mirror of
https://github.com/FlipsideCrypto/flow-models.git
synced 2026-02-06 15:02:11 +00:00
20 lines
272 B
SQL
20 lines
272 B
SQL
{{ config(
|
|
materialized = 'table'
|
|
) }}
|
|
|
|
WITH labels AS (
|
|
|
|
SELECT
|
|
*
|
|
FROM
|
|
{{ ref('silver__labels') }}
|
|
WHERE
|
|
label_type = 'operator'
|
|
)
|
|
SELECT
|
|
address AS node_id,
|
|
address_name AS validator_type,
|
|
project_name
|
|
FROM
|
|
labels
|