tendermint/rpc/core
Dev Ojha b84f788f36 Switch ports 466xx to 266xx (#1735)
* Switch ports 466xx to be 266xx
This is done so the default ports aren't in the linux kernel's default ephemeral port range.

* Update ABCI import

* Bump cache on circleci

* Get more verbose output for debugging

* Bump abci dependency

* Fix accidental change of a block header's hash

* pin abci release
2018-06-12 13:25:52 +04:00
..
types limit /tx_search output 2018-05-17 21:25:03 +04:00
README.md generate RPC docs using Slate (#1612) 2018-05-25 15:59:24 +04:00
abci.go Switch ports 466xx to 266xx (#1735) 2018-06-12 13:25:52 +04:00
blocks.go Switch ports 466xx to 266xx (#1735) 2018-06-12 13:25:52 +04:00
consensus.go Switch ports 466xx to 266xx (#1735) 2018-06-12 13:25:52 +04:00
dev.go linting: apply errcheck part1 2017-11-27 22:39:11 +00:00
doc.go Switch ports 466xx to 266xx (#1735) 2018-06-12 13:25:52 +04:00
doc_template.txt generate md for Slate 2017-08-16 15:17:08 -04:00
events.go Switch ports 466xx to 266xx (#1735) 2018-06-12 13:25:52 +04:00
health.go Switch ports 466xx to 266xx (#1735) 2018-06-12 13:25:52 +04:00
mempool.go Switch ports 466xx to 266xx (#1735) 2018-06-12 13:25:52 +04:00
net.go Switch ports 466xx to 266xx (#1735) 2018-06-12 13:25:52 +04:00
pipe.go Merge pull request #1628 from tendermint/bucky/selective-evidence-broadcast 2018-06-05 17:07:29 -07:00
pipe_test.go validate per_page before page 2018-06-05 16:20:48 +04:00
routes.go add limit param to /unconfirmed_txs 2018-05-17 21:25:04 +04:00
status.go Switch ports 466xx to 266xx (#1735) 2018-06-12 13:25:52 +04:00
tx.go Switch ports 466xx to 266xx (#1735) 2018-06-12 13:25:52 +04:00
version.go rpc -> rpc/lib and rpc/tendermint -> rpc 2017-04-26 19:57:33 -04:00

README.md

Tendermint RPC

Generate markdown for Slate

We are using Slate to power our RPC documentation. For generating markdown use:

go get github.com/davecheney/godoc2md

godoc2md -template rpc/core/doc_template.txt github.com/tendermint/tendermint/rpc/core | grep -v -e "pipe.go" -e "routes.go" -e "dev.go" | sed 's$/src/target$https://github.com/tendermint/tendermint/tree/master/rpc/core$'

For more information see the CI script for building the Slate docs

Pagination

Requests that return multiple items will be paginated to 30 items by default. You can specify further pages with the ?page parameter. You can also set a custom page size up to 100 with the ?per_page parameter.