Documentation ¶
Overview ¶
Package pricefeed allows a group of white-listed oracles to post price information of specific markets that are tracked by the system. For each market, the module computes the median of all posted prices by white-listed oracles and takes that as the current price value.
Index ¶
- Constants
- Variables
- func EndBlocker(ctx sdk.Context, k Keeper)
- func HandleMsgPostPrice(ctx sdk.Context, k Keeper, msg MsgPostPrice) (*sdk.Result, error)
- func InitGenesis(ctx sdk.Context, keeper Keeper, gs GenesisState)
- func NewHandler(k Keeper) sdk.Handler
- type AppModule
- func (AppModule) BeginBlock(_ sdk.Context, _ abci.RequestBeginBlock)
- func (am AppModule) EndBlock(ctx sdk.Context, _ abci.RequestEndBlock) []abci.ValidatorUpdate
- func (am AppModule) ExportGenesis(ctx sdk.Context) json.RawMessage
- func (am AppModule) InitGenesis(ctx sdk.Context, data json.RawMessage) []abci.ValidatorUpdate
- func (AppModule) Name() string
- func (am AppModule) NewHandler() sdk.Handler
- func (am AppModule) NewQuerierHandler() sdk.Querier
- func (AppModule) QuerierRoute() string
- func (AppModule) RegisterInvariants(_ sdk.InvariantRegistry)
- func (AppModule) Route() string
- func (am AppModule) WeightedOperations(simState module.SimulationState) []sim.WeightedOperation
- type AppModuleBasic
- func (AppModuleBasic) DefaultGenesis() json.RawMessage
- func (AppModuleBasic) GenerateGenesisState(simState *module.SimulationState)
- func (AppModuleBasic) GetQueryCmd(cdc *codec.Codec) *cobra.Command
- func (AppModuleBasic) GetTxCmd(cdc *codec.Codec) *cobra.Command
- func (AppModuleBasic) Name() string
- func (AppModuleBasic) ProposalContents(_ module.SimulationState) []sim.WeightedProposalContent
- func (AppModuleBasic) RandomizedParams(r *rand.Rand) []sim.ParamChange
- func (AppModuleBasic) RegisterCodec(cdc *codec.Codec)
- func (AppModuleBasic) RegisterRESTRoutes(ctx context.CLIContext, rtr *mux.Router)
- func (AppModuleBasic) RegisterStoreDecoder(sdr sdk.StoreDecoderRegistry)
- func (AppModuleBasic) ValidateGenesis(bz json.RawMessage) error
- type CurrentPrice
- type CurrentPrices
- type GenesisState
- type Keeper
- type Market
- type Markets
- type MsgPostPrice
- type Params
- type PostedPrice
- type PostedPrices
- type QueryWithMarketIDParams
- type SortDecs
Constants ¶
const ( AttributeExpiry = types.AttributeExpiry AttributeMarketID = types.AttributeMarketID AttributeMarketPrice = types.AttributeMarketPrice AttributeOracle = types.AttributeOracle AttributeValueCategory = types.AttributeValueCategory DefaultParamspace = types.DefaultParamspace EventTypeMarketPriceUpdated = types.EventTypeMarketPriceUpdated EventTypeNoValidPrices = types.EventTypeNoValidPrices EventTypeOracleUpdatedPrice = types.EventTypeOracleUpdatedPrice MaxExpiry = types.MaxExpiry ModuleName = types.ModuleName QuerierRoute = types.QuerierRoute QueryGetParams = types.QueryGetParams QueryMarkets = types.QueryMarkets QueryOracles = types.QueryOracles QueryPrice = types.QueryPrice QueryRawPrices = types.QueryRawPrices RouterKey = types.RouterKey StoreKey = types.StoreKey TypeMsgPostPrice = types.TypeMsgPostPrice )
Variables ¶
var ( // function aliases NewKeeper = keeper.NewKeeper NewQuerier = keeper.NewQuerier CurrentPriceKey = types.CurrentPriceKey DefaultGenesisState = types.DefaultGenesisState DefaultParams = types.DefaultParams NewCurrentPrice = types.NewCurrentPrice NewGenesisState = types.NewGenesisState NewMarket = types.NewMarket NewMsgPostPrice = types.NewMsgPostPrice NewParams = types.NewParams NewPostedPrice = types.NewPostedPrice NewQueryWithMarketIDParams = types.NewQueryWithMarketIDParams ParamKeyTable = types.ParamKeyTable RawPriceKey = types.RawPriceKey RegisterCodec = types.RegisterCodec // variable aliases CurrentPricePrefix = types.CurrentPricePrefix DefaultMarkets = types.DefaultMarkets ErrAssetNotFound = types.ErrAssetNotFound ErrEmptyInput = types.ErrEmptyInput ErrExpired = types.ErrExpired ErrInvalidMarket = types.ErrInvalidMarket ErrInvalidOracle = types.ErrInvalidOracle ErrNoValidPrice = types.ErrNoValidPrice KeyMarkets = types.KeyMarkets ModuleCdc = types.ModuleCdc RawPriceFeedPrefix = types.RawPriceFeedPrefix )
Functions ¶
func EndBlocker ¶
EndBlocker updates the current pricefeed
func HandleMsgPostPrice ¶
HandleMsgPostPrice handles prices posted by oracles
func InitGenesis ¶
func InitGenesis(ctx sdk.Context, keeper Keeper, gs GenesisState)
InitGenesis sets distribution information for genesis.
func NewHandler ¶
NewHandler handles all pricefeed type messages
Types ¶
type AppModule ¶
type AppModule struct { AppModuleBasic // contains filtered or unexported fields }
AppModule app module type
func NewAppModule ¶
func NewAppModule(keeper Keeper, accountKeeper auth.AccountKeeper) AppModule
NewAppModule creates a new AppModule object
func (AppModule) BeginBlock ¶
func (AppModule) BeginBlock(_ sdk.Context, _ abci.RequestBeginBlock)
BeginBlock module begin-block
func (AppModule) EndBlock ¶
func (am AppModule) EndBlock(ctx sdk.Context, _ abci.RequestEndBlock) []abci.ValidatorUpdate
EndBlock module end-block
func (AppModule) ExportGenesis ¶
func (am AppModule) ExportGenesis(ctx sdk.Context) json.RawMessage
ExportGenesis module export genesis
func (AppModule) InitGenesis ¶
func (am AppModule) InitGenesis(ctx sdk.Context, data json.RawMessage) []abci.ValidatorUpdate
InitGenesis module init-genesis
func (AppModule) NewHandler ¶
NewHandler module handler
func (AppModule) NewQuerierHandler ¶
NewQuerierHandler module querier
func (AppModule) QuerierRoute ¶
QuerierRoute module querier route name
func (AppModule) RegisterInvariants ¶
func (AppModule) RegisterInvariants(_ sdk.InvariantRegistry)
RegisterInvariants register module invariants
func (AppModule) WeightedOperations ¶ added in v0.8.0
func (am AppModule) WeightedOperations(simState module.SimulationState) []sim.WeightedOperation
WeightedOperations returns the all the price feed module operations with their respective weights.
type AppModuleBasic ¶
type AppModuleBasic struct{}
AppModuleBasic app module basics object
func (AppModuleBasic) DefaultGenesis ¶
func (AppModuleBasic) DefaultGenesis() json.RawMessage
DefaultGenesis default genesis state
func (AppModuleBasic) GenerateGenesisState ¶ added in v0.8.0
func (AppModuleBasic) GenerateGenesisState(simState *module.SimulationState)
GenerateGenesisState creates a randomized GenState of the price feed module
func (AppModuleBasic) GetQueryCmd ¶
func (AppModuleBasic) GetQueryCmd(cdc *codec.Codec) *cobra.Command
GetQueryCmd get the root query command of this module
func (AppModuleBasic) GetTxCmd ¶
func (AppModuleBasic) GetTxCmd(cdc *codec.Codec) *cobra.Command
GetTxCmd get the root tx command of this module
func (AppModuleBasic) ProposalContents ¶ added in v0.8.0
func (AppModuleBasic) ProposalContents(_ module.SimulationState) []sim.WeightedProposalContent
ProposalContents doesn't return any content functions for governance proposals.
func (AppModuleBasic) RandomizedParams ¶ added in v0.8.0
func (AppModuleBasic) RandomizedParams(r *rand.Rand) []sim.ParamChange
RandomizedParams returns nil because price feed has no params.
func (AppModuleBasic) RegisterCodec ¶
func (AppModuleBasic) RegisterCodec(cdc *codec.Codec)
RegisterCodec register module codec
func (AppModuleBasic) RegisterRESTRoutes ¶
func (AppModuleBasic) RegisterRESTRoutes(ctx context.CLIContext, rtr *mux.Router)
RegisterRESTRoutes register rest routes
func (AppModuleBasic) RegisterStoreDecoder ¶ added in v0.8.0
func (AppModuleBasic) RegisterStoreDecoder(sdr sdk.StoreDecoderRegistry)
RegisterStoreDecoder registers a decoder for price feed module's types
func (AppModuleBasic) ValidateGenesis ¶
func (AppModuleBasic) ValidateGenesis(bz json.RawMessage) error
ValidateGenesis module validate genesis
type CurrentPrice ¶
type CurrentPrice = types.CurrentPrice
type CurrentPrices ¶ added in v0.11.0
type CurrentPrices = types.CurrentPrices
type GenesisState ¶
type GenesisState = types.GenesisState
func ExportGenesis ¶
func ExportGenesis(ctx sdk.Context, keeper Keeper) GenesisState
ExportGenesis returns a GenesisState for a given context and keeper.
type MsgPostPrice ¶
type MsgPostPrice = types.MsgPostPrice
type PostedPrice ¶
type PostedPrice = types.PostedPrice
type PostedPrices ¶ added in v0.8.0
type PostedPrices = types.PostedPrices
type QueryWithMarketIDParams ¶
type QueryWithMarketIDParams = types.QueryWithMarketIDParams