mirror of
https://github.com/FlipsideCrypto/aurora-models.git
synced 2026-02-06 14:16:47 +00:00
28 lines
630 B
SQL
28 lines
630 B
SQL
{{ config (
|
|
materialized = 'table',
|
|
tags = ['streamline','core','chainhead','phase_1']
|
|
) }}
|
|
|
|
SELECT
|
|
live.udf_api(
|
|
'POST',
|
|
'{URL}',
|
|
OBJECT_CONSTRUCT(
|
|
'Content-Type', 'application/json',
|
|
'fsc-quantum-state', 'livequery'
|
|
),
|
|
OBJECT_CONSTRUCT(
|
|
'id',
|
|
0,
|
|
'jsonrpc',
|
|
'2.0',
|
|
'method',
|
|
'eth_blockNumber',
|
|
'params',
|
|
[]
|
|
),
|
|
'Vault/prod/evm/aurora/mainnet'
|
|
) AS resp,
|
|
utils.udf_hex_to_int(
|
|
resp :data :result :: STRING
|
|
) AS block_number |