Skip to content

Releases: celestiaorg/celestia-app

v3.0.0-alpha

08 Oct 14:12
95ca5c7
Compare
Choose a tag to compare
v3.0.0-alpha Pre-release
Pre-release

Upgrade Notice

This release is not recommended for use on any public networks.

What's Changed

Read more

v2.2.0

03 Oct 14:17
b717c8d
Compare
Choose a tag to compare

Upgrade Notice

This release includes a fix for block sync on Mocha.

What's Changed

Full Changelog: v2.1.2...v2.2.0

Release Notes

v2.2.0-rc0

24 Sep 19:16
d3f8b29
Compare
Choose a tag to compare
v2.2.0-rc0 Pre-release
Pre-release

Upgrade Notice

This release includes a fix for block sync on Mocha. This release is not intended for any public testnets.

What's Changed

Full Changelog: v2.1.2...v2.2.0-rc0

Release Notes

v2.2.0-mocha

30 Sep 13:57
d3f8b29
Compare
Choose a tag to compare
v2.2.0-mocha Pre-release
Pre-release

Upgrade Notice

This release includes a fix for block sync on Mocha. This release is intended for the Mocha testnet.

What's Changed

Full Changelog: v2.1.2...v2.2.0-mocha

Release Notes

v2.2.0-arabica

24 Sep 19:34
d3f8b29
Compare
Choose a tag to compare
v2.2.0-arabica Pre-release
Pre-release

Upgrade Notice

This release includes a fix for block sync on Mocha. This release is intended for the Arabica testnet.

What's Changed

Full Changelog: v2.1.2...v2.2.0-arabica

Release Notes

v2.1.2

23 Aug 09:28
48173df
Compare
Choose a tag to compare

Upgrade Notice

This release fixes a bug that prevented nodes from using state sync.

What's Changed

Full Changelog: v2.1.1...v2.1.2

Release Notes

v2.1.2-rc1

22 Aug 17:17
48173df
Compare
Choose a tag to compare
v2.1.2-rc1 Pre-release
Pre-release

What's Changed

Full Changelog: v2.1.2-rc0...v2.1.2-rc1

v2.1.2-rc0

22 Aug 12:13
3d90004
Compare
Choose a tag to compare
v2.1.2-rc0 Pre-release
Pre-release

What's Changed

Full Changelog: v2.1.1...v2.1.2

v2.1.1

21 Aug 20:33
e7a4b51
Compare
Choose a tag to compare

Upgrade Notice

This release upgrade to Go 1.22.6 in order to fix an issue with missing pre-built binaries on the v2.1.0 release.

What's Changed

Full Changelog: v2.1.0...v2.1.1

v2.1.0

21 Aug 08:53
387aafe
Compare
Choose a tag to compare

Key Features

In this release, we introduce a lightweight transaction indexer as an alternative to the traditional KV indexer. This new indexer addresses the need for a more lightweight way of checking the status of a transaction.

Transaction status tracking:

The new tx_status RPC endpoint allows users to retrieve a transaction's status by its hash. The response includes a status field indicating whether the transaction is:

  • Committed:
    The transaction has been included in a block. The response also provides:
    • Block height
    • Transaction index within the block
    • Execution code
    • An error log if the transaction failed during execution
  • Pending:
    Still in the mempool, awaiting inclusion in a block.
  • Evicted:
    Removed from the mempool, typically due to being outbid in gas fees.
  • Unknown:
    Neither committed nor in the mempool.

Deprecation of broadcast_tx_commit:

  • The broadcast_tx_commit endpoint is now deprecated and will be removed in future versions. Users should instead use the new tx_status endpoint alongside broadcast_tx_sync or broadcast_tx_async.

Usage

The indexer can be used by interacting with the tx_status endpoint. Note: consensus nodes support this endpoint regardless of the indexer they have configured in config.toml

What's Changed

Full Changelog: v2.0.0...v2.1.0