forked from LBRYCommunity/lbry-sdk
Merge remote-tracking branch 'lbryio/perm_url_changelog'
This commit is contained in:
commit
787a7a0262
2 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue