CelestiaBridge
About
Access Celestia's modular data availability layer, letting rollups post data more cheaply than posting directly to Ethereum.
Full Coverage
Stack
Symbol
TIA
Gas Token
TIA
Chain ID:
celestiabridge
Testnet Chain ID:
celestiabridge-mocha
Socials
Tools
Real-Time TIA Pricing Across 12 Currencies
Access CelestiaBridge via Uniblock's unified blockchain API. Modular Data Availability for Rollups Access Celestia's modular data availability layer, letting rollups post data more cheaply than posting directly to Ethereum.
Code Snippet
INPUT
const options = {method: ‘GET’, headers: {accept: ‘application/json’}};
fetch(‘https://api.uniblock.dev/uni/v1/market-data/price?symbol=TIA’, options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
“TIA”: {
“btc”: 0.0000677419,
“eth”: 0.00168,
“bnb”: 0.0076363636,
“xrp”: 7.00,
“usd”: 4.20,
“aud”: 6.09,
“cad”: 5.66,
“eur”: 3.80,
“gbp”: 3.14,
“hkd”: 32.59,
“jpy”: 602.41,
“rub”: 401.81
}
}