@exodus/headless 3.1.2 → 3.1.3
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/headless",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.3",
|
|
4
4
|
"description": "The platform-agnostic Exodus wallet SDK",
|
|
5
5
|
"author": "Exodus Movement Inc.",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -65,33 +65,33 @@
|
|
|
65
65
|
"minimalistic-assert": "^1.0.1"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"@exodus/ab-testing": "
|
|
68
|
+
"@exodus/ab-testing": "workspace:^",
|
|
69
69
|
"@exodus/algorand-lib": "^2.0.1",
|
|
70
70
|
"@exodus/algorand-meta": "^1.1.4",
|
|
71
|
-
"@exodus/analytics": "
|
|
72
|
-
"@exodus/apy-rates": "
|
|
71
|
+
"@exodus/analytics": "workspace:^",
|
|
72
|
+
"@exodus/apy-rates": "workspace:^",
|
|
73
73
|
"@exodus/assets-feature": "workspace:^",
|
|
74
74
|
"@exodus/bitcoin-plugin": "^1.0.14",
|
|
75
|
-
"@exodus/connected-origins": "
|
|
76
|
-
"@exodus/crypto-news-monitor": "
|
|
75
|
+
"@exodus/connected-origins": "workspace:^",
|
|
76
|
+
"@exodus/crypto-news-monitor": "workspace:^",
|
|
77
77
|
"@exodus/currency": "^2.2.0",
|
|
78
78
|
"@exodus/ethereum-lib": "^3.3.34",
|
|
79
79
|
"@exodus/ethereum-meta": "^1.0.23",
|
|
80
|
-
"@exodus/exodus-pricing-client": "
|
|
80
|
+
"@exodus/exodus-pricing-client": "workspace:^",
|
|
81
81
|
"@exodus/key-utils": "^3.0.0",
|
|
82
|
-
"@exodus/kyc": "
|
|
82
|
+
"@exodus/kyc": "workspace:^",
|
|
83
83
|
"@exodus/litecoin-meta": "^1.0.0",
|
|
84
|
-
"@exodus/market-history": "
|
|
84
|
+
"@exodus/market-history": "workspace:^",
|
|
85
85
|
"@exodus/models": "^10.1.0",
|
|
86
|
-
"@exodus/nfts": "
|
|
87
|
-
"@exodus/personal-notes": "
|
|
88
|
-
"@exodus/referrals": "
|
|
86
|
+
"@exodus/nfts": "workspace:^",
|
|
87
|
+
"@exodus/personal-notes": "workspace:^",
|
|
88
|
+
"@exodus/referrals": "workspace:^",
|
|
89
89
|
"@exodus/solana-lib": "^1.3.11",
|
|
90
90
|
"@exodus/solana-meta": "^1.0.2",
|
|
91
|
-
"@exodus/storage-encrypted": "
|
|
92
|
-
"@exodus/storage-memory": "
|
|
93
|
-
"@exodus/top-movers-monitor": "
|
|
94
|
-
"@exodus/ui-config": "
|
|
91
|
+
"@exodus/storage-encrypted": "workspace:^",
|
|
92
|
+
"@exodus/storage-memory": "workspace:^",
|
|
93
|
+
"@exodus/top-movers-monitor": "workspace:^",
|
|
94
|
+
"@exodus/ui-config": "workspace:^",
|
|
95
95
|
"@exodus/wild-emitter": "^1.0.0",
|
|
96
96
|
"buffer-json": "^2.0.0",
|
|
97
97
|
"deepmerge": "^4.2.2",
|
|
@@ -102,6 +102,5 @@
|
|
|
102
102
|
"jest": "^29.1.2",
|
|
103
103
|
"msw": "^2.0.0",
|
|
104
104
|
"p-defer": "^4.0.0"
|
|
105
|
-
}
|
|
106
|
-
"gitHead": "4a8c81564820e017474d48d61f622d6280d773d3"
|
|
105
|
+
}
|
|
107
106
|
}
|
|
@@ -296,9 +296,9 @@ class Application extends ExodusModule {
|
|
|
296
296
|
this._logger.log('passphrase changed')
|
|
297
297
|
}
|
|
298
298
|
|
|
299
|
-
delete = async ({ forgotPassphrase } = {}) => {
|
|
299
|
+
delete = async ({ forgotPassphrase, restartOptions } = {}) => {
|
|
300
300
|
await this.#storage.set(DELETE_FLAG, true)
|
|
301
|
-
await this.fire(Hook.Restart, { reason: 'delete', forgotPassphrase })
|
|
301
|
+
await this.fire(Hook.Restart, { ...restartOptions, reason: 'delete', forgotPassphrase })
|
|
302
302
|
}
|
|
303
303
|
|
|
304
304
|
stop = async () => {
|