@dynamic-labs/wallet-book 1.0.2 → 1.0.4
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,29 @@
|
|
|
1
1
|
|
|
2
|
+
### [1.0.4](https://github.com/dynamic-labs/DynamicAuth/compare/v1.0.3...v1.0.4) (2024-01-04)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* edge case with unlinking wallet ([#4285](https://github.com/dynamic-labs/DynamicAuth/issues/4285)) ([#4293](https://github.com/dynamic-labs/DynamicAuth/issues/4293)) ([85eb4ea](https://github.com/dynamic-labs/DynamicAuth/commit/85eb4ea0fa4521d37ee3901dbb1fa6d88a8cf8f7))
|
|
8
|
+
* phantom solana not connecting on mobile ([#4287](https://github.com/dynamic-labs/DynamicAuth/issues/4287)) ([0d85e24](https://github.com/dynamic-labs/DynamicAuth/commit/0d85e2429f2dc0a92c293cf57dc0e241c4b948be))
|
|
9
|
+
* prevent error message when mobile wallet app is open ([#4301](https://github.com/dynamic-labs/DynamicAuth/issues/4301)) ([#4303](https://github.com/dynamic-labs/DynamicAuth/issues/4303)) ([0ba145e](https://github.com/dynamic-labs/DynamicAuth/commit/0ba145e6d1145fecc3e7bc2e60d127106be9aa54))
|
|
10
|
+
* **useFetchBalance:** ensure the latest wallet balance is fetched ([#4288](https://github.com/dynamic-labs/DynamicAuth/issues/4288)) ([#4294](https://github.com/dynamic-labs/DynamicAuth/issues/4294)) ([3fa0d60](https://github.com/dynamic-labs/DynamicAuth/commit/3fa0d60552082dffd032317368d20b87cdab9c6d))
|
|
11
|
+
|
|
12
|
+
### [1.0.3](https://github.com/dynamic-labs/DynamicAuth/compare/v1.0.2...v1.0.3) (2023-12-28)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* add default footer to wallet list when tos and pp not enabled ([#4229](https://github.com/dynamic-labs/DynamicAuth/issues/4229)) ([a6d90a7](https://github.com/dynamic-labs/DynamicAuth/commit/a6d90a7276cafeaffcb21c5362837d020fc10215)), closes [#4224](https://github.com/dynamic-labs/DynamicAuth/issues/4224)
|
|
18
|
+
* add starknet support for sopelia ([#4268](https://github.com/dynamic-labs/DynamicAuth/issues/4268)) ([53d4ce4](https://github.com/dynamic-labs/DynamicAuth/commit/53d4ce400070adfb32021b01b9c748b9a7d90577))
|
|
19
|
+
* delay setting user to after pregenerated wallet flow ([#4244](https://github.com/dynamic-labs/DynamicAuth/issues/4244)) ([503d34d](https://github.com/dynamic-labs/DynamicAuth/commit/503d34d9d6f5edd55b009f1f63c049ac6dfb1fb7))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* coinbase solana signMessage ([#4261](https://github.com/dynamic-labs/DynamicAuth/issues/4261)) ([7e0e69c](https://github.com/dynamic-labs/DynamicAuth/commit/7e0e69c0ad9f9c9778ff9255909dd2314e16fa06))
|
|
25
|
+
* solflare connect ([#4215](https://github.com/dynamic-labs/DynamicAuth/issues/4215)) ([#4219](https://github.com/dynamic-labs/DynamicAuth/issues/4219)) ([df39306](https://github.com/dynamic-labs/DynamicAuth/commit/df393069b9a9859052b2d55db8dfc3399d85f2a9))
|
|
26
|
+
|
|
2
27
|
### [1.0.2](https://github.com/dynamic-labs/DynamicAuth/compare/v1.0.1...v1.0.2) (2023-12-18)
|
|
3
28
|
|
|
4
29
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/wallet-book",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/dynamic-labs/DynamicAuth.git",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"zod": "3.22.4",
|
|
29
|
-
"@dynamic-labs/logger": "1.0.
|
|
29
|
+
"@dynamic-labs/logger": "1.0.4"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"react": "^17.0.2 || ^18.0.0",
|
|
@@ -11,13 +11,6 @@ export declare const walletConnectSourceData: Record<string, {
|
|
|
11
11
|
universal: string | null;
|
|
12
12
|
};
|
|
13
13
|
sdks: string[];
|
|
14
|
-
metadata: {
|
|
15
|
-
shortName: string | null;
|
|
16
|
-
colors: {
|
|
17
|
-
primary: string | null;
|
|
18
|
-
secondary: string | null;
|
|
19
|
-
};
|
|
20
|
-
};
|
|
21
14
|
app: {
|
|
22
15
|
android: string | null;
|
|
23
16
|
ios: string | null;
|
|
@@ -46,14 +39,21 @@ export declare const walletConnectSourceData: Record<string, {
|
|
|
46
39
|
injected_id: string;
|
|
47
40
|
namespace: string;
|
|
48
41
|
}[] | null;
|
|
42
|
+
metadata: {
|
|
43
|
+
shortName: string | null;
|
|
44
|
+
colors: {
|
|
45
|
+
primary: string | null;
|
|
46
|
+
secondary: string | null;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
49
|
slug: string;
|
|
50
50
|
updatedAt: string;
|
|
51
51
|
versions: string[];
|
|
52
52
|
supported_standards?: {
|
|
53
|
-
title: string;
|
|
54
53
|
id: string;
|
|
55
54
|
standard_id: number;
|
|
56
55
|
standard_prefix: string;
|
|
56
|
+
title: string;
|
|
57
57
|
url: string;
|
|
58
58
|
}[] | undefined;
|
|
59
59
|
}>;
|
|
@@ -99,10 +99,6 @@ var wallets = {
|
|
|
99
99
|
flag: "isExodus",
|
|
100
100
|
value: false
|
|
101
101
|
},
|
|
102
|
-
{
|
|
103
|
-
flag: "isPhantom",
|
|
104
|
-
value: false
|
|
105
|
-
},
|
|
106
102
|
{
|
|
107
103
|
flag: "isZerion",
|
|
108
104
|
value: false
|
|
@@ -163,7 +159,7 @@ var wallets = {
|
|
|
163
159
|
chromeId: "hnfanknocfeofbddgcijnmhnfnkdnaad"
|
|
164
160
|
},
|
|
165
161
|
eip6963Config: {
|
|
166
|
-
rdns: "com.coinbase"
|
|
162
|
+
rdns: "com.coinbase.wallet"
|
|
167
163
|
},
|
|
168
164
|
group: "coinbase",
|
|
169
165
|
mobile: {
|
package/wallet-book-fallbacks.js
CHANGED
|
@@ -95,10 +95,6 @@ var wallets = {
|
|
|
95
95
|
flag: "isExodus",
|
|
96
96
|
value: false
|
|
97
97
|
},
|
|
98
|
-
{
|
|
99
|
-
flag: "isPhantom",
|
|
100
|
-
value: false
|
|
101
|
-
},
|
|
102
98
|
{
|
|
103
99
|
flag: "isZerion",
|
|
104
100
|
value: false
|
|
@@ -159,7 +155,7 @@ var wallets = {
|
|
|
159
155
|
chromeId: "hnfanknocfeofbddgcijnmhnfnkdnaad"
|
|
160
156
|
},
|
|
161
157
|
eip6963Config: {
|
|
162
|
-
rdns: "com.coinbase"
|
|
158
|
+
rdns: "com.coinbase.wallet"
|
|
163
159
|
},
|
|
164
160
|
group: "coinbase",
|
|
165
161
|
mobile: {
|