mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
73bc32a183
* Update incentive test to use beginblocker instead manual accumulation * Update integration test suite * Add base integration test, wip staking reward calculation * Get actual staking reward amounts from BeginBlocker events, calculate expected indexes * Simplify event parsing * Add initial earn accum test with real keepers * Add the rest of the accum integration tests with real keepers * Check if delegation rewards are zero before transferring * Update staking integration test to use updated methods
69 lines
1.6 KiB
Go
69 lines
1.6 KiB
Go
package testutil
|
|
|
|
import (
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/kava-labs/kava/app"
|
|
|
|
minttypes "github.com/cosmos/cosmos-sdk/x/mint/types"
|
|
)
|
|
|
|
// MintGenesisBuilder is a tool for creating a mint genesis state.
|
|
// Helper methods add values onto a default genesis state.
|
|
// All methods are immutable and return updated copies of the builder.
|
|
type MintGenesisBuilder struct {
|
|
minttypes.GenesisState
|
|
}
|
|
|
|
var _ GenesisBuilder = (*MintGenesisBuilder)(nil)
|
|
|
|
func NewMintGenesisBuilder() MintGenesisBuilder {
|
|
gen := minttypes.DefaultGenesisState()
|
|
gen.Params.MintDenom = "ukava"
|
|
|
|
return MintGenesisBuilder{
|
|
GenesisState: *gen,
|
|
}
|
|
}
|
|
|
|
func (builder MintGenesisBuilder) Build() minttypes.GenesisState {
|
|
return builder.GenesisState
|
|
}
|
|
|
|
func (builder MintGenesisBuilder) BuildMarshalled(cdc codec.JSONCodec) app.GenesisState {
|
|
built := builder.Build()
|
|
|
|
return app.GenesisState{
|
|
minttypes.ModuleName: cdc.MustMarshalJSON(&built),
|
|
}
|
|
}
|
|
|
|
func (builder MintGenesisBuilder) WithMinter(
|
|
inflation sdk.Dec,
|
|
annualProvisions sdk.Dec,
|
|
) MintGenesisBuilder {
|
|
builder.Minter = minttypes.NewMinter(inflation, annualProvisions)
|
|
return builder
|
|
}
|
|
|
|
func (builder MintGenesisBuilder) WithInflationMax(
|
|
inflationMax sdk.Dec,
|
|
) MintGenesisBuilder {
|
|
builder.Params.InflationMax = inflationMax
|
|
return builder
|
|
}
|
|
|
|
func (builder MintGenesisBuilder) WithInflationMin(
|
|
inflationMin sdk.Dec,
|
|
) MintGenesisBuilder {
|
|
builder.Params.InflationMin = inflationMin
|
|
return builder
|
|
}
|
|
|
|
func (builder MintGenesisBuilder) WithMintDenom(
|
|
mintDenom string,
|
|
) MintGenesisBuilder {
|
|
builder.Params.MintDenom = mintDenom
|
|
return builder
|
|
}
|