Pharos
About
Settle tokenized real-world assets in real time on a high-throughput Layer 1 built for RealFi.
Full Coverage
Stack
Symbol
PROS
Gas Token
PROS
Chain ID:
1672
Testnet Chain ID:
688689
Socials
Real-Time PROS Pricing Across 12 Currencies
Access Pharos via Uniblock's unified blockchain API. Real-Time Settlement for Tokenized Assets Settle tokenized real-world assets in real time on a high-throughput Layer 1 built for RealFi.
Code Snippet
INPUT
const options = {method: ‘GET’, headers: {accept: ‘application/json’}};
fetch(‘https://api.uniblock.dev/uni/v1/market-data/price?symbol=PROS’, options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
“PROS”: {
“btc”: 0.0000019355,
“eth”: 0.000048,
“bnb”: 0.0002181818,
“xrp”: 0.2,
“usd”: 0.12,
“aud”: 0.17388,
“cad”: 0.16164,
“eur”: 0.10848,
“gbp”: 0.08982,
“hkd”: 0.9312,
“jpy”: 17.21,
“rub”: 11.48
}
}