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.
 
 
 
 
 
 
Sergio Mena d3548eb706
Completed the existing `FinalizeBlock` PR and rebased to master (#7798)
2 years ago
..
CONTRIBUTING.md state: move package to internal (#6964) 3 years ago
README.md state: move package to internal (#6964) 3 years ago
abci.go abci/client: simplify client interface (#7607) 2 years ago
blocks.go Completed the existing `FinalizeBlock` PR and rebased to master (#7798) 2 years ago
blocks_test.go Completed the existing `FinalizeBlock` PR and rebased to master (#7798) 2 years ago
consensus.go node: collapse initialization internals (#7567) 2 years ago
dev.go rpc: replace custom context-like argument with context.Context (#7559) 2 years ago
doc.go state: move package to internal (#6964) 3 years ago
doc_template.txt state: move package to internal (#6964) 3 years ago
env.go Completed the existing `FinalizeBlock` PR and rebased to master (#7798) 2 years ago
env_test.go state: move package to internal (#6964) 3 years ago
events.go rpc: simplify and consolidate response construction (#7725) 2 years ago
evidence.go rpc: use encoding/json rather than tmjson (#7670) 2 years ago
health.go rpc: replace custom context-like argument with context.Context (#7559) 2 years ago
mempool.go rpc: check error code for broadcast_tx_commit (#7683) 2 years ago
net.go rpc: replace custom context-like argument with context.Context (#7559) 2 years ago
routes.go rpc: use encoding/json rather than tmjson (#7670) 2 years ago
status.go rpc: add application info to `status` call (#7701) 2 years ago
tx.go rpc: replace custom context-like argument with context.Context (#7559) 2 years ago

README.md

Tendermint RPC

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.

Subscribing to events

The user can subscribe to events emitted by Tendermint, using /subscribe. If the maximum number of clients is reached or the client has too many subscriptions, an error will be returned. The subscription timeout is 5 sec. Each subscription has a buffer to accommodate short bursts of events or some slowness in clients. If the buffer gets full, the subscription will be canceled ("client is not pulling messages fast enough"). If Tendermint exits, all subscriptions are canceled ("Tendermint exited"). The user can unsubscribe using either /unsubscribe or /unsubscribe_all.