@dynamic-labs/wallet-book 4.15.0 → 4.17.0
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 +24 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +7 -7
- package/wallet-book-fallbacks.cjs +6 -0
- package/wallet-book-fallbacks.js +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,28 @@
|
|
|
1
1
|
|
|
2
|
+
## [4.17.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.16.0...v4.17.0) (2025-05-06)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add chain id option to create kernel client in react-native ([#8650](https://github.com/dynamic-labs/dynamic-auth/issues/8650)) ([1450bea](https://github.com/dynamic-labs/dynamic-auth/commit/1450bea6f979a82ed4880700aff14fa1ead9dc60))
|
|
8
|
+
* add sendCalls method to EthereumWallet ([#8634](https://github.com/dynamic-labs/dynamic-auth/issues/8634)) ([7c9aef9](https://github.com/dynamic-labs/dynamic-auth/commit/7c9aef95382b4823a40279bebfb084de32c25610))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* 7702 do not override existing old aa ([#8630](https://github.com/dynamic-labs/dynamic-auth/issues/8630)) ([a731d9e](https://github.com/dynamic-labs/dynamic-auth/commit/a731d9e77ecd9e1dec3a7704a63989b5f2741a57))
|
|
14
|
+
* improve error message when email login fails ([#8649](https://github.com/dynamic-labs/dynamic-auth/issues/8649)) ([e1c03ac](https://github.com/dynamic-labs/dynamic-auth/commit/e1c03ac6dc83386c63d63db59d31355bc4fe2959))
|
|
15
|
+
* improve react-native stability on android ([#8652](https://github.com/dynamic-labs/dynamic-auth/issues/8652)) ([1617546](https://github.com/dynamic-labs/dynamic-auth/commit/1617546e6053c2ab32f7d385336c47df185d077f))
|
|
16
|
+
|
|
17
|
+
## [4.16.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.15.0...v4.16.0) (2025-05-03)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* (GVTY-3020) add send balance to waas sui connector ([#8638](https://github.com/dynamic-labs/dynamic-auth/issues/8638)) ([97f0af0](https://github.com/dynamic-labs/dynamic-auth/commit/97f0af0504a0079ebf0958fde1f8edc34c035927))
|
|
23
|
+
* add isAtomicSupported and isPaymasterServiceSupported methods to EthereumWallet ([#8627](https://github.com/dynamic-labs/dynamic-auth/issues/8627)) ([df82b9e](https://github.com/dynamic-labs/dynamic-auth/commit/df82b9e86eafea9dd6c505227722450bc56d7c57))
|
|
24
|
+
* add solana mpc to global wallets ([#8605](https://github.com/dynamic-labs/dynamic-auth/issues/8605)) ([6261bf9](https://github.com/dynamic-labs/dynamic-auth/commit/6261bf9bec45b1d1afa13869cf5d10cda215783e))
|
|
25
|
+
|
|
2
26
|
## [4.15.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.14.0...v4.15.0) (2025-04-30)
|
|
3
27
|
|
|
4
28
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/wallet-book",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.17.0",
|
|
4
4
|
"author": "Dynamic Labs, Inc.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./src/index.cjs",
|
|
@@ -17,16 +17,16 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"zod": "3.22.4",
|
|
20
|
-
"@dynamic-labs/assert-package-version": "4.
|
|
21
|
-
"@dynamic-labs/iconic": "4.
|
|
22
|
-
"@dynamic-labs/logger": "4.
|
|
23
|
-
"@dynamic-labs/utils": "4.
|
|
20
|
+
"@dynamic-labs/assert-package-version": "4.17.0",
|
|
21
|
+
"@dynamic-labs/iconic": "4.17.0",
|
|
22
|
+
"@dynamic-labs/logger": "4.17.0",
|
|
23
|
+
"@dynamic-labs/utils": "4.17.0",
|
|
24
24
|
"eventemitter3": "5.0.1",
|
|
25
25
|
"util": "0.12.5"
|
|
26
26
|
},
|
|
27
27
|
"homepage": "https://www.dynamic.xyz/",
|
|
28
28
|
"peerDependencies": {
|
|
29
|
-
"react": "
|
|
30
|
-
"react-dom": "
|
|
29
|
+
"react": ">=18.0.0 <20.0.0",
|
|
30
|
+
"react-dom": ">=18.0.0 <20.0.0"
|
|
31
31
|
}
|
|
32
32
|
}
|
|
@@ -1610,6 +1610,12 @@ var wallets = {
|
|
|
1610
1610
|
]
|
|
1611
1611
|
}
|
|
1612
1612
|
],
|
|
1613
|
+
mobile: {
|
|
1614
|
+
androidId: "app.backpack.mobile",
|
|
1615
|
+
inAppBrowser: "backpack://ul/v1/browse/{{encodedDappURI}}",
|
|
1616
|
+
iosId: "id6445964121"
|
|
1617
|
+
},
|
|
1618
|
+
mobileExperience: "in-app-browser",
|
|
1613
1619
|
name: "Backpack"
|
|
1614
1620
|
},
|
|
1615
1621
|
binancewalletbtc: {
|
package/wallet-book-fallbacks.js
CHANGED
|
@@ -1606,6 +1606,12 @@ var wallets = {
|
|
|
1606
1606
|
]
|
|
1607
1607
|
}
|
|
1608
1608
|
],
|
|
1609
|
+
mobile: {
|
|
1610
|
+
androidId: "app.backpack.mobile",
|
|
1611
|
+
inAppBrowser: "backpack://ul/v1/browse/{{encodedDappURI}}",
|
|
1612
|
+
iosId: "id6445964121"
|
|
1613
|
+
},
|
|
1614
|
+
mobileExperience: "in-app-browser",
|
|
1609
1615
|
name: "Backpack"
|
|
1610
1616
|
},
|
|
1611
1617
|
binancewalletbtc: {
|