@dynamic-labs/wallet-book 1.4.11 → 1.4.13
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 +15 -0
- package/package.json +4 -4
- package/wallet-book-fallbacks.cjs +31 -1
- package/wallet-book-fallbacks.js +31 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
|
|
2
|
+
### [1.4.13](https://github.com/dynamic-labs/DynamicAuth/compare/v1.4.12...v1.4.13) (2024-06-05)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* bump @solana/web3.js containing new version of rpc-websockets ([#5864](https://github.com/dynamic-labs/DynamicAuth/issues/5864)) ([562ff9b](https://github.com/dynamic-labs/DynamicAuth/commit/562ff9b706c8be62812ace08bcaef96e26dcd841))
|
|
8
|
+
* wallet improvements
|
|
9
|
+
|
|
10
|
+
### [1.4.12](https://github.com/dynamic-labs/DynamicAuth/compare/v1.4.11...v1.4.12) (2024-05-22)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* init ethers web3provider without a network if selected network is unsupported ([#5658](https://github.com/dynamic-labs/DynamicAuth/issues/5658)) ([9973af8](https://github.com/dynamic-labs/DynamicAuth/commit/9973af8fa6bc3f45095f4b830fe480ff2ed58a77))
|
|
16
|
+
|
|
2
17
|
### [1.4.11](https://github.com/dynamic-labs/DynamicAuth/compare/v1.4.10...v1.4.11) (2024-04-26)
|
|
3
18
|
|
|
4
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/wallet-book",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.13",
|
|
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": "1.4.
|
|
30
|
-
"@dynamic-labs/logger": "1.4.
|
|
31
|
-
"@dynamic-labs/utils": "1.4.
|
|
29
|
+
"@dynamic-labs/iconic": "1.4.13",
|
|
30
|
+
"@dynamic-labs/logger": "1.4.13",
|
|
31
|
+
"@dynamic-labs/utils": "1.4.13",
|
|
32
32
|
"util": "0.12.5"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
@@ -401,7 +401,36 @@ var wallets = {
|
|
|
401
401
|
alt: "MyAlgo Wallet",
|
|
402
402
|
spriteId: "myalgo"
|
|
403
403
|
},
|
|
404
|
-
|
|
404
|
+
chainGroup: "okxwallet",
|
|
405
|
+
desktop: {
|
|
406
|
+
chromeId: "mcohilncbfahbmgdjkbpemcciiolgcge"
|
|
407
|
+
},
|
|
408
|
+
group: "okxwallet",
|
|
409
|
+
injectedConfig: [
|
|
410
|
+
{
|
|
411
|
+
chain: "sol",
|
|
412
|
+
extensionLocators: [
|
|
413
|
+
{
|
|
414
|
+
flag: "isOKExWallet",
|
|
415
|
+
value: true
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
flag: "isOkxWallet",
|
|
419
|
+
value: true
|
|
420
|
+
}
|
|
421
|
+
],
|
|
422
|
+
windowLocations: [
|
|
423
|
+
"okxwallet.solana"
|
|
424
|
+
]
|
|
425
|
+
}
|
|
426
|
+
],
|
|
427
|
+
mobile: {
|
|
428
|
+
androidId: "com.okinc.okex.gp",
|
|
429
|
+
inAppBrowser: "okx://wallet/dapp/url?dappUrl={{encodedDappURI}}",
|
|
430
|
+
iosId: "id1327268470"
|
|
431
|
+
},
|
|
432
|
+
name: "OKX",
|
|
433
|
+
shortName: "OKX Solana"
|
|
405
434
|
},
|
|
406
435
|
blocto: {
|
|
407
436
|
brand: {
|
|
@@ -900,6 +929,7 @@ var wallets = {
|
|
|
900
929
|
],
|
|
901
930
|
mobile: {
|
|
902
931
|
androidId: "com.okinc.okex.gp",
|
|
932
|
+
inAppBrowser: "okx://wallet/dapp/url?dappUrl={{encodedDappURI}}",
|
|
903
933
|
iosId: "id1327268470"
|
|
904
934
|
},
|
|
905
935
|
name: "OKX",
|
package/wallet-book-fallbacks.js
CHANGED
|
@@ -397,7 +397,36 @@ var wallets = {
|
|
|
397
397
|
alt: "MyAlgo Wallet",
|
|
398
398
|
spriteId: "myalgo"
|
|
399
399
|
},
|
|
400
|
-
|
|
400
|
+
chainGroup: "okxwallet",
|
|
401
|
+
desktop: {
|
|
402
|
+
chromeId: "mcohilncbfahbmgdjkbpemcciiolgcge"
|
|
403
|
+
},
|
|
404
|
+
group: "okxwallet",
|
|
405
|
+
injectedConfig: [
|
|
406
|
+
{
|
|
407
|
+
chain: "sol",
|
|
408
|
+
extensionLocators: [
|
|
409
|
+
{
|
|
410
|
+
flag: "isOKExWallet",
|
|
411
|
+
value: true
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
flag: "isOkxWallet",
|
|
415
|
+
value: true
|
|
416
|
+
}
|
|
417
|
+
],
|
|
418
|
+
windowLocations: [
|
|
419
|
+
"okxwallet.solana"
|
|
420
|
+
]
|
|
421
|
+
}
|
|
422
|
+
],
|
|
423
|
+
mobile: {
|
|
424
|
+
androidId: "com.okinc.okex.gp",
|
|
425
|
+
inAppBrowser: "okx://wallet/dapp/url?dappUrl={{encodedDappURI}}",
|
|
426
|
+
iosId: "id1327268470"
|
|
427
|
+
},
|
|
428
|
+
name: "OKX",
|
|
429
|
+
shortName: "OKX Solana"
|
|
401
430
|
},
|
|
402
431
|
blocto: {
|
|
403
432
|
brand: {
|
|
@@ -896,6 +925,7 @@ var wallets = {
|
|
|
896
925
|
],
|
|
897
926
|
mobile: {
|
|
898
927
|
androidId: "com.okinc.okex.gp",
|
|
928
|
+
inAppBrowser: "okx://wallet/dapp/url?dappUrl={{encodedDappURI}}",
|
|
899
929
|
iosId: "id1327268470"
|
|
900
930
|
},
|
|
901
931
|
name: "OKX",
|