Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix .md links #2804

Merged
merged 2 commits into from
Nov 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/gtm-interchain.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,4 @@ Further, we will need technical support that goes beyond the different phase rol

The go-to-market team should be tracking the extent to which IBC is succeeding or failing in terms of key metrics. This will require continuous experimentation and coordination between entities. An example of a metric that best represents IBC go to market would be # of distinct IBC connections that transport x amount of value. To get to these metrics we need the developer resources and proven business models that encourage developers to use this technology.

The Cosmos-SDK exposes some [existing metrics for IBC](https://docs.cosmos.network/main/core/telemetry.html#supported-metrics).
The Cosmos-SDK exposes some [existing metrics for IBC](https://docs.cosmos.network/v0.45/core/telemetry.html#supported-metrics).
3 changes: 1 addition & 2 deletions docs/guidelines/code-guidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Try to avoid extensive methods and always test your code. All PRs should have at
- [Contributing](#contributing)
- [Maintainability](#maintainability)
- [Run tests](#run-tests)
- [Guidelines](#guidelines)
- [Guidelines](#guidelines)
- [Project organization](#project-organization)
- [How to test this project locally](#how-to-test-this-project-locally)
- [Unit Tests](#unit-tests)
Expand Down Expand Up @@ -110,7 +110,6 @@ Try to avoid extensive methods and always test your code. All PRs should have at
- [Use Subtests](#use-subtests)
- [Avoid writing directly in the stdout](#avoid-writing-directly-in-the-stdout)
- [Avoid panic](#avoid-panic)
- [Security](#security)

## Project organization

Expand Down
1 change: 1 addition & 0 deletions docs/hub-overview/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ These block explorers allow you to search, view and analyze Cosmos Hub data&mdas
* [Ping.Pub](https://ping.pub/cosmos)
* [BronBro](https://monitor.bronbro.io/d/cosmos-stats/cosmos)
* [Numia](https://www.datalenses.zone/chain/cosmos)
<!-- markdown-link-check-disable-next-line -->
* [SmartStake](https://cosmos.smartstake.io/stats)

## Cosmos Hub CLI
Expand Down
2 changes: 1 addition & 1 deletion docs/hub-tutorials/gaiad.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ gaiad config chain-id cosmoshub-2

The keyring holds the private/public keypairs used to interact with a node. For instance, a validator key needs to be set up before running the blockchain node, so that blocks can be correctly signed. The private key can be stored in different locations, called "backends", such as a file or the operating system's own key storage.

Headless environments are recommended to use either the `file` or `pass` backends. More information is available at the [SDK documentation page](https://docs.cosmos.network/main/run-node/keyring.html).
Headless environments are recommended to use either the `file` or `pass` backends. More information is available at the [SDK documentation page](https://docs.cosmos.network/v0.45/run-node/keyring.html).

#### Key Types

Expand Down
2 changes: 1 addition & 1 deletion docs/modules/globalfee.md
Original file line number Diff line number Diff line change
Expand Up @@ -297,4 +297,4 @@ bypass-min-fee-msg-types = [\

## References

- [Gas and Fees in Cosmos SDK](https://docs.cosmos.network/main/basics/gas-fees.html)
- [Gas and Fees in Cosmos SDK](https://docs.cosmos.network/v0.45/basics/gas-fees.html)
2 changes: 1 addition & 1 deletion mlc_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"retryOn429": true,
"retryCount": 5,
"fallbackRetryDelay": "30s",
"aliveStatusCodes": [0, 200, 206, 403]
"aliveStatusCodes": [0, 200, 206, 403, 429]
}
Loading