Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
plugin
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
link33
plugin
Commits
fc743083
Commit
fc743083
authored
Jan 25, 2019
by
linj
Committed by
vipwzw
Jan 26, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add proto for query
parent
92076c12
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
0 deletions
+37
-0
unfreeze.proto
plugin/dapp/unfreeze/proto/unfreeze.proto
+37
-0
No files found.
plugin/dapp/unfreeze/proto/unfreeze.proto
View file @
fc743083
...
...
@@ -94,6 +94,43 @@ message ReplyQueryUnfreezeWithdraw {
int64
availableAmount
=
2
;
}
message
ReqUnfreezes
{
int32
direction
=
1
;
int32
count
=
2
;
string
fromKey
=
3
;
string
initiator
=
4
;
string
beneficiary
=
5
;
}
message
RespUnfreeze
{
//解冻交易ID(唯一识别码)
string
unfreezeID
=
1
;
//开始时间
int64
startTime
=
2
;
//币种
string
assetExec
=
3
;
string
assetSymbol
=
4
;
//冻结总额
int64
totalCount
=
5
;
//发币人地址
string
initiator
=
6
;
//收币人地址
string
beneficiary
=
7
;
//解冻剩余币数
int64
remaining
=
8
;
//解冻方式(百分比;固额)
string
means
=
9
;
oneof
meansOpt
{
FixAmount
fixAmount
=
10
;
LeftProportion
leftProportion
=
11
;
}
bool
terminated
=
12
;
string
key
=
13
;
}
message
RespUnfreezes
{
repeated
RespUnfreeze
unfreeze
=
1
;
}
// TODO 类型应该大写还是小写
service
unfreeze
{
rpc
GetUnfreezeWithdraw
(
ReqString
)
returns
(
ReplyQueryUnfreezeWithdraw
)
{}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment