market

package
v0.3.7 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 13, 2020 License: Apache-2.0 Imports: 15 Imported by: 0

Documentation

Overview

nolint autogenerated code using github.com/rigelrozanski/multitool aliases generated for the following subdirectories: ALIASGEN: github.com/terra-project/core/x/market/internal/types/ ALIASGEN: github.com/terra-project/core/x/market/internal/keeper/

nolint:deadcode unused DONTCOVER

Index

Constants

View Source
const (
	DefaultCodespace     = types.DefaultCodespace
	CodeInsufficientSwap = types.CodeInvalidOfferCoin
	CodeNoEffectivePrice = types.CodeNoEffectivePrice
	CodeRecursiveSwap    = types.CodeRecursiveSwap
	ModuleName           = types.ModuleName
	StoreKey             = types.StoreKey
	RouterKey            = types.RouterKey
	QuerierRoute         = types.QuerierRoute
	DefaultParamspace    = types.DefaultParamspace
	QuerySwap            = types.QuerySwap
	QueryTerraPoolDelta  = types.QueryTerraPoolDelta
	QueryParameters      = types.QueryParameters
)

Variables

View Source
var (
	// functions aliases
	RegisterCodec       = types.RegisterCodec
	ErrNoEffectivePrice = types.ErrNoEffectivePrice
	ErrInvalidOfferCoin = types.ErrInvalidOfferCoin
	ErrRecursiveSwap    = types.ErrRecursiveSwap
	NewGenesisState     = types.NewGenesisState
	DefaultGenesisState = types.DefaultGenesisState
	ValidateGenesis     = types.ValidateGenesis
	NewMsgSwap          = types.NewMsgSwap
	DefaultParams       = types.DefaultParams
	NewQuerySwapParams  = types.NewQuerySwapParams
	NewKeeper           = keeper.NewKeeper
	ParamKeyTable       = keeper.ParamKeyTable
	NewQuerier          = keeper.NewQuerier

	// variable aliases
	ModuleCdc                         = types.ModuleCdc
	TerraPoolDeltaKey                 = types.TerraPoolDeltaKey
	ParamStoreKeyBasePool             = types.ParamStoreKeyBasePool
	ParamStoreKeyPoolRecoveryPeriod   = types.ParamStoreKeyPoolRecoveryPeriod
	ParamStoreKeyMinSpread            = types.ParamStoreKeyMinSpread
	ParmaStoreKeyTobinTax             = types.ParmaStoreKeyTobinTax
	ParmaStoreKeyIlliquidTobinTaxList = types.ParmaStoreKeyIlliquidTobinTaxList
	DefaultBasePool                   = types.DefaultBasePool
	DefaultPoolRecoveryPeriod         = types.DefaultPoolRecoveryPeriod
	DefaultMinSpread                  = types.DefaultMinSpread
	DefaultTobinTax                   = types.DefaultTobinTax
)

Functions

func EndBlocker added in v0.3.0

func EndBlocker(ctx sdk.Context, k Keeper)

EndBlocker is called at the end of every block

func InitGenesis added in v0.1.1

func InitGenesis(ctx sdk.Context, keeper Keeper, data GenesisState)

InitGenesis initialize default parameters and the keeper's address to pubkey map

func NewHandler

func NewHandler(k Keeper) sdk.Handler

NewHandler creates a new handler for all market type messages.

Types

type AppModule added in v0.3.0

type AppModule struct {
	AppModuleBasic
	// contains filtered or unexported fields
}

AppModule implements an application module for the market module.

func NewAppModule added in v0.3.0

func NewAppModule(keeper Keeper) AppModule

NewAppModule creates a new AppModule object

func (AppModule) BeginBlock added in v0.3.0

func (am AppModule) BeginBlock(ctx sdk.Context, req abci.RequestBeginBlock)

BeginBlock returns the begin blocker for the market module.

func (AppModule) EndBlock added in v0.3.0

