Skip to content

Commit 067af4a

Browse files
committed
1
1 parent 39077b1 commit 067af4a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/src/src/REVLoans.sol/contract.REVLoans.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ uint256 public constant override MAX_PREPAID_FEE_PERCENT = 500;
4747

4848

4949
### REV_PREPAID_FEE_PERCENT
50-
*A fee of 0.5% is charged by the $REV revnet.*
50+
*A fee of 1% is charged by the $REV revnet.*
5151

5252

5353
```solidity

src/REVDeployer.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ contract REVDeployer is ERC2771Context, IREVDeployer, IJBRulesetDataHook, IJBCas
9191
/// Cashout fees are paid to the revnet with the `FEE_REVNET_ID`.
9292
/// @dev Fees are charged on cashouts if the cash out tax rate is greater than 0%.
9393
/// @dev When suckers withdraw funds, they do not pay cash out fees.
94-
uint256 public constant override FEE = 5; // 0.5%
94+
uint256 public constant override FEE = 25; // 2.5%
9595

9696
//*********************************************************************//
9797
// --------------- public immutable stored properties ---------------- //

src/REVLoans.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ contract REVLoans is ERC721, ERC2771Context, Ownable, IREVLoans {
8585
/// @dev The maximum amount of a loan that can be prepaid at the time of borrowing, in terms of JBConstants.MAX_FEE.
8686
uint256 public constant override MAX_PREPAID_FEE_PERCENT = 500;
8787

88-
/// @dev A fee of 2.5% is charged by the $REV revnet.
89-
uint256 public constant override REV_PREPAID_FEE_PERCENT = 25; // 2.5%
88+
/// @dev A fee of 1% is charged by the $REV revnet.
89+
uint256 public constant override REV_PREPAID_FEE_PERCENT = 10; // 1%
9090

9191
/// @dev A fee of 2.5% is charged by the loan's source upfront.
9292
uint256 public constant override MIN_PREPAID_FEE_PERCENT = 25; // 2.5%

0 commit comments

Comments
 (0)