ADI Mainnet
About
Settle regulated stablecoins and real-world assets on a Layer 2 purpose-built for MENA's institutional operators.
Full Coverage
Stack
Symbol
ADI
Gas Token
ADI
Chain ID:
36900
Testnet Chain ID:
99999
Socials
Real-Time ADI Pricing Across 12 Currencies
Access ADI Mainnet via Uniblock's unified blockchain API. Institutional Infrastructure for MENA Stablecoins Settle regulated stablecoins and real-world assets on a Layer 2 purpose-built for MENA's institutional operators.
Code Snippet
INPUT
const options = {method: ‘GET’, headers: {accept: ‘application/json’}};
fetch(‘https://api.uniblock.dev/uni/v1/market-data/price?symbol=ADI’, options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
“ADI”: {
“btc”: 0.0000016129,
“eth”: 0.00004,
“bnb”: 0.0001818182,
“xrp”: 0.1666666667,
“usd”: 0.1,
“aud”: 0.1449,
“cad”: 0.1347,
“eur”: 0.0904,
“gbp”: 0.07485,
“hkd”: 0.776,
“jpy”: 14.34,
“rub”: 9.57
}
}