-
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.
Merge pull request #680 from KiraCore/feature/layer2_improvement
feature/layer2_improvement -> release/v0.4.0
- Loading branch information
Showing
124 changed files
with
5,989 additions
and
8,555 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Features: | ||
|
||
- Signature verification codebase for metamask token send and EIP712 transactions | ||
- Transaction type text updates to use camelcase | ||
- Upgrade genesis script modification to migrate from v0.3.17 to v0.3.45 | ||
- Tokens module refactoring (#664) | ||
- Layer2 improvement (#668) | ||
- Fix storeKeys for layer2 and recovery modules |
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
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
syntax = "proto3"; | ||
package kira.tokens; | ||
|
||
import "kira/tokens/alias.proto"; | ||
import "kira/tokens/rate.proto"; | ||
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.TokenAlias aliases = 1; | ||
repeated kira.tokens.TokenRate rates = 2; | ||
TokensWhiteBlack tokenBlackWhites = 3; | ||
repeated kira.tokens.TokenInfo tokenInfos = 1 [ (gogoproto.nullable) = false ]; | ||
TokensWhiteBlack tokenBlackWhites = 2 [ (gogoproto.nullable) = false ]; | ||
} |
Oops, something went wrong.