Runtime upgrades allow Geode to change the logic and other features of the blockchain itself, without the need for a hard fork.

Forkless Upgrades

You may have come across the term “hard fork” before in the blockchain space. A hard fork occurs when a blockchain’s logic changes such that nodes that do not include the new changes will not be able to remain in consensus with nodes that do. Such changes are backward incompatible. Hard forks can be political due to the nature of the upgrades, as well as logistically onerous due to the number (potentially thousands) of nodes in the network that need to upgrade their software.

Rather than encode the runtime (a chain’s “logic”) in the nodes, Geode nodes contain a WebAssembly execution host. They maintain consensus on a very low level and well-established instruction set. The Geode runtime is stored on the Geode blockchain itself.

As such, Geode can upgrade its runtime by upgrading the logic stored on-chain. This removes the coordination challenge of requiring thousands of node operators to upgrade in advance of a given block number. Geode stakeholders propose and approve upgrades through the governance system which also enacts those upgrades autonomously.

New Runtime Releases

The existing runtime logic is followed to update the Wasm runtime stored on the blockchain to a new version. The upgrade is then included in the blockchain itself, meaning that all the nodes on the network execute it automatically. Generally, there is no need to upgrade your nodes manually before the runtime upgrade as they will automatically start to follow the new logic of the chain. Nodes only need to be updated when the runtime requires new host functions or if there is a change in networking or consensus.

⚠️ Transactions constructed for a given runtime version will not work on later versions. Therefore, a transaction constructed based on a runtime version will not be valid in later runtime versions. If you don’t think you can submit a transaction before the upgrade, it is better to wait and construct it after the upgrade takes place.

Although upgrading your nodes is generally not necessary to follow an upgrade, we recommend following the Geode releases and upgrading promptly, especially for high priority or critical releases.

Runtime Upgrades for Various Users

For Infrastructure Providers

Infrastructure services include but are not limited to the following:

  • Validators
  • API services
  • Node-as-a-Service (NaaS)
  • General infrastructure management (e.g. block explorers, custodians)
  • Wallets

For validators, keeping in sync with the network is key. At times, upgrades will require validators to upgrade their clients within a specific time frame, for example if a release includes breaking changes to networking. It is essential to check the release notes, starting with the upgrade priority and acting accordingly.

General infrastructure providers, aside from following the Geode releases and upgrading in a timely manner, should monitor changes to runtime events and auxiliary tooling.

Transactions constructed for one runtime will not work for runtimes after that. If a runtime upgrade occurs before broadcasting a previously constructed transaction, you will need to reconstruct it with the appropriate runtime version and corresponding metadata.

For Nominators

Runtime upgrades don’t require any actions by a nominator, though it is always encouraged to keep up-to-date and participate with the latest runtime upgrade motions and releases, while keeping an eye on how the nodes on the network are reacting to a new upgrade.

Monitoring Changes

You can monitor the chain for upcoming upgrades. The client release notes include the hashes of any proposals related to any on-chain upgrades for easy matching. Monitor the chain for:

  1. democracy(Started) events and log index and blockNumber. This event indicates that a referendum has started (although does not mean that it is a runtime upgrade). Get the referendum info*; it should have a status of Ongoing. Find the ending block number (end) and the enactment delay (delay). If the referendum passes, it will execute on block number end + delay.
  2. democracy(Passed)democracy(NotPassed), or, democracy(Cancelled) events citing the index. If Passed, you need to look at the scheduler(Scheduled) event in the same block for the enactment block.
  3. democracy(PreimageNoted) events with the same hash as the ReferendumInfoOf(index) item. This may be up to the last block before execution, but it will not work if this is missing.
  4. democracy(Executed) events for actual execution. In the case of a runtime upgrade, there will also be a system(CodeUpdated) event.

You can also monitor the Geode Portal for discussions on on-chain proposals and referenda.