Skip to content

Releases: multiversx/mx-sdk-js-core

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

v12.4.2

20 Jun 11:11
16908ca
Compare
Choose a tag to compare

What's Changed

Full Changelog: v12.4.1...v12.4.2

v12.4.1

19 Jun 09:00
30f4fbf
Compare
Choose a tag to compare

What's Changed

  • Add more array sizes for the abi parser by @popenta in #299

Full Changelog: v12.4.0...v12.4.1

v12.4.0

13 Jun 11:05
b37a5b5
Compare
Choose a tag to compare

What's Changed

  • Add support for "usernames" on transactions (including relayed V1) by @andreibancioiu in #298

Full Changelog: v12.3.0...v12.4.0