https://github.com/plenteum/plenteum-wallet-backend-js
Provides an interface to the Plenteum network, allowing wallet applications to be built.
- Downloads blocks from the network, either through a traditional daemon, or a blockchain cache for increased speed
- Processes blocks, decrypting transactions that belong to the user
- Sends and receives transactions
NPM:
npm install plenteum-wallet-backend --save
Yarn:
yarn add plenteum-wallet-backend
If you need features which have not yet made it into a release yet, you can install from GitHub.
NPM:
npm install https://github.com/plenteum/plenteum-wallet-backend-js --save
Yarn:
yarn add https://github.com/plenteum/plenteum-wallet-backend-js
You can view the documentation here
You can see a list of all the other classes on the right side of the screen.
Note that you will need to prefix them all with WB.
to access them, if you are not using typescript style imports, assuming you imported with const WB = require('plenteum-wallet-backend')
.
You can find an example project in the examples folder.
const WB = require('plenteum-wallet-backend');
(async () => {
const daemon = new WB.Daemon('127.0.0.1', 44016);
/* OR
const daemon = new WB.Daemon('cache.pleapps.plenteum.com', 443);
*/
const wallet = WB.WalletBackend.createWallet(daemon);
console.log('Created wallet');
await wallet.start();
console.log('Started wallet');
wallet.saveWalletToFile('mywallet.wallet', 'password');
/* Make sure to call stop to let the node process exit */
wallet.stop();
})().catch(err => {
console.log('Caught promise rejection: ' + err);
});
import { WalletBackend, Daemon, IDaemon } from 'plenteum-wallet-backend';
(async () => {
const daemon: IDaemon = new Daemon('127.0.0.1', 44016);
/* OR
const daemon: IDaemon = new Daemon('cache.pleapps.plenteum.com', 443);
*/
const wallet: WalletBackend = WalletBackend.createWallet(daemon);
console.log('Created wallet');
await wallet.start();
console.log('Started wallet');
wallet.saveWalletToFile('mywallet.wallet', 'password');
/* Make sure to call stop to let the node process exit */
wallet.stop();
})().catch(err => {
console.log('Caught promise rejection: ' + err);
});
There are a few features which you may wish to configure that are worth mentioning.
Auto optimization is enabled by default. This makes the wallet automatically send fusion transactions when needed to keep the wallet permanently optimized.
To enable/disable this feature, use the following code:
wallet.enableAutoOptimization(false); // disables auto optimization
By default, coinbase transactions are not scanned. This is due to the majority of people not having solo mined any blocks.
If you wish to enable coinbase transaction scanning, run this line of code:
wallet.scanCoinbaseTransactions(true)
By default, the logger is disabled. You can enable it like so:
wallet.setLogLevel(WB.LogLevel.DEBUG);
and in typescript:
wallet.setLogLevel(LogLevel.DEBUG);
The logger uses console.log, i.e. it outputs to stdout.
If you want to change this, or want more control over what messages are logged, you can provide a callback for the logger to call.
wallet.setLoggerCallback((prettyMessage, message, level, categories) => {
if (categories.includes(WB.LogCategory.SYNC)) {
console.log(prettyMessage);
}
});
and in typescript:
wallet.setLoggerCallback((prettyMessage, message, level, categories) => {
if (categories.includes(LogCategory.SYNC)) {
console.log(prettyMessage);
}
});
In this example, we only print messages that fall into the SYNC category.
You can view available categories and log levels in the documentation.
- Update dependency version for plenteum-utils
- Fix heightchange being emitted on topblock when there are still blocks remaining to be processed
on('heightchange')
is now emitted whenreset()
,rewind()
, orrescan()
is used.on('heightchange')
is now emitted when a top block is stored, fixing wallet height lagging behind network height.
- Fix issue with removeForkedTransactions, which also effected
rewind()
- Add
rewind()
- Add
on('heightchange')
event - More improvements to keep-alive, max sockets, etc
- Fix bug causing balance from sent transaction to appear in both locked + unlocked balance
- Fix bug with how forked transactions were handled
- Increase max sockets to use with request to fix timeouts in some environments
- Fix bug where transactions to yourself had an incorrect amount when locked
- Add
on('disconnect')
andon('connect')
events for daemon
- Update
plenteum-utils
dependency Start of changelog.
git clone https://github.com/plenteum/plenteum-wallet-backend-js.git
cd plenteum-wallet-backend
npm install -g yarn
(Skip this if you already have yarn installed)
yarn build
Generated javascript files will be written to the dist/lib/ folder.
yarn test
- This will run the basic tests
yarn test-all
- This will run all tests, including performance tests.
- Ensure you are editing the TypeScript code, and not the JavaScript code (You should be in the
lib/
folder) - Ensure you have built the JavaScript code from the TypeScript code:
yarn build
- Ensure you have updated the documentation if necessary - Documentation is generated from inline comments, jsdoc style.
- Ensure you have rebuilt the documentation, if you have changed it:
yarn docs
- Ensure the tests all still pass:
yarn test
, oryarn test-all
if you have a local daemon running. - Ensure your code adheres to the style requirements:
yarn style
You can try running yarn style --fix
to automatically fix issues.