EndBlock returns the end blocker for the market module.

func (AppModule) ExportGenesis added in v0.3.0

func (am AppModule) ExportGenesis(ctx sdk.Context) json.RawMessage

ExportGenesis returns the exported genesis state as raw bytes for the market module.

func (AppModule) InitGenesis added in v0.3.0

func (am AppModule) InitGenesis(ctx sdk.Context, data json.RawMessage) []abci.ValidatorUpdate

InitGenesis performs genesis initialization for the market module.

func (AppModule) Name added in v0.3.0

func (AppModule) Name() string

Name returns the market module's name.

func (AppModule) NewHandler added in v0.3.0

func (am AppModule) NewHandler() sdk.Handler

NewHandler returns an sdk.Handler for the market module.

func (AppModule) NewQuerierHandler added in v0.3.0

func (am AppModule) NewQuerierHandler() sdk.Querier

NewQuerierHandler returns the market module sdk.Querier.

func (AppModule) QuerierRoute added in v0.3.0

func (AppModule) QuerierRoute() string

QuerierRoute returns the market module's querier route name.

func (AppModule) RegisterInvariants added in v0.3.0

func (AppModule) RegisterInvariants(_ sdk.InvariantRegistry)

RegisterInvariants performs a no-op.

func (AppModule) Route added in v0.3.0

func (AppModule) Route() string

Route returns the message routing key for the market module.

type AppModuleBasic added in v0.3.0

type AppModuleBasic struct{}

AppModuleBasic defines the basic application module used by the market module.

func (AppModuleBasic) DefaultGenesis added in v0.3.0

func (AppModuleBasic) DefaultGenesis() json.RawMessage

DefaultGenesis returns default genesis state as raw bytes for the market module.

func (AppModuleBasic) GetQueryCmd added in v0.3.0

func (AppModuleBasic) GetQueryCmd(cdc *codec.Codec) *cobra.Command

GetQueryCmd returns the root query command for the market module.

func (AppModuleBasic) GetTxCmd added in v0.3.0

func (AppModuleBasic) GetTxCmd(cdc *codec.Codec) *cobra.Command

GetTxCmd returns the root tx command for the market module.

func (AppModuleBasic) Name added in v0.3.0

func (AppModuleBasic) Name() string

Name returns the market module's name

func (AppModuleBasic) RegisterCodec added in v0.3.0

func (AppModuleBasic) RegisterCodec(cdc *codec.Codec)

RegisterCodec registers the market module's types for the given codec.

func (AppModuleBasic) RegisterRESTRoutes added in v0.3.0

func (AppModuleBasic) RegisterRESTRoutes(ctx context.CLIContext, rtr *mux.Router)

RegisterRESTRoutes registers the REST routes for the market module.

func (AppModuleBasic) ValidateGenesis added in v0.3.0

func (AppModuleBasic) ValidateGenesis(bz json.RawMessage) error

ValidateGenesis performs genesis state validation for the market module.

type GenesisState added in v0.1.1

type GenesisState = types.GenesisState

func ExportGenesis added in v0.1.1

func ExportGenesis(ctx sdk.Context, keeper Keeper) (data GenesisState)

ExportGenesis writes the current store values to a genesis file, which can be imported again with InitGenesis

type Keeper

type Keeper = keeper.Keeper

type MsgSwap added in v0.0.7

type MsgSwap = types.MsgSwap

type OracleKeeper added in v0.2.0

type OracleKeeper = types.OracleKeeper

type Params added in v0.1.1

type Params = types.Params

type QuerySwapParams added in v0.2.0

type QuerySwapParams = types.QuerySwapParams

type SupplyKeeper added in v0.3.0

type SupplyKeeper = types.SupplyKeeper

Directories

Path Synopsis
client
cli
internal
keeper
nolint:deadcode unused noalias
nolint:deadcode unused noalias
types
noalias
noalias

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL