rpc: implement missing RPC client methods
Implemented following RPC client methods: - getapplicationlog - getassetstate - getbestblockhash - getblockcount - getblockhash - getblockheader - getblocksysfee - getconnectioncount - getcontractstate - getpeers - getrawmempool - getstorage - gettransactionheight - gettxout - getunclaimed - getvalidators - getversion - submitblock - validateaddress
This commit is contained in:
parent
1b5dd53e07
commit
307b3b162b
2 changed files with 285 additions and 19 deletions
|
@ -19,42 +19,44 @@ TODO:
|
|||
Supported methods
|
||||
|
||||
getaccountstate
|
||||
getapplicationlog
|
||||
getassetstate
|
||||
getbestblockhash
|
||||
getblock
|
||||
getblockcount
|
||||
getblockhash
|
||||
getblockheader
|
||||
getblocksysfee
|
||||
getclaimable
|
||||
getconnectioncount
|
||||
getcontractstate
|
||||
getnep5balances
|
||||
getnep5transfers
|
||||
getpeers
|
||||
getrawmempool
|
||||
getrawtransaction
|
||||
getstorage
|
||||
gettransactionheight
|
||||
gettxout
|
||||
getunclaimed
|
||||
getunspents
|
||||
getvalidators
|
||||
getversion
|
||||
invoke
|
||||
invokefunction
|
||||
invokescript
|
||||
sendrawtransaction
|
||||
submitblock
|
||||
validateaddress
|
||||
|
||||
Unsupported methods
|
||||
|
||||
claimgas
|
||||
dumpprivkey
|
||||
getapplicationlog
|
||||
getassetstate
|
||||
getbalance
|
||||
getbestblockhash
|
||||
getblockcount
|
||||
getblockhash
|
||||
getblockheader
|
||||
getblocksysfee
|
||||
getconnectioncount
|
||||
getcontractstate
|
||||
getmetricblocktimestamp
|
||||
getnewaddress
|
||||
getpeers
|
||||
getrawmempool
|
||||
getstorage
|
||||
gettransactionheight
|
||||
gettxout
|
||||
getunclaimed
|
||||
getunclaimedgas
|
||||
getvalidators
|
||||
getversion
|
||||
getwalletheight
|
||||
importprivkey
|
||||
listaddress
|
||||
|
@ -62,8 +64,6 @@ Unsupported methods
|
|||
sendfrom
|
||||
sendmany
|
||||
sendtoaddress
|
||||
submitblock
|
||||
validateaddress
|
||||
|
||||
*/
|
||||
package client
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue