// ExpiryFuturesMarketLaunchProposal defines an SDK message for proposing a new expiry futures market through governance
type ExpiryFuturesMarketLaunchProposal struct {
Title string
Description string
// Ticker for the derivative market.
Ticker string
// type of coin to use as the quote currency
QuoteDenom string
// Oracle base currency
OracleBase string
// Oracle quote currency
OracleQuote string
// Scale factor for oracle prices.
OracleScaleFactor uint32
// Oracle type
OracleType types1.OracleType
// Expiration time of the market
Expiry int64
// initial_margin_ratio defines the initial margin ratio for the derivative market
InitialMarginRatio math.LegacyDec
// maintenance_margin_ratio defines the maintenance margin ratio for the derivative market
MaintenanceMarginRatio math.LegacyDec
// maker_fee_rate defines the exchange trade fee for makers for the derivative market
MakerFeeRate math.LegacyDec
// taker_fee_rate defines the exchange trade fee for takers for the derivative market
TakerFeeRate math.LegacyDec
// min_price_tick_size defines the minimum tick size of the order's price and margin
MinPriceTickSize math.LegacyDec
// min_quantity_tick_size defines the minimum tick size of the order's quantity
MinQuantityTickSize math.LegacyDec
// min_notional defines the minimum notional (in quote asset) required for orders in the market
MinNotional math.LegacyDec
}
字段描述
Title 字段描述提案的标题。
Description 字段描述提案的描述。
Ticker 字段描述衍生品市场的交易对符号。
QuoteDenom 字段描述用作报价货币的币种类型。
OracleBase 字段描述预言机的基础货币。
OracleQuote 字段描述预言机的报价货币。
OracleScaleFactor 字段描述预言机价格的缩放因子。
OracleType 字段描述预言机的类型。
Expiry 字段描述市场的到期时间。
MakerFeeRate 字段描述衍生品市场上做市商的交易费用率。
TakerFeeRate 字段描述衍生品市场上吃单者的交易费用率。
InitialMarginRatio 字段描述衍生品市场的初始保证金比例。
MaintenanceMarginRatio 字段描述衍生品市场的维持保证金比例。
MinPriceTickSize 字段描述订单价格和保证金的最小刻度。
MinQuantityTickSize 字段描述订单数量的最小刻度。
Binary options market launch proposal
type BinaryOptionsMarketLaunchProposal struct {
Title string
Description string
// Ticker for the derivative contract.
Ticker string
// Oracle symbol
OracleSymbol string
// Oracle Provider
OracleProvider string
// Oracle type
OracleType types1.OracleType
// Scale factor for oracle prices.
OracleScaleFactor uint32
// expiration timestamp
ExpirationTimestamp int64
// expiration timestamp
SettlementTimestamp int64
// admin of the market
Admin string
// Address of the quote currency denomination for the binary options contract
QuoteDenom string
// maker_fee_rate defines the maker fee rate of a binary options market
MakerFeeRate math.LegacyDec
// taker_fee_rate defines the taker fee rate of a derivative market
TakerFeeRate math.LegacyDec
// min_price_tick_size defines the minimum tick size that the price and margin required for orders in the market
MinPriceTickSize math.LegacyDec
// min_quantity_tick_size defines the minimum tick size of the quantity required for orders in the market
MinQuantityTickSize math.LegacyDec
}
Binary options market param update
type BinaryOptionsMarketParamUpdateProposal struct {
Title string
Description string
MarketId string
// maker_fee_rate defines the exchange trade fee for makers for the derivative market
MakerFeeRate *math.LegacyDec
// taker_fee_rate defines the exchange trade fee for takers for the derivative market
TakerFeeRate *math.LegacyDec
// relayer_fee_share_rate defines the relayer fee share rate for the derivative market
RelayerFeeShareRate *math.LegacyDec
// min_price_tick_size defines the minimum tick size of the order's price and margin
MinPriceTickSize *math.LegacyDec
// min_quantity_tick_size defines the minimum tick size of the order's quantity
MinQuantityTickSize *math.LegacyDec
// min_notional defines the minimum notional for orders
MinNotional *math.LegacyDec
// expiration timestamp
ExpirationTimestamp int64
// expiration timestamp
SettlementTimestamp int64
// new price at which market will be settled
SettlementPrice *math.LegacyDec
// admin of the market
Admin string
Status MarketStatus
OracleParams *ProviderOracleParams
}
Proposal/DerivativeMarketParamUpdate
type OracleParams struct {
// Oracle base currency
OracleBase string
// Oracle quote currency
OracleQuote string
// Scale factor for oracle prices.
OracleScaleFactor uint32
// Oracle type
OracleType types1.OracleType
}
type DerivativeMarketParamUpdateProposal struct {
Title string
Description string
MarketId string
InitialMarginRatio *math.LegacyDec
MaintenanceMarginRatio *math.LegacyDec
MakerFeeRate *math.LegacyDec
TakerFeeRate *math.LegacyDec
RelayerFeeShareRate *math.LegacyDec
MinPriceTickSize *math.LegacyDec
MinQuantityTickSize *math.LegacyDec
MinNotional *math.LegacyDec
HourlyInterestRate *math.LegacyDec
HourlyFundingRateCap *math.LegacyDec
Status MarketStatus
OracleParams *OracleParams
}