@exodus/headless 2.0.0-alpha.109 → 2.0.0-alpha.110
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/package.json +6 -6
- package/src/application.js +4 -0
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
|
+
## [2.0.0-alpha.110](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@2.0.0-alpha.109...@exodus/headless@2.0.0-alpha.110) (2023-08-23)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- add restartAutoLockTimer to wallet api ([#3552](https://github.com/ExodusMovement/exodus-hydra/issues/3552)) ([0de829d](https://github.com/ExodusMovement/exodus-hydra/commit/0de829d4ff321ed7cd340f9a6c16567a6f1bc74f))
|
|
11
|
+
|
|
6
12
|
## [2.0.0-alpha.109](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@2.0.0-alpha.108...@exodus/headless@2.0.0-alpha.109) (2023-08-22)
|
|
7
13
|
|
|
8
14
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/headless",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.110",
|
|
4
4
|
"description": "The platform-agnostic Exodus wallet SDK",
|
|
5
5
|
"author": "Exodus Movement Inc.",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"@exodus/remote-config": "^2.0.0",
|
|
51
51
|
"@exodus/restore-progress-tracker": "^2.0.5",
|
|
52
52
|
"@exodus/sodium-crypto": "^3.2.0",
|
|
53
|
-
"@exodus/wallet": "^9.
|
|
53
|
+
"@exodus/wallet": "^9.3.0",
|
|
54
54
|
"@exodus/wallet-accounts": "^12.0.0",
|
|
55
55
|
"@exodus/wallet-compatibility-modes": "^3.0.0",
|
|
56
56
|
"bip39": "^2.6.0",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"minimalistic-assert": "^1.0.1"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@exodus/ab-testing": "^6.1.
|
|
62
|
+
"@exodus/ab-testing": "^6.1.1",
|
|
63
63
|
"@exodus/algorand-lib": "^2.0.1",
|
|
64
64
|
"@exodus/algorand-meta": "^1.1.4",
|
|
65
65
|
"@exodus/apy-rates": "^3.0.1",
|
|
@@ -73,10 +73,10 @@
|
|
|
73
73
|
"@exodus/exodus-pricing-client": "^1.2.0",
|
|
74
74
|
"@exodus/key-utils": "^3.0.0",
|
|
75
75
|
"@exodus/kyc": "^4.0.0",
|
|
76
|
-
"@exodus/market-history": "^5.
|
|
76
|
+
"@exodus/market-history": "^5.4.0",
|
|
77
77
|
"@exodus/models": "^8.11.1",
|
|
78
78
|
"@exodus/nfts": "^5.0.3",
|
|
79
|
-
"@exodus/personal-notes": "^3.
|
|
79
|
+
"@exodus/personal-notes": "^3.5.0",
|
|
80
80
|
"@exodus/referrals": "^7.1.0",
|
|
81
81
|
"@exodus/solana-lib": "^1.3.11",
|
|
82
82
|
"@exodus/solana-meta": "^1.0.2",
|
|
@@ -95,5 +95,5 @@
|
|
|
95
95
|
"nock": "^13.3.1",
|
|
96
96
|
"p-defer": "^4.0.0"
|
|
97
97
|
},
|
|
98
|
-
"gitHead": "
|
|
98
|
+
"gitHead": "ade2797c06fa704d71b10798a5311bfd96b34f3b"
|
|
99
99
|
}
|
package/src/application.js
CHANGED
|
@@ -276,6 +276,10 @@ class Application extends ExodusModule {
|
|
|
276
276
|
await this.#passphraseCache.changeTtl(ttl)
|
|
277
277
|
}
|
|
278
278
|
|
|
279
|
+
restartAutoLockTimer = async () => {
|
|
280
|
+
await this.#passphraseCache.scheduleClear()
|
|
281
|
+
}
|
|
282
|
+
|
|
279
283
|
isRestoring = async () => {
|
|
280
284
|
return this.#storage.get(RESTORE_FLAG)
|
|
281
285
|
}
|