.. This file is licensed under the Apache License 2.0 available on http://www.apache.org/licenses/. getblockhashes ============== ``getblockhashes timestamp`` Returns array of hashes of blocks within the timestamp range provided. Arguments: ~~~~~~~~~~ 1. high (numeric, required) The newer block timestamp 2. low (numeric, required) The older block timestamp 3. options (string, required) A json object :: { "noOrphans":true (boolean) will only include blocks on the main chain "logicalTimes":true (boolean) will include logical timestamps with hashes } Result: ~~~~~~~ :: [ "hash" (string) The block hash ] [ { "blockhash": (string) The block hash "logicalts": (numeric) The logical timestamp } ] Examples: ~~~~~~~~~ :: hive-cli getblockhashes 1231614698 1231024505 :: curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "getblockhashes", "params": [1231614698, 1231024505] }' -H 'content-type: text/plain;' http://127.0.0.1:9766/ :: hive-cli getblockhashes 1231614698 1231024505 '{"noOrphans":false, "logicalTimes":true}'