Bump electron ver and fix build a wallet readmes

This commit is contained in:
mDuo13
2023-09-22 19:28:51 -07:00
parent 63efabe0c2
commit 83809242f3
5 changed files with 9 additions and 5 deletions

View File

@@ -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.

View File

@@ -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.

View File

@@ -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

View File

@@ -23,6 +23,6 @@
"xrpl": "^2.6.0"
},
"devDependencies": {
"electron": "22.3.2"
"electron": "22.3.24"
}
}

View File

@@ -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"
}
}
```