diff --git a/app/upgrades.go b/app/upgrades.go index 478c4d3917..47f312cf8d 100644 --- a/app/upgrades.go +++ b/app/upgrades.go @@ -22,6 +22,7 @@ import ( appparams "github.com/umee-network/umee/v6/app/params" "github.com/umee-network/umee/v6/util" + "github.com/umee-network/umee/v6/x/auction" leveragetypes "github.com/umee-network/umee/v6/x/leverage/types" ) @@ -50,9 +51,40 @@ func (app UmeeApp) RegisterUpgradeHandlers() { app.registerOutdatedPlaceholderUpgrade("v6.1") app.registerOutdatedPlaceholderUpgrade("v6.2") app.registerUpgrade("v6.3", upgradeInfo, nil, nil, nil) - app.registerUpgrade6_4(upgradeInfo) - app.registerUpgrade("v6.5", upgradeInfo, nil, []string{crisistypes.ModuleName}, nil) + + app.registerUpgrade6_5(upgradeInfo) +} + +func (app *UmeeApp) registerUpgrade6_5(upgradeInfo upgradetypes.Plan) { + planName := "v6.5" + + app.UpgradeKeeper.SetUpgradeHandler(planName, + func(ctx sdk.Context, _ upgradetypes.Plan, fromVM module.VersionMap) (module.VersionMap, error) { + printPlanName(planName, ctx.Logger()) + + // update leverage and metoken params to include burn auction fee share. + lparams := app.LeverageKeeper.GetParams(ctx) + lparams.RewardsAuctionFee = sdk.MustNewDecFromStr("0.01") + if err := app.LeverageKeeper.SetParams(ctx, lparams); err != nil { + return nil, err + } + + mekeeper := app.MetokenKeeperB.Keeper(&ctx) + meparams := mekeeper.GetParams() + meparams.RewardsAuctionFeeFactor = 10000 // 100% of fees goes to rewards auction + if err := mekeeper.SetParams(meparams); err != nil { + return nil, err + } + + return app.mm.RunMigrations(ctx, app.configurator, fromVM) + }, + ) + + app.storeUpgrade(planName, upgradeInfo, storetypes.StoreUpgrades{ + Added: []string{auction.ModuleName}, + Deleted: []string{crisistypes.ModuleName}, + }) } func (app *UmeeApp) registerUpgrade6_4(upgradeInfo upgradetypes.Plan) { diff --git a/proto/umee/leverage/v1/leverage.proto b/proto/umee/leverage/v1/leverage.proto index e6ed882146..a3ef61fe92 100644 --- a/proto/umee/leverage/v1/leverage.proto +++ b/proto/umee/leverage/v1/leverage.proto @@ -70,10 +70,11 @@ message Params { (gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"direct_liquidation_fee\"" ]; - // Rewards Auction Factor determines the portion of interest accrued on + // Rewards Auction Fee determines the interest increase that will be accrued on // borrows that is sent to the auction module for the rewards auction. + // So, 2% means, that there is additional 2% per year fee collected. // Valid values: 0-1. - string rewards_auction_factor = 7 [ + string rewards_auction_fee = 7 [ (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"oracle_reward_factor\"" diff --git a/proto/umee/metoken/v1/metoken.proto b/proto/umee/metoken/v1/metoken.proto index e96ebde122..73b9ec905e 100644 --- a/proto/umee/metoken/v1/metoken.proto +++ b/proto/umee/metoken/v1/metoken.proto @@ -19,10 +19,11 @@ message Params { // leverage module int64 claiming_frequency = 2; - // Rewards Auction Factor determines the portion of swap and redeem fee that is sent to the - // auction module for the rewards auction. + // Rewards Auction Fee Factor determines the portion of total fees collected by the metoken + // module that will go for the rewards auction. 2% means that 2% of collected fees will go to + // the rewards auction. Note: this is different than x/leverage Params.rewards_auction_fee. // Valid values: 0-10000 (in basis points, 2000 = 20%). - uint32 rewards_auction_factor = 3 [ + uint32 rewards_auction_fee_factor = 3 [ (gogoproto.customtype) = "github.com/umee-network/umee/v6/util/bpmath.FixedBP", (gogoproto.nullable) = false ]; diff --git a/swagger/swagger.yaml b/swagger/swagger.yaml index f2461760e1..d73ab3669d 100644 --- a/swagger/swagger.yaml +++ b/swagger/swagger.yaml @@ -1111,15 +1111,18 @@ paths: uTokens as liquidation rewards. Valid values: 0-1. - rewards_auction_factor: + rewards_auction_fee: type: string description: >- - Rewards Auction Factor determines the portion of interest - accrued on + Rewards Auction Fee determines the interest increase that + will be accrued on borrows that is sent to the auction module for the rewards auction. + So, 2% means, that there is additional 2% per year fee + collected. + Valid values: 0-1. description: Params defines the parameters for the leverage module. description: >- @@ -5870,14 +5873,18 @@ paths: often metoken module will claim accrued interest from leverage module - rewards_auction_factor: + rewards_auction_fee_factor: type: integer format: int64 description: >- - Rewards Auction Factor determines the portion of swap and - redeem fee that is sent to the + Rewards Auction Fee Factor determines the portion of total + fees collected by the metoken + + module that will go for the rewards auction. 2% means that + 2% of collected fees will go to - auction module for the rewards auction. + the rewards auction. Note: this is different than + x/leverage Params.rewards_auction_fee. Valid values: 0-10000 (in basis points, 2000 = 20%). description: Params defines the parameters for the metoken module. @@ -6599,11 +6606,16 @@ definitions: uTokens as liquidation rewards. Valid values: 0-1. - rewards_auction_factor: + rewards_auction_fee: type: string - description: |- - Rewards Auction Factor determines the portion of interest accrued on + description: >- + Rewards Auction Fee determines the interest increase that will be + accrued on + borrows that is sent to the auction module for the rewards auction. + + So, 2% means, that there is additional 2% per year fee collected. + Valid values: 0-1. description: Params defines the parameters for the leverage module. umee.leverage.v1.QueryAccountBalancesResponse: @@ -7265,15 +7277,17 @@ definitions: uTokens as liquidation rewards. Valid values: 0-1. - rewards_auction_factor: + rewards_auction_fee: type: string description: >- - Rewards Auction Factor determines the portion of interest accrued - on + Rewards Auction Fee determines the interest increase that will be + accrued on borrows that is sent to the auction module for the rewards auction. + So, 2% means, that there is additional 2% per year fee collected. + Valid values: 0-1. description: Params defines the parameters for the leverage module. description: |- @@ -10548,14 +10562,18 @@ definitions: module will claim accrued interest from leverage module - rewards_auction_factor: + rewards_auction_fee_factor: type: integer format: int64 description: >- - Rewards Auction Factor determines the portion of swap and redeem fee - that is sent to the + Rewards Auction Fee Factor determines the portion of total fees + collected by the metoken - auction module for the rewards auction. + module that will go for the rewards auction. 2% means that 2% of + collected fees will go to + + the rewards auction. Note: this is different than x/leverage + Params.rewards_auction_fee. Valid values: 0-10000 (in basis points, 2000 = 20%). description: Params defines the parameters for the metoken module. @@ -10895,14 +10913,18 @@ definitions: metoken module will claim accrued interest from leverage module - rewards_auction_factor: + rewards_auction_fee_factor: type: integer format: int64 description: >- - Rewards Auction Factor determines the portion of swap and redeem - fee that is sent to the + Rewards Auction Fee Factor determines the portion of total fees + collected by the metoken + + module that will go for the rewards auction. 2% means that 2% of + collected fees will go to - auction module for the rewards auction. + the rewards auction. Note: this is different than x/leverage + Params.rewards_auction_fee. Valid values: 0-10000 (in basis points, 2000 = 20%). description: Params defines the parameters for the metoken module. diff --git a/x/leverage/fixtures/params.go b/x/leverage/fixtures/params.go index 6f808f3546..cc158b20e9 100644 --- a/x/leverage/fixtures/params.go +++ b/x/leverage/fixtures/params.go @@ -12,7 +12,7 @@ func Params() types.Params { CompleteLiquidationThreshold: sdk.MustNewDecFromStr("0.1"), MinimumCloseFactor: sdk.MustNewDecFromStr("0.01"), OracleRewardFactor: sdk.MustNewDecFromStr("0.01"), - RewardsAuctionFactor: sdk.MustNewDecFromStr("0.02"), + RewardsAuctionFee: sdk.MustNewDecFromStr("0.02"), SmallLiquidationSize: sdk.MustNewDecFromStr("100.00"), DirectLiquidationFee: sdk.MustNewDecFromStr("0.1"), } diff --git a/x/leverage/keeper/interest.go b/x/leverage/keeper/interest.go index 2134c0db38..f601af9777 100644 --- a/x/leverage/keeper/interest.go +++ b/x/leverage/keeper/interest.go @@ -62,7 +62,7 @@ func (k Keeper) DeriveSupplyAPY(ctx sdk.Context, denom string) sdk.Dec { borrowRate := k.DeriveBorrowAPY(ctx, denom) utilization := k.SupplyUtilization(ctx, denom) params := k.GetParams(ctx) - reduction := params.OracleRewardFactor.Add(params.RewardsAuctionFactor).Add(token.ReserveFactor) + reduction := params.OracleRewardFactor.Add(params.RewardsAuctionFee).Add(token.ReserveFactor) // supply APY = borrow APY * utilization, reduced by reserve factor and oracle reward factor return borrowRate.Mul(utilization).Mul(sdk.OneDec().Sub(reduction)) @@ -156,7 +156,7 @@ func (k Keeper) AccrueAllInterest(ctx sdk.Context) error { )) auctionRewards = auctionRewards.Add(sdk.NewCoin( token.BaseDenom, - interestAccrued.Mul(params.RewardsAuctionFactor).TruncateInt(), + interestAccrued.Mul(params.RewardsAuctionFee).TruncateInt(), )) } diff --git a/x/leverage/keeper/interest_test.go b/x/leverage/keeper/interest_test.go index 8762eadc38..b54bb2bfd0 100644 --- a/x/leverage/keeper/interest_test.go +++ b/x/leverage/keeper/interest_test.go @@ -37,7 +37,7 @@ func (s *IntegrationTestSuite) TestAccrueZeroInterest() { require.Equal(sdk.MustNewDecFromStr("0.03"), borrowAPY) // supply APY when borrow APY is 3% - // and utilization is 4%, and reserve factor=20%, OracleRewardFactor=1% RewardsAuctionFactor=2% + // and utilization is 4%, and reserve factor=20%, OracleRewardFactor=1% RewardsAuctionFee=2% // 0.03 * 0.04 * (1 - 0.2 - 0.01 - 0.02) supplyAPY := app.LeverageKeeper.DeriveSupplyAPY(ctx, appparams.BondDenom) require.Equal(sdk.MustNewDecFromStr("0.000924"), supplyAPY) diff --git a/x/leverage/types/leverage.pb.go b/x/leverage/types/leverage.pb.go index 79d4f87ada..66fa297a0c 100644 --- a/x/leverage/types/leverage.pb.go +++ b/x/leverage/types/leverage.pb.go @@ -66,10 +66,11 @@ type Params struct { // uTokens as liquidation rewards. // Valid values: 0-1. DirectLiquidationFee github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,6,opt,name=direct_liquidation_fee,json=directLiquidationFee,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"direct_liquidation_fee" yaml:"direct_liquidation_fee"` - // Rewards Auction Factor determines the portion of interest accrued on + // Rewards Auction Fee determines the interest increase that will be accrued on // borrows that is sent to the auction module for the rewards auction. + // So, 2% means, that there is additional 2% per year fee collected. // Valid values: 0-1. - RewardsAuctionFactor github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,7,opt,name=rewards_auction_factor,json=rewardsAuctionFactor,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"rewards_auction_factor" yaml:"oracle_reward_factor"` + RewardsAuctionFee github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,7,opt,name=rewards_auction_fee,json=rewardsAuctionFee,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"rewards_auction_fee" yaml:"oracle_reward_factor"` } func (m *Params) Reset() { *m = Params{} } @@ -358,72 +359,72 @@ func init() { func init() { proto.RegisterFile("umee/leverage/v1/leverage.proto", fileDescriptor_8cb1bf9ea641ecc6) } var fileDescriptor_8cb1bf9ea641ecc6 = []byte{ - // 1038 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0x41, 0x4f, 0x1b, 0x47, - 0x14, 0x66, 0x21, 0x71, 0x61, 0x12, 0xb0, 0x59, 0x0c, 0x59, 0x35, 0xd4, 0x46, 0x23, 0xb5, 0xe2, - 0x12, 0xdc, 0xa8, 0x55, 0x0f, 0xdc, 0x02, 0x11, 0x0d, 0x55, 0x48, 0xd3, 0x21, 0x55, 0xa4, 0xf6, - 0xb0, 0x1a, 0xaf, 0x5f, 0xec, 0x91, 0x67, 0x77, 0xdc, 0x9d, 0xb1, 0x31, 0x5c, 0x7a, 0xa8, 0x7a, - 0xea, 0xa5, 0xea, 0xbd, 0x52, 0x7f, 0x4d, 0xc5, 0x31, 0xc7, 0xaa, 0x07, 0xab, 0x85, 0x4b, 0x0f, - 0xbd, 0x94, 0x5f, 0x50, 0xcd, 0xcc, 0xda, 0xbb, 0x26, 0x1b, 0xa4, 0x15, 0xe4, 0xc4, 0xee, 0x37, - 0xe3, 0xef, 0xfb, 0xde, 0xbc, 0xf7, 0xe6, 0xb1, 0xa8, 0xde, 0x0f, 0x01, 0x1a, 0x1c, 0x06, 0x10, - 0xd3, 0x36, 0x34, 0x06, 0x0f, 0x27, 0xcf, 0x5b, 0xbd, 0x58, 0x28, 0xe1, 0x56, 0xf4, 0x86, 0xad, - 0x09, 0x38, 0x78, 0xf8, 0x7e, 0xb5, 0x2d, 0xda, 0xc2, 0x2c, 0x36, 0xf4, 0x93, 0xdd, 0x87, 0x7f, - 0x2f, 0xa1, 0xd2, 0x73, 0x1a, 0xd3, 0x50, 0xba, 0xbf, 0x3a, 0xa8, 0x16, 0x88, 0xb0, 0xc7, 0x41, - 0x81, 0xcf, 0xd9, 0x77, 0x7d, 0xd6, 0xa2, 0x8a, 0x89, 0xc8, 0x57, 0x9d, 0x18, 0x64, 0x47, 0xf0, - 0x96, 0x37, 0xbb, 0xe1, 0x6c, 0x2e, 0xec, 0xbc, 0x3c, 0x1d, 0xd5, 0x67, 0xfe, 0x1c, 0xd5, 0x3f, - 0x6a, 0x33, 0xd5, 0xe9, 0x37, 0xb7, 0x02, 0x11, 0x36, 0x02, 0x21, 0x43, 0x21, 0x93, 0x3f, 0x0f, - 0x64, 0xab, 0xdb, 0x50, 0xc7, 0x3d, 0x90, 0x5b, 0x8f, 0x21, 0xb8, 0x18, 0xd5, 0x3f, 0x3c, 0xa6, - 0x21, 0xdf, 0xc6, 0x57, 0xb3, 0x63, 0xb2, 0x3e, 0xde, 0xf0, 0x34, 0x5d, 0x7f, 0x31, 0x5e, 0x76, - 0xbf, 0x47, 0xd5, 0x90, 0x45, 0x2c, 0xec, 0x87, 0x7e, 0xc0, 0x85, 0x04, 0xff, 0x15, 0x0d, 0x94, - 0x88, 0xbd, 0x39, 0x63, 0xea, 0xa0, 0xb0, 0xa9, 0xfb, 0xd6, 0x54, 0x1e, 0x27, 0x26, 0x6e, 0x02, - 0xef, 0x6a, 0x74, 0xcf, 0x80, 0xda, 0x80, 0x88, 0x69, 0xc0, 0xc1, 0x8f, 0xe1, 0x88, 0xc6, 0xad, - 0xb1, 0x81, 0x5b, 0xd7, 0x33, 0x90, 0xc7, 0x89, 0x89, 0x6b, 0x61, 0x62, 0xd0, 0xc4, 0xc0, 0x8f, - 0x0e, 0x5a, 0x93, 0x21, 0xe5, 0x7c, 0xea, 0x00, 0x25, 0x3b, 0x01, 0xef, 0xb6, 0xf1, 0xf0, 0x65, - 0x61, 0x0f, 0x1f, 0x58, 0x0f, 0xf9, 0xac, 0x98, 0x54, 0xcd, 0x42, 0x26, 0x1d, 0x87, 0xec, 0x04, - 0x8c, 0x8f, 0x16, 0x8b, 0x21, 0x50, 0x53, 0x3f, 0x79, 0x05, 0xe0, 0x95, 0xae, 0xe7, 0x23, 0x9f, - 0x15, 0x93, 0xaa, 0x5d, 0xc8, 0x18, 0xd9, 0x03, 0x70, 0x7f, 0x70, 0xd0, 0x9a, 0x3d, 0x36, 0xe9, - 0xd3, 0x7e, 0x60, 0xb7, 0xdb, 0x9c, 0xbc, 0xf7, 0x2e, 0x72, 0x52, 0x4d, 0xc4, 0x1e, 0x59, 0x2d, - 0x9b, 0x95, 0xed, 0x5b, 0xff, 0xfc, 0x56, 0x77, 0xf0, 0xbf, 0x4b, 0xe8, 0xf6, 0x0b, 0xd1, 0x85, - 0xc8, 0xfd, 0x14, 0xa1, 0x26, 0x95, 0xe0, 0xb7, 0x20, 0x12, 0xa1, 0xe7, 0x18, 0x23, 0xab, 0x17, - 0xa3, 0xfa, 0xb2, 0xa5, 0x4e, 0xd7, 0x30, 0x59, 0xd0, 0x2f, 0x8f, 0xf5, 0xb3, 0x1b, 0xa1, 0xa5, - 0x18, 0x24, 0xc4, 0x83, 0x49, 0x5d, 0xdb, 0x66, 0xfb, 0xbc, 0x70, 0x08, 0xab, 0x56, 0x67, 0x9a, - 0x0d, 0x93, 0xc5, 0x04, 0x48, 0x6a, 0xe9, 0x08, 0x2d, 0x07, 0x82, 0x73, 0xaa, 0x20, 0xa6, 0xdc, - 0x3f, 0x02, 0xd6, 0xee, 0xa8, 0xa4, 0x95, 0xbe, 0x28, 0x2c, 0xe9, 0x8d, 0xfb, 0xfb, 0x12, 0x21, - 0x26, 0x95, 0x14, 0x7b, 0x69, 0x20, 0x9d, 0xb4, 0xd5, 0xfc, 0xdb, 0xc5, 0xf6, 0xd1, 0xb3, 0xc2, - 0xea, 0xeb, 0x56, 0xfd, 0x2d, 0x97, 0x4a, 0x95, 0xe7, 0x5d, 0x26, 0x12, 0x55, 0x4c, 0x22, 0x9a, - 0x22, 0x8e, 0xc5, 0x91, 0x1f, 0x53, 0x35, 0xee, 0xa1, 0xfd, 0xc2, 0xfa, 0xf7, 0x32, 0x89, 0xcd, - 0xf0, 0x61, 0xb2, 0xa4, 0xa1, 0x1d, 0x83, 0x10, 0xaa, 0x40, 0x8b, 0x76, 0x59, 0xd4, 0x9d, 0x12, - 0x2d, 0x5d, 0x4f, 0xf4, 0x32, 0x1f, 0x26, 0x4b, 0x1a, 0xca, 0x88, 0xf6, 0x50, 0x39, 0xa4, 0xc3, - 0x29, 0x4d, 0xdb, 0x1c, 0x4f, 0x0a, 0x6b, 0xae, 0x25, 0x37, 0xe6, 0x34, 0x1d, 0x26, 0x8b, 0x21, - 0x1d, 0x66, 0x14, 0x55, 0x12, 0x66, 0x5f, 0x31, 0xce, 0x4e, 0xcc, 0xc1, 0x7b, 0xf3, 0x37, 0x10, - 0x66, 0x86, 0x0f, 0x93, 0xb2, 0x86, 0xbe, 0x4e, 0x91, 0x37, 0xea, 0x8a, 0x45, 0x01, 0x44, 0x8a, - 0x0d, 0xc0, 0x5b, 0xb8, 0xb9, 0xba, 0x9a, 0x90, 0x4e, 0xd7, 0xd5, 0xfe, 0x18, 0x76, 0xb7, 0xd1, - 0x5d, 0x79, 0x1c, 0x36, 0x05, 0x4f, 0xda, 0x1f, 0x19, 0xed, 0x7b, 0x17, 0xa3, 0xfa, 0x4a, 0x72, - 0xd3, 0x66, 0x56, 0x31, 0xb9, 0x63, 0x5f, 0xed, 0x15, 0xd0, 0x40, 0xf3, 0x30, 0xec, 0x89, 0x08, - 0x22, 0xe5, 0xdd, 0xd9, 0x70, 0x36, 0x17, 0x77, 0x56, 0x2e, 0x46, 0xf5, 0xb2, 0xfd, 0xdd, 0x78, - 0x05, 0x93, 0xc9, 0x26, 0xf7, 0x09, 0x5a, 0x86, 0x88, 0x36, 0x39, 0xf8, 0xa1, 0x6c, 0xfb, 0xb2, - 0xdf, 0xeb, 0xf1, 0x63, 0xef, 0xee, 0x86, 0xb3, 0x39, 0xbf, 0xb3, 0x9e, 0x76, 0xe5, 0x1b, 0x5b, - 0x30, 0x29, 0x5b, 0xec, 0x40, 0xb6, 0x0f, 0x0d, 0x72, 0x89, 0xc9, 0x26, 0xd7, 0x5b, 0xbc, 0x82, - 0xc9, 0x6e, 0xc9, 0x32, 0xd9, 0x02, 0x70, 0xd7, 0xd1, 0x42, 0x93, 0xd3, 0xa0, 0xcb, 0x99, 0x54, - 0xde, 0x92, 0x66, 0x20, 0x29, 0x60, 0x66, 0x38, 0x1d, 0xfa, 0x99, 0x8b, 0x42, 0x76, 0x68, 0x0c, - 0x5e, 0xf9, 0x9a, 0x33, 0x3c, 0x87, 0x53, 0xcf, 0x70, 0x3a, 0xdc, 0x9d, 0xa0, 0x87, 0x1a, 0x34, - 0xa3, 0x4b, 0xef, 0xb6, 0x27, 0x31, 0x55, 0xa2, 0x95, 0xeb, 0x8d, 0xae, 0x7c, 0x56, 0x4c, 0x74, - 0xc0, 0xf6, 0x94, 0xb3, 0xd5, 0xfa, 0x93, 0x83, 0xbc, 0x90, 0x45, 0x59, 0xd7, 0xb6, 0x9e, 0x98, - 0x3a, 0xf6, 0x96, 0x8d, 0x93, 0xaf, 0x0a, 0x3b, 0xa9, 0x4f, 0xfe, 0xa3, 0xc9, 0xe5, 0xc5, 0x64, - 0x2d, 0x64, 0x51, 0x7a, 0x22, 0x4f, 0xc7, 0x0b, 0x6e, 0x13, 0xa1, 0xd4, 0xbe, 0xe7, 0x1a, 0xf9, - 0xdd, 0x02, 0xf2, 0xfb, 0x91, 0x4a, 0x07, 0x5c, 0xca, 0x84, 0xc9, 0xc2, 0x24, 0x78, 0x77, 0x0f, - 0x55, 0x3a, 0x4c, 0x2a, 0x11, 0xb3, 0xc0, 0x0f, 0xa1, 0xc5, 0x68, 0x24, 0xbd, 0x15, 0x53, 0xe5, - 0xf7, 0xd3, 0x3e, 0xbf, 0xbc, 0x03, 0x93, 0xf2, 0x18, 0x3a, 0xb0, 0x48, 0x32, 0x6e, 0x7f, 0x99, - 0x45, 0x95, 0xc3, 0x1e, 0x04, 0x8c, 0xf2, 0x47, 0x52, 0x82, 0x7a, 0x4e, 0x59, 0xec, 0xd6, 0x10, - 0x4a, 0xe3, 0xb6, 0x93, 0x97, 0x64, 0x10, 0x77, 0x0d, 0x95, 0x92, 0xd2, 0x36, 0xb3, 0x95, 0x24, - 0x6f, 0xee, 0xb7, 0x6f, 0x9f, 0x85, 0x5b, 0xc5, 0x92, 0x90, 0x33, 0xef, 0x82, 0xab, 0xc7, 0x5d, - 0x51, 0x81, 0xdc, 0x71, 0x96, 0x1c, 0xca, 0x7f, 0x0e, 0x2a, 0x67, 0x0f, 0xe5, 0x10, 0x94, 0x8e, - 0x99, 0xea, 0x67, 0xe9, 0x39, 0x1b, 0x73, 0x3a, 0x66, 0xfb, 0x96, 0x1f, 0xf3, 0xec, 0xbb, 0x8e, - 0x79, 0xee, 0xa6, 0x63, 0xde, 0x79, 0x76, 0xfa, 0x77, 0x6d, 0xe6, 0xf4, 0xac, 0xe6, 0xbc, 0x3e, - 0xab, 0x39, 0x7f, 0x9d, 0xd5, 0x9c, 0x9f, 0xcf, 0x6b, 0x33, 0xaf, 0xcf, 0x6b, 0x33, 0x7f, 0x9c, - 0xd7, 0x66, 0xbe, 0xf9, 0x38, 0xa3, 0xa0, 0xbf, 0x88, 0x1e, 0x44, 0xa0, 0x8e, 0x44, 0xdc, 0x35, - 0x2f, 0x8d, 0xc1, 0x67, 0x8d, 0x61, 0xfa, 0x11, 0x65, 0xf4, 0x9a, 0x25, 0xf3, 0x5d, 0xf4, 0xc9, - 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0xe7, 0xab, 0x43, 0x11, 0x62, 0x0d, 0x00, 0x00, + // 1039 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0xcf, 0x6f, 0x1b, 0xc5, + 0x17, 0xcf, 0x26, 0xad, 0xbf, 0xc9, 0xb4, 0x89, 0x9d, 0xcd, 0x8f, 0xae, 0xbe, 0x0d, 0x76, 0x34, + 0x12, 0x28, 0x97, 0xc6, 0x54, 0x20, 0x0e, 0xb9, 0xd5, 0xa9, 0x42, 0x83, 0x9a, 0x52, 0xc6, 0x45, + 0x95, 0xe0, 0xb0, 0x1a, 0xaf, 0x5f, 0xed, 0x91, 0x67, 0x77, 0xcc, 0xce, 0xf8, 0x57, 0x24, 0xc4, + 0x01, 0x71, 0xe2, 0x82, 0xb8, 0x23, 0xf1, 0x9f, 0x70, 0xcd, 0xb1, 0x47, 0xc4, 0xc1, 0x82, 0xe4, + 0xc2, 0x81, 0x0b, 0xf9, 0x0b, 0xd0, 0xce, 0xac, 0xbd, 0xeb, 0x74, 0x1b, 0x69, 0xe5, 0xf4, 0x94, + 0xdd, 0xcf, 0x1b, 0x7f, 0x3e, 0x9f, 0x37, 0xf3, 0xde, 0xbc, 0x2c, 0xaa, 0xf4, 0x7c, 0x80, 0x2a, + 0x87, 0x3e, 0x84, 0xb4, 0x05, 0xd5, 0xfe, 0xc3, 0xe9, 0xf3, 0x7e, 0x37, 0x14, 0x4a, 0xd8, 0xa5, + 0x68, 0xc1, 0xfe, 0x14, 0xec, 0x3f, 0xfc, 0xff, 0x66, 0x4b, 0xb4, 0x84, 0x0e, 0x56, 0xa3, 0x27, + 0xb3, 0x0e, 0xff, 0x56, 0x40, 0x85, 0xe7, 0x34, 0xa4, 0xbe, 0xb4, 0x7f, 0xb1, 0x50, 0xd9, 0x13, + 0x7e, 0x97, 0x83, 0x02, 0x97, 0xb3, 0x6f, 0x7a, 0xac, 0x49, 0x15, 0x13, 0x81, 0xab, 0xda, 0x21, + 0xc8, 0xb6, 0xe0, 0x4d, 0x67, 0x71, 0xd7, 0xda, 0x5b, 0xa9, 0xbd, 0x3c, 0x1b, 0x57, 0x16, 0xfe, + 0x18, 0x57, 0x3e, 0x68, 0x31, 0xd5, 0xee, 0x35, 0xf6, 0x3d, 0xe1, 0x57, 0x3d, 0x21, 0x7d, 0x21, + 0xe3, 0x3f, 0x0f, 0x64, 0xb3, 0x53, 0x55, 0xa3, 0x2e, 0xc8, 0xfd, 0xc7, 0xe0, 0x5d, 0x8e, 0x2b, + 0xef, 0x8f, 0xa8, 0xcf, 0x0f, 0xf0, 0xf5, 0xec, 0x98, 0xec, 0x4c, 0x16, 0x3c, 0x4d, 0xe2, 0x2f, + 0x26, 0x61, 0xfb, 0x3b, 0xb4, 0xe9, 0xb3, 0x80, 0xf9, 0x3d, 0xdf, 0xf5, 0xb8, 0x90, 0xe0, 0xbe, + 0xa2, 0x9e, 0x12, 0xa1, 0xb3, 0xa4, 0x4d, 0x9d, 0xe4, 0x36, 0x75, 0xdf, 0x98, 0xca, 0xe2, 0xc4, + 0xc4, 0x8e, 0xe1, 0xc3, 0x08, 0x3d, 0xd2, 0x60, 0x64, 0x40, 0x84, 0xd4, 0xe3, 0xe0, 0x86, 0x30, + 0xa0, 0x61, 0x73, 0x62, 0xe0, 0xd6, 0x7c, 0x06, 0xb2, 0x38, 0x31, 0xb1, 0x0d, 0x4c, 0x34, 0x1a, + 0x1b, 0xf8, 0xc1, 0x42, 0xdb, 0xd2, 0xa7, 0x9c, 0xcf, 0x6c, 0xa0, 0x64, 0xa7, 0xe0, 0xdc, 0xd6, + 0x1e, 0x3e, 0xcf, 0xed, 0xe1, 0x3d, 0xe3, 0x21, 0x9b, 0x15, 0x93, 0x4d, 0x1d, 0x48, 0x1d, 0x47, + 0x9d, 0x9d, 0x82, 0xf6, 0xd1, 0x64, 0x21, 0x78, 0x6a, 0xe6, 0x27, 0xaf, 0x00, 0x9c, 0xc2, 0x7c, + 0x3e, 0xb2, 0x59, 0x31, 0xd9, 0x34, 0x81, 0x94, 0x91, 0x23, 0x00, 0xfb, 0x5b, 0xb4, 0x61, 0x76, + 0x4d, 0xba, 0xb4, 0xe7, 0x4d, 0x3d, 0xfc, 0xef, 0x5d, 0x9c, 0xc7, 0x7a, 0xac, 0xf4, 0xc8, 0x08, + 0x1d, 0x01, 0x1c, 0xdc, 0xfa, 0xfb, 0xd7, 0x8a, 0x85, 0xff, 0x59, 0x43, 0xb7, 0x5f, 0x88, 0x0e, + 0x04, 0xf6, 0xc7, 0x08, 0x35, 0xa8, 0x04, 0xb7, 0x09, 0x81, 0xf0, 0x1d, 0x4b, 0xbb, 0xd8, 0xba, + 0x1c, 0x57, 0xd6, 0x0d, 0x6f, 0x12, 0xc3, 0x64, 0x25, 0x7a, 0x79, 0x1c, 0x3d, 0xdb, 0x01, 0x5a, + 0x0b, 0x41, 0x42, 0xd8, 0x9f, 0x16, 0xb4, 0xe9, 0xb2, 0x4f, 0x73, 0xfb, 0xdf, 0x32, 0x3a, 0xb3, + 0x6c, 0x98, 0xac, 0xc6, 0x40, 0x5c, 0x44, 0x03, 0xb4, 0xee, 0x09, 0xce, 0xa9, 0x82, 0x90, 0x72, + 0x77, 0x00, 0xac, 0xd5, 0x56, 0x71, 0x0f, 0x7d, 0x96, 0x5b, 0xd2, 0x99, 0x34, 0xf6, 0x15, 0x42, + 0x4c, 0x4a, 0x09, 0xf6, 0x52, 0x43, 0xf6, 0xf7, 0x16, 0xda, 0xca, 0xbe, 0x56, 0x4c, 0x03, 0x3d, + 0xcb, 0xad, 0xbe, 0x63, 0xd4, 0xdf, 0x72, 0x9b, 0x6c, 0xf2, 0xac, 0x5b, 0x44, 0xa2, 0x92, 0x3e, + 0x88, 0x86, 0x08, 0x43, 0x31, 0x70, 0x43, 0xaa, 0x26, 0xcd, 0x73, 0x9c, 0x5b, 0xff, 0x5e, 0xea, + 0x60, 0x53, 0x7c, 0x98, 0xac, 0x45, 0x50, 0x4d, 0x23, 0x84, 0x2a, 0x88, 0x44, 0x3b, 0x2c, 0xe8, + 0xcc, 0x88, 0x16, 0xe6, 0x13, 0xbd, 0xca, 0x87, 0xc9, 0x5a, 0x04, 0xa5, 0x44, 0xbb, 0xa8, 0xe8, + 0xd3, 0xe1, 0x8c, 0xa6, 0xe9, 0x8c, 0x27, 0xb9, 0x35, 0xb7, 0xe3, 0xab, 0x72, 0x96, 0x0e, 0x93, + 0x55, 0x9f, 0x0e, 0x53, 0x8a, 0x2a, 0x4e, 0xb3, 0xa7, 0x18, 0x67, 0xa7, 0x7a, 0xe3, 0x9d, 0xe5, + 0x1b, 0x48, 0x33, 0xc5, 0x87, 0x49, 0x31, 0x82, 0xbe, 0x4c, 0x90, 0x37, 0xea, 0x8a, 0x05, 0x1e, + 0x04, 0x8a, 0xf5, 0xc1, 0x59, 0xb9, 0xb9, 0xba, 0x9a, 0x92, 0xce, 0xd6, 0xd5, 0xf1, 0x04, 0xb6, + 0x0f, 0xd0, 0x5d, 0x39, 0xf2, 0x1b, 0x82, 0xc7, 0xed, 0x8f, 0xb4, 0xf6, 0xbd, 0xcb, 0x71, 0x65, + 0x23, 0xbe, 0x62, 0x53, 0x51, 0x4c, 0xee, 0x98, 0x57, 0x73, 0x05, 0x54, 0xd1, 0x32, 0x0c, 0xbb, + 0x22, 0x80, 0x40, 0x39, 0x77, 0x76, 0xad, 0xbd, 0xd5, 0xda, 0xc6, 0xe5, 0xb8, 0x52, 0x34, 0xbf, + 0x9b, 0x44, 0x30, 0x99, 0x2e, 0xb2, 0x9f, 0xa0, 0x75, 0x08, 0x68, 0x83, 0x83, 0xeb, 0xcb, 0x96, + 0x2b, 0x7b, 0xdd, 0x2e, 0x1f, 0x39, 0x77, 0x77, 0xad, 0xbd, 0xe5, 0xda, 0x4e, 0xd2, 0x95, 0x6f, + 0x2c, 0xc1, 0xa4, 0x68, 0xb0, 0x13, 0xd9, 0xaa, 0x6b, 0xe4, 0x0a, 0x93, 0x39, 0x5c, 0x67, 0xf5, + 0x1a, 0x26, 0xb3, 0x24, 0xcd, 0x64, 0x0a, 0xc0, 0xde, 0x41, 0x2b, 0x0d, 0x4e, 0xbd, 0x0e, 0x67, + 0x52, 0x39, 0x6b, 0x11, 0x03, 0x49, 0x00, 0x3d, 0xbc, 0xe9, 0xd0, 0x4d, 0x5d, 0x14, 0xb2, 0x4d, + 0x43, 0x70, 0x8a, 0x73, 0x0e, 0xef, 0x0c, 0xce, 0x68, 0x78, 0xd3, 0xe1, 0xe1, 0x14, 0xad, 0x47, + 0xa0, 0x9e, 0x59, 0xd1, 0x6a, 0xb3, 0x13, 0x33, 0x25, 0x5a, 0x9a, 0x6f, 0x66, 0x65, 0xb3, 0x62, + 0x12, 0x25, 0x6c, 0x76, 0x39, 0x5d, 0xad, 0x3f, 0x5a, 0xc8, 0xf1, 0x59, 0x90, 0x76, 0x6d, 0xea, + 0x89, 0xa9, 0x91, 0xb3, 0xae, 0x9d, 0x7c, 0x91, 0xdb, 0x49, 0x65, 0xfa, 0xaf, 0x4c, 0x26, 0x2f, + 0x26, 0xdb, 0x3e, 0x0b, 0x92, 0x1d, 0x79, 0x3a, 0x09, 0xd8, 0x0d, 0x84, 0x12, 0xfb, 0x8e, 0xad, + 0xe5, 0x0f, 0x73, 0xc8, 0x1f, 0x07, 0x2a, 0x19, 0x70, 0x09, 0x13, 0x26, 0x2b, 0xd3, 0xe4, 0xed, + 0x23, 0x54, 0x6a, 0x33, 0xa9, 0x44, 0xc8, 0x3c, 0xd7, 0x87, 0x26, 0xa3, 0x81, 0x74, 0x36, 0x74, + 0x95, 0xdf, 0x4f, 0xfa, 0xfc, 0xea, 0x0a, 0x4c, 0x8a, 0x13, 0xe8, 0xc4, 0x20, 0xf1, 0xb8, 0xfd, + 0x79, 0x11, 0x95, 0xea, 0x5d, 0xf0, 0x18, 0xe5, 0x8f, 0xa4, 0x04, 0xf5, 0x9c, 0xb2, 0xd0, 0x2e, + 0x23, 0x94, 0xe4, 0x6d, 0x26, 0x2f, 0x49, 0x21, 0xf6, 0x36, 0x2a, 0xc4, 0xa5, 0xad, 0x67, 0x2b, + 0x89, 0xdf, 0xec, 0xaf, 0xdf, 0x3e, 0x0b, 0xf7, 0xf3, 0x1d, 0x42, 0xc6, 0xbc, 0xf3, 0xae, 0x1f, + 0x77, 0x79, 0x05, 0x32, 0xc7, 0x59, 0xbc, 0x29, 0xff, 0x5a, 0xa8, 0x98, 0xde, 0x94, 0x3a, 0xa8, + 0x28, 0x67, 0x1a, 0x3d, 0x4b, 0xc7, 0xda, 0x5d, 0x8a, 0x72, 0x36, 0x6f, 0xd9, 0x39, 0x2f, 0xbe, + 0xeb, 0x9c, 0x97, 0x6e, 0x3a, 0xe7, 0xda, 0xb3, 0xb3, 0xbf, 0xca, 0x0b, 0x67, 0xe7, 0x65, 0xeb, + 0xf5, 0x79, 0xd9, 0xfa, 0xf3, 0xbc, 0x6c, 0xfd, 0x74, 0x51, 0x5e, 0x78, 0x7d, 0x51, 0x5e, 0xf8, + 0xfd, 0xa2, 0xbc, 0xf0, 0xd5, 0x87, 0x29, 0x85, 0xe8, 0x53, 0xe8, 0x41, 0x00, 0x6a, 0x20, 0xc2, + 0x8e, 0x7e, 0xa9, 0xf6, 0x3f, 0xa9, 0x0e, 0x93, 0xaf, 0x27, 0xad, 0xd7, 0x28, 0xe8, 0x0f, 0xa2, + 0x8f, 0xfe, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x07, 0xe0, 0xb9, 0xa9, 0x5b, 0x0d, 0x00, 0x00, } func (this *Params) Equal(that interface{}) bool { @@ -460,7 +461,7 @@ func (this *Params) Equal(that interface{}) bool { if !this.DirectLiquidationFee.Equal(that1.DirectLiquidationFee) { return false } - if !this.RewardsAuctionFactor.Equal(that1.RewardsAuctionFactor) { + if !this.RewardsAuctionFee.Equal(that1.RewardsAuctionFee) { return false } return true @@ -632,9 +633,9 @@ func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) { var l int _ = l { - size := m.RewardsAuctionFactor.Size() + size := m.RewardsAuctionFee.Size() i -= size - if _, err := m.RewardsAuctionFactor.MarshalTo(dAtA[i:]); err != nil { + if _, err := m.RewardsAuctionFee.MarshalTo(dAtA[i:]); err != nil { return 0, err } i = encodeVarintLeverage(dAtA, i, uint64(size)) @@ -1035,7 +1036,7 @@ func (m *Params) Size() (n int) { n += 1 + l + sovLeverage(uint64(l)) l = m.DirectLiquidationFee.Size() n += 1 + l + sovLeverage(uint64(l)) - l = m.RewardsAuctionFactor.Size() + l = m.RewardsAuctionFee.Size() n += 1 + l + sovLeverage(uint64(l)) return n } @@ -1343,7 +1344,7 @@ func (m *Params) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 7: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field RewardsAuctionFactor", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field RewardsAuctionFee", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -1371,7 +1372,7 @@ func (m *Params) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.RewardsAuctionFactor.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.RewardsAuctionFee.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/x/leverage/types/params.go b/x/leverage/types/params.go index 8fee658d90..4425e355d5 100644 --- a/x/leverage/types/params.go +++ b/x/leverage/types/params.go @@ -12,7 +12,7 @@ func DefaultParams() Params { CompleteLiquidationThreshold: sdk.MustNewDecFromStr("0.4"), MinimumCloseFactor: sdk.MustNewDecFromStr("0.05"), OracleRewardFactor: sdk.MustNewDecFromStr("0.01"), - RewardsAuctionFactor: sdk.MustNewDecFromStr("0.02"), + RewardsAuctionFee: sdk.MustNewDecFromStr("0.02"), SmallLiquidationSize: sdk.MustNewDecFromStr("500.00"), DirectLiquidationFee: sdk.MustNewDecFromStr("0.05"), } diff --git a/x/metoken/keeper/intest/msg_server_test.go b/x/metoken/keeper/intest/msg_server_test.go index 120b1ae804..4ae71e28bc 100644 --- a/x/metoken/keeper/intest/msg_server_test.go +++ b/x/metoken/keeper/intest/msg_server_test.go @@ -896,7 +896,7 @@ func verifySwap( // totalfee = feeRate * amount totalFee := sdk.NewCoin(denom, feeRate.MulInt(tc.asset.Amount).TruncateInt()) - feeToAuction := params.RewardsAuctionFactor.Mul(totalFee.Amount) + feeToAuction := params.RewardsAuctionFeeFactor.Mul(totalFee.Amount) feeToReserve := totalFee.Amount.Sub(feeToAuction) // amount_to_swap = swap_amount - fee @@ -1718,7 +1718,7 @@ func verifyRedeem( // totalfee = feeRate * amount_to_redeem totalFee := sdk.NewCoin(tc.denom, feeRate.MulInt(amountToWithdraw).TruncateInt()) - feeToAuction := params.RewardsAuctionFactor.Mul(totalFee.Amount) + feeToAuction := params.RewardsAuctionFeeFactor.Mul(totalFee.Amount) feeToReserve := totalFee.Amount.Sub(feeToAuction) amountToRedeem := amountToWithdraw.Sub(totalFee.Amount) diff --git a/x/metoken/keeper/swap.go b/x/metoken/keeper/swap.go index 10784efbb7..37bdabc037 100644 --- a/x/metoken/keeper/swap.go +++ b/x/metoken/keeper/swap.go @@ -185,7 +185,7 @@ func (k Keeper) availableToSupply(denom string) (bool, sdkmath.Int, error) { // breakFee calculates the protocol fee for the burn auction and the reminder func (k Keeper) breakFee(fee sdkmath.Int) (sdkmath.Int, sdkmath.Int) { p := k.GetParams() - toAuction := p.RewardsAuctionFactor.Mul(fee) + toAuction := p.RewardsAuctionFeeFactor.Mul(fee) return toAuction, fee.Sub(toAuction) } diff --git a/x/metoken/keeper/swap_test.go b/x/metoken/keeper/swap_test.go index 087ebd3bd3..ada315213d 100644 --- a/x/metoken/keeper/swap_test.go +++ b/x/metoken/keeper/swap_test.go @@ -41,7 +41,7 @@ func TestSwap_Valid(t *testing.T) { usdBal2, n := indexBal2.AssetBalance(tenUSDT.Denom) assert.GreaterOrEqual(n, 0) usdBal1, _ := indexBal1.AssetBalance(tenUSDT.Denom) - toAuction := params.RewardsAuctionFactor.Mul(resp.fee.Amount) + toAuction := params.RewardsAuctionFeeFactor.Mul(resp.fee.Amount) assert.Equal(usdBal2.Fees.Sub(usdBal1.Fees), resp.fee.Amount.Sub(toAuction)) // exchange_rate = coin_price / metoken_price @@ -88,7 +88,7 @@ func TestBreakFees(t *testing.T) { assert := assert.New(t) k := initMeUSDNoopKeper(t) p := k.GetParams() - assert.EqualValues(p.RewardsAuctionFactor, 1000) + assert.EqualValues(p.RewardsAuctionFeeFactor, 1000) amount := sdkmath.NewInt(2_000) toAuction, toRevenue := k.breakFee(amount) diff --git a/x/metoken/metoken.pb.go b/x/metoken/metoken.pb.go index b8daf5a481..18efa06ba4 100644 --- a/x/metoken/metoken.pb.go +++ b/x/metoken/metoken.pb.go @@ -34,10 +34,11 @@ type Params struct { // Interest claiming frequency in seconds, determines how often metoken module will claim accrued interest from // leverage module ClaimingFrequency int64 `protobuf:"varint,2,opt,name=claiming_frequency,json=claimingFrequency,proto3" json:"claiming_frequency,omitempty"` - // Rewards Auction Factor determines the portion of swap and redeem fee that is sent to the - // auction module for the rewards auction. + // Rewards Auction Fee Factor determines the portion of total fees collected by the metoken + // module that will go for the rewards auction. 2% means that 2% of collected fees will go to + // the rewards auction. Note: this is different than x/leverage Params.rewards_auction_fee. // Valid values: 0-10000 (in basis points, 2000 = 20%). - RewardsAuctionFactor github_com_umee_network_umee_v6_util_bpmath.FixedBP `protobuf:"varint,3,opt,name=rewards_auction_factor,json=rewardsAuctionFactor,proto3,customtype=github.com/umee-network/umee/v6/util/bpmath.FixedBP" json:"rewards_auction_factor"` + RewardsAuctionFeeFactor github_com_umee_network_umee_v6_util_bpmath.FixedBP `protobuf:"varint,3,opt,name=rewards_auction_fee_factor,json=rewardsAuctionFeeFactor,proto3,customtype=github.com/umee-network/umee/v6/util/bpmath.FixedBP" json:"rewards_auction_fee_factor"` } func (m *Params) Reset() { *m = Params{} } @@ -341,53 +342,53 @@ func init() { func init() { proto.RegisterFile("umee/metoken/v1/metoken.proto", fileDescriptor_dda977db8ad52437) } var fileDescriptor_dda977db8ad52437 = []byte{ - // 721 bytes of a gzipped FileDescriptorProto + // 723 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x95, 0x4f, 0x6b, 0xdb, 0x48, - 0x14, 0xc0, 0xad, 0xc8, 0x76, 0xe2, 0xe7, 0xfc, 0xd9, 0x08, 0x67, 0x31, 0x59, 0xa2, 0x78, 0x73, - 0x58, 0xbc, 0xb0, 0x91, 0x48, 0x02, 0x0b, 0xfb, 0xe7, 0x62, 0x63, 0x1c, 0xc2, 0xb2, 0xd4, 0x55, - 0x0f, 0x85, 0xf6, 0x20, 0xc6, 0xd2, 0x8b, 0x23, 0x6c, 0x69, 0x14, 0xcd, 0xd8, 0x51, 0xbe, 0x45, - 0x3f, 0x42, 0x3f, 0x4d, 0xc9, 0x31, 0xc7, 0xd2, 0x43, 0x68, 0x12, 0x0a, 0x3d, 0x95, 0x9e, 0x7b, - 0x2a, 0x33, 0x1a, 0x27, 0x4e, 0x42, 0x5a, 0x10, 0x3d, 0xd9, 0x33, 0xef, 0xbd, 0xdf, 0xbc, 0x9f, - 0xf4, 0x24, 0xc1, 0xc6, 0x38, 0x44, 0xb4, 0x43, 0xe4, 0x74, 0x88, 0x91, 0x3d, 0xd9, 0x99, 0xfe, - 0xb5, 0xe2, 0x84, 0x72, 0x6a, 0xac, 0x88, 0xb0, 0x35, 0xdd, 0x9b, 0xec, 0xac, 0xd7, 0x06, 0x74, - 0x40, 0x65, 0xcc, 0x16, 0xff, 0xb2, 0xb4, 0xad, 0x0f, 0x1a, 0x94, 0x7b, 0x24, 0x21, 0x21, 0x33, - 0xf6, 0x60, 0x2d, 0xc1, 0x3e, 0x19, 0x91, 0xc8, 0x0b, 0xa2, 0x81, 0x7b, 0x98, 0xe0, 0xf1, 0x18, - 0x23, 0xef, 0xb4, 0xae, 0x35, 0xb4, 0xa6, 0xee, 0xd4, 0x66, 0x82, 0xdd, 0x69, 0xcc, 0xd8, 0x06, - 0xc3, 0x1b, 0x91, 0x20, 0xbc, 0x5b, 0x31, 0x27, 0x2b, 0x56, 0xa7, 0x91, 0xdb, 0xf4, 0x63, 0xf8, - 0x39, 0xc1, 0x13, 0x92, 0xf8, 0xcc, 0x25, 0x63, 0x8f, 0x07, 0x34, 0x72, 0x0f, 0x89, 0xc7, 0x69, - 0x52, 0xd7, 0x1b, 0x5a, 0x73, 0xa9, 0xfd, 0xcf, 0xd9, 0xc5, 0x66, 0xe1, 0xdd, 0xc5, 0xe6, 0xde, - 0x20, 0xe0, 0x47, 0xe3, 0xbe, 0xe5, 0xd1, 0xd0, 0x16, 0x22, 0xdb, 0x11, 0xf2, 0x13, 0x9a, 0x0c, - 0xe5, 0xc2, 0x9e, 0xfc, 0x69, 0x8f, 0x79, 0x30, 0xb2, 0xfb, 0x71, 0x48, 0xf8, 0x91, 0xd5, 0x0d, - 0x52, 0xf4, 0xdb, 0x3d, 0xd1, 0xa1, 0x44, 0xb7, 0x32, 0x72, 0x57, 0x82, 0xff, 0x2e, 0x7e, 0x7c, - 0xbd, 0xa9, 0x6d, 0x7d, 0xd1, 0xa0, 0x74, 0x10, 0xf9, 0x98, 0x1a, 0x35, 0x28, 0xf9, 0x18, 0xd1, - 0x50, 0x6a, 0x55, 0x9c, 0x6c, 0x61, 0xfc, 0x0b, 0x10, 0x92, 0xd4, 0x65, 0xe3, 0x38, 0x1e, 0x65, - 0xfd, 0x57, 0xda, 0x1b, 0xaa, 0x99, 0x35, 0x8f, 0xb2, 0x90, 0x32, 0xe6, 0x0f, 0xad, 0x80, 0xda, - 0xf2, 0xc8, 0x83, 0x88, 0x3b, 0x95, 0x90, 0xa4, 0xcf, 0x64, 0xbe, 0xb1, 0x0e, 0x0b, 0x98, 0xc6, - 0x34, 0xc2, 0x88, 0x67, 0x22, 0xce, 0xcd, 0xda, 0xf8, 0x03, 0xf4, 0x43, 0xc4, 0x7a, 0xb1, 0xa1, - 0x35, 0xab, 0xbb, 0x35, 0xeb, 0xde, 0x6d, 0xb1, 0xba, 0x88, 0xed, 0xa2, 0x38, 0xc8, 0x11, 0x69, - 0xc6, 0xff, 0xb0, 0x42, 0x3c, 0x0f, 0x63, 0x8e, 0xbe, 0x4b, 0x18, 0x43, 0xce, 0xea, 0xa5, 0x86, - 0xde, 0xac, 0xee, 0x9a, 0x0f, 0x2a, 0x5b, 0x2a, 0xaf, 0x25, 0xd2, 0x14, 0x63, 0x99, 0xcc, 0x6e, - 0x32, 0x25, 0xff, 0x59, 0x03, 0xbd, 0x8b, 0x68, 0xec, 0xc3, 0x7c, 0x18, 0x44, 0xae, 0x68, 0x47, - 0xca, 0xb7, 0x2d, 0x65, 0xf8, 0xdb, 0xcc, 0xe5, 0xce, 0x64, 0xd5, 0xcf, 0x36, 0xf3, 0x87, 0x36, - 0x3f, 0x8d, 0x91, 0x59, 0x1d, 0xf4, 0x9c, 0x72, 0x18, 0x44, 0x02, 0xf4, 0x14, 0x16, 0xb3, 0x59, - 0x40, 0x5f, 0xd2, 0xe6, 0x72, 0xd1, 0xaa, 0x53, 0xc6, 0xb4, 0x37, 0x92, 0x4a, 0x9a, 0x9e, 0xb3, - 0x37, 0x92, 0x76, 0x11, 0x95, 0xf2, 0xa5, 0x06, 0x4b, 0x77, 0x2e, 0xd0, 0x23, 0xf7, 0xfd, 0x39, - 0xac, 0x24, 0xc8, 0x30, 0x99, 0xa0, 0x1b, 0xd3, 0x44, 0x8c, 0x4d, 0x4e, 0x99, 0x65, 0x85, 0xe9, - 0x65, 0x14, 0xe3, 0x25, 0xac, 0x72, 0x92, 0x0c, 0x90, 0xbb, 0x64, 0x34, 0xa2, 0x1e, 0x91, 0xe8, - 0x7c, 0x66, 0x3f, 0x65, 0xa0, 0xd6, 0x0d, 0x47, 0x39, 0xbe, 0xd1, 0xa0, 0x2a, 0x67, 0xba, 0x97, - 0x04, 0x1e, 0xb2, 0x47, 0x0c, 0x3b, 0x50, 0x8a, 0x45, 0x3c, 0xa7, 0x57, 0x56, 0xfc, 0xcd, 0x09, - 0xff, 0x0b, 0xca, 0x6a, 0x54, 0x8b, 0x72, 0x54, 0x7f, 0x79, 0x38, 0xaa, 0x22, 0x2c, 0xbb, 0x54, - 0x73, 0xaa, 0x0a, 0x94, 0xc8, 0x27, 0x1d, 0xe0, 0x36, 0xc5, 0xd8, 0x00, 0xe8, 0x13, 0x86, 0xee, - 0xac, 0x4c, 0x45, 0xec, 0x74, 0xa4, 0xd0, 0xaf, 0xb0, 0xc8, 0x4e, 0xc3, 0x3e, 0x1d, 0xa9, 0x04, - 0xe9, 0xe5, 0x54, 0xb3, 0xbd, 0xce, 0x5d, 0x67, 0xfd, 0x47, 0x39, 0x17, 0xef, 0x39, 0xff, 0x07, - 0x15, 0x76, 0x42, 0x62, 0x37, 0x21, 0x1c, 0xeb, 0xa5, 0x5c, 0xa7, 0x2c, 0x08, 0x80, 0x43, 0x38, - 0x1a, 0x4f, 0xa0, 0x9a, 0xa0, 0x8f, 0x18, 0x66, 0xb8, 0x72, 0x2e, 0x1c, 0x64, 0x08, 0x09, 0x3c, - 0x00, 0x09, 0x97, 0x4f, 0xd3, 0x7c, 0x2e, 0xda, 0xbc, 0xa8, 0xef, 0xca, 0x17, 0x92, 0x02, 0x4b, - 0xd8, 0x42, 0x2e, 0x58, 0x25, 0x23, 0xdc, 0x3c, 0x9d, 0xed, 0xfd, 0xb3, 0x4b, 0xb3, 0x70, 0x76, - 0x65, 0x6a, 0xe7, 0x57, 0xa6, 0xf6, 0xfe, 0xca, 0xd4, 0x5e, 0x5d, 0x9b, 0x85, 0xf3, 0x6b, 0xb3, - 0xf0, 0xf6, 0xda, 0x2c, 0xbc, 0xf8, 0xfd, 0x7b, 0x2f, 0xff, 0x74, 0xfa, 0xad, 0xeb, 0x97, 0xe5, - 0x57, 0x6c, 0xef, 0x6b, 0x00, 0x00, 0x00, 0xff, 0xff, 0x1d, 0x4b, 0xe7, 0xbf, 0x0d, 0x07, 0x00, - 0x00, + 0x14, 0xc0, 0xad, 0xc8, 0x76, 0xe2, 0xe7, 0xfc, 0xd9, 0x08, 0x87, 0x35, 0x59, 0xa2, 0x78, 0x73, + 0x58, 0xbc, 0xb0, 0x91, 0x48, 0x02, 0x0b, 0xfd, 0x73, 0xb1, 0x31, 0x0a, 0xa1, 0x94, 0xba, 0xea, + 0xa1, 0xd0, 0x1e, 0xc4, 0x58, 0x7a, 0x76, 0x84, 0x2d, 0x8d, 0xaa, 0x19, 0x3b, 0xca, 0xb7, 0xe8, + 0x47, 0xe8, 0xa7, 0x29, 0x39, 0xe6, 0x58, 0x7a, 0x08, 0x4d, 0x72, 0xe9, 0xa1, 0x94, 0x9e, 0x7b, + 0x2a, 0x1a, 0x8d, 0x13, 0x27, 0x21, 0x2d, 0x88, 0x9e, 0xa4, 0x99, 0xf7, 0xde, 0x6f, 0xe6, 0x37, + 0x7a, 0x92, 0x60, 0x63, 0x1c, 0x20, 0x9a, 0x01, 0x72, 0x3a, 0xc4, 0xd0, 0x9c, 0xec, 0x4c, 0x6f, + 0x8d, 0x28, 0xa6, 0x9c, 0x6a, 0x2b, 0x69, 0xd8, 0x98, 0xce, 0x4d, 0x76, 0xd6, 0x6b, 0x03, 0x3a, + 0xa0, 0x22, 0x66, 0xa6, 0x77, 0x59, 0xda, 0xd6, 0x17, 0x05, 0xca, 0x5d, 0x12, 0x93, 0x80, 0x69, + 0x7b, 0xb0, 0x16, 0x63, 0x8f, 0x8c, 0x48, 0xe8, 0xfa, 0xe1, 0xc0, 0xe9, 0xc7, 0xf8, 0x66, 0x8c, + 0xa1, 0x7b, 0x5c, 0x57, 0x1a, 0x4a, 0x53, 0xb5, 0x6b, 0x33, 0x41, 0x6b, 0x1a, 0xd3, 0xb6, 0x41, + 0x73, 0x47, 0xc4, 0x0f, 0x6e, 0x56, 0xcc, 0x89, 0x8a, 0xd5, 0x69, 0xe4, 0x3a, 0x3d, 0x81, 0xf5, + 0x18, 0x8f, 0x48, 0xec, 0x31, 0x87, 0x8c, 0x5d, 0xee, 0xd3, 0xd0, 0xe9, 0x23, 0x3a, 0x7d, 0xe2, + 0x72, 0x1a, 0xd7, 0xd5, 0x86, 0xd2, 0x5c, 0x6a, 0x3f, 0x3a, 0x39, 0xdb, 0x2c, 0x7c, 0x3c, 0xdb, + 0xdc, 0x1b, 0xf8, 0xfc, 0x70, 0xdc, 0x33, 0x5c, 0x1a, 0x98, 0xa9, 0xcc, 0x76, 0x88, 0xfc, 0x88, + 0xc6, 0x43, 0x31, 0x30, 0x27, 0xff, 0x9b, 0x63, 0xee, 0x8f, 0xcc, 0x5e, 0x14, 0x10, 0x7e, 0x68, + 0x58, 0x7e, 0x82, 0x5e, 0xbb, 0x6b, 0xff, 0x29, 0xf1, 0xad, 0x8c, 0x6e, 0x21, 0x5a, 0x82, 0xfd, + 0xb0, 0xf8, 0xf9, 0xdd, 0xa6, 0xb2, 0xf5, 0x5d, 0x81, 0xd2, 0x41, 0xe8, 0x61, 0xa2, 0xd5, 0xa0, + 0xe4, 0x61, 0x48, 0x03, 0x61, 0x57, 0xb1, 0xb3, 0x81, 0xf6, 0x18, 0x20, 0x20, 0x89, 0xc3, 0xc6, + 0x51, 0x34, 0xca, 0x34, 0x2a, 0xed, 0x0d, 0xb9, 0x9f, 0x35, 0x97, 0xb2, 0x80, 0x32, 0xe6, 0x0d, + 0x0d, 0x9f, 0x9a, 0x62, 0xd5, 0x83, 0x90, 0xdb, 0x95, 0x80, 0x24, 0x2f, 0x44, 0xbe, 0xb6, 0x0e, + 0x0b, 0x98, 0x44, 0x34, 0xc4, 0x90, 0x67, 0x2e, 0xf6, 0xd5, 0x58, 0xfb, 0x0f, 0xd4, 0x3e, 0x62, + 0xbd, 0xd8, 0x50, 0x9a, 0xd5, 0xdd, 0x9a, 0x71, 0xeb, 0xe9, 0x18, 0x16, 0x62, 0xbb, 0x98, 0x2e, + 0x64, 0xa7, 0x69, 0xda, 0x53, 0x58, 0x21, 0xae, 0x8b, 0x11, 0x47, 0xcf, 0x21, 0x8c, 0x21, 0x67, + 0xf5, 0x52, 0x43, 0x6d, 0x56, 0x77, 0xf5, 0x3b, 0x95, 0x2d, 0x99, 0xd7, 0x4a, 0xd3, 0x24, 0x63, + 0x99, 0xcc, 0x4e, 0x32, 0x29, 0xff, 0x4d, 0x01, 0xd5, 0x42, 0xd4, 0xf6, 0x61, 0x3e, 0xf0, 0xc5, + 0xc1, 0x67, 0xf2, 0x6d, 0x43, 0x1a, 0xfe, 0x33, 0x73, 0xe2, 0x99, 0xac, 0xbc, 0x6c, 0x33, 0x6f, + 0x68, 0xf2, 0xe3, 0x08, 0x99, 0xd1, 0x41, 0xd7, 0x2e, 0x07, 0x7e, 0x7a, 0xb2, 0xda, 0x73, 0x58, + 0xcc, 0x5a, 0x02, 0x3d, 0x41, 0x9b, 0xcb, 0x45, 0xab, 0x4e, 0x19, 0xd3, 0xbd, 0x91, 0x44, 0xd0, + 0xd4, 0x9c, 0x7b, 0x23, 0x89, 0x85, 0x28, 0x95, 0xcf, 0x15, 0x58, 0xba, 0x71, 0x40, 0xf7, 0x3c, + 0xf7, 0x97, 0xb0, 0x12, 0x23, 0xc3, 0x78, 0x82, 0x4e, 0x44, 0xe3, 0xb4, 0x73, 0x72, 0xca, 0x2c, + 0x4b, 0x4c, 0x37, 0xa3, 0x68, 0xaf, 0x61, 0x95, 0x93, 0x78, 0x80, 0xdc, 0x21, 0xa3, 0x11, 0x75, + 0x89, 0x40, 0xe7, 0x33, 0xfb, 0x23, 0x03, 0xb5, 0xae, 0x38, 0xd2, 0xf1, 0xbd, 0x02, 0x55, 0xd1, + 0xd3, 0xdd, 0xd8, 0x77, 0x91, 0xdd, 0x63, 0xd8, 0x81, 0x52, 0x94, 0xc6, 0x73, 0x7a, 0x65, 0xc5, + 0x3f, 0xed, 0xf0, 0x07, 0x50, 0x96, 0xad, 0x5a, 0x14, 0xad, 0xfa, 0xd7, 0xdd, 0x56, 0x4d, 0xc3, + 0x62, 0x97, 0xb2, 0x4f, 0x65, 0x81, 0x14, 0xf9, 0xaa, 0x02, 0x5c, 0xa7, 0x68, 0x1b, 0x00, 0x3d, + 0xc2, 0xd0, 0x99, 0x95, 0xa9, 0xa4, 0x33, 0x1d, 0x21, 0xf4, 0x37, 0x2c, 0xb2, 0xe3, 0xa0, 0x47, + 0x47, 0x32, 0x41, 0x78, 0xd9, 0xd5, 0x6c, 0xae, 0x73, 0xd3, 0x59, 0xfd, 0x5d, 0xce, 0xc5, 0x5b, + 0xce, 0x4f, 0xa0, 0xc2, 0x8e, 0x48, 0xe4, 0xc4, 0x84, 0x63, 0xbd, 0x94, 0x6b, 0x95, 0x85, 0x14, + 0x60, 0x13, 0x8e, 0xda, 0x33, 0xa8, 0xc6, 0xe8, 0x21, 0x06, 0x19, 0xae, 0x9c, 0x0b, 0x07, 0x19, + 0x42, 0x00, 0x0f, 0x40, 0xc0, 0xc5, 0xdb, 0x34, 0x9f, 0x8b, 0x36, 0x9f, 0xd6, 0x5b, 0xe2, 0x83, + 0x24, 0xc1, 0x02, 0xb6, 0x90, 0x0b, 0x56, 0xc9, 0x08, 0x57, 0x6f, 0x67, 0x7b, 0xff, 0xe4, 0x5c, + 0x2f, 0x9c, 0x5c, 0xe8, 0xca, 0xe9, 0x85, 0xae, 0x7c, 0xba, 0xd0, 0x95, 0xb7, 0x97, 0x7a, 0xe1, + 0xf4, 0x52, 0x2f, 0x7c, 0xb8, 0xd4, 0x0b, 0xaf, 0xfe, 0xfd, 0xd5, 0xf7, 0x3f, 0x99, 0xfe, 0xf2, + 0x7a, 0x65, 0xf1, 0x33, 0xdb, 0xfb, 0x11, 0x00, 0x00, 0xff, 0xff, 0x0b, 0xff, 0x31, 0x27, 0x14, + 0x07, 0x00, 0x00, } func (this *Params) Equal(that interface{}) bool { @@ -415,7 +416,7 @@ func (this *Params) Equal(that interface{}) bool { if this.ClaimingFrequency != that1.ClaimingFrequency { return false } - if !this.RewardsAuctionFactor.Equal(that1.RewardsAuctionFactor) { + if !this.RewardsAuctionFeeFactor.Equal(that1.RewardsAuctionFeeFactor) { return false } return true @@ -624,8 +625,8 @@ func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.RewardsAuctionFactor != 0 { - i = encodeVarintMetoken(dAtA, i, uint64(m.RewardsAuctionFactor)) + if m.RewardsAuctionFeeFactor != 0 { + i = encodeVarintMetoken(dAtA, i, uint64(m.RewardsAuctionFeeFactor)) i-- dAtA[i] = 0x18 } @@ -988,8 +989,8 @@ func (m *Params) Size() (n int) { if m.ClaimingFrequency != 0 { n += 1 + sovMetoken(uint64(m.ClaimingFrequency)) } - if m.RewardsAuctionFactor != 0 { - n += 1 + sovMetoken(uint64(m.RewardsAuctionFactor)) + if m.RewardsAuctionFeeFactor != 0 { + n += 1 + sovMetoken(uint64(m.RewardsAuctionFeeFactor)) } return n } @@ -1181,9 +1182,9 @@ func (m *Params) Unmarshal(dAtA []byte) error { } case 3: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field RewardsAuctionFactor", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field RewardsAuctionFeeFactor", wireType) } - m.RewardsAuctionFactor = 0 + m.RewardsAuctionFeeFactor = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMetoken @@ -1193,7 +1194,7 @@ func (m *Params) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.RewardsAuctionFactor |= github_com_umee_network_umee_v6_util_bpmath.FixedBP(b&0x7F) << shift + m.RewardsAuctionFeeFactor |= github_com_umee_network_umee_v6_util_bpmath.FixedBP(b&0x7F) << shift if b < 0x80 { break } diff --git a/x/metoken/params.go b/x/metoken/params.go index eb6ce7f178..e5493fae41 100644 --- a/x/metoken/params.go +++ b/x/metoken/params.go @@ -3,8 +3,8 @@ package metoken // DefaultParams returns default genesis params func DefaultParams() Params { return Params{ - RebalancingFrequency: 60 * 60 * 12, // 12h - ClaimingFrequency: 60 * 60 * 24 * 7, // 7d - RewardsAuctionFactor: 1000, // 10% of fees goes to rewards auction + RebalancingFrequency: 60 * 60 * 12, // 12h + ClaimingFrequency: 60 * 60 * 24 * 7, // 7d + RewardsAuctionFeeFactor: 1000, // 10% of fees goes to rewards auction } }