Skip to content

Commit

Permalink
fix default params
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-zaremba committed May 16, 2024
1 parent 1d0b9d4 commit f60a9ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion x/leverage/types/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func DefaultParams() Params {
CompleteLiquidationThreshold: sdk.MustNewDecFromStr("0.4"),
MinimumCloseFactor: sdk.MustNewDecFromStr("0.05"),
OracleRewardFactor: sdk.MustNewDecFromStr("0.01"),
RewardsAuctionFee: sdk.MustNewDecFromStr("0.20"),
RewardsAuctionFee: sdk.MustNewDecFromStr("0.02"),
SmallLiquidationSize: sdk.MustNewDecFromStr("500.00"),
DirectLiquidationFee: sdk.MustNewDecFromStr("0.05"),
}
Expand Down
2 changes: 1 addition & 1 deletion x/metoken/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ func DefaultParams() Params {
return Params{
RebalancingFrequency: 60 * 60 * 12, // 12h
ClaimingFrequency: 60 * 60 * 24 * 7, // 7d
RewardsAuctionFeeFactor: 2000, // 20% of fees goes to rewards auction
RewardsAuctionFeeFactor: 1000, // 10% of fees goes to rewards auction
}
}

0 comments on commit f60a9ce

Please sign in to comment.