@exodus/headless 4.0.0-rc.6 → 4.0.0-rc.7
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": "4.0.0-rc.
|
|
3
|
+
"version": "4.0.0-rc.7",
|
|
4
4
|
"description": "The platform-agnostic Exodus wallet SDK",
|
|
5
5
|
"author": "Exodus Movement Inc.",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -58,9 +58,8 @@
|
|
|
58
58
|
"@exodus/sodium-crypto": "^3.2.0",
|
|
59
59
|
"@exodus/startup-counter": "^1.0.0",
|
|
60
60
|
"@exodus/tx-signer": "^2.0.1-rc.0",
|
|
61
|
-
"@exodus/wallet": "^13.0.0-rc.
|
|
61
|
+
"@exodus/wallet": "^13.0.0-rc.2",
|
|
62
62
|
"@exodus/wallet-accounts": "^16.2.0-rc.2",
|
|
63
|
-
"@exodus/wallet-compatibility-modes": "^4.1.0",
|
|
64
63
|
"bip39": "^2.6.0",
|
|
65
64
|
"events": "^3.3.0",
|
|
66
65
|
"lodash": "npm:@exodus/lodash@^4.17.21-exodus.2",
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import createKeyIdentifierProvider from '@exodus/key-identifier-provider'
|
|
2
|
-
import walletCompatibilityModesDefinition from '@exodus/wallet-compatibility-modes/module'
|
|
3
2
|
|
|
4
3
|
import unlockEncryptedStorageDefinition from '../unlock-encrypted-storage'
|
|
5
4
|
import { withType } from './utils'
|
|
@@ -13,11 +12,6 @@ const createModuleDependencies = ({ config }) =>
|
|
|
13
12
|
dependencies: [],
|
|
14
13
|
},
|
|
15
14
|
},
|
|
16
|
-
{
|
|
17
|
-
definition: walletCompatibilityModesDefinition,
|
|
18
|
-
storage: { namespace: 'walletCompatibilityModes' },
|
|
19
|
-
aliases: [{ implementationId: 'unsafeStorage', interfaceId: 'storage' }],
|
|
20
|
-
},
|
|
21
15
|
{ definition: unlockEncryptedStorageDefinition },
|
|
22
16
|
].map(withType('module'))
|
|
23
17
|
|