Documentation ¶
Index ¶
- Constants
- Variables
- func InitGenesis(ctx sdk.Context, keeper Keeper)
- func NewHandler(k keeper.Keeper) sdk.Handler
- type AppModule
- func (am AppModule) BeginBlock(ctx sdk.Context, _ abci.RequestBeginBlock)
- func (AppModule) EndBlock(_ 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 (am AppModule) RegisterInvariants(_ sdk.InvariantRegistry)
- func (AppModule) Route() string
- type AppModuleBasic
- func (AppModuleBasic) DefaultGenesis() json.RawMessage
- func (AppModuleBasic) GetQueryCmd(cdc *codec.Codec) *cobra.Command
- func (AppModuleBasic) GetTxCmd(cdc *codec.Codec) *cobra.Command
- func (AppModuleBasic) Name() string
- func (AppModuleBasic) RegisterCodec(cdc *codec.Codec)
- func (AppModuleBasic) RegisterRESTRoutes(ctx context.CLIContext, rtr *mux.Router)
- func (AppModuleBasic) ValidateGenesis(bz json.RawMessage) error
- type Keeper
- type MsgBindAssetHash
- type MsgBindProxyHash
- type MsgCreateCoinAndDelegateToProxy
- type MsgCreateLockProxy
- type MsgLock
- type TxArgs
- type UnlockKeeper
Constants ¶
View Source
const ( ModuleName = types.ModuleName DefaultParamspace = types.DefaultParamspace StoreKey = types.StoreKey QuerierRoute = types.QuerierRoute QueryParameters = types.QueryParameters RouterKey = types.RouterKey AttributeValueCategory = types.AttributeValueCategory EventTypeCreateLockProxy = types.EventTypeCreateLockProxy EventTypeCreateAndDelegateCoinToProxy = types.EventTypeCreateAndDelegateCoinToProxy EventTypeBindProxy = types.EventTypeBindProxy EventTypeBindAsset = types.EventTypeBindAsset EventTypeLock = types.EventTypeLock EventTypeUnlock = types.EventTypeUnlock AttributeKeyCreator = types.AttributeKeyCreator AttributeKeyLockProxy = types.AttributeKeyLockProxy AttributeKeyToChainId = types.AttributeKeyToChainId AttributeKeyToChainProxyHash = types.AttributeKeyToChainProxyHash AttributeKeySourceAssetDenom = types.AttributeKeySourceAssetDenom AttributeKeyFromAssetHash = types.AttributeKeyFromAssetHash AttributeKeyToAssetHash = types.AttributeKeyToAssetHash AttributeKeyFromAddress = types.AttributeKeyFromAddress AttributeKeyToAddress = types.AttributeKeyToAddress AttributeKeyAmount = types.AttributeKeyAmount )
Variables ¶
View Source
var ( RegisterCodec = types.RegisterCodec NewKeeper = keeper.NewKeeper NewQuerier = keeper.NewQuerier ModuleCdc = types.ModuleCdc NewMsgCreateLockProxy = types.NewMsgCreateLockProxy NewMsgCreateCoinAndDelegateToProxy = types.NewMsgCreateCoinAndDelegateToProxy NewMsgBindAssetHash = types.NewMsgBindAssetHash NewMsgBindProxyHash = types.NewMsgBindProxyHash NewMsgLock = types.NewMsgLock ErrInvalidChainId = types.ErrInvalidChainId ErrMsgBindAssetHash = types.ErrMsgBindAssetHash ErrMsgLock = types.ErrMsgLock ErrAccountNotExist = types.ErrAccountNotExist ErrCreateLockProxy = types.ErrCreateLockProxy ErrBindProxyHash = types.ErrBindProxyHash ErrBindAssetHash = types.ErrBindAssetHash ErrLock = types.ErrLock ErrUnLock = types.ErrUnLock ErrMsgBindProxyHash = types.ErrMsgBindProxyHash ErrCreateCoinAndDelegateToProxy = types.ErrCreateCoinAndDelegateToProxy OperatorToLockProxyKey = keeper.OperatorToLockProxyKey BindProxyPrefix = keeper.BindProxyPrefix BindAssetPrefix = keeper.BindAssetPrefix GetOperatorToLockProxyKey = keeper.GetOperatorToLockProxyKey GetBindProxyKey = keeper.GetBindProxyKey GetBindAssetHashKey = keeper.GetBindAssetHashKey QueryProxyByOperator = types.QueryProxyByOperator QueryProxyHash = types.QueryProxyHash QueryAssetHash = types.QueryAssetHash NewQueryProxyByOperatorParam = types.NewQueryProxyByOperatorParam NewQueryProxyHashParam = types.NewQueryProxyHashParam NewQueryAssetHashParam = types.NewQueryAssetHashParam )
Functions ¶
Types ¶
type AppModule ¶
type AppModule struct { AppModuleBasic // contains filtered or unexported fields }
___________________________ app module
func NewAppModule ¶
NewAppModule creates a new AppModule object
func (AppModule) BeginBlock ¶
func (am AppModule) BeginBlock(ctx sdk.Context, _ abci.RequestBeginBlock)
module begin-block
func (AppModule) EndBlock ¶
func (AppModule) EndBlock(_ sdk.Context, _ abci.RequestEndBlock) []abci.ValidatorUpdate
module end-block
func (AppModule) ExportGenesis ¶
func (am AppModule) ExportGenesis(ctx sdk.Context) json.RawMessage
module export genesis
func (AppModule) InitGenesis ¶
func (am AppModule) InitGenesis(ctx sdk.Context, data json.RawMessage) []abci.ValidatorUpdate
module init-genesis
func (AppModule) NewQuerierHandler ¶
module querier
func (AppModule) RegisterInvariants ¶
func (am AppModule) RegisterInvariants(_ sdk.InvariantRegistry)
register invariants
type AppModuleBasic ¶
type AppModuleBasic struct{}
app module basics object
func (AppModuleBasic) DefaultGenesis ¶
func (AppModuleBasic) DefaultGenesis() json.RawMessage
default genesis state
func (AppModuleBasic) GetQueryCmd ¶
func (AppModuleBasic) GetQueryCmd(cdc *codec.Codec) *cobra.Command
get the root query command of this module
func (AppModuleBasic) GetTxCmd ¶
func (AppModuleBasic) GetTxCmd(cdc *codec.Codec) *cobra.Command
get the root tx command of this module
func (AppModuleBasic) RegisterCodec ¶
func (AppModuleBasic) RegisterCodec(cdc *codec.Codec)
register module codec
func (AppModuleBasic) RegisterRESTRoutes ¶
func (AppModuleBasic) RegisterRESTRoutes(ctx context.CLIContext, rtr *mux.Router)
register rest routes
func (AppModuleBasic) ValidateGenesis ¶
func (AppModuleBasic) ValidateGenesis(bz json.RawMessage) error
module validate genesis
type MsgBindAssetHash ¶
type MsgBindAssetHash = types.MsgBindAssetHash
type MsgBindProxyHash ¶
type MsgBindProxyHash = types.MsgBindProxyHash
type MsgCreateCoinAndDelegateToProxy ¶
type MsgCreateCoinAndDelegateToProxy = types.MsgCreateCoinAndDelegateToProxy
type MsgCreateLockProxy ¶
type MsgCreateLockProxy = types.MsgCreateLockProxy
type UnlockKeeper ¶
type UnlockKeeper = exported.UnlockKeeper
Click to show internal directories.
Click to hide internal directories.