@dynamic-labs/ethereum-aa 2.0.0-alpha.2 → 2.0.0-alpha.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 +35 -0
- package/package.json +8 -8
- package/src/ZeroDevConnector.cjs +0 -1
- package/src/ZeroDevConnector.d.ts +1 -1
- package/src/ZeroDevConnector.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,39 @@
|
|
|
1
1
|
|
|
2
|
+
## [2.0.0-alpha.4](https://github.com/dynamic-labs/DynamicAuth/compare/v2.0.0-alpha.3...v2.0.0-alpha.4) (2024-02-22)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### ⚠ BREAKING CHANGES
|
|
6
|
+
|
|
7
|
+
* remove wallet connector from callback types (#4730)
|
|
8
|
+
* drop support for walletconnect v1 (#4666)
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* add coin98 evm ([1d64f5f](https://github.com/dynamic-labs/DynamicAuth/commit/1d64f5f00885ff671358651fd0251b77a2e05739))
|
|
13
|
+
* add support for solana versioned transactions ([#4721](https://github.com/dynamic-labs/DynamicAuth/issues/4721)) ([25b1643](https://github.com/dynamic-labs/DynamicAuth/commit/25b1643f8addbada09fff5d22e988bdf22038170))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* allow rpc-providers package to use exports based on usage ([#4539](https://github.com/dynamic-labs/DynamicAuth/issues/4539)) ([abdc196](https://github.com/dynamic-labs/DynamicAuth/commit/abdc19641580cbcfe8f9e357c645f8291bc9ed66))
|
|
19
|
+
* coinbasesocial should display coinbase in profile linking section ([#4680](https://github.com/dynamic-labs/DynamicAuth/issues/4680)) ([21cbe2e](https://github.com/dynamic-labs/DynamicAuth/commit/21cbe2e24345a33bc927428c01cc7b5c724e40e5))
|
|
20
|
+
* improve on transaction confirmation step ([#4704](https://github.com/dynamic-labs/DynamicAuth/issues/4704)) ([f2b27cf](https://github.com/dynamic-labs/DynamicAuth/commit/f2b27cfd94452be2eb7e88a298f61ef56985931f))
|
|
21
|
+
* prevent the DynamicMultiWalletPromptsWidget from opening if useris not logged in ([#4701](https://github.com/dynamic-labs/DynamicAuth/issues/4701)) ([2bb35fd](https://github.com/dynamic-labs/DynamicAuth/commit/2bb35fd29b60677e893390f7d47857cd76c73adc))
|
|
22
|
+
* reduce isPreauthorized calls when starknet wallet is connected ([#4710](https://github.com/dynamic-labs/DynamicAuth/issues/4710)) ([ca6a630](https://github.com/dynamic-labs/DynamicAuth/commit/ca6a630dd47a1c116afcd63fe7256ffc745532ab))
|
|
23
|
+
* update sepolia currency symbol ([#4728](https://github.com/dynamic-labs/DynamicAuth/issues/4728)) ([3c228a0](https://github.com/dynamic-labs/DynamicAuth/commit/3c228a03ccc962374ad1dac3ab45af92732ba61a))
|
|
24
|
+
* use overflow clip when available, use hidden by default ([#4696](https://github.com/dynamic-labs/DynamicAuth/issues/4696)) ([29fb2a1](https://github.com/dynamic-labs/DynamicAuth/commit/29fb2a1e48b010c6c1d525403fbdcf7ded068466))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
* drop support for walletconnect v1 ([#4666](https://github.com/dynamic-labs/DynamicAuth/issues/4666)) ([4af93e4](https://github.com/dynamic-labs/DynamicAuth/commit/4af93e4f9b95fa4c49bbfda0c1144da1a4a43991))
|
|
28
|
+
* remove wallet connector from callback types ([#4730](https://github.com/dynamic-labs/DynamicAuth/issues/4730)) ([08cb200](https://github.com/dynamic-labs/DynamicAuth/commit/08cb200a09c0fd78d2093d1a60b17089b3b2c2b1))
|
|
29
|
+
|
|
30
|
+
## [2.0.0-alpha.3](https://github.com/dynamic-labs/DynamicAuth/compare/v2.0.0-alpha.2...v2.0.0-alpha.3) (2024-02-13)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Bug Fixes
|
|
34
|
+
|
|
35
|
+
* allow any icon to be used in wallet list tabs ([#4678](https://github.com/dynamic-labs/DynamicAuth/issues/4678)) ([eb03603](https://github.com/dynamic-labs/DynamicAuth/commit/eb036031725a91cb28c144b3bdcb5b20b3314038))
|
|
36
|
+
|
|
2
37
|
## [2.0.0-alpha.2](https://github.com/dynamic-labs/DynamicAuth/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-02-13)
|
|
3
38
|
|
|
4
39
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/ethereum-aa",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.4",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/dynamic-labs/DynamicAuth.git",
|
|
@@ -27,13 +27,13 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@zerodev/sdk": "^4.1.5",
|
|
30
|
-
"@dynamic-labs/sdk-api": "0.0.
|
|
31
|
-
"@dynamic-labs/logger": "2.0.0-alpha.
|
|
32
|
-
"@dynamic-labs/types": "2.0.0-alpha.
|
|
33
|
-
"@dynamic-labs/utils": "2.0.0-alpha.
|
|
34
|
-
"@dynamic-labs/viem-utils": "2.0.0-alpha.
|
|
35
|
-
"@dynamic-labs/wallet-book": "2.0.0-alpha.
|
|
36
|
-
"@dynamic-labs/wallet-connector-core": "2.0.0-alpha.
|
|
30
|
+
"@dynamic-labs/sdk-api": "0.0.373",
|
|
31
|
+
"@dynamic-labs/logger": "2.0.0-alpha.4",
|
|
32
|
+
"@dynamic-labs/types": "2.0.0-alpha.4",
|
|
33
|
+
"@dynamic-labs/utils": "2.0.0-alpha.4",
|
|
34
|
+
"@dynamic-labs/viem-utils": "2.0.0-alpha.4",
|
|
35
|
+
"@dynamic-labs/wallet-book": "2.0.0-alpha.4",
|
|
36
|
+
"@dynamic-labs/wallet-connector-core": "2.0.0-alpha.4"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"viem": "^1.19.13 || ^2.2.0"
|
package/src/ZeroDevConnector.cjs
CHANGED
|
@@ -122,7 +122,6 @@ class ZeroDevConnector extends walletConnectorCore.WalletConnectorBase {
|
|
|
122
122
|
}
|
|
123
123
|
getTransport(provider) {
|
|
124
124
|
const transport = viemUtils.confirmationTransport({
|
|
125
|
-
connector: this,
|
|
126
125
|
onPersonalSign: ({ message }) => _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
127
126
|
this._walletUiUtils.disabledConfirmationOnce();
|
|
128
127
|
return provider.signMessage(message);
|
|
@@ -10,7 +10,7 @@ type ZeroDevConnectorProps = {
|
|
|
10
10
|
};
|
|
11
11
|
evmNetworks: GenericNetwork[];
|
|
12
12
|
walletBook: WalletBookSchema;
|
|
13
|
-
walletUiUtils: WalletUiUtils
|
|
13
|
+
walletUiUtils: WalletUiUtils;
|
|
14
14
|
};
|
|
15
15
|
export declare class ZeroDevConnector extends WalletConnectorBase implements IAccountAbstractionWalletConnector {
|
|
16
16
|
projectId: string;
|
package/src/ZeroDevConnector.js
CHANGED
|
@@ -118,7 +118,6 @@ class ZeroDevConnector extends WalletConnectorBase {
|
|
|
118
118
|
}
|
|
119
119
|
getTransport(provider) {
|
|
120
120
|
const transport = confirmationTransport({
|
|
121
|
-
connector: this,
|
|
122
121
|
onPersonalSign: ({ message }) => __awaiter(this, void 0, void 0, function* () {
|
|
123
122
|
this._walletUiUtils.disabledConfirmationOnce();
|
|
124
123
|
return provider.signMessage(message);
|