Retrieve List of Blockchains

Circular.GetBlockchains()
  .then(data => {
    // do something with the data in JSON format
  });
```​⬤

Output

{
  "Result": 200, // Success
  "Response": {
    "Blockchains": [
      // Blockchains Array
      {
        "Address": "0x...", // Chain Address
        "Name": "Circular Main Public" // Chain Name
      }
      // Additional blockchains can be added here
    ]
  }
}

Last updated