You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ Once installed, `cheqd-node` can be controlled using the [cheqd Cosmos CLI guide
54
54
55
55
## 🛠 Developing & contributing to cheqd
56
56
57
-
`cheqd-node` is written in Go and built using Cosmos SDK. The [Cosmos SDK Developer Guide](https://docs.cosmos.network/main) explains a lot of the [basic concepts](https://docs.cosmos.network/main/basics/app-anatomy) of how the cheqd network functions.
57
+
`cheqd-node` is written in Go and built using Cosmos SDK. The [Cosmos SDK Developer Guide](https://docs.cosmos.network/sdk/v0.50/learn) explains a lot of the [basic concepts](https://docs.cosmos.network/sdk/v0.50/learn/beginner/app-anatomy) of how the cheqd network functions.
58
58
59
59
If you want to build a node from source or contribute to the code, please read our guide to [building and testing](docs/build-and-networks/README.md).
Copy file name to clipboardExpand all lines: architecture/adr-list/adr-002-mnemonic-keys-cosmos.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ For example, an identity wallet application or backend application would need to
21
21
22
22
### Assumptions / Considerations
23
23
24
-
Cosmos SDK uses [known algorithms for deriving private keys from mnemonics](https://docs.cosmos.network/main/learn/beginner/accounts#keyring). This can be replicated using standard crypto libraries to carry out the same steps as in Cosmos SDK:
24
+
Cosmos SDK uses [known algorithms for deriving private keys from mnemonics](https://docs.cosmos.network/sdk/v0.50/learn/beginner/accounts#keyring). This can be replicated using standard crypto libraries to carry out the same steps as in Cosmos SDK:
25
25
26
26
```text
27
27
rounds of iteration : 2048
@@ -64,4 +64,4 @@ N/A
64
64
65
65
## References
66
66
67
-
*[Cosmos SDK account generation and keyrings](https://docs.cosmos.network/main/learn/beginner/accounts)
67
+
*[Cosmos SDK account generation and keyrings](https://docs.cosmos.network/sdk/v0.50/learn/beginner/accounts)
Cosmos application is divided [into a list of modules](https://docs.cosmos.network/main/modules). Each module has parameters that help to adjust the module's behaviour.
51
+
Cosmos application is divided [into a list of modules](https://docs.cosmos.network/sdk/latest/modules/modules). Each module has parameters that help to adjust the module's behaviour.
52
52
53
53
### `auth` module
54
54
@@ -80,7 +80,7 @@ Cosmos application is divided [into a list of modules](https://docs.cosmos.netwo
80
80
81
81
| Parameter | Description | Mainnet | Testnet |
82
82
| - | - | - | - |
83
-
|`constant_fee`| The fee is used to verify the [invariant(s)](https://docs.cosmos.network/main/build/building-modules/invariants)| 10,000,000,000,000 ncheq (10,000 CHEQ) | 10,000,000,000,000 ncheq (10,000 CHEQ) |
83
+
|`constant_fee`| The fee is used to verify the invariant(s) | 10,000,000,000,000 ncheq (10,000 CHEQ) | 10,000,000,000,000 ncheq (10,000 CHEQ) |
84
84
85
85
### `distribution` module
86
86
@@ -184,5 +184,5 @@ The parameters above were agreed separate the cheqd mainnet and testnet paramete
184
184
185
185
## References
186
186
187
-
*[List of Cosmos modules](https://docs.cosmos.network/main/modules)
187
+
*[List of Cosmos modules](https://docs.cosmos.network/sdk/latest/modules/modules)
Copy file name to clipboardExpand all lines: architecture/adr-list/adr-006-community-tax.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,19 +15,19 @@ description: This is the suggested template to be used for ADRs on the cheqd-nod
15
15
16
16
## Summary
17
17
18
-
The aim of this ADR is to define how ["community tax" as described in the Cosmos blockchain framework](https://docs.cosmos.network/main/modules/distribution#the-distribution-scheme) will work on cheqd network.
18
+
The aim of this ADR is to define how ["community tax" as described in the Cosmos blockchain framework](https://docs.cosmos.network/sdk/latest/modules/distribution/README#the-distribution-scheme) will work on cheqd network.
19
19
20
20
## Context
21
21
22
22
### What is "community tax"?
23
23
24
24
`communityTax` is a value set in genesis for each Cosmos network and defined as a percentage that is applied to the fees collected in each block.
25
25
26
-
Tokens collected through this process accumulate in the **community pool**. The percentage charged as `communityTax` can be changed by [making proposals on the network and voting for acceptance](https://docs.cosmos.network/main/modules/gov) by the network.
26
+
Tokens collected through this process accumulate in the **community pool**. The percentage charged as `communityTax` can be changed by [making proposals on the network and voting for acceptance](https://docs.cosmos.network/sdk/latest/modules/gov/README#x-gov) by the network.
27
27
28
28
### Community tax collection
29
29
30
-
From [Cosmos SDK documentation, `distribution` module](https://docs.cosmos.network/main/modules/distribution#reward-to-the-community-pool):
30
+
From [Cosmos SDK documentation, `distribution` module](https://docs.cosmos.network/sdk/latest/modules/distribution/README#reward-to-the-community-pool):
31
31
32
32
> The community pool gets `community_tax * fees`, plus any remaining dust after validators get their rewards that are always rounded down to the nearest integer value.
33
33
@@ -46,7 +46,7 @@ To spend tokens from the **community pool**:
46
46
2. If proposal is approved using the voting process, the recipient address specified will receive the requested tokens.
47
47
3. The expectation on the recipient is that they spend the tokens for the purpose specified in their proposal.
48
48
49
-
More information about fee distribution is available in the [**End Block** section of Cosmos's `distribution` module](https://docs.cosmos.network/main/modules/distribution#the-distribution-scheme) documentation.
49
+
More information about fee distribution is available in the [**End Block** section of Cosmos's `distribution` module](https://docs.cosmos.network/sdk/latest/modules/distribution/README#the-distribution-scheme) documentation.
50
50
51
51
## Decision
52
52
@@ -73,5 +73,5 @@ More information about fee distribution is available in the [**End Block** secti
Copy file name to clipboardExpand all lines: docs/cheqd-cli/cheqd-cli-fee-abstraction.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ The equivalent IBC denomination amount is required to pay for transactions. **En
21
21
You can find out if you've got sufficient balance in supported IBC denominations using the following methods:
22
22
23
23
1.**Through Leap Wallet**
24
-
1. Ensure you have added the cheqd wallet you want to use for transactions to a supported desktop/mobile wallet. The recommended wallet app is [Leap Wallet](https://www.leapwallet.io/download). If you previously used Keplr Wallet, we recommend [migrating from Keplr Wallet to Leap Wallet](https://docs.cheqd.io/product/network/wallets/migrate) as it has better support for [looking up real-time gas prices](./cheqd-cli-token-transactions.md).
24
+
1. Ensure you have added the cheqd wallet you want to use for transactions to a supported desktop/mobile wallet. The recommended wallet app is [Leap Wallet](https://www.leapwallet.io). If you previously used Keplr Wallet, we recommend [migrating from Keplr Wallet to Leap Wallet](https://docs.cheqd.io/product/network/wallets/migrate) as it has better support for [looking up real-time gas prices](./cheqd-cli-token-transactions.md).
25
25
2. Once you've added the cheqd wallet account to Leap Wallet, use the network switcher to switch to **Osmosis**. This will allow you to see the balances you have on Osmosis chain, including native OSMO as well as any IBC denominations such as USDC.
26
26
2.**Sending tokens over IBC**
27
27
1. If you have an existing Osmosis account, you can send tokens over IBC to your cheqd account. This is done by sending the tokens from your Osmosis account to the address of your cheqd account. Use the `Swap` flow to send tokens over IBC. The tokens will be sent to the cheqd account and will be available for use in transactions. Otherwise, you can use the `cheqd-noded tx ibc-transfer transfer` command to send tokens over IBC from your Osmosis account to your cheqd account. The command will look like this:
Copy file name to clipboardExpand all lines: docs/cheqd-cli/cheqd-cli-key-management.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ Account addresses are on a cheqd node are an encoded version of a public key. Ea
8
8
9
9
To submit a transaction on behalf of an account, it must be signed with an account's private key.
10
10
11
-
Cosmos supports [multiple keyring backends](https://docs.cosmos.network/main/user/run-node/keyring) for the storage and management of keys. Each node operator is free to use the key management method they prefer.
11
+
Cosmos supports [multiple keyring backends](https://docs.cosmos.network/sdk/latest/node/keyring#setting-up-the-keyring) for the storage and management of keys. Each node operator is free to use the key management method they prefer.
12
12
13
13
By default, the `cheqd-noded` binary is configured to use the `os` keyring backend, as it is a safe default compared to file-based key management methods.
Copy file name to clipboardExpand all lines: docs/setup-and-configure/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ The interactive installer is written in **Python 3** and is designed to work on
20
20
21
21
### Software installed by installer
22
22
23
-
1.**Cosmovisor** (default, but can be skipped): The installer [configures Cosmovisor](https://docs.cosmos.network/main/tooling/cosmovisor) by default, which is a standard Cosmos SDK tool that makes network upgrades happen in an automated fashion. This makes the process of upgrading to new releases for network-wide upgrades easier.
23
+
1.**Cosmovisor** (default, but can be skipped): The installer [configures Cosmovisor](https://docs.cosmos.network/sdk/latest/guides/upgrades/cosmovisor#cosmovisor) by default, which is a standard Cosmos SDK tool that makes network upgrades happen in an automated fashion. This makes the process of upgrading to new releases for network-wide upgrades easier.
24
24
2.**`cheqd-noded` binary** (mandatory): This is the main piece of ledger-side code each node runs.
25
25
3.**Dependencies**: In case you request the installer to restore from a snapshot, dependencies such as `pv` will be installed so that a progress bar can be shown for snapshot extraction. Otherwise, no additional software is installed by the installer.
26
26
@@ -107,7 +107,7 @@ Select cheqd network to join:
107
107
108
108
#### 4. Choose Cosmovisor configuration options
109
109
110
-
The next few questions are used to configure Cosmovisor-related options. Read [an explanation of Cosmovisor configuration options in Cosmos SDK documentation](https://docs.cosmos.network/main/tooling/cosmovisor), or choose to install with the default settings.
110
+
The next few questions are used to configure Cosmovisor-related options. Read [an explanation of Cosmovisor configuration options in Cosmos SDK documentation](https://docs.cosmos.network/sdk/latest/guides/upgrades/cosmovisor#cosmovisor), or choose to install with the default settings.
111
111
112
112
1.`Install cheqd-noded using Cosmovisor? (yes/no) [default: yes]`: Use Cosmovisor to run node
113
113
2.`Do you want Cosmovisor to automatically download binaries for scheduled upgrades? (yes/no) [default: yes]`: By default, Cosmovisor will attempt to automatically download new binaries that have passed [software upgrade proposals voted on the network](../upgrades/README.md). You can choose to do this manually if you want more control.
> **⚠️ Reminder**: Like the service file, custom config.toml changes can be overwritten by the installer. **Decline updates** if you’ve made manual modifications.
109
109
110
-
For further details, refer to the official [Cosmovisor documentation](https://docs.cosmos.network/main/tooling/cosmovisor).
110
+
For further details, refer to the official [Cosmovisor documentation](https://docs.cosmos.network/sdk/latest/guides/upgrades/cosmovisor#cosmovisor).
Copy file name to clipboardExpand all lines: docs/setup-and-configure/requirements.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -95,4 +95,4 @@ If you're not running a validator node, or if you want more advanced control on
95
95
## Further information
96
96
97
97
* Tendermint documentation has [best practices for running a Cosmos node in production](https://docs.cometbft.com/v0.38/core/running-in-production).
98
-
*[Сosmovisor could be used for automatic upgrades](https://docs.cosmos.network/main/tooling/cosmovisor); however in our testing so far this method has not been reliable and is therefore currently not recommended.
98
+
*[Сosmovisor could be used for automatic upgrades](https://docs.cosmos.network/sdk/latest/guides/upgrades/cosmovisor#cosmovisor); however in our testing so far this method has not been reliable and is therefore currently not recommended.
0 commit comments