For the complete documentation index, see llms.txt. This page is also available as Markdown.

Chain

List, Insert And Remove Orakl Network Chains

The Orakl Network state can hold information about deployments to multiple chains. The chain is a fundamental configuration which is used in all other Orakl Network settings.

The Orakl Network CLI provides commands to

List Chains

orakl-cli chain list
[
  { "id": 1, "name": "localhost" },
  { "id": 2, "name": "baobab" },
  { "id": 3, "name": "cypress" }
]

Insert New Chain

If there are not chains set, we can add a new chain using chain insert command of the Orakl Network CLI.

orakl-cli chain insert \
    --name ${chainName}
  • example

Remove Chain Specified By id

Chains can be removed when there are no association to them yet.

  • example

Last updated