
Edgeware
About
Edgeware pairs an EVM execution environment with a Substrate runtime and a community-governed treasury.
Full Coverage
Stack
Symbol
EDG
Gas Token
EDG
Tools
Real-Time EDG Pricing Across 12 Currencies
Access Edgeware via Uniblock's unified blockchain API. EdgeEVM on a Substrate Runtime Edgeware pairs an EVM execution environment with a Substrate runtime and a community-governed treasury.
Code Snippet
INPUT
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://api.uniblock.dev/uni/v1/market-data/price?symbol=EDG', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
"EDG": {
"btc": 0.00000000437,
"eth": 0.000000109,
"bnb": 0.000000496,
"xrp": 0.000455,
"usd": 0.000273,
"aud": 0.000396,
"cad": 0.000369,
"eur": 0.000247,
"gbp": 0.000206,
"hkd": 0.00212,
"jpy": 0.0391,
"rub": 0.0261
}
}