IOTA EVM
About
Bring smart contracts to IOTA's feeless, DAG-based Layer 1 with full EVM compatibility.
Full Coverage
Stack
Symbol
IOTA
Gas Token
IOTA
Chain ID:
8822
Testnet Chain ID:
1076
Socials
Real-Time IOTA Pricing Across 12 Currencies
Access IOTA EVM via Uniblock's unified blockchain API. Feeless L1 Meets EVM Programmability Bring smart contracts to IOTA's feeless, DAG-based Layer 1 with full EVM compatibility.
Code Snippet
INPUT
const options = {method: ‘GET’, headers: {accept: ‘application/json’}};
fetch(‘https://api.uniblock.dev/uni/v1/market-data/price?symbol=IOTA’, options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
“IOTA”: {
“btc”: 0.0000024194,
“eth”: 0.00006,
“bnb”: 0.0002727273,
“xrp”: 0.25,
“usd”: 0.15,
“aud”: 0.21735,
“cad”: 0.20205,
“eur”: 0.1356,
“gbp”: 0.112275,
“hkd”: 1.16,
“jpy”: 21.51,
“rub”: 14.35
}
}