@cardano-foundation/cardano-connect-with-wallet-core
Advanced tools
Comparing version 0.2.3 to 0.2.4
# Changelog | ||
## [0.2.4](https://github.com/cardano-foundation/cardano-connect-with-wallet/compare/cardano-connect-with-wallet-core-v0.2.3...cardano-connect-with-wallet-core-v0.2.4) (2023-11-22) | ||
### Bug Fixes | ||
* trigger new version to include a buxfix that was not aligned with conventional commits ([1bd758a](https://github.com/cardano-foundation/cardano-connect-with-wallet/commit/1bd758aa91e93431bde0b68372602947d6a31274)) | ||
## [0.2.3](https://github.com/cardano-foundation/cardano-connect-with-wallet/compare/cardano-connect-with-wallet-core-v0.2.2...cardano-connect-with-wallet-core-v0.2.3) (2023-08-10) | ||
@@ -4,0 +11,0 @@ |
@@ -353,4 +353,4 @@ import { | ||
const cborBalance = await api.getBalance(); | ||
const balance = decodeCbor(Buffer.from(cborBalance, 'hex')); | ||
this.accountBalanceObserver.set(balance / 1000000); | ||
const balance = decodeCbor(Buffer.from(cborBalance, "hex"), { useMaps: true }); | ||
this.accountBalanceObserver.set( Array.isArray(balance) ? balance[0] / 1_000_000 : balance / 1_000_000) | ||
} | ||
@@ -357,0 +357,0 @@ }; |
{ | ||
"name": "@cardano-foundation/cardano-connect-with-wallet-core", | ||
"version": "0.2.3", | ||
"version": "0.2.4", | ||
"description": "Framework-independent CIP-0030 wrapper functions that allow a smooth build of wallet interaction components", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -80,2 +80,2 @@ # Cardano Connect with Wallet Core | ||
Please have a look at our [contributing infos](../CONTRIBUTING.md) to become familiar with our guidelines. | ||
Please take a look at our [contributing infos](../CONTRIBUTING.md) to familiarise yourself with our guidelines. |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
533305