|
|
@ -8,9 +8,59 @@ import ( |
|
|
|
. "github.com/tendermint/tmlibs/common" |
|
|
|
) |
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Returns at most 20 blocks
|
|
|
|
// Get block headers for minHeight <= height <= maxHeight.
|
|
|
|
//
|
|
|
|
// ```shell
|
|
|
|
// curl 'localhost:46657/blockchain?minHeight=10&maxHeight=10'
|
|
|
|
// ```
|
|
|
|
//
|
|
|
|
// ```go
|
|
|
|
// client := client.NewHTTP("tcp://0.0.0.0:46657", "/websocket")
|
|
|
|
// info, err := client.BlockchainInfo(10, 10)
|
|
|
|
// ```
|
|
|
|
//
|
|
|
|
// > The above command returns JSON structured like this:
|
|
|
|
//
|
|
|
|
// ```json
|
|
|
|
// {
|
|
|
|
// "error": "",
|
|
|
|
// "result": {
|
|
|
|
// "block_metas": [
|
|
|
|
// {
|
|
|
|
// "header": {
|
|
|
|
// "app_hash": "",
|
|
|
|
// "chain_id": "test-chain-6UTNIN",
|
|
|
|
// "height": 10,
|
|
|
|
// "time": "2017-05-29T15:05:53.877Z",
|
|
|
|
// "num_txs": 0,
|
|
|
|
// "last_block_id": {
|
|
|
|
// "parts": {
|
|
|
|
// "hash": "3C78F00658E06744A88F24FF97A0A5011139F34A",
|
|
|
|
// "total": 1
|
|
|
|
// },
|
|
|
|
// "hash": "F70588DAB36BDA5A953D548A16F7D48C6C2DFD78"
|
|
|
|
// },
|
|
|
|
// "last_commit_hash": "F31CC4282E50B3F2A58D763D233D76F26D26CABE",
|
|
|
|
// "data_hash": "",
|
|
|
|
// "validators_hash": "9365FC80F234C967BD233F5A3E2AB2F1E4B0E5AA"
|
|
|
|
// },
|
|
|
|
// "block_id": {
|
|
|
|
// "parts": {
|
|
|
|
// "hash": "277A4DBEF91483A18B85F2F5677ABF9694DFA40F",
|
|
|
|
// "total": 1
|
|
|
|
// },
|
|
|
|
// "hash": "96B1D2F2D201BA4BC383EB8224139DB1294944E5"
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// ],
|
|
|
|
// "last_height": 5493
|
|
|
|
// },
|
|
|
|
// "id": "",
|
|
|
|
// "jsonrpc": "2.0"
|
|
|
|
// }
|
|
|
|
// ```
|
|
|
|
//
|
|
|
|
// <aside class="notice">Returns at most 20 items.</aside>
|
|
|
|
func BlockchainInfo(minHeight, maxHeight int) (*ctypes.ResultBlockchainInfo, error) { |
|
|
|
if maxHeight == 0 { |
|
|
|
maxHeight = blockStore.Height() |
|
|
@ -34,8 +84,105 @@ func BlockchainInfo(minHeight, maxHeight int) (*ctypes.ResultBlockchainInfo, err |
|
|
|
return &ctypes.ResultBlockchainInfo{blockStore.Height(), blockMetas}, nil |
|
|
|
} |
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Get block at a given height.
|
|
|
|
//
|
|
|
|
// ```shell
|
|
|
|
// curl 'localhost:46657/block?height=10'
|
|
|
|
// ```
|
|
|
|
//
|
|
|
|
// ```go
|
|
|
|
// client := client.NewHTTP("tcp://0.0.0.0:46657", "/websocket")
|
|
|
|
// info, err := client.Block(10)
|
|
|
|
// ```
|
|
|
|
//
|
|
|
|
// > The above command returns JSON structured like this:
|
|
|
|
//
|
|
|
|
// ```json
|
|
|
|
// {
|
|
|
|
// "error": "",
|
|
|
|
// "result": {
|
|
|
|
// "block": {
|
|
|
|
// "last_commit": {
|
|
|
|
// "precommits": [
|
|
|
|
// {
|
|
|
|
// "signature": {
|
|
|
|
// "data": "12C0D8893B8A38224488DC1DE6270DF76BB1A5E9DB1C68577706A6A97C6EC34FFD12339183D5CA8BC2F46148773823DE905B7F6F5862FD564038BB7AE03BF50D",
|
|
|
|
// "type": "ed25519"
|
|
|
|
// },
|
|
|
|
// "block_id": {
|
|
|
|
// "parts": {
|
|
|
|
// "hash": "3C78F00658E06744A88F24FF97A0A5011139F34A",
|
|
|
|
// "total": 1
|
|
|
|
// },
|
|
|
|
// "hash": "F70588DAB36BDA5A953D548A16F7D48C6C2DFD78"
|
|
|
|
// },
|
|
|
|
// "type": 2,
|
|
|
|
// "round": 0,
|
|
|
|
// "height": 9,
|
|
|
|
// "validator_index": 0,
|
|
|
|
// "validator_address": "E89A51D60F68385E09E716D353373B11F8FACD62"
|
|
|
|
// }
|
|
|
|
// ],
|
|
|
|
// "blockID": {
|
|
|
|
// "parts": {
|
|
|
|
// "hash": "3C78F00658E06744A88F24FF97A0A5011139F34A",
|
|
|
|
// "total": 1
|
|
|
|
// },
|
|
|
|
// "hash": "F70588DAB36BDA5A953D548A16F7D48C6C2DFD78"
|
|
|
|
// }
|
|
|
|
// },
|
|
|
|
// "data": {
|
|
|
|
// "txs": []
|
|
|
|
// },
|
|
|
|
// "header": {
|
|
|
|
// "app_hash": "",
|
|
|
|
// "chain_id": "test-chain-6UTNIN",
|
|
|
|
// "height": 10,
|
|
|
|
// "time": "2017-05-29T15:05:53.877Z",
|
|
|
|
// "num_txs": 0,
|
|
|
|
// "last_block_id": {
|
|
|
|
// "parts": {
|
|
|
|
// "hash": "3C78F00658E06744A88F24FF97A0A5011139F34A",
|
|
|
|
// "total": 1
|
|
|
|
// },
|
|
|
|
// "hash": "F70588DAB36BDA5A953D548A16F7D48C6C2DFD78"
|
|
|
|
// },
|
|
|
|
// "last_commit_hash": "F31CC4282E50B3F2A58D763D233D76F26D26CABE",
|
|
|
|
// "data_hash": "",
|
|
|
|
// "validators_hash": "9365FC80F234C967BD233F5A3E2AB2F1E4B0E5AA"
|
|
|
|
// }
|
|
|
|
// },
|
|
|
|
// "block_meta": {
|
|
|
|
// "header": {
|
|
|
|
// "app_hash": "",
|
|
|
|
// "chain_id": "test-chain-6UTNIN",
|
|
|
|
// "height": 10,
|
|
|
|
// "time": "2017-05-29T15:05:53.877Z",
|
|
|
|
// "num_txs": 0,
|
|
|
|
// "last_block_id": {
|
|
|
|
// "parts": {
|
|
|
|
// "hash": "3C78F00658E06744A88F24FF97A0A5011139F34A",
|
|
|
|
// "total": 1
|
|
|
|
// },
|
|
|
|
// "hash": "F70588DAB36BDA5A953D548A16F7D48C6C2DFD78"
|
|
|
|
// },
|
|
|
|
// "last_commit_hash": "F31CC4282E50B3F2A58D763D233D76F26D26CABE",
|
|
|
|
// "data_hash": "",
|
|
|
|
// "validators_hash": "9365FC80F234C967BD233F5A3E2AB2F1E4B0E5AA"
|
|
|
|
// },
|
|
|
|
// "block_id": {
|
|
|
|
// "parts": {
|
|
|
|
// "hash": "277A4DBEF91483A18B85F2F5677ABF9694DFA40F",
|
|
|
|
// "total": 1
|
|
|
|
// },
|
|
|
|
// "hash": "96B1D2F2D201BA4BC383EB8224139DB1294944E5"
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// },
|
|
|
|
// "id": "",
|
|
|
|
// "jsonrpc": "2.0"
|
|
|
|
// }
|
|
|
|
// ```
|
|
|
|
func Block(height int) (*ctypes.ResultBlock, error) { |
|
|
|
if height == 0 { |
|
|
|
return nil, fmt.Errorf("Height must be greater than 0") |
|
|
@ -49,8 +196,75 @@ func Block(height int) (*ctypes.ResultBlock, error) { |
|
|
|
return &ctypes.ResultBlock{blockMeta, block}, nil |
|
|
|
} |
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Get block commit at a given height.
|
|
|
|
//
|
|
|
|
// ```shell
|
|
|
|
// curl 'localhost:46657/commit?height=11'
|
|
|
|
// ```
|
|
|
|
//
|
|
|
|
// ```go
|
|
|
|
// client := client.NewHTTP("tcp://0.0.0.0:46657", "/websocket")
|
|
|
|
// info, err := client.Commit(11)
|
|
|
|
// ```
|
|
|
|
//
|
|
|
|
// > The above command returns JSON structured like this:
|
|
|
|
//
|
|
|
|
// ```json
|
|
|
|
// {
|
|
|
|
// "error": "",
|
|
|
|
// "result": {
|
|
|
|
// "canonical": true,
|
|
|
|
// "commit": {
|
|
|
|
// "precommits": [
|
|
|
|
// {
|
|
|
|
// "signature": {
|
|
|
|
// "data": "00970429FEC652E9E21D106A90AE8C5413759A7488775CEF4A3F44DC46C7F9D941070E4FBE9ED54DF247FA3983359A0C3A238D61DE55C75C9116D72ABC9CF50F",
|
|
|
|
// "type": "ed25519"
|
|
|
|
// },
|
|
|
|
// "block_id": {
|
|
|
|
// "parts": {
|
|
|
|
// "hash": "9E37CBF266BC044A779E09D81C456E653B89E006",
|
|
|
|
// "total": 1
|
|
|
|
// },
|
|
|
|
// "hash": "CC6E861E31CA4334E9888381B4A9137D1458AB6A"
|
|
|
|
// },
|
|
|
|
// "type": 2,
|
|
|
|
// "round": 0,
|
|
|
|
// "height": 11,
|
|
|
|
// "validator_index": 0,
|
|
|
|
// "validator_address": "E89A51D60F68385E09E716D353373B11F8FACD62"
|
|
|
|
// }
|
|
|
|
// ],
|
|
|
|
// "blockID": {
|
|
|
|
// "parts": {
|
|
|
|
// "hash": "9E37CBF266BC044A779E09D81C456E653B89E006",
|
|
|
|
// "total": 1
|
|
|
|
// },
|
|
|
|
// "hash": "CC6E861E31CA4334E9888381B4A9137D1458AB6A"
|
|
|
|
// }
|
|
|
|
// },
|
|
|
|
// "header": {
|
|
|
|
// "app_hash": "",
|
|
|
|
// "chain_id": "test-chain-6UTNIN",
|
|
|
|
// "height": 11,
|
|
|
|
// "time": "2017-05-29T15:05:54.893Z",
|
|
|
|
// "num_txs": 0,
|
|
|
|
// "last_block_id": {
|
|
|
|
// "parts": {
|
|
|
|
// "hash": "277A4DBEF91483A18B85F2F5677ABF9694DFA40F",
|
|
|
|
// "total": 1
|
|
|
|
// },
|
|
|
|
// "hash": "96B1D2F2D201BA4BC383EB8224139DB1294944E5"
|
|
|
|
// },
|
|
|
|
// "last_commit_hash": "3CE0C9727CE524BA9CB7C91E28F08E2B94001087",
|
|
|
|
// "data_hash": "",
|
|
|
|
// "validators_hash": "9365FC80F234C967BD233F5A3E2AB2F1E4B0E5AA"
|
|
|
|
// }
|
|
|
|
// },
|
|
|
|
// "id": "",
|
|
|
|
// "jsonrpc": "2.0"
|
|
|
|
// }
|
|
|
|
// ```
|
|
|
|
func Commit(height int) (*ctypes.ResultCommit, error) { |
|
|
|
if height == 0 { |
|
|
|
return nil, fmt.Errorf("Height must be greater than 0") |
|
|
|