@dynamic-labs/wallet-book 2.0.0-alpha.7 → 2.0.0-alpha.9
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 +17 -0
- package/package.json +4 -4
- package/src/build/sources/walletConnect/index.d.ts +10 -10
- package/wallet-book-fallbacks.cjs +27 -1
- package/wallet-book-fallbacks.js +27 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,21 @@
|
|
|
1
1
|
|
|
2
|
+
## [2.0.0-alpha.9](https://github.com/dynamic-labs/DynamicAuth/compare/v2.0.0-alpha.8...v2.0.0-alpha.9) (2024-03-06)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* solana connector new sendTransaction method ([#4842](https://github.com/dynamic-labs/DynamicAuth/issues/4842)) ([0b198e3](https://github.com/dynamic-labs/DynamicAuth/commit/0b198e30d83fbbc8d506654d87cbfad403fda289))
|
|
8
|
+
* specify solana network when using phantom redirect deeplinking ([#4863](https://github.com/dynamic-labs/DynamicAuth/issues/4863)) ([fb4ee7c](https://github.com/dynamic-labs/DynamicAuth/commit/fb4ee7cfc0493c9c85b6ccb31954842556c58aa4))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* isLoggedIn should return true even when there is no primary wallet ([#4875](https://github.com/dynamic-labs/DynamicAuth/issues/4875)) ([f396e22](https://github.com/dynamic-labs/DynamicAuth/commit/f396e22b9d809b05ac52194ffa4346f3591d17fe))
|
|
14
|
+
* update btckit network conversion for signPsbt ([a6009e1](https://github.com/dynamic-labs/DynamicAuth/commit/a6009e18c453b4e65545455fea0e52ed7a983b4d))
|
|
15
|
+
* user getting logged out when signing in with email linked to a unavailable wallet ([#4858](https://github.com/dynamic-labs/DynamicAuth/issues/4858)) ([8653e13](https://github.com/dynamic-labs/DynamicAuth/commit/8653e13d2067dd0161e660b4374c08a9fe0bc203))
|
|
16
|
+
|
|
17
|
+
## [2.0.0-alpha.8](https://github.com/dynamic-labs/DynamicAuth/compare/v2.0.0-alpha.7...v2.0.0-alpha.8) (2024-03-04)
|
|
18
|
+
|
|
2
19
|
## [2.0.0-alpha.7](https://github.com/dynamic-labs/DynamicAuth/compare/v2.0.0-alpha.6...v2.0.0-alpha.7) (2024-02-28)
|
|
3
20
|
|
|
4
21
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/wallet-book",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.9",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/dynamic-labs/DynamicAuth.git",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"zod": "3.22.4",
|
|
29
|
-
"@dynamic-labs/iconic": "2.0.0-alpha.
|
|
30
|
-
"@dynamic-labs/logger": "2.0.0-alpha.
|
|
31
|
-
"@dynamic-labs/utils": "2.0.0-alpha.
|
|
29
|
+
"@dynamic-labs/iconic": "2.0.0-alpha.9",
|
|
30
|
+
"@dynamic-labs/logger": "2.0.0-alpha.9",
|
|
31
|
+
"@dynamic-labs/utils": "2.0.0-alpha.9",
|
|
32
32
|
"util": "0.12.5"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
@@ -1,12 +1,4 @@
|
|
|
1
1
|
export declare const walletConnectSourceData: Record<string, {
|
|
2
|
-
id: string;
|
|
3
|
-
metadata: {
|
|
4
|
-
shortName: string | null;
|
|
5
|
-
colors: {
|
|
6
|
-
primary: string | null;
|
|
7
|
-
secondary: string | null;
|
|
8
|
-
};
|
|
9
|
-
};
|
|
10
2
|
name: string;
|
|
11
3
|
chains: string[];
|
|
12
4
|
desktop: {
|
|
@@ -36,6 +28,7 @@ export declare const walletConnectSourceData: Record<string, {
|
|
|
36
28
|
category: string | null;
|
|
37
29
|
description: string | null;
|
|
38
30
|
homepage: string;
|
|
31
|
+
id: string;
|
|
39
32
|
image_id: string;
|
|
40
33
|
image_url: {
|
|
41
34
|
lg: string;
|
|
@@ -46,15 +39,22 @@ 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
53
|
id: string;
|
|
54
|
-
title: string;
|
|
55
|
-
url: string;
|
|
56
54
|
standard_id: number;
|
|
57
55
|
standard_prefix: string;
|
|
56
|
+
title: string;
|
|
57
|
+
url: string;
|
|
58
58
|
}[] | undefined;
|
|
59
59
|
}>;
|
|
60
60
|
export declare const walletConnectTransformedData: Promise<Record<string, {
|
|
@@ -12,6 +12,14 @@ var groups = {
|
|
|
12
12
|
key: "argentx",
|
|
13
13
|
name: "ArgentX"
|
|
14
14
|
},
|
|
15
|
+
backpack: {
|
|
16
|
+
brand: {
|
|
17
|
+
alt: "Backpack",
|
|
18
|
+
spriteId: "backpack"
|
|
19
|
+
},
|
|
20
|
+
key: "backpack",
|
|
21
|
+
name: "Backpack"
|
|
22
|
+
},
|
|
15
23
|
bitgetwallet: {
|
|
16
24
|
brand: {
|
|
17
25
|
alt: "Bitget Wallet",
|
|
@@ -872,10 +880,28 @@ var wallets = {
|
|
|
872
880
|
primaryColor: "#e43c3c",
|
|
873
881
|
spriteId: "backpack"
|
|
874
882
|
},
|
|
883
|
+
chainGroup: "backpack",
|
|
875
884
|
desktop: {
|
|
876
885
|
chromeId: "aflkmfhebedbjioipglgcbcmnbpgliof"
|
|
877
886
|
},
|
|
878
|
-
|
|
887
|
+
eip6963Config: {
|
|
888
|
+
rdns: "app.backpack"
|
|
889
|
+
},
|
|
890
|
+
group: "backpack",
|
|
891
|
+
injectedConfig: [
|
|
892
|
+
{
|
|
893
|
+
chain: "evm",
|
|
894
|
+
extensionLocators: [
|
|
895
|
+
{
|
|
896
|
+
flag: "isBackpack",
|
|
897
|
+
value: true
|
|
898
|
+
}
|
|
899
|
+
],
|
|
900
|
+
windowLocations: [
|
|
901
|
+
]
|
|
902
|
+
}
|
|
903
|
+
],
|
|
904
|
+
name: "Backpack"
|
|
879
905
|
},
|
|
880
906
|
okxwalletbtc: {
|
|
881
907
|
brand: {
|
package/wallet-book-fallbacks.js
CHANGED
|
@@ -8,6 +8,14 @@ var groups = {
|
|
|
8
8
|
key: "argentx",
|
|
9
9
|
name: "ArgentX"
|
|
10
10
|
},
|
|
11
|
+
backpack: {
|
|
12
|
+
brand: {
|
|
13
|
+
alt: "Backpack",
|
|
14
|
+
spriteId: "backpack"
|
|
15
|
+
},
|
|
16
|
+
key: "backpack",
|
|
17
|
+
name: "Backpack"
|
|
18
|
+
},
|
|
11
19
|
bitgetwallet: {
|
|
12
20
|
brand: {
|
|
13
21
|
alt: "Bitget Wallet",
|
|
@@ -868,10 +876,28 @@ var wallets = {
|
|
|
868
876
|
primaryColor: "#e43c3c",
|
|
869
877
|
spriteId: "backpack"
|
|
870
878
|
},
|
|
879
|
+
chainGroup: "backpack",
|
|
871
880
|
desktop: {
|
|
872
881
|
chromeId: "aflkmfhebedbjioipglgcbcmnbpgliof"
|
|
873
882
|
},
|
|
874
|
-
|
|
883
|
+
eip6963Config: {
|
|
884
|
+
rdns: "app.backpack"
|
|
885
|
+
},
|
|
886
|
+
group: "backpack",
|
|
887
|
+
injectedConfig: [
|
|
888
|
+
{
|
|
889
|
+
chain: "evm",
|
|
890
|
+
extensionLocators: [
|
|
891
|
+
{
|
|
892
|
+
flag: "isBackpack",
|
|
893
|
+
value: true
|
|
894
|
+
}
|
|
895
|
+
],
|
|
896
|
+
windowLocations: [
|
|
897
|
+
]
|
|
898
|
+
}
|
|
899
|
+
],
|
|
900
|
+
name: "Backpack"
|
|
875
901
|
},
|
|
876
902
|
okxwalletbtc: {
|
|
877
903
|
brand: {
|