@exodus/headless 5.0.0-rc.80 → 5.0.0-rc.81

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 CHANGED
@@ -3,6 +3,10 @@
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
+ ## [5.0.0-rc.81](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.80...@exodus/headless@5.0.0-rc.81) (2025-09-04)
7
+
8
+ **Note:** Version bump only for package @exodus/headless
9
+
6
10
  ## [5.0.0-rc.80](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.79...@exodus/headless@5.0.0-rc.80) (2025-09-02)
7
11
 
8
12
  **Note:** Version bump only for package @exodus/headless
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/headless",
3
- "version": "5.0.0-rc.80",
3
+ "version": "5.0.0-rc.81",
4
4
  "description": "The platform-agnostic Exodus wallet SDK",
5
5
  "author": "Exodus Movement, Inc.",
6
6
  "type": "module",
@@ -93,7 +93,7 @@
93
93
  "@exodus/event-log": "^2.9.0",
94
94
  "@exodus/fetch": "^1.2.1",
95
95
  "@exodus/fetch-factory": "^2.3.1",
96
- "@exodus/fiat-ramp": "^15.0.0",
96
+ "@exodus/fiat-ramp": "^15.1.0",
97
97
  "@exodus/key-identifier": "^1.2.1",
98
98
  "@exodus/kyc": "^7.1.0",
99
99
  "@exodus/logger": "^1.2.3",
@@ -137,5 +137,5 @@
137
137
  "publishConfig": {
138
138
  "access": "public"
139
139
  },
140
- "gitHead": "21afee1a40189de192611333a8c544779a92c0e6"
140
+ "gitHead": "b0babfb3ca82b9079b251d979aeb7f591d6ddb23"
141
141
  }
package/src/index.js CHANGED
@@ -114,7 +114,7 @@ const createExodus = (opts) => {
114
114
 
115
115
  const { storage, migrateableStorage } = ioc.getByType('adapter')
116
116
 
117
- const { application, wallet, unlockEncryptedStorage } = ioc.getByType('module')
117
+ const { application, unlockEncryptedStorage } = ioc.getByType('module')
118
118
 
119
119
  const { migrations } = ioc.getAll()
120
120
 
@@ -125,17 +125,7 @@ const createExodus = (opts) => {
125
125
 
126
126
  application.on('load', (args) => port.emit('load', args))
127
127
 
128
- application.on('create', async ({ hasPassphraseSet }) => {
129
- const isLocked = await wallet.isLocked()
130
-
131
- port.emit('create', {
132
- walletExists: true,
133
- hasPassphraseSet,
134
- isLocked,
135
- isBackedUp: false,
136
- isRestoring: false,
137
- })
138
- })
128
+ application.on('create', async (args) => port.emit('create', args))
139
129
 
140
130
  application.on('unlock', () => port.emit('unlock'))
141
131