Releases: ergoplatform/ergo-node-interface-rust
Releases · ergoplatform/ergo-node-interface-rust
v0.2.5
0.2.0 - Ergo Node Interface Library
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
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
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.