Skip to content

Commit e9c1112

Browse files
committed
fix: typos in summary
1 parent 50f49d6 commit e9c1112

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

SUMMARY.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,15 @@
3232

3333
## Core Pool
3434

35-
* [Unitroller](core-pool/unitroller.md)
35+
* [Comptroller](core-pool/comptroller.md)
3636
* [VTokens](core-pool/vtokens.md)
3737
* [Lens](core-pool/lens.md)
38-
* [Oracle](core-pool/oracle.md)
3938
* [Liquidator](core-pool/liquidator.md)
4039
* [Interest Rate Model](core-pool/interest-rate-model.md)
4140
* [Jump Model](core-pool/jump-model.md)
41+
* [Maximillion](core-pool/maximillion.md)
42+
* [Reservoir](core-pool/reservoir.md)
43+
* [VTreasury](core-pool/vtreasury.md)
4244

4345
## Isolated Lending
4446

@@ -51,7 +53,7 @@
5153
* [Protocol Share Reserve](isolated-lending/risk-fund/protocol-share-reserve.md)
5254
* [Shortfall](isolated-lending/risk-fund/shortfall.md)
5355
* [Factories](isolated-lending/factories/README.md)
54-
* [VBep20 Immutable Proxy Factory](isolated-lending/factories/VBep20-mmutable-proxy-factory)
56+
* [VBep20 Immutable Proxy Factory](isolated-lending/factories/VBep20-mmutable-proxy-factory.md)
5557
* [Jump Rate Model](isolated-lending/factories/jump-rate-model.md)
5658
* [White Paper Interest Rate Model Factory](isolated-lending/factories/white-paper-interest-rate-model-factory.md)
5759

@@ -70,7 +72,7 @@
7072
* [Voting](governance/voting.md)
7173
* [Delegating](governance/delegating.md)
7274
* [Routes](governance/routes.md)
73-
* [Access Control Manager](isolated-lending/access-control-manager.md)
75+
* [Access Control Manager](governance/access-control-manager.md)
7476

7577
## Vaults
7678

getting-started/contracts-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ The core logic for governance proposals is in the [GovernorBraveDelegate](https:
126126
At the heart of the Core Pool is the comptroller. The latever version is [Comptroller](https://github.com/VenusProtocol/venus-protocol/blob/develop/contracts/Comptroller.sol). Previous versions are also kept in the repo. The comptroller is responsibile for listing markets, managing user's positions in markets, liquidations, and emitting rewards. It contains setters and getters for market configuration variables such as collateral factor, close factor, and liquidation incentive. Lending actions can be be paused globally or per market from the comptroller.
127127

128128
#### [JumpRateModel](../core-pool/jump-model.md)
129-
Each market gets deployed with an interest rate model. The [JumpRateModel](https://github.com/VenusProtocol/venus-protocol/blob/develop/contracts/JumpRateModel.sol) uses a linear curve to determain interest rates based on supply and demand of the asset until it reaches the kink after which there is a sharp increase in rates.
129+
Each market gets deployed with an interest rate model. The [JumpRateModel](https://github.com/VenusProtocol/venus-protocol/blob/develop/contracts/JumpRateModel.sol) uses a linear curve to determine interest rates based on supply and demand of the asset until it reaches the kink after which there is a sharp increase in rates.
130130

131131
#### [WhitePaperInterestRateModel](../core-pool/interest-rate-model.md)
132132
Another interest rate model that can be deployed with markets is the [WhitePaperInterestRateModel](https://github.com/VenusProtocol/venus-protocol/blob/develop/contracts/WhitePaperInterestRateModel.sol). It is similar to the JumpRateModel except it doesn't include a kink. Instead it contains a fixed base rate.

0 commit comments

Comments
 (0)