Skip to content

Latest commit

 

History

History
107 lines (79 loc) · 2.52 KB

File metadata and controls

107 lines (79 loc) · 2.52 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[[Incomplete]]

  • Performance Benchmarks
  • Utility functions

[[Unreleased]]

[[v1.0.0]]

  • Initial production release
  • command line interface
  • automated market maker
  • utility functions
  • sidechain support

[[v.0.6.0]]

  • Added CLI interface
  • missing network_id member added to server info response
  • server_state_duration_us in server info type changed to str

[[v0.5.0]]

  • add missing NFT request models
  • add parse_nftoken_id and get_nftoken_id utility functions
  • complete existing result models and add NFT result models
  • add transaction Metadata models
  • fix serialization issue where null values were tried to be serialized
  • fix multisigning bug, because signing_pub_key is not set for multisigning but it is required, so it's just an empty string
  • add transaction response models
  • add integration tests with XRPL test net.

[[v0.4.0]]

  • add amm support
    • Transaction models
    • Transaction signing
    • Request models
  • add sidechain support
    • Transaction models
    • Transaction signing
  • improve errorhandling utilizing thiserror
  • simplifying feature flags

[[v0.3.0]]

  • Examples
    • Wallet from seed
    • New wallet generation
    • Client requests
  • make new methods of models public
  • add AsyncWebSocketClient and WebSocketClient
  • add AsyncJsonRpcClient and JsonRpcClient
  • update dependencies
  • add devcontainer
  • add transaction helpers and signing
  • add account helpers
  • add ledger helpers
  • add wallet helpers

[[v0.2.0-beta]]

Added

  • Request models
  • Transaction models
  • Ledger models
  • Utilize anyhow and thiserror for models
  • Utilities regarding serde crate
  • Utilities regarding anyhow crate

Changed

  • Use serde_with to reduce repetitive serialization skip attribute tags
  • Use strum_macros::Display instead of manual core::fmt::Display
  • Use strum_macros::Display for CryptoAlgorithm enum
  • Separated Currency to Currency (IssuedCurrency, XRP) and Amount (IssuedCurrencyAmount, XRPAmount)
  • Make Wallet fields public
  • Updated crates:
    • secp256k1
    • crypto-bigint
    • serde_with
    • criterion

Fixed

  • Broken documentation link
  • Flatten hex exceptions missed from previous pass

[v0.1.1] - 2021-10-28

Initial core release.

Added

  • All Core functionality working with unit tests