{"message":"getblock \"hash\" ( verbose )\n\nIf verbose is false, returns a string that is serialized, hex-encoded data for block 'hash'.\nIf verbose is true, returns an Object with information about block <hash>.\n\nArguments:\n1. \"hash\"          (string, required) The block hash\n2. verbose           (boolean, optional, default=true) true for a json object, false for the hex encoded data\n\nResult (for verbose = true):\n{\n  \"hash\" : \"hash\",     (string) the block hash (same as provided)\n  \"confirmations\" : n,   (numeric) The number of confirmations, or -1 if the block is not on the main chain\n  \"size\" : n,            (numeric) The block size\n  \"height\" : n,          (numeric) The block height or index\n  \"version\" : n,         (numeric) The block version\n  \"merkleroot\" : \"xxxx\", (string) The merkle root\n  \"tx\" : [               (array of string) The transaction ids\n     \"transactionid\"     (string) The transaction id\n     ,...\n  ],\n  \"time\" : ttt,          (numeric) The block time in seconds since epoch (Jan 1 1970 GMT)\n  \"nonce\" : n,           (numeric) The nonce\n  \"bits\" : \"1d00ffff\", (string) The bits\n  \"difficulty\" : x.xxx,  (numeric) The difficulty\n  \"previousblockhash\" : \"hash\",  (string) The hash of the previous block\n  \"nextblockhash\" : \"hash\"       (string) The hash of the next block\n  \"moneysupply\" : \"supply\"       (numeric) The money supply when this block was added to the blockchain\n  \"zUNIGRIDsupply\" :\n  {\n     \"1\" : n,            (numeric) supply of 1 zUNIGRID denomination\n     \"5\" : n,            (numeric) supply of 5 zUNIGRID denomination\n     \"10\" : n,           (numeric) supply of 10 zUNIGRID denomination\n     \"50\" : n,           (numeric) supply of 50 zUNIGRID denomination\n     \"100\" : n,          (numeric) supply of 100 zUNIGRID denomination\n     \"500\" : n,          (numeric) supply of 500 zUNIGRID denomination\n     \"1000\" : n,         (numeric) supply of 1000 zUNIGRID denomination\n     \"5000\" : n,         (numeric) supply of 5000 zUNIGRID denomination\n     \"total\" : n,        (numeric) The total supply of all zUNIGRID denominations\n  }\n}\n\nResult (for verbose=false):\n\"data\"             (string) A string that is serialized, hex-encoded data for block 'hash'.\n\nExamples:\n> unigrid-cli getblock \"00000000000fd08c2fb661d2fcb0d49abb3a91e5f27082ce64feed3b4dede2e2\"\n> curl --user myusername --data-binary '{\"jsonrpc\": \"1.0\", \"id\":\"curltest\", \"method\": \"getblock\", \"params\": [\"00000000000fd08c2fb661d2fcb0d49abb3a91e5f27082ce64feed3b4dede2e2\"] }' -H 'content-type: text/plain;' http://127.0.0.1:51993/\n","code":-1,"name":"RpcError"}