Update proto files and scripts

This commit is contained in:
Nex
2018-09-06 18:36:06 +08:00
parent 96b2879d77
commit 42f14bef5f
5 changed files with 141 additions and 0 deletions

9
common.proto Normal file
View File

@@ -0,0 +1,9 @@
syntax = "proto3";
package api;
enum MessageType {
RECORD = 0; // 通用数据记录
TRANSACTION = 1; // 交易
CONTRACT_CREATION = 2; // 合约创建
CONTRACT_INVOCATION = 3; // 合约调用
}