From 5a3a592df8b74a2260a5f153f12510c897d5da89 Mon Sep 17 00:00:00 2001 From: hackrush <atulshyan96@gmail.com> Date: Fri, 26 Jan 2018 15:46:02 +0530 Subject: [PATCH] Related changlelog for the PR lbryio/lbryum#203 --- CHANGELOG.md | 2 ++ lbrynet/daemon/Daemon.py | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc06f4bec..760d5b653 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -50,6 +50,8 @@ at anytime. * Add `--conf` CLI flag to specify an alternate config file * Added `blockchain_name` and `lbryum_servers` to the adjustable settings * Added abandon information (claim name, id, address, amount, balance_delta and nout) about claims, supports, and updates to `transaction_list` results under `abandon_info` key + * Added `permanent_url` attribute to `channel_list_mine`, `claim_list`, `claim_show`, `resolve` and `resolve_name` API calls through lbryio/lbryum#203 + * ### Changed * claim_show API command no longer takes name as argument diff --git a/lbrynet/daemon/Daemon.py b/lbrynet/daemon/Daemon.py index d7aa7d72a..d19ce92b7 100644 --- a/lbrynet/daemon/Daemon.py +++ b/lbrynet/daemon/Daemon.py @@ -1530,6 +1530,7 @@ class Daemon(AuthJSONRPCServer): 'depth': (int) claim depth, 'has_signature': (bool) included if decoded_claim 'name': (str) claim name, + 'permanent_url': (str) permanent url of the certificate claim, 'supports: (list) list of supports [{'txid': (str) txid, 'nout': (int) nout, 'amount': (float) amount}], @@ -1554,6 +1555,7 @@ class Daemon(AuthJSONRPCServer): 'depth': (int) claim depth, 'has_signature': (bool) included if decoded_claim 'name': (str) claim name, + 'permanent_url': (str) permanent url of the claim, 'channel_name': (str) channel name if claim is in a channel 'supports: (list) list of supports [{'txid': (str) txid, 'nout': (int) nout, @@ -2211,6 +2213,7 @@ class Daemon(AuthJSONRPCServer): 'height': (int) height of the block containing the claim 'is_spent': (bool) true if claim is abandoned, false otherwise 'name': (str) name of the claim + 'permanent_url': (str) permanent url of the claim, 'txid': (str) txid of the cliam 'nout': (int) nout of the claim 'value': (str) value of the claim @@ -2243,6 +2246,7 @@ class Daemon(AuthJSONRPCServer): 'height': (int) height of block containing the claim 'txid': (str) txid of the claim 'nout': (int) nout of the claim + 'permanent_url': (str) permanent url of the claim, 'supports': (list) a list of supports attached to the claim 'value': (str) the value of the claim },