zkLink Nova
About
Access liquidity and users across Ethereum and multiple L2s from a single deployment on this aggregated ZK Layer 3.
Full Coverage
Stack
Symbol
ETH
Gas Token
ETH
Chain ID:
810180
Testnet Chain ID:
810181
Socials
Tools
Real-Time ETH Pricing Across 12 Currencies
Access zkLink Nova via Uniblock's unified blockchain API. Aggregated Liquidity Across L2s Access liquidity and users across Ethereum and multiple L2s from a single deployment on this aggregated ZK Layer 3.
Code Snippet
INPUT
const options = {method: ‘GET’, headers: {accept: ‘application/json’}};
fetch(‘https://api.uniblock.dev/uni/v1/market-data/price?symbol=ETH’, options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
“ETH”: {
“btc”: 0.0403225806,
“eth”: 1,
“bnb”: 4.55,
“xrp”: 4166.67,
“usd”: 2500.00,
“aud”: 3622.50,
“cad”: 3367.50,
“eur”: 2260.00,
“gbp”: 1871.25,
“hkd”: 19400.00,
“jpy”: 358575.00,
“rub”: 239175.00
}
}