@dynamic-labs/wallet-connector-core 4.3.2 → 4.4.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 +9 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +7 -7
- package/src/Wallet/Wallet.d.ts +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,13 @@
|
|
|
1
1
|
|
|
2
|
+
## [4.4.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.3.2...v4.4.0) (2025-01-24)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* allow override of rpc urls in evmNetworks overrides ([#7874](https://github.com/dynamic-labs/dynamic-auth/issues/7874)) ([41c5030](https://github.com/dynamic-labs/dynamic-auth/commit/f0fef3c06bb82457da92c7f5655a0a6daf57e3aa))
|
|
8
|
+
* add ZeroDev v3 migration support ([#7854](https://github.com/dynamic-labs/dynamic-auth/issues/7854)) ([8e34ea0](https://github.com/dynamic-labs/dynamic-auth/commit/8e34ea0ec2451ded6df1138f53354b0a53140ecc))
|
|
9
|
+
* adds view for choosing funds deposit method ([#7813](https://github.com/dynamic-labs/dynamic-auth/issues/7813)) ([41c5030](https://github.com/dynamic-labs/dynamic-auth/commit/41c50309c94da61525bff5ea5f36dc1f68a4c79d))
|
|
10
|
+
|
|
2
11
|
### [4.3.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.3.1...v4.3.2) (2025-01-24)
|
|
3
12
|
|
|
4
13
|
### [4.3.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.3.0...v4.3.1) (2025-01-23)
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/wallet-connector-core",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.4.0",
|
|
4
4
|
"description": "Core package for utilities and types for handling multiple wallet/chain support Dynamic SDK",
|
|
5
5
|
"author": "Dynamic Labs, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
"@dynamic-labs/sdk-api-core": "0.0.599"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@dynamic-labs/assert-package-version": "4.
|
|
25
|
-
"@dynamic-labs/logger": "4.
|
|
26
|
-
"@dynamic-labs/rpc-providers": "4.
|
|
27
|
-
"@dynamic-labs/types": "4.
|
|
28
|
-
"@dynamic-labs/utils": "4.
|
|
29
|
-
"@dynamic-labs/wallet-book": "4.
|
|
24
|
+
"@dynamic-labs/assert-package-version": "4.4.0",
|
|
25
|
+
"@dynamic-labs/logger": "4.4.0",
|
|
26
|
+
"@dynamic-labs/rpc-providers": "4.4.0",
|
|
27
|
+
"@dynamic-labs/types": "4.4.0",
|
|
28
|
+
"@dynamic-labs/utils": "4.4.0",
|
|
29
|
+
"@dynamic-labs/wallet-book": "4.4.0",
|
|
30
30
|
"eventemitter3": "5.0.1"
|
|
31
31
|
}
|
|
32
32
|
}
|
package/src/Wallet/Wallet.d.ts
CHANGED
|
@@ -11,9 +11,13 @@ export declare abstract class Wallet<T extends InternalWalletConnector = Interna
|
|
|
11
11
|
* Gets the wallet connector.
|
|
12
12
|
*/
|
|
13
13
|
get connector(): WalletConnector;
|
|
14
|
-
abstract sendBalance({ amount, toAddress, }: {
|
|
14
|
+
abstract sendBalance({ amount, toAddress, token, }: {
|
|
15
15
|
amount: string;
|
|
16
16
|
toAddress: string;
|
|
17
|
+
token?: {
|
|
18
|
+
address: string;
|
|
19
|
+
decimals?: number;
|
|
20
|
+
};
|
|
17
21
|
}): Promise<string | undefined>;
|
|
18
22
|
/**
|
|
19
23
|
* Retrieves the balance of the wallet.
|