A blockchain
A list of available blockchains
const response = await fetch('/v1/blockchains', { method: 'GET', headers: { "Authorization": "Bearer Bearer" }, }); const data = await response.json();
[ { "id": "text", "name": "text", "isMainnet": false, "rpcUrl": "text", "iconUrl": "text" } ]
const response = await fetch('/v1/blockchains/{id}', { method: 'GET', headers: { "Authorization": "Bearer Bearer" }, }); const data = await response.json();
{ "id": "text", "name": "text", "isMainnet": false, "rpcUrl": "text", "iconUrl": "text" }