@dynamic-labs/multi-wallet 0.16.14 → 0.16.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,4 +1,18 @@
1
1
 
2
+ ### [0.16.16](https://github.com/dynamic-labs/DynamicAuth/compare/v0.16.15...v0.16.16) (2023-05-11)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * **balance:** correctly compare AVAX address when fetching balance ([#2095](https://github.com/dynamic-labs/DynamicAuth/issues/2095)) ([d7edb60](https://github.com/dynamic-labs/DynamicAuth/commit/d7edb603f8298c51406f335d052f01c1da4a187b))
8
+
9
+ ### [0.16.15](https://github.com/dynamic-labs/DynamicAuth/compare/v0.16.14...v0.16.15) (2023-05-10)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * use primary wallet id from LS on handleUnlinkWallet ([#2066](https://github.com/dynamic-labs/DynamicAuth/issues/2066)) ([68e36a5](https://github.com/dynamic-labs/DynamicAuth/commit/68e36a5656f9fa7704d5bf18b25f6a55c0d9dcf3))
15
+
2
16
  ### [0.16.14](https://github.com/dynamic-labs/DynamicAuth/compare/v0.16.13...v0.16.14) (2023-05-08)
3
17
 
4
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/multi-wallet",
3
- "version": "0.16.14",
3
+ "version": "0.16.16",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/dynamic-labs/DynamicAuth.git",
@@ -28,8 +28,8 @@
28
28
  "magic-sdk": "^16.0.1",
29
29
  "@keplr-wallet/provider": "0.11.56",
30
30
  "@keplr-wallet/types": "^0.11.51",
31
- "@dynamic-labs/logger": "0.16.14",
32
- "@dynamic-labs/wallet-connector-core": "0.16.14"
31
+ "@dynamic-labs/logger": "0.16.16",
32
+ "@dynamic-labs/wallet-connector-core": "0.16.16"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@walletconnect/types": "^2.2.1"
@@ -6,6 +6,6 @@ const shouldLowercaseAddress = (chain) =>
6
6
  // these are standard from CAIP-2: https://github.com/ChainAgnostic/CAIPs/blob/master/CAIPs/caip-2.md
7
7
  // see also: https://github.com/ChainAgnostic/namespaces
8
8
  // note: no standard namespace currently exists for flow
9
- ['eip155', 'flow', 'evm', 'eth'].includes(chain.toLowerCase());
9
+ ['eip155', 'flow', 'evm', 'eth', 'avax'].includes(chain.toLowerCase());
10
10
 
11
11
  exports.shouldLowercaseAddress = shouldLowercaseAddress;
@@ -2,6 +2,6 @@ const shouldLowercaseAddress = (chain) =>
2
2
  // these are standard from CAIP-2: https://github.com/ChainAgnostic/CAIPs/blob/master/CAIPs/caip-2.md
3
3
  // see also: https://github.com/ChainAgnostic/namespaces
4
4
  // note: no standard namespace currently exists for flow
5
- ['eip155', 'flow', 'evm', 'eth'].includes(chain.toLowerCase());
5
+ ['eip155', 'flow', 'evm', 'eth', 'avax'].includes(chain.toLowerCase());
6
6
 
7
7
  export { shouldLowercaseAddress };