-
Notifications
You must be signed in to change notification settings - Fork 257
CIP001
33cn edited this page Dec 6, 2018
·
4 revisions
用户资产的存储结构:
// Account 的信息
message Account {
// coins标识,目前只有0 一个值
int32 currency = 1;
//账户可用余额
int64 balance = 2;
//账户冻结余额
int64 frozen = 3;
//账户的地址
string addr = 4;
}
currency = 0 表示可切分资产,后面可能会引入不可切分的资产。
hello world