Skip to content

Releases: ergoplatform/ergo-node-interface-rust

v0.2.5

20 Sep 10:58
v0.2.5
8b04be6
Compare
Choose a tag to compare

Updated ergo-lib version to 0.13.3.

0.2.0 - Ergo Node Interface Library

20 Nov 13:24
Compare
Choose a tag to compare

This release exposes breaking changes, and is thus v0.2.0.

Previous functions related to signing/submitting transactions use to target JSON. In v0.2.0, said functions now instead have json in their name, and the previous function names are instead used by functions which utilize ergo-lib datatypes for inputs/outputs.

These include:

  • fn submit_transaction(&self, signed_tx: &Transaction) -> Result<TxId>
  • fn sign_transaction(&self, unsigned_tx: &UnsignedTransaction) -> Result<Transaction>
  • fn sign_and_submit_transaction(&self, unsigned_tx: &UnsignedTransaction) -> Result<TxId>

0.1.1 - Ergo Node Interface Library Update

19 Nov 16:24
Compare
Choose a tag to compare

This release features an update to ergo-lib version 0.4.1 in order to enable dApps in the ecosystem to have access to the latest features.

0.1.0 - Ergo Node Interface Library Public Release

04 Nov 10:47
Compare
Choose a tag to compare

This is the launch release which provides support for:

  • Core Ergo Node endpoints for writing off-chain dApps.
  • Helper functions on top of the supported endpoints which simplify the dApp developer experience.
  • A higher level interface for UTXO-set scanning.