@exodus/assets-feature 8.3.0 → 8.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 +6 -0
- package/client/asset-client-interface.js +8 -0
- package/client/index.js +1 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [8.4.0](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/assets-feature@8.3.0...@exodus/assets-feature@8.4.0) (2025-08-18)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- feat: multisigDataIndex in address-provider (#13331)
|
|
11
|
+
|
|
6
12
|
## [8.3.0](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/assets-feature@8.2.0...@exodus/assets-feature@8.3.0) (2025-08-11)
|
|
7
13
|
|
|
8
14
|
### Features
|
|
@@ -17,6 +17,7 @@ class AssetClientInterface {
|
|
|
17
17
|
#publicKeyProvider
|
|
18
18
|
#transactionSigner
|
|
19
19
|
#walletAccountsAtom
|
|
20
|
+
#multisigAtom
|
|
20
21
|
|
|
21
22
|
constructor({
|
|
22
23
|
addressProvider,
|
|
@@ -31,6 +32,7 @@ class AssetClientInterface {
|
|
|
31
32
|
publicKeyProvider,
|
|
32
33
|
transactionSigner,
|
|
33
34
|
walletAccountsAtom,
|
|
35
|
+
multisigAtom,
|
|
34
36
|
}) {
|
|
35
37
|
this.#addressProvider = addressProvider
|
|
36
38
|
this.#assetsModule = assetsModule
|
|
@@ -44,6 +46,7 @@ class AssetClientInterface {
|
|
|
44
46
|
this.#publicKeyProvider = publicKeyProvider
|
|
45
47
|
this.#transactionSigner = transactionSigner
|
|
46
48
|
this.#walletAccountsAtom = walletAccountsAtom
|
|
49
|
+
this.#multisigAtom = multisigAtom
|
|
47
50
|
|
|
48
51
|
assetsModule.initialize({ assetClientInterface: this })
|
|
49
52
|
}
|
|
@@ -186,6 +189,11 @@ class AssetClientInterface {
|
|
|
186
189
|
out.multiAddressMode = multiAddressMode
|
|
187
190
|
}
|
|
188
191
|
|
|
192
|
+
if (this.#multisigAtom) {
|
|
193
|
+
const multisigWallets = await this.#multisigAtom.get()
|
|
194
|
+
out.multisigDataLength = multisigWallets[walletAccount]?.data?.length
|
|
195
|
+
}
|
|
196
|
+
|
|
189
197
|
return out
|
|
190
198
|
}
|
|
191
199
|
|
package/client/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/assets-feature",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.4.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "This Exodus SDK feature provides access to instances of all blockchain asset adapters supported by the wallet, and enables you to search for and add custom tokens at runtime.",
|
|
6
6
|
"type": "module",
|
|
@@ -68,12 +68,12 @@
|
|
|
68
68
|
"@exodus/fusion-local": "^2.1.0",
|
|
69
69
|
"@exodus/keychain": "^7.3.0",
|
|
70
70
|
"@exodus/logger": "^1.2.3",
|
|
71
|
-
"@exodus/models": "^12.
|
|
71
|
+
"@exodus/models": "^12.16.0",
|
|
72
72
|
"@exodus/osmosis-plugin": "^1.3.3",
|
|
73
73
|
"@exodus/public-key-provider": "^4.2.0",
|
|
74
|
-
"@exodus/redux-dependency-injection": "^4.1.
|
|
74
|
+
"@exodus/redux-dependency-injection": "^4.1.2",
|
|
75
75
|
"@exodus/storage-memory": "^2.3.0",
|
|
76
|
-
"@exodus/wallet-accounts": "^
|
|
76
|
+
"@exodus/wallet-accounts": "^18.0.0",
|
|
77
77
|
"@exodus/wild-emitter": "^1.0.0",
|
|
78
78
|
"events": "^3.3.0",
|
|
79
79
|
"msw": "^2.0.0",
|
|
@@ -82,5 +82,5 @@
|
|
|
82
82
|
"publishConfig": {
|
|
83
83
|
"access": "public"
|
|
84
84
|
},
|
|
85
|
-
"gitHead": "
|
|
85
|
+
"gitHead": "b8d308870cb99b2eee6b6a1ccf5240eb2b228a1e"
|
|
86
86
|
}
|