Browse Source

docs: update links to rpc (#4348)

* docs: update links to rpc

- links to rpc have not been updated. thank you @okwme

Signed-off-by: Marko Baricevic <marbar3778@yahoo.com>

* Update docs/app-dev/indexing-transactions.md
pull/4355/head
Marko 5 years ago
committed by GitHub
parent
commit
c5ecd802a2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 7 deletions
  1. +1
    -1
      docs/app-dev/app-architecture.md
  2. +2
    -2
      docs/app-dev/indexing-transactions.md
  3. +1
    -1
      docs/app-dev/subscribing-to-events-via-websocket.md
  4. +1
    -1
      docs/tendermint-core/running-in-production.md
  5. +1
    -1
      docs/tendermint-core/using-tendermint.md
  6. +1
    -1
      rpc/core/consensus.go

+ 1
- 1
docs/app-dev/app-architecture.md View File

@ -56,6 +56,6 @@ Tendermint.
See the following for more extensive documentation:
- [Interchain Standard for the Light-Client REST API](https://github.com/cosmos/cosmos-sdk/pull/1028)
- [Tendermint RPC Docs](https://tendermint.com/rpc/)
- [Tendermint RPC Docs](https://docs.tendermint.com/master/rpc/)
- [Tendermint in Production](../tendermint-core/running-in-production.md)
- [ABCI spec](https://github.com/tendermint/spec/tree/95cf253b6df623066ff7cd4074a94e7a3f147c7a/spec/abci)

+ 2
- 2
docs/app-dev/indexing-transactions.md View File

@ -106,7 +106,7 @@ You can query the transaction results by calling `/tx_search` RPC endpoint:
curl "localhost:26657/tx_search?query=\"account.name='igor'\"&prove=true"
```
Check out [API docs](https://tendermint.com/rpc/#txsearch) for more information
Check out [API docs](https://docs.tendermint.com/master/rpc/#/Info/tx_search) for more information
on query syntax and other options.
## Subscribing to Transactions
@ -125,5 +125,5 @@ a query to `/subscribe` RPC endpoint.
}
```
Check out [API docs](https://tendermint.com/rpc/#subscribe) for more information
Check out [API docs](https://docs.tendermint.com/master/rpc/#subscribe) for more information
on query syntax and other options.

+ 1
- 1
docs/app-dev/subscribing-to-events-via-websocket.md View File

@ -24,7 +24,7 @@ method via Websocket.
}
```
Check out [API docs](https://tendermint.com/rpc/) for
Check out [API docs](https://docs.tendermint.com/master/rpc/) for
more information on query syntax and other options.
You can also use tags, given you had included them into DeliverTx


+ 1
- 1
docs/tendermint-core/running-in-production.md View File

@ -99,7 +99,7 @@ send & receive rate per connection (`SendRate`, `RecvRate`).
### RPC
Endpoints returning multiple entries are limited by default to return 30
elements (100 max). See the [RPC Documentation](https://tendermint.com/rpc/)
elements (100 max). See the [RPC Documentation](https://docs.tendermint.com/master/rpc/)
for more information.
Rate-limiting and authentication are another key aspects to help protect


+ 1
- 1
docs/tendermint-core/using-tendermint.md View File

@ -160,7 +160,7 @@ endpoints. Some take no arguments (like `/status`), while others specify
the argument name and use `_` as a placeholder.
::: tip
Find the RPC Documentation [here](https://tendermint.com/rpc/)
Find the RPC Documentation [here](https://docs.tendermint.com/master/rpc/)
:::
### Formatting


+ 1
- 1
rpc/core/consensus.go View File

@ -79,7 +79,7 @@ func DumpConsensusState(ctx *rpctypes.Context) (*ctypes.ResultDumpConsensusState
// ConsensusState returns a concise summary of the consensus state.
// UNSTABLE
// More: https://tendermint.com/rpc/#/Info/consensus_state
// More: https://docs.tendermint.com/master/rpc/#/Info/consensus_state
func ConsensusState(ctx *rpctypes.Context) (*ctypes.ResultConsensusState, error) {
// Get self round state.
bz, err := consensusState.GetRoundStateSimpleJSON()


Loading…
Cancel
Save