Skip to content

Commit

Permalink
docs: add configuration docs (#15544)
Browse files Browse the repository at this point in the history
  • Loading branch information
tac0turtle authored Mar 25, 2023
1 parent 572e657 commit 44b04da
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/architecture/adr-061-liquid-staking.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
24 changes: 24 additions & 0 deletions docs/docs/core/16-config.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion x/staking/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
:::

Expand Down

0 comments on commit 44b04da

Please sign in to comment.