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.

18 lines
850 B

  1. # Tendermint RPC
  2. ## Pagination
  3. Requests that return multiple items will be paginated to 30 items by default.
  4. You can specify further pages with the ?page parameter. You can also set a
  5. custom page size up to 100 with the ?per_page parameter.
  6. ## Subscribing to events
  7. The user can subscribe to events emitted by Tendermint, using `/subscribe`. If
  8. the maximum number of clients is reached or the client has too many
  9. subscriptions, an error will be returned. The subscription timeout is 5 sec.
  10. Each subscription has a buffer to accommodate short bursts of events or some
  11. slowness in clients. If the buffer gets full, the subscription will be canceled
  12. ("client is not pulling messages fast enough"). If Tendermint exits, all
  13. subscriptions are canceled ("Tendermint exited"). The user can unsubscribe
  14. using either `/unsubscribe` or `/unsubscribe_all`.