Quickly integrate submitting WAX blockchain transactions in NodeJS projects
npm i jswaxdispatcher
const { jswaxdispatcher } = require('jswaxdispatcher')
const projectWallet = new jswaxdispatcher(privateKey, walletAddress, permission, customSignatureProvider)
//permission & customSignatureProvider optional but recommended.
//DEFAULTS permission = 'active', customSignatureProvider = JsSignatureProvider from eosjs
projectWallet.sendWax(quantity, recipient, memo) //memo optional
.then((res) => {console.log(res)});
Send an address WAX with optional memo
Send an address a specified token with optional memo
Send an address NFTs by specified asset_ids with optional memo
Burn NFTs by specified asset_ids
Mint NFTs by specified template #, wallet must be authorized with the collection
The default customSignatureProvider is JsSignatureProvider included with eosjs.
"Using the JsSignatureProvider in the browser is not secure and should only be used for development purposes. Use a secure vault outside of the context of the webpage to ensure security when signing transactions in production" ~eosjs documentation