Commit 0bcf29ab authored by linj's avatar linj

add proto of mint

parent 94196411
...@@ -15,6 +15,7 @@ message TokenAction { ...@@ -15,6 +15,7 @@ message TokenAction {
AssetsWithdraw withdraw = 5; AssetsWithdraw withdraw = 5;
AssetsGenesis genesis = 6; AssetsGenesis genesis = 6;
AssetsTransferToExec transferToExec = 8; AssetsTransferToExec transferToExec = 8;
TokenMint tokenMint = 9;
} }
int32 Ty = 7; int32 Ty = 7;
} }
...@@ -40,6 +41,11 @@ message TokenRevokeCreate { ...@@ -40,6 +41,11 @@ message TokenRevokeCreate {
string owner = 2; string owner = 2;
} }
message TokenMint {
string symbol = 1;
int64 amount = 2;
}
// state db // state db
message Token { message Token {
string name = 1; string name = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment