github celestiaorg/celestia-node v0.26.0-arabica

latest release: v0.27.0-arabica
pre-release5 hours ago

⚠️ Note: this release requires a config update. ⚠️
See docs for further information.

This release notably introduces...

  • a unified share exchange protocol (via unified shrex), a pre-requisite for sampling over our custom share exchange
  • header pruning via #4330

Header pruning

In order to use header pruning, please check out new header configuration parameters in config.toml:

  [Header.Syncer]
    # PruningWindow defines the duration within which headers are retained before being pruned.
    # Default is 337 hours.
    PruningWindow = "337h0m0s"
    # SyncFromHash is the hash of the header from which the syncer should start syncing.
    # Zero value to disable. Value updates up and down the chain are gracefully handled by Syncer.
    #
    # By default, Syncer maintains PruningWindow number of headers. SyncFromHash overrides this default,
    # allowing any user to specify a custom starting point.
    #
    # SyncFromHash has higher priority than SyncFromHeight.
    SyncFromHash = ""
    # SyncFromHeight is the height of the header from which the syncer should start syncing.
    # Zero value to disable. Value updates up and down the chain are gracefully handled by Syncer.
    #
    # By default, Syncer maintains PruningWindow number of headers. SyncFromHeight overrides this default,
    # allowing any user to specify a custom starting point.
    #
    # SyncFromHeight has lower priority than SyncFromHash.
    SyncFromHeight = 0

What's Changed

New Contributors

Full Changelog: v0.25.3-arabica...v0.26.0-arabica

What's Changed

New Contributors

Full Changelog: v0.25.3-arabica...v0.26.0-arabica

Don't miss a new celestia-node release

NewReleases is sending notifications on new releases.