osmosis-models/models/silver/silver__validator_metadata.sql
Jessica Huhnke 89817b0c71
An 1079 osmosis labels (#7)
* 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>
2022-04-28 13:32:39 -05:00

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'
) }}