mirror of
https://github.com/FlipsideCrypto/osmosis-models.git
synced 2026-02-06 14:17:03 +00:00
* silver labels models - first pass * added descriptions * removed description column in table and re-referenced descriptions in .ymls * changed config to table set up * remove comment Co-authored-by: Desmond Hui <desmond@flipsidecrypto.com>
19 lines
358 B
SQL
19 lines
358 B
SQL
{{ config(
|
|
materialized = 'table'
|
|
) }}
|
|
|
|
SELECT
|
|
operator_address AS address,
|
|
'osmosis' AS blockchain,
|
|
'flipside' AS creator,
|
|
'operator' AS label_type,
|
|
'validator' AS label_subtype,
|
|
moniker AS label,
|
|
identity AS project_name,
|
|
value
|
|
FROM
|
|
{{ source(
|
|
'osmosis_external',
|
|
'validator_metadata_api'
|
|
) }}
|
|
|