Skip to content

Releases: multiversx/mx-sdk-js-core

v12.10.0

06 Oct 07:12
df4ddc2
Compare
Choose a tag to compare

What's Changed

What's Changed

  • Add Endpoint definition Owner-Only Support by @michavie in #335

Full Changelog: v12.9.0...v12.10.0

v12.9.0

19 Sep 11:41
ece6a7a
Compare
Choose a tag to compare

What's Changed

What's Changed

Full Changelog: v12.8.1...v12.9.0

v12.8.1

18 Sep 09:45
233c495
Compare
Choose a tag to compare

What's Changed

What's Changed

  • For constructor of "TokenTransfer", mark "numDecimals" as optional by @andreibancioiu in #332

Full Changelog: v12.8.0...v12.8.1

v12.8.0

31 Aug 16:26
2c93aef
Compare
Choose a tag to compare

What's Changed

What's Changed

Full Changelog: v12.7.1...v12.8.0

v12.7.1

24 Aug 13:36
9d98024
Compare
Choose a tag to compare

What's Changed

What's Changed

  • Referenced the new network providers package by @popenta in #321

Full Changelog: v12.7.0...v12.7.1

v12.7.0

22 Aug 13:26
da562ad
Compare
Choose a tag to compare

What's Changed

The TransactionWatcher needed to accommodate the latest changes of the sdk-network-providers (see PR here). The isCompleted field of the TransactionOnNetwork class has become optional.

The TransactionWatcher class needs a TransactionFetcher object when initialized. You can use both ApiNetworkProvider or ProxyNetworkProvider because both respect the interface.

In case you are using the proxy provider and you need the isCompleted field, a plain object that uses the proxy provider can be passed, defining a getTransaction() method that explicitly calls proxyProvider.getTransaction() using withProcessStatus=true.
This can be done as bellow:

let provider = new ProxyNetworkProvider("http://localhost:7950", { timeout: 5000 });
let watcher = new TransactionWatcher({
    getTransaction: async (hash: string) => { return await provider.getTransaction(hash, true) }
});

What's Changed

Full Changelog: v12.6.1...v12.7.0

v12.6.1

09 Aug 12:06
2ffd086
Compare
Choose a tag to compare

What's Changed

What's Changed

New Contributors

Full Changelog: v12.6.0...v12.6.1

v12.6.0

14 Jul 13:59
e8fce21
Compare
Choose a tag to compare

What's Changed

  • add enums type inference in NativeSerializer and fix Enum valueof() by @nvergez in #300

🙌 🙏 @nvergez

Full Changelog: v12.5.0...v12.6.0

v12.5.0

12 Jul 11:30
0e2fcd9
Compare
Choose a tag to compare

What's Changed

Full Changelog: v12.4.3...v12.5.0

v12.4.3

27 Jun 08:57
3d0035e
Compare
Choose a tag to compare

What's Changed

Full Changelog: v12.4.2...v12.4.3