-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tokens module refactoring and token minting in other modules to use t…
…okens module
- Loading branch information
Showing
36 changed files
with
439 additions
and
327 deletions.
There are no files selected for viewing
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,12 +1,13 @@ | ||
syntax = "proto3"; | ||
package kira.tokens; | ||
|
||
import "gogoproto/gogo.proto"; | ||
import "kira/tokens/token.proto"; | ||
import "kira/tokens/freeze.proto"; | ||
|
||
option go_package = "github.com/KiraCore/sekai/x/tokens/types"; | ||
|
||
message GenesisState { | ||
repeated kira.tokens.TokenInfo tokenInfos = 1; | ||
TokensWhiteBlack tokenBlackWhites = 2; | ||
repeated kira.tokens.TokenInfo tokenInfos = 1 [ (gogoproto.nullable) = false ]; | ||
TokensWhiteBlack tokenBlackWhites = 2 [ (gogoproto.nullable) = false ]; | ||
} |
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
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.