forked from polkadot-js/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrust-maxwell.ts
103 lines (101 loc) · 2.38 KB
/
crust-maxwell.ts
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
// Copyright 2017-2021 @polkadot/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
// structs need to be in order
/* eslint-disable sort-keys */
export default {
AccountInfo: 'AccountInfoWithProviders',
Address: 'AccountId',
AddressInfo: 'Vec<u8>',
LookupSource: 'AccountId',
EraBenefits: {
total_benefits: 'Balance',
total_funds: 'Balance',
used_benefits: 'Balance',
active_era: 'EraIndex'
},
FeeReductionBenefit: {
funds: 'Balance',
total_fee_reduction_count: 'u32',
used_fee_reduction_quota: 'Balance',
used_fee_reduction_count: 'u32',
refreshed_at: 'EraIndex'
},
CsmBalance: 'Balance',
CsmBalanceOf: 'Balance',
ETHAddress: 'Vec<u8>',
EthereumTxHash: 'H256',
CSMLedger: {
total: 'Compact<Balance>',
active: 'Compact<Balance>',
unlocking: 'Vec<CSMUnlockChunk<Balance>>'
},
CSMUnlockChunk: {
value: 'Compact<Balance>',
bn: 'Compact<BlockNumber>'
},
FileInfo: {
file_size: 'u64',
expired_on: 'BlockNumber',
calculated_at: 'BlockNumber',
amount: 'Balance',
prepaid: 'Balance',
reported_replica_count: 'u32',
replicas: 'Vec<Replica<AccountId>>'
},
MerchantLedger: {
reward: 'Balance',
collateral: 'Balance'
},
Releases: {
_enum: ['V1_0_0', 'V2_0_0']
},
Replica: {
who: 'AccountId',
valid_at: 'BlockNumber',
anchor: 'SworkerAnchor',
is_reported: 'bool'
},
Status: {
_enum: ['Free', 'Reserved']
},
UsedInfo: {
used_size: 'u64',
reported_group_count: 'u32',
groups: 'BTreeMap<SworkerAnchor, bool>'
},
Guarantee: {
targets: 'Vec<IndividualExposure<AccountId, Balance>>',
total: 'Compact<Balance>',
submitted_in: 'EraIndex',
suppressed: 'bool'
},
ValidatorPrefs: {
guarantee_fee: 'Compact<Perbill>'
},
IASSig: 'Vec<u8>',
Identity: {
anchor: 'SworkerAnchor',
punishment_deadline: 'u64',
group: 'Option<AccountId>'
},
ISVBody: 'Vec<u8>',
MerkleRoot: 'Vec<u8>',
ReportSlot: 'u64',
PKInfo: {
code: 'SworkerCode',
anchor: 'Option<SworkerAnchor>'
},
SworkerAnchor: 'Vec<u8>',
SworkerCert: 'Vec<u8>',
SworkerCode: 'Vec<u8>',
SworkerPubKey: 'Vec<u8>',
SworkerSignature: 'Vec<u8>',
WorkReport: {
report_slot: 'u64',
used: 'u64',
free: 'u64',
reported_files_size: 'u64',
reported_srd_root: 'MerkleRoot',
reported_files_root: 'MerkleRoot'
}
};