forked from polkadot-js/apps
-
Notifications
You must be signed in to change notification settings - Fork 5
/
peerplays.ts
255 lines (251 loc) · 6.44 KB
/
peerplays.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
// Copyright 2017-2024 @polkadot/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@polkadot/types/types';
// structs need to be in order
/* eslint-disable sort-keys */
const definitions: OverrideBundleDefinition = {
rpc: {
validatormanager: {
activeValidators: {
description: 'Get the list of active validators',
params: [],
type: 'Vec<AccountId>'
},
currentMaintenanceIndex: {
description: 'Get current maintenance index',
params: [],
type: 'MaintenanceIndex'
},
nextMaintenanceIndex: {
description: 'Get next maintenance index',
params: [],
type: 'MaintenanceIndex'
},
offenceValidators: {
description: 'Get the list of active validators who made the offence',
params: [],
type: 'Vec<(AccountId, AuthIndex)>'
},
offlineValidators: {
description: 'Get the list of active validators who went offline',
params: [],
type: 'Vec<(AccountId, AuthIndex)>'
},
validatorsPool: {
description: 'Get the list of validator candidates',
params: [],
type: 'Vec<AccountId>'
},
validators: {
description: 'Get the list of validator candidates',
params: [],
type: 'Vec<AccountId>'
},
selectedValidators: {
description: 'Get the list of active validators',
params: [],
type: 'Vec<AccountId>'
},
nextValidators: {
description: 'Get the list of next session active validators',
params: [],
type: 'Vec<AccountId>'
}
},
potential: {
getPotential: {
description: 'Get the potential of an account',
params: [
{
name: 'account',
type: 'AccountId'
}
],
type: 'Balance'
},
getMaxSupply: {
description: 'Get the maximum supply',
params: [],
type: 'BalanceOf'
},
getTotalSupply: {
description: 'Get the total supply',
params: [],
type: 'BalanceOf'
},
getCurrentMonthSupply: {
description: 'Get the current month supply',
params: [],
type: 'BalanceOf'
},
getCurrentMonthNumber: {
description: 'Get the current month number',
params: [],
type: 'MonthNumber'
},
getCurrentCycleSupply: {
description: 'Get the current cycle supply',
params: [],
type: 'BalanceOf'
},
getCurrentCycleNumber: {
description: 'Get the current cycle number',
params: [],
type: 'CycleNumber'
},
defaultActiveReferralShare: {
description: 'Get the default active referral share',
params: [],
type: 'ActiveReferralShareType'
},
activeReferralShare: {
description: 'Get the active referral share of an account',
params: [
{
name: 'account',
type: 'AccountId'
}
],
type: 'ActiveReferralShareType'
}
},
fractionalNft: {
collections: {
description: 'Get the total number of collections',
params: [],
type: 'CollectionId'
},
items: {
description: 'Get the total number of items in a collection',
params: [
{
name: 'collection_id',
type: 'CollectionId'
}
],
type: 'ItemId'
},
nftInfo: {
description: 'Get NFT information for a collection',
params: [
{
name: 'collection_id',
type: 'CollectionId'
}
],
type: 'NftInfo'
},
owner: {
description: 'Get the owner of an item in a collection',
params: [
{
name: 'collection_id',
type: 'CollectionId'
},
{
name: 'item_id',
type: 'ItemId'
}
],
type: 'Option<AccountId>'
}
},
rewardPool: {
accountId: {
description: 'Get the account ID of the reward pool',
params: [],
type: 'AccountId'
},
balance: {
description: 'Get the balance of the reward pool',
params: [],
type: 'Balance'
},
collectionIds: {
description: 'Get the set of collection IDs associated with the reward pool',
params: [],
type: 'BTreeSet<CollectionId>'
},
itemIds: {
description: 'Get the set of item IDs for a given collection in the reward pool',
params: [
{
name: 'collection_id',
type: 'CollectionId'
}
],
type: 'BTreeSet<ItemId>'
}
},
referral: {
activeReferralsCount: {
description: 'Get the count of active referrals for an account',
params: [
{
name: 'account',
type: 'AccountId'
}
],
type: 'u32'
},
referrer: {
description: 'Get the referrer of an account',
params: [
{
name: 'account',
type: 'AccountId'
}
],
type: 'Option<AccountId>'
},
activeReferrals: {
description: 'Get the active referrals of an account',
params: [
{
name: 'account',
type: 'AccountId'
}
],
type: 'Option<TreeNode<AccountId>>'
}
}
},
types: [
{
minmax: [0, undefined],
types: {
AccountId: 'EthereumAccountId',
AccountId20: 'EthereumAccountId',
AccountId32: 'EthereumAccountId',
Address: 'AccountId',
AuthIndex: 'u32',
EthereumSignature: {
r: 'H256',
s: 'H256',
v: 'U8'
},
ExtrinsicSignature: 'EthereumSignature',
Lookup0: 'AccountId',
LookupSource: 'AccountId',
MaintenanceIndex: 'u32',
Balance: 'u128',
BalanceOf: 'Balance',
MonthNumber: 'u32',
CycleNumber: 'u32',
ActiveReferralShareType: 'u32',
CollectionId: 'u32',
ItemId: 'u32',
NftInfo: {
address: 'H160',
token_id: 'U256'
},
BTreeSet: 'Vec',
TreeNode: {
parent: 'Option<AccountId>',
children: 'Vec<AccountId>'
}
}
}
]
};
export default definitions;