forked from darwinia-network/darwinia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.json
More file actions
32 lines (32 loc) · 725 Bytes
/
Copy pathtypes.json
File metadata and controls
32 lines (32 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"TokenBalance": "u128",
"Auction": {
"seller": "AccountId",
"startAt": "Moment",
"duration": "u64",
"startingPrice": "TokenBalance",
"endingPrice": "TokenBalance",
"lastRecord": "TokenBalance",
"lastBidder": "AccountId",
"lastBidStartAt": "Moment"
},
"Currency": "u128",
"CurrencyOf": "u128",
"DepositInfo": {
"month": "Moment",
"start_at": "Moment",
"value": "CurrencyOf",
"unit_interest": "u64",
"claimed": "bool"
},
"Deposit": {
"total_deposit": "CurrencyOf",
"deposit_list": "Vec<DepositInfo>"
},
"Revenue": {
"team": "TokenBalance",
"contribution": "TokenBalance",
"ktoner": "TokenBalance",
"lottery": "TokenBalance"
}
}