joint

package
v0.0.0-...-df98d5b Latest Latest
Warning

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

Go to latest
Published: Oct 18, 2020 License: Apache-2.0 Imports: 16 Imported by: 0

Documentation

Overview

nolint autogenerated code using github.com/rigelrozanski/multitool aliases generated for the following subdirectories: ALIASGEN: github.com/exidioco/modules/joint/types ALIASGEN: github.com/exidioco/modules/joint/keeper ALIASGEN: github.com/exidioco/modules/joint/querier

Index

Constants

View Source
const (
	EventTypeCreate      = types.EventTypeCreate
	EventTypeSend        = types.EventTypeSend
	EventTypeDeposit     = types.EventTypeDeposit
	EventTypeApprove     = types.EventTypeApprove
	AttributeKeyIdentity = types.AttributeKeyIdentity
	AttributeKeyConsents = types.AttributeKeyConsents
	AttributeKeyFrom     = types.AttributeKeyFrom
	AttributeKeyTo       = types.AttributeKeyTo
	AttributeKeyCoins    = types.AttributeKeyCoins
	AttributeKeyDeadline = types.AttributeKeyDeadline
	AttributeKeyHolder   = types.AttributeKeyHolder
	ModuleName           = types.ModuleName
	QuerierRoute         = types.QuerierRoute
	RouterKey            = types.RouterKey
	StoreKey             = types.StoreKey
	QueryAccount         = types.QueryAccount
	QueryAccounts        = types.QueryAccounts
	QueryTransfer        = types.QueryTransfer
	QueryTransfers       = types.QueryTransfers
)

Variables

View Source
var (
	// functions aliases
	RegisterCodec                   = types.RegisterCodec
	NewGenesisState                 = types.NewGenesisState
	DefaultGenesisState             = types.DefaultGenesisState
	AccountKey                      = types.AccountKey
	TransferKey                     = types.TransferKey
	GetTransferForDeadlineKeyPrefix = types.GetTransferForDeadlineKeyPrefix
	TransferForDeadlineKey          = types.TransferForDeadlineKey
	NewMsgCreate                    = types.NewMsgCreate
	NewMsgDeposit                   = types.NewMsgDeposit
	NewMsgSend                      = types.NewMsgSend
	NewMsgApprove                   = types.NewMsgApprove
	NewQueryAccountParams           = types.NewQueryAccountParams
	NewQueryAccountsParams          = types.NewQueryAccountsParams
	NewQueryTransferParams          = types.NewQueryTransferParams
	NewQueryTransfersParams         = types.NewQueryTransfersParams
	NewKeeper                       = keeper.NewKeeper
	NewQuerier                      = querier.NewQuerier

	// variable aliases
	ModuleCdc                    = types.ModuleCdc
	ErrorMarshal                 = types.ErrorMarshal
	ErrorUnmarshal               = types.ErrorUnmarshal
	ErrorUnknownMessage          = types.ErrorUnknownMessage
	ErrorUnknownQuery            = types.ErrorUnknownQuery
	ErrorNegativeCoins           = types.ErrorNegativeCoins
	ErrorAccountDoesNotExist     = types.ErrorAccountDoesNotExist
	ErrorTransferDoesNotExist    = types.ErrorTransferDoesNotExist
	ErrorDeadlineExceeded        = types.ErrorDeadlineExceeded
	ErrorTransferFulfilled       = types.ErrorTransferFulfilled
	ErrorDuplicateSigner         = types.ErrorDuplicateSigner
	ErrorHolderDoesNotExist      = types.ErrorHolderDoesNotExist
	EventModuleName              = types.EventModuleName
	AccountsCountKey             = types.AccountsCountKey
	AccountKeyPrefix             = types.AccountKeyPrefix
	TransfersCountKey            = types.TransfersCountKey
	TransferKeyPrefix            = types.TransferKeyPrefix
	TransferForDeadlineKeyPrefix = types.TransferForDeadlineKeyPrefix
)

Functions

func EndBlock

func EndBlock(ctx sdk.Context, k keeper.Keeper) []abci.ValidatorUpdate

func ExportGenesis

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

func InitGenesis

func InitGenesis(ctx sdk.Context, k keeper.Keeper, state types.GenesisState)

func NewHandler

func NewHandler(k keeper.Keeper) sdk.Handler

func ValidateGenesis

func ValidateGenesis(state types.GenesisState) error

Types

type Account

type Account = types.Account

type Accounts

type Accounts = types.Accounts

type AppModule

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

func NewAppModule

func NewAppModule(k keeper.Keeper) AppModule

func (AppModule) BeginBlock

func (a AppModule) BeginBlock(_ sdk.Context, _ abci.RequestBeginBlock)

func (AppModule) EndBlock

func (AppModule) ExportGenesis

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

func (AppModule) GenerateGenesisState

func (a AppModule) GenerateGenesisState(_ *module.SimulationState)

func (AppModule) InitGenesis

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

func (AppModule) NewHandler

func (a AppModule) NewHandler() sdk.Handler

func (AppModule) NewQuerierHandler

func (a AppModule) NewQuerierHandler() sdk.Querier

func (AppModule) ProposalContents

func (AppModule) QuerierRoute

func (a AppModule) QuerierRoute() string

func (AppModule) RandomizedParams

func (a AppModule) RandomizedParams(_ *rand.Rand) []simulation.ParamChange

func (AppModule) RegisterInvariants

func (a AppModule) RegisterInvariants(_ sdk.InvariantRegistry)

func (AppModule) RegisterStoreDecoder

func (a AppModule) RegisterStoreDecoder(_ sdk.StoreDecoderRegistry)

func (AppModule) Route

func (a AppModule) Route() string

func (AppModule) WeightedOperations

func (a AppModule) WeightedOperations(_ module.SimulationState) []simulation.WeightedOperation

type AppModuleBasic

type AppModuleBasic struct{}

func (AppModuleBasic) DefaultGenesis

func (a AppModuleBasic) DefaultGenesis() json.RawMessage

func (AppModuleBasic) GetQueryCmd

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

func (AppModuleBasic) GetTxCmd

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

func (AppModuleBasic) Name

func (a AppModuleBasic) Name() string

func (AppModuleBasic) RegisterCodec

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

func (AppModuleBasic) RegisterRESTRoutes

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

func (AppModuleBasic) ValidateGenesis

func (a AppModuleBasic) ValidateGenesis(data json.RawMessage) error

type GenesisState

type GenesisState = types.GenesisState

type Keeper

type Keeper = keeper.Keeper

type MsgApprove

type MsgApprove = types.MsgApprove

type MsgCreate

type MsgCreate = types.MsgCreate

type MsgDeposit

type MsgDeposit = types.MsgDeposit

type MsgSend

type MsgSend = types.MsgSend

type QueryAccountParams

type QueryAccountParams = types.QueryAccountParams

type QueryAccountsParams

type QueryAccountsParams = types.QueryAccountsParams

type QueryTransferParams

type QueryTransferParams = types.QueryTransferParams

type QueryTransfersParams

type QueryTransfersParams = types.QueryTransfersParams

type Transfer

type Transfer = types.Transfer

type Transfers

type Transfers = types.Transfers

Directories

Path Synopsis
client
cli

Jump to

Keyboard shortcuts

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