You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Ethan Buchman 61002ad264
Merge pull request #1628 from tendermint/bucky/selective-evidence-broadcast
6 years ago
..
types limit /tx_search output 6 years ago
README.md generate RPC docs using Slate (#1612) 6 years ago
abci.go Fix `Prove` int abci.ABCIQuery (#1485) 6 years ago
blocks.go final updates for state 7 years ago
consensus.go fixes from review 6 years ago
dev.go linting: apply errcheck part1 7 years ago
doc.go generate RPC docs using Slate (#1612) 6 years ago
doc_template.txt generate md for Slate 7 years ago
events.go copy events and pubsub packages from tmlibs 6 years ago
health.go fix comment 6 years ago
mempool.go add limit param to /unconfirmed_txs 6 years ago
net.go rpc: add n_peers to /net_info 6 years ago
pipe.go Merge pull request #1628 from tendermint/bucky/selective-evidence-broadcast 6 years ago
pipe_test.go validate per_page before page 6 years ago
routes.go add limit param to /unconfirmed_txs 6 years ago
status.go rpc: docs/comments 6 years ago
tx.go validate per_page before page 6 years ago
version.go bump rpc version; add consensus version 8 years ago

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.