From f0a26fd801a8f614ecbd991ffdc5cf6030145363 Mon Sep 17 00:00:00 2001 From: fbslo Date: Fri, 5 Jun 2020 13:25:35 +0200 Subject: [PATCH 1/2] Added claim_search Added claim_search API call --- build/LbryDaemonClient.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/LbryDaemonClient.js b/build/LbryDaemonClient.js index c5ee222..34526f2 100644 --- a/build/LbryDaemonClient.js +++ b/build/LbryDaemonClient.js @@ -240,6 +240,9 @@ class RPCClient { wallet_unused_address(params) { return this.request("wallet_unused_address", params); } + claim_search(params) { + return this.request("claim_search", params); + } } module.exports = RPCClient; From aabdd55af7f5cbbaf3c85b7576a43f2cecdaf504 Mon Sep 17 00:00:00 2001 From: fbslo Date: Sun, 7 Jun 2020 19:39:57 +0200 Subject: [PATCH 2/2] Added account_create API call --- build/LbryDaemonClient.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/LbryDaemonClient.js b/build/LbryDaemonClient.js index 34526f2..93d3772 100644 --- a/build/LbryDaemonClient.js +++ b/build/LbryDaemonClient.js @@ -243,6 +243,9 @@ class RPCClient { claim_search(params) { return this.request("claim_search", params); } + account_create(params) { + return this.request("account_create", params); + } } module.exports = RPCClient;