docs: add configuration docs (#15544)

This commit is contained in:
Marko 2023-03-25 13:11:32 +01:00 committed by GitHub
parent 572e657711
commit 44b04da86f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 26 additions and 2 deletions

View File

@ -34,7 +34,7 @@ A new governance parameter is introduced that defines the ratio of exempt to iss
Min self delegation is removed from the staking system with the expectation that it will be replaced by the exempt delegations system. The exempt delegation system allows multiple accounts to demonstrate economic alignment with the validator operator as team members, partners etc. without co-mingling funds. Delegation exemption will likely be required to grow the validators' business under widespread adoption of liquid staking once governance has adjusted the exemption factor.
When shares are tokenized, the underlying shares are transfered to a module account and rewards go to the module account for the TokenizedShareRecord.
When shares are tokenized, the underlying shares are transferred to a module account and rewards go to the module account for the TokenizedShareRecord.
There is no longer a mechanism to override the validators vote for TokenizedShares.

View File

@ -0,0 +1,24 @@
---
sidebar_position: 1
---
# Configuration
This documentation refers to the app.toml, if you'd like to read about the config.toml please visit [CometBFT docs](https://docs.cometbft.com/v0.37/).
```toml reference
https://github.com/cosmos/cosmos-sdk/blob/main/tools/confix/data/v0.47-app.toml
```
## inter-block-cache
This feature will consume more ram than a normal node, if enabled.
## iavl-cache-size
Using this feature will increase ram consumption
## iavl-lazy-loading
This feature is to be used for archive nodes, allowing them to have a faster start up time.

View File

@ -114,7 +114,7 @@ Validators can have one of three statuses
tombstoning, an unbonding of all their delegations begins. All delegations must then wait the UnbondingTime
before their tokens are moved to their accounts from the `BondedPool`.
:::Note
:::warning
Tombstoning is permanent, once tombstoned a validators consensus key can not be reused within the chain where the tombstoning happened.
:::