@dynamic-labs/wallet-connector-core 0.17.8 → 0.17.10
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,19 @@
|
|
|
1
1
|
|
|
2
|
+
### [0.17.10](https://github.com/dynamic-labs/DynamicAuth/compare/v0.17.9...v0.17.10) (2023-06-23)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* use getAuthTokenValue in initExpirationTime ([#2425](https://github.com/dynamic-labs/DynamicAuth/issues/2425)) ([b7e23df](https://github.com/dynamic-labs/DynamicAuth/commit/b7e23df15eb2c40213900ec61d55860ec7aa43f0)), closes [#2423](https://github.com/dynamic-labs/DynamicAuth/issues/2423) [#2422](https://github.com/dynamic-labs/DynamicAuth/issues/2422)
|
|
8
|
+
|
|
9
|
+
### [0.17.9](https://github.com/dynamic-labs/DynamicAuth/compare/v0.17.8...v0.17.9) (2023-06-21)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **balance:** normalize matic addresses to show balance ([#2385](https://github.com/dynamic-labs/DynamicAuth/issues/2385)) ([#2398](https://github.com/dynamic-labs/DynamicAuth/issues/2398)) ([8afd0a7](https://github.com/dynamic-labs/DynamicAuth/commit/8afd0a7773c962ece4b6fbb6988587a45c4b64d7))
|
|
15
|
+
* **wagmi-connector:** use private custom rpc if available ([#2380](https://github.com/dynamic-labs/DynamicAuth/issues/2380)) ([#2397](https://github.com/dynamic-labs/DynamicAuth/issues/2397)) ([0bf1d17](https://github.com/dynamic-labs/DynamicAuth/commit/0bf1d17705b097d25c75af25e27252a28c593ff9))
|
|
16
|
+
|
|
2
17
|
### [0.17.8](https://github.com/dynamic-labs/DynamicAuth/compare/v0.17.7...v0.17.8) (2023-06-20)
|
|
3
18
|
|
|
4
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/wallet-connector-core",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.10",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/dynamic-labs/DynamicAuth.git",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@dynamic-labs/logger": "0.17.
|
|
31
|
-
"@dynamic-labs/rpc-providers": "0.17.
|
|
32
|
-
"@dynamic-labs/utils": "0.17.
|
|
33
|
-
"@dynamic-labs/wallet-book": "0.17.
|
|
30
|
+
"@dynamic-labs/logger": "0.17.10",
|
|
31
|
+
"@dynamic-labs/rpc-providers": "0.17.10",
|
|
32
|
+
"@dynamic-labs/utils": "0.17.10",
|
|
33
|
+
"@dynamic-labs/wallet-book": "0.17.10"
|
|
34
34
|
}
|
|
35
35
|
}
|
|
@@ -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', 'avax'].includes(chain.toLowerCase());
|
|
9
|
+
['eip155', 'flow', 'evm', 'eth', 'avax', 'matic'].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', 'avax'].includes(chain.toLowerCase());
|
|
5
|
+
['eip155', 'flow', 'evm', 'eth', 'avax', 'matic'].includes(chain.toLowerCase());
|
|
6
6
|
|
|
7
7
|
export { shouldLowercaseAddress };
|