mirror of
https://github.com/FlipsideCrypto/osmosis-models.git
synced 2026-02-06 16:06:51 +00:00
26 lines
425 B
SQL
26 lines
425 B
SQL
{{ config(
|
|
materialized = 'incremental',
|
|
full_refresh = false,
|
|
tags = ['core']
|
|
) }}
|
|
|
|
SELECT
|
|
live.udf_api (
|
|
'POST',
|
|
'{Service}/rpc',
|
|
OBJECT_CONSTRUCT(
|
|
'Content-Type',
|
|
'application/json'
|
|
),
|
|
OBJECT_CONSTRUCT(
|
|
'id',
|
|
1,
|
|
'jsonrpc',
|
|
'2.0',
|
|
'method',
|
|
'status'
|
|
),
|
|
'Vault/prod/osmosis/blockjoy/mainnet'
|
|
) AS DATA,
|
|
SYSDATE() AS _inserted_timestamp
|