getblock - Okcash RPC

getblock "blockhash" ( txinfo ) 

Arguments:
1. "blockhash"          (string, required) The block hash
2. txinfo              (optional )

Result :
{
  "hash" : "hash",     (string) the block hash (same as provided)
  "confirmations" : n,   (numeric) The number of confirmations, or -1 if the block is not on the main chain
  "size" : n,            (numeric) The block size
  "height" : n,          (numeric) The block height or index
  "version" : n,         (numeric) The block version
  "merkleroot" : "xxxx", (string) The merkle root
  "mint" : "xxxx", (string) The witness merkle root
  "time" : ttt,          (numeric) The block time in seconds since epoch (Jan 1 1970 GMT)
  "nonce" : n,           (numeric) The nonce
  "bits" : "1d00ffff", (string) The bits
  "difficulty" : x.xxx,  (numeric) The difficulty
  "blocktrust" : "xxxx",
  "chaintrust" : "xxxx",
  "previousblockhash" : "hash",  (string) The hash of the previous block
  "nextblockhash" : "hash"       (string) The hash of the next block
  "flags" : "xxxx",
  "proofhash" : "xxxx",
  "entropybit" : "xxxx",
  "modifier" : "xxxx",
  "tx" : [               (array of string) The transaction ids
     "transactionid"     (string) The transaction id
     ,...
  ],
  "signature" : "xxxx",
}


Examples:
> okcashd getblock "000000000256c3789ba62f63c5ee9c21ef5cb28ee53a428944089deccf4f5002"
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "getblock", "params": ["000000000256c3789ba62f63c5ee9c21ef5cb28ee53a428944089deccf4f5002"] }' -H 'content-type: text/plain;' http://127.0.0.1:6969/


Okcash Core RPC documentation.

Okcash version: 5.0.0.3

OK RPC docs at:Github