type Params struct {
// default_redemption_notice_period_duration defines the default minimum notice period duration that must pass after an underwriter sends
// a redemption request before the underwriter can claim his tokens
DefaultRedemptionNoticePeriodDuration time.Duration
}
Insurance Types
InsuranceFund 定义了按市场划分的所有保险基金信息。
type InsuranceFund struct {
// deposit denomination for the given insurance fund
DepositDenom string
// insurance fund pool token denomination for the given insurance fund
InsurancePoolTokenDenom string
// redemption_notice_period_duration defines the minimum notice period duration that must pass after an underwriter sends
// a redemption request before the underwriter can claim his tokens
RedemptionNoticePeriodDuration time.Duration
// balance of fund
Balance math.Int
// total share tokens minted
TotalShare math.Int
// marketID of the derivative market
MarketId string
// ticker of the derivative market
MarketTicker string
// Oracle base currency of the derivative market
OracleBase string
// Oracle quote currency of the derivative market
OracleQuote string
// Oracle type of the derivative market
OracleType types.OracleType
// Expiration time of the derivative market. Should be -1 for perpetual markets.
Expiry int64
}
type RedemptionSchedule struct {
// id of redemption schedule
Id uint64
// marketId of redemption schedule
MarketId string
// address of the redeemer
Redeemer string
// the time after which the redemption can be claimed
ClaimableRedemptionTime time.Time
// the insurance_pool_token amount to redeem
RedemptionAmount sdk.Coin
}
// GenesisState defines the insurance module's genesis state.
type GenesisState struct {
// params defines all the parameters of related to insurance.
Params Params
InsuranceFunds []InsuranceFund
RedemptionSchedule []RedemptionSchedule
NextShareDenomId uint64
NextRedemptionScheduleId uint64
}