Skip to content

v2.0.0

Compare
Choose a tag to compare
@JeremyPansier JeremyPansier released this 10 Jan 11:33
· 42 commits to main since this release

2.0.0 (2023-01-10)

Breaking Changes


BREAKING CHANGE: Changed several API enpoints.
* UI:
  * POST mining/start renamed to POST validation/start
  * POST mining/stop renamed to POST validation/stop
* node:
  * GET BLOCKS REQUEST renamed to GET BLOCKS
  * GET TRANSACTIONS REQUEST renamed to GET TRANSACTIONS
  * START MINING REQUEST renamed to START VALIDATION
  * STOP MINING REQUEST renamed to STOP VALIDATION

BREAKING CHANGE: The wallet amount response was an object holding one field, the amount, it is now a 64 bits floating-point number.

BREAKING CHANGE: The pubic key has been removed from the POST /transaction request body.

BREAKING CHANGE: The endpoints for a single validation are not available anymore.
* the UI endpoint /mine is not available anymore
* the node endpoint MINE REQUEST is not available anymore
  • node: let to set the seeds ports in configuration (#166) (ee39550)

BREAKING CHANGE: the config/seeds.json configuration file must now contain the seed target of the form 89.82.76.241:8106 instead of only the IP of the form 89.82.76.241.
  • ui: the created status code is wrong (#165) (5acf965)

BREAKING CHANGE: return status code 201 when a transaction or a wallet is created.

The involved API routes are:
* POST /transaction
* POST /wallet

Bug Fixes

Chores