Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewMsgServerImpl ¶
NewMsgServerImpl returns an implementation of the MsgServer interface for the provided Keeper.
func NewQueryServerImpl ¶
func NewQueryServerImpl(k Keeper) types.QueryServer
NewQueryServerImpl returns an implementation of the QueryServer interface for the provided Keeper.
Types ¶
type BlacklistCheckDecorator ¶
type BlacklistCheckDecorator struct {
// contains filtered or unexported fields
}
func NewBlacklistCheckDecorator ¶
func NewBlacklistCheckDecorator(sk Keeper) BlacklistCheckDecorator
func (BlacklistCheckDecorator) AnteHandle ¶
func (d BlacklistCheckDecorator) AnteHandle(ctx sdk.Context, tx sdk.Tx, simulate bool, next sdk.AnteHandler) (newCtx sdk.Context, err error)
AnteHandle checks if the tx signer is blacklisted
type EVMBlacklistCheckDecorator ¶
type EVMBlacklistCheckDecorator struct {
// contains filtered or unexported fields
}
EVMBlacklistCheckDecorator is a decorator that checks if EVM transaction senders are blacklisted. If a sender is found in the blacklist, it returns an error.
func NewEVMBlacklistCheckDecorator ¶
func NewEVMBlacklistCheckDecorator(sk Keeper) EVMBlacklistCheckDecorator
func (EVMBlacklistCheckDecorator) AnteHandle ¶
type Keeper ¶
type Keeper struct {
Schema collections.Schema
Params collections.Item[types.Params]
// BlacklistAccounts is a set of accounts that are blacklisted from using the module.
BlacklistAccounts collections.KeySet[string]
// contains filtered or unexported fields
}
func NewKeeper ¶
func NewKeeper( cdc codec.BinaryCodec, storeService store.KVStoreService, logger log.Logger, authority string, ) Keeper
func (Keeper) GetAuthority ¶
GetAuthority returns the module's authority.
Click to show internal directories.
Click to hide internal directories.