Skip to content

0.3.0

Compare
Choose a tag to compare
@edwardstock edwardstock released this 29 Nov 13:24
· 70 commits to master since this release

Release notes

  • Multiple signatures support
  • BREAKING CHANGES:
    • Old transactions will not works with new signing algorithm
    • Deprecated Transaction#sign(PrivateKey pk).
      Use Transaction#signSingle(PrivateKey pk)
      or for multiple signs: Transaction#signMulti(MinterAddress, List<PrivateKey>)
    • removed Class<> argument from Transaction#fromEncoded.
      Old signature: Transaction#fromEncoded(String hexString, Class<T extends Operation> cls),
      new: Transaction#fromEncoded(String hexString)
  • Reduced android dependencies, more pure java for JRE support (in future)
  • Custom logger