github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/x/gov/alias.go (about)

     1  // nolint
     2  // autogenerated code using github.com/rigelrozanski/multitool
     3  // aliases generated for the following subdirectories:
     4  package gov
     5  
     6  import (
     7  	"github.com/fibonacci-chain/fbc/x/gov/keeper"
     8  	"github.com/fibonacci-chain/fbc/x/gov/types"
     9  )
    10  
    11  const (
    12  	ModuleName        = types.ModuleName
    13  	StoreKey          = types.StoreKey
    14  	RouterKey         = types.RouterKey
    15  	DefaultParamspace = types.DefaultParamspace
    16  	ProposalTypeText  = types.ProposalTypeText
    17  	QueryParams       = types.QueryParams
    18  
    19  	StatusNil           = types.StatusNil
    20  	StatusDepositPeriod = types.StatusDepositPeriod
    21  	StatusVotingPeriod  = types.StatusVotingPeriod
    22  	StatusPassed        = types.StatusPassed
    23  	StatusRejected      = types.StatusRejected
    24  	StatusFailed        = types.StatusFailed
    25  )
    26  
    27  var (
    28  	// functions aliases
    29  	RegisterCodec              = types.RegisterCodec
    30  	RegisterProposalTypeCodec  = types.RegisterProposalTypeCodec
    31  	ErrInvalidProposer         = types.ErrInvalidProposer
    32  	ErrInvalidHeight           = types.ErrInvalidHeight
    33  	ErrInvalidProposalContent  = types.ErrInvalidProposalContent
    34  	ErrInvalidProposalType     = types.ErrInvalidProposalType
    35  	ErrInvalidGenesis          = types.ErrInvalidGenesis
    36  	ErrNoProposalHandlerExists = types.ErrNoProposalHandlerExists
    37  	ProposalKey                = types.ProposalKey
    38  	ActiveProposalByTimeKey    = types.ActiveProposalByTimeKey
    39  	ActiveProposalQueueKey     = types.ActiveProposalQueueKey
    40  	InactiveProposalByTimeKey  = types.InactiveProposalByTimeKey
    41  	InactiveProposalQueueKey   = types.InactiveProposalQueueKey
    42  	DepositKey                 = types.DepositKey
    43  	VoteKey                    = types.VoteKey
    44  	NewMsgSubmitProposal       = types.NewMsgSubmitProposal
    45  	NewMsgDeposit              = types.NewMsgDeposit
    46  	NewMsgVote                 = types.NewMsgVote
    47  	ParamKeyTable              = types.ParamKeyTable
    48  	NewDepositParams           = types.NewDepositParams
    49  	NewTallyParams             = types.NewTallyParams
    50  	NewVotingParams            = types.NewVotingParams
    51  	NewParams                  = types.NewParams
    52  	NewTallyResultFromMap      = types.NewTallyResultFromMap
    53  	EmptyTallyResult           = types.EmptyTallyResult
    54  	NewTextProposal            = types.NewTextProposal
    55  	RegisterProposalType       = types.RegisterProposalType
    56  	ContentFromProposalType    = types.ContentFromProposalType
    57  	IsValidProposalType        = types.IsValidProposalType
    58  	ProposalHandler            = types.ProposalHandler
    59  	NewQueryProposalParams     = types.NewQueryProposalParams
    60  	NewQueryDepositParams      = types.NewQueryDepositParams
    61  	NewQueryVoteParams         = types.NewQueryVoteParams
    62  	NewQueryProposalsParams    = types.NewQueryProposalsParams
    63  
    64  	// variable aliases
    65  	ModuleCdc                   = types.ModuleCdc
    66  	ProposalsKeyPrefix          = types.ProposalsKeyPrefix
    67  	ActiveProposalQueuePrefix   = types.ActiveProposalQueuePrefix
    68  	InactiveProposalQueuePrefix = types.InactiveProposalQueuePrefix
    69  	ProposalIDKey               = types.ProposalIDKey
    70  	DepositsKeyPrefix           = types.DepositsKeyPrefix
    71  	VotesKeyPrefix              = types.VotesKeyPrefix
    72  	ParamStoreKeyDepositParams  = types.ParamStoreKeyDepositParams
    73  	ParamStoreKeyVotingParams   = types.ParamStoreKeyVotingParams
    74  	ParamStoreKeyTallyParams    = types.ParamStoreKeyTallyParams
    75  
    76  	NewKeeper  = keeper.NewKeeper
    77  	NewQuerier = keeper.NewQuerier
    78  	NewRouter  = keeper.NewRouter
    79  )
    80  
    81  type (
    82  	Content           = types.Content
    83  	Handler           = types.Handler
    84  	Deposit           = types.Deposit
    85  	Deposits          = types.Deposits
    86  	MsgSubmitProposal = types.MsgSubmitProposal
    87  	MsgDeposit        = types.MsgDeposit
    88  	MsgVote           = types.MsgVote
    89  	DepositParams     = types.DepositParams
    90  	TallyParams       = types.TallyParams
    91  	VotingParams      = types.VotingParams
    92  	Params            = types.Params
    93  	Proposal          = types.Proposal
    94  	Proposals         = types.Proposals
    95  	ProposalStatus    = types.ProposalStatus
    96  	TallyResult       = types.TallyResult
    97  	Vote              = types.Vote
    98  	Votes             = types.Votes
    99  	Keeper            = keeper.Keeper
   100  )