Skip to content
This repository has been archived by the owner on Apr 24, 2023. It is now read-only.

Commit

Permalink
Merge commit '9f390c30504fe635e9d968393c2869f14cdfe9a4' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaohong committed Mar 27, 2018
2 parents 4842483 + 9f390c3 commit 0ed107a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions api/api.proto
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ service Wallet {
}
rpc GetAssetIssueByAccount (Account) returns (AssetIssueList) {

}
rpc GetAssetIssueByName (BytesMessage) returns (AssetIssueContract) {

}
rpc GetNowBlock (EmptyMessage) returns (Block) {

Expand All @@ -73,6 +76,16 @@ service Wallet {

}
};
// the api of tron's db
service Database {

};

// the api of tron's network such as node list.
service Network {

};


message Return {
bool result = 1;
Expand Down Expand Up @@ -110,4 +123,7 @@ message EmptyMessage {
}
message NumberMessage {
int64 num = 1;
}
message BytesMessage {
bytes value = 1;
}

0 comments on commit 0ed107a

Please sign in to comment.