chore: set proto/cosmos/autocli to main (#23725)

This commit is contained in:
Alex | Interchain Labs
2025-02-21 13:39:12 -05:00
committed by GitHub
parent 2a338e032c
commit 1fda5b615c
55 changed files with 5673 additions and 197 deletions
+19
View File
@@ -0,0 +1,19 @@
package sims
import (
"context"
sdk "github.com/cosmos/cosmos-sdk/types"
)
type BankKeeper interface {
SendCoinsFromModuleToAccount(ctx context.Context, senderModule string, recipientAddr sdk.AccAddress, amt sdk.Coins) error
MintCoins(ctx context.Context, moduleName string, amt sdk.Coins) error
}
// StakingKeeper is a subset of the staking keeper's public interface that
// provides the staking bond denom. It is used in arguments in this package's
// functions so that a mock staking keeper can be passed instead of the real one.
type StakingKeeper interface {
BondDenom(ctx context.Context) (string, error)
}