feat: Added getTransfersByTxid()

main
Keith Irwin 2024-04-22 20:40:43 -06:00
parent 5d22057127
commit d3564b10e9
Signed by: ki9
GPG Key ID: DF773B3F4A88DA86
2 changed files with 4 additions and 1 deletions

View File

@ -102,6 +102,9 @@ module.exports = class Wallet {
async getTransfers(params) {
return await this.rpc('get_transfers', params)
}
async getTransfersByTxid(params) {
return await this.rpc('get_transfer_by_txid', 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.21",
"version": "1.2.22",
"description": "Javascript wrapper for monero-wallet-rpc calls",
"main": "main.js",
"scripts": {