-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
57 changed files
with
10,388 additions
and
3,511 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
704 changes: 364 additions & 340 deletions
704
api/artela/wordle/tx.pulsar.go → api/artela/fee/events.pulsar.go
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
package cosmos | ||
|
||
import cosmos "github.com/cosmos/cosmos-sdk/types" | ||
import ( | ||
"context" | ||
|
||
cosmos "github.com/cosmos/cosmos-sdk/types" | ||
) | ||
|
||
// BankKeeper defines the exposed interface for using functionality of the bank keeper | ||
// in the context of the cosmos AnteHandler package. | ||
type BankKeeper interface { | ||
GetBalance(ctx cosmos.Context, addr cosmos.AccAddress, denom string) cosmos.Coin | ||
SendCoins(ctx cosmos.Context, from, to cosmos.AccAddress, amt cosmos.Coins) error | ||
SendCoinsFromAccountToModule(ctx cosmos.Context, senderAddr cosmos.AccAddress, recipientModule string, amt cosmos.Coins) error | ||
GetBalance(ctx context.Context, addr cosmos.AccAddress, denom string) cosmos.Coin | ||
SendCoins(ctx context.Context, from, to cosmos.AccAddress, amt cosmos.Coins) error | ||
SendCoinsFromAccountToModule(ctx context.Context, senderAddr cosmos.AccAddress, recipientModule string, amt cosmos.Coins) error | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.