Circular.GetBlockchains()
.then(data => {
// do something with the data in JSON format
});
```⬤
{
"Result": 200, // Success
"Response": {
"Blockchains": [
// Blockchains Array
{
"Address": "0x...", // Chain Address
"Name": "Circular Main Public" // Chain Name
}
// Additional blockchains can be added here
]
}
}