edge-core-js 2.44.0 → 2.45.0

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
@@ -2,6 +2,11 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 2.45.0 (2026-06-12)
6
+
7
+ - changed: Convert the build tooling from Yarn to npm.
8
+ - security: Upgrade dependencies per Socket security recommendations.
9
+
5
10
  ## 2.44.0 (2026-04-06)
6
11
 
7
12
  - added: Expose engine otherMethods on EdgeMemoryWallet so memory wallets support custom methods like makeMaxSpend.
@@ -965,7 +970,7 @@ This release completely changes the way React Native works, both to improve perf
965
970
  - Stop depending on external libraries such as react-native-fast-crypto, react-native-randombytes, or react-native-webview.
966
971
  - Use React Native auto-linking to integrate all native code, HTML, and Javascript needed to run the core.
967
972
  - Accept core plugins via a `pluginUris` prop to `MakeEdgeContext` or `MakeFakeEdgeWorld`.
968
- - Allow core debugging by running `yarn start` in this repo to start a dev server, and then setting the `debug` prop to true.
973
+ - Allow core debugging by running `npm run start` in this repo to start a dev server, and then setting the `debug` prop to true.
969
974
  - Accept an `allowDebugging` prop on Android to enable WebView debugging in general (useful for debugging plugins).
970
975
  - changed: Require `EdgeCurrencyEngine` methods to return promises.
971
976
  - changed: Mark methods as `readonly` in the TypeScript definitions, to match what Flow was already doing.
package/README.md CHANGED
@@ -82,12 +82,12 @@ The core itself runs inside a hidden WebView, which this `MakeEdgeContext` compo
82
82
 
83
83
  The core creates a `<script>` tag for each source file in the `pluginUris` array. For this to work, you need to add these plugin files to your app's native asset bundle, which is located at `/android/app/src/main/assets/` on Android. For iOS, drag these files into the "Resources" section of your Xcode project.
84
84
 
85
- To debug the core, run `yarn start` inside the edge-core-js project, and then pass a `debug={true}` property to the `MakeEdgeContext` component. This tells the WebView to load the core from a local development server.
85
+ To debug the core, run `npm run start` inside the edge-core-js project, and then pass a `debug={true}` property to the `MakeEdgeContext` component. This tells the WebView to load the core from a local development server.
86
86
 
87
87
  ## Contributing
88
88
 
89
- Run `yarn` to download dependencies, and then run `yarn prepare` to build the library.
89
+ Run `npm install` to download dependencies, and then run `npm run prepare` to build the library.
90
90
 
91
- Use `yarn verify` to run all our code-quality tools. All sources are in the [JavaScript Standard Style](http://standardjs.com/) + [Prettier](https://prettier.io/). We check files prior to each commit, so if you have formatting issues, you can run `yarn fix` to fix them automatically.
91
+ Use `npm run verify` to run all our code-quality tools. All sources are in the [JavaScript Standard Style](http://standardjs.com/) + [Prettier](https://prettier.io/). We check files prior to each commit, so if you have formatting issues, you can run `npm run fix` to fix them automatically.
92
92
 
93
93
  If you use Visual Studio Code, consider installing the [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) extension. This will give you nice error highlighting as you work, along with quick fixes for formatting issues.