Skip to content

Commit 94b5dc2

Browse files
authored
docs: fix broken links (#4589)
* fix some broken links * fix social links * add changelog * rename link action
1 parent f06431d commit 94b5dc2

File tree

17 files changed

+19
-21
lines changed

17 files changed

+19
-21
lines changed

.github/workflows/md-link-checker-config.json .github/workflows/link-checker-config.json

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
{
22
"ignorePatterns": [
3-
{
4-
"pattern": "^https://twitter.com"
5-
},
63
{
74
"pattern": "^https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/commenting-on-a-pull-request"
85
},

.github/workflows/md-link-checker.yml .github/workflows/link-checker.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Check Markdown links
1+
name: Check links
22
on:
33
pull_request:
44
push:
@@ -15,8 +15,8 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v4
18-
- uses: gaurav-nelson/[email protected].13
18+
- uses: gaurav-nelson/[email protected].16
1919
with:
2020
folder-path: "."
2121
use-verbose-mode: "yes"
22-
config-file: ".github/workflows/md-link-checker-config.json"
22+
config-file: ".github/workflows/link-checker-config.json"

changelog.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
### Changes
1010

1111
- [#4569](https://github.com/ignite/cli/pull/4569) Add flags to set coin type on commands. Add getters for bech32 prefix and coin type.
12+
- [#4589](https://github.com/ignite/cli/pull/4589) Fix broken links
1213

1314
### Fixes
1415

docs/docs/04-clients/02-typescript.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ Normally, Keplr provides a wallet object implementing the `OfflineSigner`
353353
interface, so you can simply replace the `wallet` argument in client
354354
instantiation with `window.keplr.getOfflineSigner(chainId)`. However, Keplr
355355
requires information about your chain, like chain ID, denoms, fees, etc.
356-
[`experimentalSuggestChain()`](https://docs.keplr.app/api/suggest-chain.html) is
356+
[`experimentalSuggestChain()`](https://docs.keplr.app/api/guide/suggest-chain) is
357357
a method Keplr provides to pass this information to the Keplr extension.
358358

359359
The generated client makes this easier by offering a `useKeplr()` method that

docs/docs/04-network/01-chain.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description: Ignite Chain.
99

1010
_Ignite is a blockchain to help launch Cosmos SDK-based blockchains._
1111

12-
Using Cosmos SDK and Ignite CLI, developers can quickly create a crypto application that is decentralized, economical for usage, and scalable. The Cosmos SDK framework allows developers to create sovereign application-specific blockchains that become part of the wider [Cosmos ecosystem](https://v1.cosmos.network/ecosystem/apps). Blockchains created with Cosmos SDK use a Proof-of-Stake (PoS) consensus protocol that requires validators to secure the chain.
12+
Using Cosmos SDK and Ignite CLI, developers can quickly create a crypto application that is decentralized, economical for usage, and scalable. The Cosmos SDK framework allows developers to create sovereign application-specific blockchains that become part of the wider [Cosmos ecosystem](https://cosmos.network/ecosystem/apps). Blockchains created with Cosmos SDK use a Proof-of-Stake (PoS) consensus protocol that requires validators to secure the chain.
1313

1414
Even though tools like Ignite CLI simplify the development of a Cosmos SDK blockchain, launching a new chain is a highly complex process. One of the major challenges of developing and launching your own sovereign blockchain is ensuring the security of the underlying consensus. Since Cosmos SDK chains are based on the PoS consensus, each blockchain requires initial coin allocations and validators before they can be launched, which presents developers with significant challenges, such as determining their chain's tokenomics or coordinating a robust validator set.
1515

docs/docs/08-references/01-cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2696,7 +2696,7 @@ Configs for the chain registry
26962696

26972697
Scaffold the chain registry chain.json and assets.json files.
26982698

2699-
The chain registry is a GitHub repo, hosted at https://github.com/cosmos/cosmos-registry, that
2699+
The chain registry is a GitHub repo, hosted at https://github.com/cosmos/chain-registry, that
27002700
contains the chain.json and assets.json files of most of chains in the Cosmos ecosystem.
27012701
It is good practices, when creating a new chain, and about to launch a testnet or mainnet, to
27022702
publish the chain's metadata in the chain registry.

docs/docusaurus.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -205,11 +205,11 @@ const config = {
205205
},
206206
{
207207
label: "Twitter",
208-
href: "https://twitter.com/ignite_com",
208+
href: "https://x.com/ignite",
209209
},
210210
{
211211
label: "Linkedin",
212-
href: "https://www.linkedin.com/company/ignt/",
212+
href: "https://www.linkedin.com/company/allinbits",
213213
},
214214
{
215215
label: "YouTube",

docs/versioned_docs/version-v0.25/clients/01-typescript.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ const client = new Client({
249249
);
250250
```
251251

252-
The problem is that for a new Ignite CLI scaffolded chain, Keplr has no knowledge of it thus requiring an initial call to [`experimentalSuggestChain()`](https://docs.keplr.app/api/suggest-chain.html) method to add the chain information to the user's Keplr instance.
252+
The problem is that for a new Ignite CLI scaffolded chain, Keplr has no knowledge of it thus requiring an initial call to [`experimentalSuggestChain()`](https://docs.keplr.app/api/guide/suggest-chain) method to add the chain information to the user's Keplr instance.
253253

254254
The generated client makes this easier by offering a `useKeplr()` method that autodiscovers the chain information and sets it up for you. Thus you can instantiate the client without a wallet and then call `useKeplr()` to enable transacting via Keplr like so:
255255

docs/versioned_docs/version-v0.25/guide/05-scavenge/01-hunt.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ In this tutorial, you will build a blockchain for a scavenger hunt game and lear
1111
* Implement custom logic in the CLI commands
1212
* Use an escrow account to store tokens
1313

14-
This tutorial was first presented as a workshop at GODays 2020 Berlin by [Billy Rennekamp](https://twitter.com/billyrennekamp).
14+
This tutorial was first presented as a workshop at GODays 2020 Berlin by [Billy Rennekamp](https://x.com/billyrennekamp).
1515

1616
This session aims to get you thinking about what is possible when developing applications that have access to **digital scarcity as a primitive**. The easiest way to think of scarcity is as money; If money grew on trees it would stop being _scarce_ and stop having value.
1717

docs/versioned_docs/version-v0.26/03-clients/02-typescript.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ Normally, Keplr provides a wallet object implementing the `OfflineSigner`
353353
interface, so you can simply replace the `wallet` argument in client
354354
instantiation with `window.keplr.getOfflineSigner(chainId)`. However, Keplr
355355
requires information about your chain, like chain ID, denoms, fees, etc.
356-
[`experimentalSuggestChain()`](https://docs.keplr.app/api/suggest-chain.html) is
356+
[`experimentalSuggestChain()`](https://docs.keplr.app/api/guide/suggest-chain) is
357357
a method Keplr provides to pass this information to the Keplr extension.
358358

359359
The generated client makes this easier by offering a `useKeplr()` method that

docs/versioned_docs/version-v0.26/04-network/01-chain.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description: Ignite Chain.
99

1010
_Ignite is a blockchain to help launch Cosmos SDK-based blockchains._
1111

12-
Using Cosmos SDK and Ignite CLI, developers can quickly create a crypto application that is decentralized, economical for usage, and scalable. The Cosmos SDK framework allows developers to create sovereign application-specific blockchains that become part of the wider [Cosmos ecosystem](https://v1.cosmos.network/ecosystem/apps). Blockchains created with Cosmos SDK use a Proof-of-Stake (PoS) consensus protocol that requires validators to secure the chain.
12+
Using Cosmos SDK and Ignite CLI, developers can quickly create a crypto application that is decentralized, economical for usage, and scalable. The Cosmos SDK framework allows developers to create sovereign application-specific blockchains that become part of the wider [Cosmos ecosystem](https://cosmos.network/ecosystem/apps). Blockchains created with Cosmos SDK use a Proof-of-Stake (PoS) consensus protocol that requires validators to secure the chain.
1313

1414
Even though tools like Ignite CLI simplify the development of a Cosmos SDK blockchain, launching a new chain is a highly complex process. One of the major challenges of developing and launching your own sovereign blockchain is ensuring the security of the underlying consensus. Since Cosmos SDK chains are based on the PoS consensus, each blockchain requires initial coin allocations and validators before they can be launched, which presents developers with significant challenges, such as determining their chain's tokenomics or coordinating a robust validator set.
1515

docs/versioned_docs/version-v0.27/03-clients/02-typescript.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ Normally, Keplr provides a wallet object implementing the `OfflineSigner`
354354
interface, so you can simply replace the `wallet` argument in client
355355
instantiation with `window.keplr.getOfflineSigner(chainId)`. However, Keplr
356356
requires information about your chain, like chain ID, denoms, fees, etc.
357-
[`experimentalSuggestChain()`](https://docs.keplr.app/api/suggest-chain.html) is
357+
[`experimentalSuggestChain()`](https://docs.keplr.app/api/guide/suggest-chain) is
358358
a method Keplr provides to pass this information to the Keplr extension.
359359

360360
The generated client makes this easier by offering a `useKeplr()` method that

docs/versioned_docs/version-v0.27/04-network/01-chain.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description: Ignite Chain.
99

1010
_Ignite is a blockchain to help launch Cosmos SDK-based blockchains._
1111

12-
Using Cosmos SDK and Ignite CLI, developers can quickly create a crypto application that is decentralized, economical for usage, and scalable. The Cosmos SDK framework allows developers to create sovereign application-specific blockchains that become part of the wider [Cosmos ecosystem](https://v1.cosmos.network/ecosystem/apps). Blockchains created with Cosmos SDK use a Proof-of-Stake (PoS) consensus protocol that requires validators to secure the chain.
12+
Using Cosmos SDK and Ignite CLI, developers can quickly create a crypto application that is decentralized, economical for usage, and scalable. The Cosmos SDK framework allows developers to create sovereign application-specific blockchains that become part of the wider [Cosmos ecosystem](https://cosmos.network/ecosystem/apps). Blockchains created with Cosmos SDK use a Proof-of-Stake (PoS) consensus protocol that requires validators to secure the chain.
1313

1414
Even though tools like Ignite CLI simplify the development of a Cosmos SDK blockchain, launching a new chain is a highly complex process. One of the major challenges of developing and launching your own sovereign blockchain is ensuring the security of the underlying consensus. Since Cosmos SDK chains are based on the PoS consensus, each blockchain requires initial coin allocations and validators before they can be launched, which presents developers with significant challenges, such as determining their chain's tokenomics or coordinating a robust validator set.
1515

docs/versioned_docs/version-v28/03-clients/02-typescript.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ Normally, Keplr provides a wallet object implementing the `OfflineSigner`
353353
interface, so you can simply replace the `wallet` argument in client
354354
instantiation with `window.keplr.getOfflineSigner(chainId)`. However, Keplr
355355
requires information about your chain, like chain ID, denoms, fees, etc.
356-
[`experimentalSuggestChain()`](https://docs.keplr.app/api/suggest-chain.html) is
356+
[`experimentalSuggestChain()`](https://docs.keplr.app/api/guide/suggest-chain) is
357357
a method Keplr provides to pass this information to the Keplr extension.
358358

359359
The generated client makes this easier by offering a `useKeplr()` method that

docs/versioned_docs/version-v28/04-network/01-chain.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description: Ignite Chain.
99

1010
_Ignite is a blockchain to help launch Cosmos SDK-based blockchains._
1111

12-
Using Cosmos SDK and Ignite CLI, developers can quickly create a crypto application that is decentralized, economical for usage, and scalable. The Cosmos SDK framework allows developers to create sovereign application-specific blockchains that become part of the wider [Cosmos ecosystem](https://v1.cosmos.network/ecosystem/apps). Blockchains created with Cosmos SDK use a Proof-of-Stake (PoS) consensus protocol that requires validators to secure the chain.
12+
Using Cosmos SDK and Ignite CLI, developers can quickly create a crypto application that is decentralized, economical for usage, and scalable. The Cosmos SDK framework allows developers to create sovereign application-specific blockchains that become part of the wider [Cosmos ecosystem](https://cosmos.network/ecosystem/apps). Blockchains created with Cosmos SDK use a Proof-of-Stake (PoS) consensus protocol that requires validators to secure the chain.
1313

1414
Even though tools like Ignite CLI simplify the development of a Cosmos SDK blockchain, launching a new chain is a highly complex process. One of the major challenges of developing and launching your own sovereign blockchain is ensuring the security of the underlying consensus. Since Cosmos SDK chains are based on the PoS consensus, each blockchain requires initial coin allocations and validators before they can be launched, which presents developers with significant challenges, such as determining their chain's tokenomics or coordinating a robust validator set.
1515

ignite/cmd/scaffold_chain_registry.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ func NewScaffoldChainRegistry() *cobra.Command {
1515
Short: "Configs for the chain registry",
1616
Long: `Scaffold the chain registry chain.json and assets.json files.
1717
18-
The chain registry is a GitHub repo, hosted at https://github.com/cosmos/cosmos-registry, that
18+
The chain registry is a GitHub repo, hosted at https://github.com/cosmos/chain-registry, that
1919
contains the chain.json and assets.json files of most of chains in the Cosmos ecosystem.
2020
It is good practices, when creating a new chain, and about to launch a testnet or mainnet, to
2121
publish the chain's metadata in the chain registry.

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ Ignite CLI is a free and open source product maintained by
269269
[Ignite](https://ignite.com). Here's where you can find us. Stay in touch.
270270

271271
- [ignite.com website](https://ignite.com)
272-
- [@ignite on Twitter](https://twitter.com/ignite)
272+
- [@ignite on Twitter](https://x.com/ignite)
273273
- [ignite.com/blog](https://ignite.com/blog)
274274
- [Ignite Discord](https://discord.com/invite/ignite)
275275
- [Ignite YouTube](https://www.youtube.com/@ignitehq)

0 commit comments

Comments
 (0)