c6ae954e4e
It's not relevant for Neo 3.
63 lines
1.1 KiB
Go
63 lines
1.1 KiB
Go
/*
|
|
Package client implements NEO-specific JSON-RPC 2.0 client.
|
|
This package is currently in alpha and is subject to change.
|
|
|
|
Client
|
|
|
|
After creating a client instance with or without a ClientConfig
|
|
you can interact with the NEO blockchain by its exposed methods.
|
|
|
|
Some of the methods also allow to pass a verbose bool. This will
|
|
return a more pretty printed response from the server instead of
|
|
a raw hex string.
|
|
|
|
TODO:
|
|
Add missing methods to client.
|
|
Allow client to connect using client cert.
|
|
More in-depth examples.
|
|
|
|
Supported methods
|
|
|
|
getapplicationlog
|
|
getbestblockhash
|
|
getblock
|
|
getblockcount
|
|
getblockhash
|
|
getblockheader
|
|
getblocksysfee
|
|
getconnectioncount
|
|
getcontractstate
|
|
getnep5balances
|
|
getnep5transfers
|
|
getpeers
|
|
getrawmempool
|
|
getrawtransaction
|
|
getstorage
|
|
gettransactionheight
|
|
getunclaimedgas
|
|
getvalidators
|
|
getversion
|
|
invoke
|
|
invokefunction
|
|
invokescript
|
|
sendrawtransaction
|
|
submitblock
|
|
validateaddress
|
|
|
|
Unsupported methods
|
|
|
|
claimgas
|
|
dumpprivkey
|
|
getbalance
|
|
getmetricblocktimestamp
|
|
getnewaddress
|
|
getwalletheight
|
|
importprivkey
|
|
listaddress
|
|
listplugins
|
|
sendfrom
|
|
sendmany
|
|
sendtoaddress
|
|
|
|
*/
|
|
package client
|