mirror of
https://github.com/FlipsideCrypto/osmosis-models.git
synced 2026-02-06 17:26:51 +00:00
* updated assetlist URL --------- Co-authored-by: Mike Stepanovic <mike.stepanovic@flipsidecrypto.com>
13 lines
312 B
SQL
13 lines
312 B
SQL
{{ config(
|
|
materialized = 'table',
|
|
tags = ['daily']
|
|
) }}
|
|
|
|
SELECT
|
|
live.udf_api(
|
|
'GET',
|
|
'https://raw.githubusercontent.com/osmosis-labs/assetlists/main/osmosis-1/generated/chain_registry/assetlist.json',{},{}
|
|
) AS resp,
|
|
SYSDATE() AS _inserted_timestamp,
|
|
'{{ invocation_id }}' AS _invocation_id
|