@exodus/headless 5.0.0-rc.7 → 5.0.0-rc.9

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,22 @@
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.9](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.8...@exodus/headless@5.0.0-rc.9) (2024-05-08)
7
+
8
+ ### Features
9
+
10
+ - **announcements:** add shownForcedAnnouncement ([#6797](https://github.com/ExodusMovement/exodus-hydra/issues/6797)) ([3af46d1](https://github.com/ExodusMovement/exodus-hydra/commit/3af46d196abdb03885091c03c9e8c86ced500193))
11
+
12
+ ## [5.0.0-rc.8](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.7...@exodus/headless@5.0.0-rc.8) (2024-05-06)
13
+
14
+ ### Features
15
+
16
+ - always pass config to features ([#6820](https://github.com/ExodusMovement/exodus-hydra/issues/6820)) ([656501d](https://github.com/ExodusMovement/exodus-hydra/commit/656501dc47948bf055decfed3a404bc92170532b))
17
+
18
+ ### Bug Fixes
19
+
20
+ - `createExodus` return type ([#6739](https://github.com/ExodusMovement/exodus-hydra/issues/6739)) ([efa2d18](https://github.com/ExodusMovement/exodus-hydra/commit/efa2d18b60a60f625223515f38b065d0cb6b3827))
21
+
6
22
  ## [5.0.0-rc.7](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/headless@5.0.0-rc.6...@exodus/headless@5.0.0-rc.7) (2024-04-29)
7
23
 
8
24
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/headless",
3
- "version": "5.0.0-rc.7",
3
+ "version": "5.0.0-rc.9",
4
4
  "description": "The platform-agnostic Exodus wallet SDK",
5
5
  "author": "Exodus Movement, Inc.",
6
6
  "main": "src/index.js",
@@ -68,11 +68,11 @@
68
68
  "minimalistic-assert": "^1.0.1"
69
69
  },
70
70
  "devDependencies": {
71
- "@exodus/ab-testing": "^7.3.0",
71
+ "@exodus/ab-testing": "^7.3.1",
72
72
  "@exodus/algorand-lib": "^2.0.1",
73
73
  "@exodus/algorand-meta": "^1.1.4",
74
74
  "@exodus/analytics": "^12.0.0",
75
- "@exodus/announcements": "^2.7.0",
75
+ "@exodus/announcements": "^2.10.0",
76
76
  "@exodus/apy-rates": "^3.3.1",
77
77
  "@exodus/assets-feature": "workspace:^",
78
78
  "@exodus/bip32": "^2.1.1",
@@ -89,12 +89,12 @@
89
89
  "@exodus/litecoin-meta": "^1.0.0",
90
90
  "@exodus/market-history": "^7.4.0",
91
91
  "@exodus/models": "^11.9.0",
92
- "@exodus/nfts": "^9.1.6",
92
+ "@exodus/nfts": "^9.2.0",
93
93
  "@exodus/personal-notes": "^3.6.0",
94
94
  "@exodus/referrals": "^8.3.0",
95
95
  "@exodus/solana-lib": "^2.0.0",
96
96
  "@exodus/solana-meta": "^1.0.2",
97
- "@exodus/storage-encrypted": "^1.3.0",
97
+ "@exodus/storage-encrypted": "^1.4.0",
98
98
  "@exodus/storage-memory": "^2.1.1",
99
99
  "@exodus/top-movers-monitor": "^4.1.0",
100
100
  "@exodus/ui-config": "^3.6.1",
@@ -107,5 +107,5 @@
107
107
  "msw": "^2.0.0",
108
108
  "p-defer": "^4.0.0"
109
109
  },
110
- "gitHead": "d24f9a801336b1449bfd49100f66cb8ee26326e9"
110
+ "gitHead": "b21125a47e34d9e0cab000078c1ae837205c995b"
111
111
  }
package/src/index.d.ts CHANGED
@@ -86,4 +86,4 @@ type Params = {
86
86
 
87
87
  export default function createExodus<D extends Definition<any, any>>(
88
88
  params: Params
89
- ): Argo<D> & { resolve: () => ExodusApi }
89
+ ): Omit<Argo<D>, 'resolve'> & { resolve: () => ExodusApi }
package/src/index.js CHANGED
@@ -47,29 +47,29 @@ const createExodus = (opts) => {
47
47
 
48
48
  ioc.use(application())
49
49
  ioc.use(addressProvider({ config: config.addressProvider, debug }))
50
- ioc.use(assetsFeature())
51
- ioc.use(availableAssets())
50
+ ioc.use(assetsFeature(config.assets))
51
+ ioc.use(availableAssets(config.availableAssets))
52
52
  ioc.use(balances(config.balances))
53
- ioc.use(blockchainMetadata())
54
- ioc.use(enabledAssets())
53
+ ioc.use(blockchainMetadata(config.blockchainMetadata))
54
+ ioc.use(enabledAssets(config.enabledAssets))
55
55
  ioc.use(featureFlags(config.featureFlags))
56
- ioc.use(fees())
57
- ioc.use(filesystem())
58
- ioc.use(geolocation())
56
+ ioc.use(fees(config.fees))
57
+ ioc.use(filesystem(config.filesystem))
58
+ ioc.use(geolocation(config.geolocation))
59
59
  ioc.use(keychain(config.keychain))
60
- ioc.use(keyViewer())
61
- ioc.use(locale())
62
- ioc.use(messageSigner())
63
- ioc.use(pricing())
64
- ioc.use(publicKeyProvider())
65
- ioc.use(publicKeyStore())
66
- ioc.use(rates())
67
- ioc.use(remoteConfig())
68
- ioc.use(restoreProgressTracker())
69
- ioc.use(startupCounter())
70
- ioc.use(transactionSigner())
71
- ioc.use(wallet())
72
- ioc.use(walletAccounts())
60
+ ioc.use(keyViewer(config.keyViewer))
61
+ ioc.use(locale(config.locale))
62
+ ioc.use(messageSigner(config.messageSigner))
63
+ ioc.use(pricing(config.pricing))
64
+ ioc.use(publicKeyProvider(config.publicKeyProvider))
65
+ ioc.use(publicKeyStore(config.publicKeyStore))
66
+ ioc.use(rates(config.rates))
67
+ ioc.use(remoteConfig(config.remoteConfig))
68
+ ioc.use(restoreProgressTracker(config.restoreProgressTracker))
69
+ ioc.use(startupCounter(config.startupCounter))
70
+ ioc.use(transactionSigner(config.transactionSigner))
71
+ ioc.use(wallet(config.wallet))
72
+ ioc.use(walletAccounts(config.walletAccounts))
73
73
 
74
74
  ioc.registerMultiple(createDependencies({ adapters, config }))
75
75