-
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 #462 from KiraCore/release/v0.3.14
- Loading branch information
Showing
46 changed files
with
11,709 additions
and
2,367 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,4 +1,9 @@ | ||
Features: | ||
|
||
- Implement layer2 v1 with dapp creation, executors/verifiers management, session management | ||
- Add CLI commands and unit tests on layer2 v1 features | ||
- Dapp operator performance counter | ||
- LP token return on verifier exit | ||
- Liquidation for dapp when fall below threshold | ||
- Swap, redeem, convert on lp tokens | ||
- Bridge registrar | ||
- Minting feature | ||
- Add CLI commands and unit tests |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
syntax = "proto3"; | ||
package kira.layer2; | ||
|
||
option go_package = "github.com/KiraCore/sekai/x/layer2/types"; | ||
option (gogoproto.equal_all) = true; | ||
|
||
import "gogoproto/gogo.proto"; | ||
import "google/protobuf/timestamp.proto"; | ||
|
||
message TokenInfo { | ||
string token_type = 1; // Token Type / Compatibility (can NOT be changed or owner defined) | ||
string denom = 2; // full denom, e.g. ap_kirabridge_btc or class identifier (can NOT be changed) | ||
string name = 3; // full name, eg. Bitcoin, (can only be changed by the proposal-upsert-alias) | ||
string symbol = 4; // symbnol, eg. KEX, BTC, (can only be changed by the proposal-upsert-alias) | ||
string icon = 5; // url 256 chars max, (can be changed by owner or proposal-upsert-alias) | ||
string description = 6; // 512 chars max, (can be changed by owner or proposal-upsert-alias) | ||
string website = 7; // url 256 chars max, (can be changed by owner or proposal-upsert-alias) | ||
string social = 8; // url 256 chars max, (can be changed by owner or proposal-upsert-alias) | ||
uint64 decimals = 9; // min 0, max 255, (can NOT be changed) | ||
string cap = 10 [ | ||
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", | ||
(gogoproto.nullable) = false | ||
]; // maximum supply that can be issued, max 2^256 - 1, (can NOT be INCREASED or decreased below current circulatin supply) | ||
string supply = 11 [ | ||
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", | ||
(gogoproto.nullable) = false | ||
]; // current circulating supply can NOT be more then CAP | ||
uint64 holders = 12; | ||
string fee = 13 [ | ||
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", | ||
(gogoproto.nullable) = false | ||
]; // cost of minting 10^decimals per X ukex, can only increase (can be changed by owner only) | ||
string owner = 14; // owner address or "" if noone should be able to modify most important properties | ||
string metadata = 15; // metadata url or CID | ||
string hash = 16; // hexadecimal metadata checksum | ||
} |
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.