Update content/tutorials/build-apps/build-a-desktop-wallet-in-javascript.md

Co-authored-by: Jackson Mills <aim4math@gmail.com>
This commit is contained in:
Alexander Busse
2023-07-27 12:47:32 +02:00
committed by GitHub
parent 76fa3cd49a
commit 147165ccd5

View File

@@ -809,6 +809,9 @@ In this step we will query the user for a seed and a password they can use to ac
2. Modify the import section at the top of `index.js` to look like this:
```javascript
const {app, BrowserWindow, ipcMain} = require('electron')
const fs = require('fs')
const path = require('path')
const xrpl = require("xrpl")
const { initialize, subscribe, saveSaltedSeed, loadSaltedSeed } = require('./library/5_helpers')