From 5d2205712770891d5fe1de5d40494303f972a9d4 Mon Sep 17 00:00:00 2001 From: Keith Irwin Date: Mon, 22 Apr 2024 19:02:01 -0600 Subject: [PATCH] feat: :sparkles: Added makeUri() --- main.js | 4 ++++ package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/main.js b/main.js index afcd6c1..33a698c 100644 --- a/main.js +++ b/main.js @@ -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) + } } diff --git a/package.json b/package.json index e4c4f90..2337e13 100644 --- a/package.json +++ b/package.json @@ -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": {