You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)