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: architecture/adr-list/adr-002-mnemonic-keys-cosmos.md
+2-2
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/basics/accounts.html#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/main/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/basics/accounts.html)
67
+
*[Cosmos SDK account generation and keyrings](https://docs.cosmos.network/main/learn/beginner/accounts)
Copy file name to clipboardExpand all lines: architecture/adr-list/adr-005-genesis-parameters.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -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/building-modules/invariants.html)| 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)](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) |
Copy file name to clipboardExpand all lines: docs/cheqd-cli/cheqd-cli-key-management.md
+1-1
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/run-node/keyring.html) 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/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.
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.
***`commission-rate`**: Validator's commission rate. The minimum is set to `0.05`.
81
81
***`commission-max-rate`**: Validator's maximum commission rate, expressed as a number with up to two decimal points. The value for this cannot be changed later.
82
82
***`commission-max-change-rate`**: Maximum rate of change of a validator's commission rate per day, expressed as a number with up to two decimal points. The value for this cannot be changed later.
83
83
***`chain-id`**: Unique identifier for the chain.
84
84
* For cheqd's current mainnet, this is `cheqd-mainnet-1`
85
-
* For cheqd's current testnet, this is `cheqd-testnet-4`
85
+
* For cheqd's current testnet, this is `cheqd-testnet-6`
86
86
***`gas`**: Maximum gas to use for *this specific* transaction. Using `auto` uses Cosmos's auto-calculation mechanism, but can also be specified manually as an integer value.
87
-
***gas-adjustment** (optional): If you're using `auto` gas calculation, this parameter multiplies the auto-calculated amount by the specified factor, e.g., `1.2`. This is recommended so that it leaves enough margin of error to add a bit more gas to the transaction and ensure it successfully goes through.
88
-
***`gas-prices`**: Maximum gas price set by the validator
87
+
***gas-adjustment** (optional): If you're using `auto` gas calculation, this parameter multiplies the auto-calculated amount by the specified factor, e.g., `1.3`. This is recommended so that it leaves enough margin of error to add a bit more gas to the transaction and ensure it successfully goes through.
88
+
***`gas-prices`**: Maximum gas price set by the validator. Default value is `50ncheq`.
89
89
90
90
Please note the parameters below are just an “**example**”.
91
91
@@ -94,7 +94,7 @@ When setting parameters such as the commission rate, a good benchmark is to cons
94
94
You will see the commission they set, the max rate they set, and the rate of change. Please use this as a guide when thinking of your own commission configurations. This is important to get right, because the `commission-max-rate` and `commission-max-change-rate` cannot be changed after they are initially set.
0 commit comments