-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtypes.json
48 lines (48 loc) · 1.1 KB
/
types.json
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"TokenType": { "_enum": ["NonFungible", "Fungible"] },
"CollectionInfo": {
"owner": "AccountId",
"uri": "Vec<u8>",
"total_supply": "u128",
"token_type": "Option<TokenType>"
},
"TokenInfo": {
"end_idx": "u128",
"owner": "AccountId",
"uri": "Vec<u8>"
},
"DAOInfo": {
"account_id": "AccountId",
"escrow_id": "AccountId",
"details": "Vec<u8>",
"period_duration": "u128",
"voting_period": "u128",
"grace_period": "u128",
"metadata": "Vec<u8>",
"total_shares": "u128",
"summoning_time": "BlockNumber",
"dilution_bound": "u128",
"proposal_deposit": "Balance",
"processing_reward": "Balance"
},
"Member": {
"shares": "u128",
"highest_index_yes_vote": "u128"
},
"NonFungibleOrderInfo": {
"collection_id": "Hash",
"start_idx": "u128",
"seller": "AccountId",
"price": "Balance",
"amount": "u128"
},
"SemiFungiblePoolInfo": {
"seller": "AccountId",
"supply": "u128",
"m": "u128",
"sold": "u128",
"reverse_ratio": "u128",
"pool_balance": "Balance",
"end_time": "BlockNumber"
}
}