diff --git a/content/_code-samples/build-a-browser-wallet/README.md b/content/_code-samples/build-a-browser-wallet/README.md new file mode 100644 index 0000000000..640e29134a --- /dev/null +++ b/content/_code-samples/build-a-browser-wallet/README.md @@ -0,0 +1,3 @@ +# Build a Browser Wallet + +Implement a non-custodial wallet application that runs on in a web browser and can check an account's balances, send XRP, and notify when the account receives incoming transactions. diff --git a/content/_code-samples/build-a-desktop-wallet/README.md b/content/_code-samples/build-a-desktop-wallet/README.md index 5ea0092e11..ae5732f355 100644 --- a/content/_code-samples/build-a-desktop-wallet/README.md +++ b/content/_code-samples/build-a-desktop-wallet/README.md @@ -1,3 +1,3 @@ # Build a Wallet -Implement a non-custodial wallet application that can check an account's balances, send XRP, and notify when the account receives incoming transactions. +Implement a non-custodial wallet application that runs on a desktop and can check an account's balances, send XRP, and notify when the account receives incoming transactions. diff --git a/content/_code-samples/build-a-desktop-wallet/js/README.md b/content/_code-samples/build-a-desktop-wallet/js/README.md index 1e7037d253..0c5db5887d 100644 --- a/content/_code-samples/build-a-desktop-wallet/js/README.md +++ b/content/_code-samples/build-a-desktop-wallet/js/README.md @@ -1,7 +1,8 @@ # Build a Desktop Wallet Sample Code (JavaScript) -This folder contains sample code for a non-custodial XRP Ledger wallet application in JavaScript. For the full -documentation, refer to the [Build a Wallet in JavaScript tutorial](build-a-wallet-in-javascript.html). +Build a non-custodial XRP Ledger wallet application in JavaScript that runs on the desktop using Electron. + +For the full documentation, refer to the [Build a Wallet in JavaScript tutorial](build-a-wallet-in-javascript.html). ## TL;DR diff --git a/content/_code-samples/build-a-desktop-wallet/js/package.json b/content/_code-samples/build-a-desktop-wallet/js/package.json index 95addc7fa0..eea91a1799 100644 --- a/content/_code-samples/build-a-desktop-wallet/js/package.json +++ b/content/_code-samples/build-a-desktop-wallet/js/package.json @@ -23,6 +23,6 @@ "xrpl": "^2.6.0" }, "devDependencies": { - "electron": "22.3.2" + "electron": "22.3.24" } } diff --git a/content/tutorials/build-apps/build-a-desktop-wallet-in-javascript.md b/content/tutorials/build-apps/build-a-desktop-wallet-in-javascript.md index 1aa325f18c..a9de9c705d 100644 --- a/content/tutorials/build-apps/build-a-desktop-wallet-in-javascript.md +++ b/content/tutorials/build-apps/build-a-desktop-wallet-in-javascript.md @@ -76,7 +76,7 @@ In addition to the above features, you'll also learn a bit about Events, IPC (in "xrpl": "^2.6.0" }, "devDependencies": { - "electron": "22.3.2" + "electron": "22.3.24" } } ```