Documentation ¶
Index ¶
Constants ¶
View Source
const (
ModuleName = "pricefeed"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CurrentPrice ¶
type CurrentPrice struct { MarketID string `json:"market_id" yaml:"market_id"` Price sdk.Dec `json:"price" yaml:"price"` }
CurrentPrice struct that contains the metadata of a current price for a particular market in the pricefeed module.
func NewCurrentPrice ¶
func NewCurrentPrice(marketID string, price sdk.Dec) CurrentPrice
NewCurrentPrice returns an instance of CurrentPrice
type CurrentPrices ¶
type CurrentPrices []CurrentPrice
CurrentPrices type for an array of CurrentPrice
type GenesisState ¶
type GenesisState struct { Params Params `json:"params" yaml:"params"` PostedPrices PostedPrices `json:"posted_prices" yaml:"posted_prices"` }
GenesisState - pricefeed state that must be provided at genesis
func NewGenesisState ¶
func NewGenesisState(p Params, pp []PostedPrice) GenesisState
NewGenesisState creates a new genesis state for the pricefeed module
type Market ¶
type Market struct { // TODO: rename to ID MarketID string `json:"market_id" yaml:"market_id"` BaseAsset string `json:"base_asset" yaml:"base_asset"` QuoteAsset string `json:"quote_asset" yaml:"quote_asset"` Oracles []sdk.AccAddress `json:"oracles" yaml:"oracles"` Active bool `json:"active" yaml:"active"` }
type Params ¶
type Params struct {
Markets Markets `json:"markets" yaml:"markets"` // Array containing the markets supported by the pricefeed
}
type PostedPrice ¶
type PostedPrice struct { MarketID string `json:"market_id" yaml:"market_id"` OracleAddress sdk.AccAddress `json:"oracle_address" yaml:"oracle_address"` Price sdk.Dec `json:"price" yaml:"price"` Expiry time.Time `json:"expiry" yaml:"expiry"` }
PostedPrice price for market posted by a specific oracle
func NewPostedPrice ¶
func NewPostedPrice(marketID string, oracle sdk.AccAddress, price sdk.Dec, expiry time.Time) PostedPrice
NewPostedPrice returns a new PostedPrice
func (PostedPrice) Validate ¶
func (pp PostedPrice) Validate() error
Validate performs a basic check of a PostedPrice params.
type PostedPrices ¶
type PostedPrices []PostedPrice
PostedPrices type for an array of PostedPrice
func (PostedPrices) Validate ¶
func (pps PostedPrices) Validate() error
Validate checks if all the posted prices are valid and there are no duplicated entries.
Click to show internal directories.
Click to hide internal directories.