feat: Added makeUri()

main
Keith Irwin 2024-04-22 19:02:01 -06:00
parent f76eaf41e1
commit 5d22057127
Signed by: ki9
GPG Key ID: DF773B3F4A88DA86
2 changed files with 5 additions and 1 deletions

View File

@ -102,5 +102,9 @@ module.exports = class Wallet {
async getTransfers(params) {
return await this.rpc('get_transfers', params)
}
// Make URI
async makeUri(params) {
return await this.rpc('make_uri', params)
}
}

View File

@ -1,7 +1,7 @@
{
"name": "monero-wallet-rpc-js",
"type": "commonjs",
"version": "1.2.20",
"version": "1.2.21",
"description": "Javascript wrapper for monero-wallet-rpc calls",
"main": "main.js",
"scripts": {