This repository has been archived by the owner on Sep 12, 2023. It is now read-only.
0.4.13
Added
- Maker only: Add new metric under
{maker_url}/api/metrics
which shows the quantity of total positions - Maker only: Add new metric under
{maker_url}/api/metrics
which shows the number of total positions - Taker UI: Add initial onboarding tour that steps the taker through the user interface and ends in the wallet.
- Taker UI: Add link to the FAQ (frequently asked questions) documentation.
- Taker UI: Add Feedback-fish that allows users to submit feedback through a form.
- API changes: maker and taker HTTP Api changed to let the taker chose between multiple leverages
- maker:
/api/offer
: has an additional fieldleverage_choices: Vec<Leverage>
- taker:
/api/cfd/order
: has an additional fieldleverage: Leverage
, i.e. the leverage selected by the taker - both:
/api/feed/long_offer
&&/api/feed/short_ofer
: instead of a single leverage it now returns a list of leverages (leverage_choices
) - network: an additional field
leverage
was added towire::MakerToTaker::TakeOffer
. - network: an additional field
leverage_choices
was added toOrder
which is sent from maker to taker when he created a new offer.
The fieldleverage
was deprecated.
Changed
- Taker UI: Navigation improvements to more easily find the wallet.
- Taker binary: Automatically open the user interface in the default browser upon startup (includes credentials).
- Move failed CFDs (CFDs that were either rejected or the contract setup failed) into a separate table.