@ocap/proto 1.23.1 → 1.24.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/gen/spec.json +29 -0
- package/lib/gen/state_pb.js +110 -1
- package/lib/gen/trace-type_pb.js +60 -0
- package/lib/gen/tx_pb.js +30 -0
- package/lib/gen/type_pb.js +31 -1
- package/package.json +1 -1
- package/lib/gen/service.graphqls +0 -1827
- package/lib/gen/service.pb.graphqls +0 -2129
package/lib/gen/service.graphqls
DELETED
|
@@ -1,1827 +0,0 @@
|
|
|
1
|
-
type AccountConfig {
|
|
2
|
-
address: String
|
|
3
|
-
pk: String
|
|
4
|
-
balance: String
|
|
5
|
-
}
|
|
6
|
-
input AccountFilterInput {
|
|
7
|
-
accounts: [String!]
|
|
8
|
-
}
|
|
9
|
-
type AccountMigrateTx {
|
|
10
|
-
pk: String
|
|
11
|
-
type: WalletType
|
|
12
|
-
address: String
|
|
13
|
-
data: Any
|
|
14
|
-
}
|
|
15
|
-
type AccountState {
|
|
16
|
-
balance: String
|
|
17
|
-
nonce: String
|
|
18
|
-
numTxs: String
|
|
19
|
-
address: String
|
|
20
|
-
pk: String
|
|
21
|
-
type: WalletType
|
|
22
|
-
moniker: String
|
|
23
|
-
context: StateContext
|
|
24
|
-
issuer: String
|
|
25
|
-
gasBalance: String
|
|
26
|
-
migratedTo: [String!]
|
|
27
|
-
migratedFrom: [String!]
|
|
28
|
-
numAssets: String
|
|
29
|
-
tokens: [IndexedTokenInput!]
|
|
30
|
-
data: Any
|
|
31
|
-
}
|
|
32
|
-
type AccountToken {
|
|
33
|
-
address: String
|
|
34
|
-
symbol: String
|
|
35
|
-
balance: String
|
|
36
|
-
decimal: Int
|
|
37
|
-
}
|
|
38
|
-
type AcquireAssetV2Tx {
|
|
39
|
-
factory: String
|
|
40
|
-
address: String
|
|
41
|
-
assets: [String!]
|
|
42
|
-
variables: [VariableInput!]
|
|
43
|
-
issuer: NFTIssuer
|
|
44
|
-
data: Any
|
|
45
|
-
}
|
|
46
|
-
type AcquireAssetV3Tx {
|
|
47
|
-
factory: String
|
|
48
|
-
address: String
|
|
49
|
-
inputs: [TransactionInput!]
|
|
50
|
-
owner: String
|
|
51
|
-
variables: [VariableInput!]
|
|
52
|
-
issuer: NFTIssuer
|
|
53
|
-
data: Any
|
|
54
|
-
}
|
|
55
|
-
input AddressFilterInput {
|
|
56
|
-
sender: String
|
|
57
|
-
receiver: String
|
|
58
|
-
direction: Direction
|
|
59
|
-
}
|
|
60
|
-
type AssetFactoryHook {
|
|
61
|
-
name: String
|
|
62
|
-
type: String
|
|
63
|
-
hook: String
|
|
64
|
-
}
|
|
65
|
-
type AssetFactoryInput {
|
|
66
|
-
value: String
|
|
67
|
-
tokens: [TokenInput!]
|
|
68
|
-
assets: [String!]
|
|
69
|
-
variables: [VariableInput!]
|
|
70
|
-
}
|
|
71
|
-
type AssetFactoryState {
|
|
72
|
-
address: String
|
|
73
|
-
owner: String
|
|
74
|
-
name: String
|
|
75
|
-
description: String
|
|
76
|
-
settlement: String
|
|
77
|
-
limit: Int
|
|
78
|
-
trustedIssuers: [String!]
|
|
79
|
-
input: IndexedFactoryInput
|
|
80
|
-
output: CreateAssetTx
|
|
81
|
-
hooks: [AssetFactoryHook!]
|
|
82
|
-
data: Any
|
|
83
|
-
context: StateContext
|
|
84
|
-
balance: String
|
|
85
|
-
tokens: [IndexedTokenInput!]
|
|
86
|
-
numMinted: Int
|
|
87
|
-
display: NFTDisplay
|
|
88
|
-
lastSettlement: String
|
|
89
|
-
}
|
|
90
|
-
input AssetFilterInput {
|
|
91
|
-
assets: [String!]
|
|
92
|
-
}
|
|
93
|
-
type AssetLimit {
|
|
94
|
-
address: [String!]
|
|
95
|
-
to: [String!]
|
|
96
|
-
txCount: Int
|
|
97
|
-
validUntil: Int
|
|
98
|
-
rate: RateLimit
|
|
99
|
-
txSent: Int
|
|
100
|
-
lastTx: Int
|
|
101
|
-
}
|
|
102
|
-
type AssetState {
|
|
103
|
-
address: String
|
|
104
|
-
owner: String
|
|
105
|
-
moniker: String
|
|
106
|
-
readonly: Boolean
|
|
107
|
-
transferrable: Boolean
|
|
108
|
-
ttl: Int
|
|
109
|
-
consumedTime: String
|
|
110
|
-
issuer: String
|
|
111
|
-
parent: String
|
|
112
|
-
endpoint: NFTEndpoint
|
|
113
|
-
display: NFTDisplay
|
|
114
|
-
tags: [String!]
|
|
115
|
-
context: StateContext
|
|
116
|
-
data: Any
|
|
117
|
-
}
|
|
118
|
-
type BlockID {
|
|
119
|
-
hash: String
|
|
120
|
-
partsHeader: PartSetHeader
|
|
121
|
-
}
|
|
122
|
-
type BlockInfo {
|
|
123
|
-
height: String
|
|
124
|
-
numTxs: Int
|
|
125
|
-
time: String
|
|
126
|
-
appHash: String
|
|
127
|
-
proposer: String
|
|
128
|
-
txs: [TransactionInfo!]
|
|
129
|
-
totalTxs: String
|
|
130
|
-
invalidTxs: [TransactionInfo!]
|
|
131
|
-
txsHashes: [String!]
|
|
132
|
-
invalidTxsHashes: [String!]
|
|
133
|
-
consensusHash: String
|
|
134
|
-
dataHash: String
|
|
135
|
-
evidenceHash: String
|
|
136
|
-
lastCommitHash: String
|
|
137
|
-
lastResultsHash: String
|
|
138
|
-
nextValidatorsHash: String
|
|
139
|
-
validatorsHash: String
|
|
140
|
-
version: Version
|
|
141
|
-
lastBlockId: BlockID
|
|
142
|
-
}
|
|
143
|
-
type BlockInfoSimple {
|
|
144
|
-
height: String
|
|
145
|
-
numTxs: Int
|
|
146
|
-
time: String
|
|
147
|
-
appHash: String
|
|
148
|
-
proposer: String
|
|
149
|
-
totalTxs: String
|
|
150
|
-
txsHashes: [String!]
|
|
151
|
-
invalidTxsHashes: [String!]
|
|
152
|
-
consensusHash: String
|
|
153
|
-
dataHash: String
|
|
154
|
-
evidenceHash: String
|
|
155
|
-
lastCommitHash: String
|
|
156
|
-
lastResultsHash: String
|
|
157
|
-
nextValidatorsHash: String
|
|
158
|
-
validatorsHash: String
|
|
159
|
-
version: Version
|
|
160
|
-
lastBlockId: BlockID
|
|
161
|
-
}
|
|
162
|
-
type ChainInfo {
|
|
163
|
-
id: String
|
|
164
|
-
network: String
|
|
165
|
-
moniker: String
|
|
166
|
-
consensusVersion: String
|
|
167
|
-
synced: Boolean
|
|
168
|
-
appHash: String
|
|
169
|
-
blockHash: String
|
|
170
|
-
blockHeight: String
|
|
171
|
-
blockTime: String
|
|
172
|
-
address: String
|
|
173
|
-
votingPower: String
|
|
174
|
-
totalTxs: String
|
|
175
|
-
version: String
|
|
176
|
-
forgeAppsVersion: [ChainInfo_ForgeAppsVersionEntry!]
|
|
177
|
-
supportedTxs: [String!]
|
|
178
|
-
}
|
|
179
|
-
type ChainInfo_ForgeAppsVersionEntry {
|
|
180
|
-
key: String
|
|
181
|
-
value: String
|
|
182
|
-
}
|
|
183
|
-
type ClaimBlockRewardTx {
|
|
184
|
-
rollup: String
|
|
185
|
-
blockHeight: Int
|
|
186
|
-
blockHash: String
|
|
187
|
-
evidence: Evidence
|
|
188
|
-
publisher: String
|
|
189
|
-
data: Any
|
|
190
|
-
}
|
|
191
|
-
type ClaimStakeTx {
|
|
192
|
-
address: String
|
|
193
|
-
evidence: Evidence
|
|
194
|
-
data: Any
|
|
195
|
-
}
|
|
196
|
-
type CloseRollupTx {
|
|
197
|
-
rollup: String
|
|
198
|
-
message: String
|
|
199
|
-
data: Any
|
|
200
|
-
}
|
|
201
|
-
type ConsensusParams {
|
|
202
|
-
maxBytes: String
|
|
203
|
-
maxGas: String
|
|
204
|
-
maxValidators: Int
|
|
205
|
-
maxCandidates: Int
|
|
206
|
-
pubKeyTypes: [String!]
|
|
207
|
-
validators: [Validator!]
|
|
208
|
-
validatorChanged: Boolean
|
|
209
|
-
paramChanged: Boolean
|
|
210
|
-
}
|
|
211
|
-
type ConsumeAssetTx {
|
|
212
|
-
address: String
|
|
213
|
-
data: Any
|
|
214
|
-
}
|
|
215
|
-
type CreateAssetTx {
|
|
216
|
-
moniker: String
|
|
217
|
-
data: Any
|
|
218
|
-
readonly: Boolean
|
|
219
|
-
transferrable: Boolean
|
|
220
|
-
ttl: Int
|
|
221
|
-
parent: String
|
|
222
|
-
address: String
|
|
223
|
-
issuer: String
|
|
224
|
-
endpoint: NFTEndpoint
|
|
225
|
-
display: NFTDisplay
|
|
226
|
-
tags: [String!]
|
|
227
|
-
}
|
|
228
|
-
type CreateFactoryTx {
|
|
229
|
-
name: String
|
|
230
|
-
description: String
|
|
231
|
-
settlement: String
|
|
232
|
-
limit: Int
|
|
233
|
-
trustedIssuers: [String!]
|
|
234
|
-
input: AssetFactoryInput
|
|
235
|
-
output: CreateAssetTx
|
|
236
|
-
hooks: [AssetFactoryHook!]
|
|
237
|
-
address: String
|
|
238
|
-
display: NFTDisplay
|
|
239
|
-
data: Any
|
|
240
|
-
}
|
|
241
|
-
type CreateRollupBlockTx {
|
|
242
|
-
hash: String
|
|
243
|
-
height: Int
|
|
244
|
-
merkleRoot: String
|
|
245
|
-
previousHash: String
|
|
246
|
-
txsHash: String
|
|
247
|
-
txs: [String!]
|
|
248
|
-
proposer: String
|
|
249
|
-
signatures: [Multisig!]
|
|
250
|
-
rollup: String
|
|
251
|
-
minReward: String
|
|
252
|
-
governance: Boolean
|
|
253
|
-
data: Any
|
|
254
|
-
}
|
|
255
|
-
type CreateRollupTx {
|
|
256
|
-
address: String
|
|
257
|
-
tokenAddress: String
|
|
258
|
-
vaultAddress: String
|
|
259
|
-
contractAddress: String
|
|
260
|
-
seedValidators: [RollupValidator!]
|
|
261
|
-
minStakeAmount: String
|
|
262
|
-
maxStakeAmount: String
|
|
263
|
-
minSignerCount: Int
|
|
264
|
-
maxSignerCount: Int
|
|
265
|
-
minBlockSize: Int
|
|
266
|
-
maxBlockSize: Int
|
|
267
|
-
minBlockInterval: Int
|
|
268
|
-
minBlockConfirmation: Int
|
|
269
|
-
foreignChainType: String
|
|
270
|
-
foreignChainId: String
|
|
271
|
-
depositFeeRate: Int
|
|
272
|
-
withdrawFeeRate: Int
|
|
273
|
-
proposerFeeShare: Int
|
|
274
|
-
minDepositAmount: String
|
|
275
|
-
minWithdrawAmount: String
|
|
276
|
-
maxDepositAmount: String
|
|
277
|
-
maxWithdrawAmount: String
|
|
278
|
-
minDepositFee: String
|
|
279
|
-
maxDepositFee: String
|
|
280
|
-
minWithdrawFee: String
|
|
281
|
-
maxWithdrawFee: String
|
|
282
|
-
paused: Boolean
|
|
283
|
-
leaveWaitingPeriod: Int
|
|
284
|
-
publisherFeeShare: Int
|
|
285
|
-
publishWaitingPeriod: Int
|
|
286
|
-
publishSlashRate: Int
|
|
287
|
-
data: Any
|
|
288
|
-
}
|
|
289
|
-
type CreateTokenTx {
|
|
290
|
-
name: String
|
|
291
|
-
description: String
|
|
292
|
-
symbol: String
|
|
293
|
-
unit: String
|
|
294
|
-
decimal: Int
|
|
295
|
-
icon: String
|
|
296
|
-
totalSupply: String
|
|
297
|
-
address: String
|
|
298
|
-
initialSupply: String
|
|
299
|
-
foreignToken: ForeignToken
|
|
300
|
-
data: Any
|
|
301
|
-
}
|
|
302
|
-
type DeclareTx {
|
|
303
|
-
moniker: String
|
|
304
|
-
issuer: String
|
|
305
|
-
data: Any
|
|
306
|
-
}
|
|
307
|
-
type DelegateConfig {
|
|
308
|
-
deltaInterval: Int
|
|
309
|
-
typeUrls: [String!]
|
|
310
|
-
}
|
|
311
|
-
type DelegateLimit {
|
|
312
|
-
tokens: [TokenLimit!]
|
|
313
|
-
assets: [AssetLimit!]
|
|
314
|
-
}
|
|
315
|
-
type DelegateOp {
|
|
316
|
-
typeUrl: String
|
|
317
|
-
rules: [String!]
|
|
318
|
-
limit: DelegateLimit
|
|
319
|
-
}
|
|
320
|
-
type DelegateOpState {
|
|
321
|
-
rule: String
|
|
322
|
-
numTxs: Int
|
|
323
|
-
numTxsDelta: Int
|
|
324
|
-
balance: String
|
|
325
|
-
balanceDelta: String
|
|
326
|
-
limit: DelegateLimit
|
|
327
|
-
}
|
|
328
|
-
type DelegateState {
|
|
329
|
-
address: String
|
|
330
|
-
ops: [DelegateState_OpsEntry!]
|
|
331
|
-
from: String
|
|
332
|
-
to: String
|
|
333
|
-
context: StateContext
|
|
334
|
-
data: Any
|
|
335
|
-
}
|
|
336
|
-
type DelegateState_OpsEntry {
|
|
337
|
-
key: String
|
|
338
|
-
value: DelegateOpState
|
|
339
|
-
}
|
|
340
|
-
type DelegateTx {
|
|
341
|
-
address: String
|
|
342
|
-
to: String
|
|
343
|
-
ops: [DelegateOp!]
|
|
344
|
-
data: Any
|
|
345
|
-
}
|
|
346
|
-
input DelegationFilterInput {
|
|
347
|
-
delegations: [String!]
|
|
348
|
-
}
|
|
349
|
-
type DepositTokenV2Tx {
|
|
350
|
-
token: TokenInput
|
|
351
|
-
to: String
|
|
352
|
-
proposer: String
|
|
353
|
-
evidence: Evidence
|
|
354
|
-
rollup: String
|
|
355
|
-
actualFee: String
|
|
356
|
-
data: Any
|
|
357
|
-
}
|
|
358
|
-
enum Direction {
|
|
359
|
-
MUTUAL
|
|
360
|
-
ONE_WAY
|
|
361
|
-
UNION
|
|
362
|
-
}
|
|
363
|
-
enum EncodingType {
|
|
364
|
-
BASE16
|
|
365
|
-
BASE58
|
|
366
|
-
}
|
|
367
|
-
type Evidence {
|
|
368
|
-
hash: String
|
|
369
|
-
}
|
|
370
|
-
type EvidenceState {
|
|
371
|
-
hash: String
|
|
372
|
-
data: String
|
|
373
|
-
context: StateContext
|
|
374
|
-
}
|
|
375
|
-
type ExchangeInfo {
|
|
376
|
-
value: String
|
|
377
|
-
assets: [String!]
|
|
378
|
-
}
|
|
379
|
-
type ExchangeInfoV2 {
|
|
380
|
-
value: String
|
|
381
|
-
assets: [String!]
|
|
382
|
-
tokens: [TokenInput!]
|
|
383
|
-
}
|
|
384
|
-
type ExchangeTx {
|
|
385
|
-
to: String
|
|
386
|
-
sender: ExchangeInfo
|
|
387
|
-
receiver: ExchangeInfo
|
|
388
|
-
expiredAt: String
|
|
389
|
-
data: Any
|
|
390
|
-
}
|
|
391
|
-
type ExchangeV2Tx {
|
|
392
|
-
to: String
|
|
393
|
-
sender: ExchangeInfoV2
|
|
394
|
-
receiver: ExchangeInfoV2
|
|
395
|
-
expiredAt: String
|
|
396
|
-
data: Any
|
|
397
|
-
}
|
|
398
|
-
input FactoryFilterInput {
|
|
399
|
-
factories: [String!]
|
|
400
|
-
}
|
|
401
|
-
type ForeignToken {
|
|
402
|
-
type: String
|
|
403
|
-
contractAddress: String
|
|
404
|
-
chainType: String
|
|
405
|
-
chainName: String
|
|
406
|
-
chainId: Int
|
|
407
|
-
}
|
|
408
|
-
type ForgeState {
|
|
409
|
-
address: String
|
|
410
|
-
consensus: ConsensusParams
|
|
411
|
-
tasks: [ForgeState_TasksEntry!]
|
|
412
|
-
version: String
|
|
413
|
-
token: ForgeToken
|
|
414
|
-
txConfig: TransactionConfig
|
|
415
|
-
upgradeInfo: UpgradeInfo
|
|
416
|
-
accountConfig: [AccountConfig!]
|
|
417
|
-
vaults: VaultConfig
|
|
418
|
-
data: Any
|
|
419
|
-
}
|
|
420
|
-
type ForgeState_TasksEntry {
|
|
421
|
-
key: Int
|
|
422
|
-
value: UpgradeTasks
|
|
423
|
-
}
|
|
424
|
-
type ForgeStats {
|
|
425
|
-
numBlocks: [String!]
|
|
426
|
-
numTxs: [String!]
|
|
427
|
-
numStakes: [String!]
|
|
428
|
-
numValidators: [Int!]
|
|
429
|
-
numAccountMigrateTxs: [String!]
|
|
430
|
-
numCreateAssetTxs: [String!]
|
|
431
|
-
numConsensusUpgradeTxs: [Int!]
|
|
432
|
-
numDeclareTxs: [String!]
|
|
433
|
-
numDeclareFileTxs: [String!]
|
|
434
|
-
numExchangeTxs: [String!]
|
|
435
|
-
numStakeTxs: [String!]
|
|
436
|
-
numSysUpgradeTxs: [Int!]
|
|
437
|
-
numTransferTxs: [String!]
|
|
438
|
-
numUpdateAssetTxs: [String!]
|
|
439
|
-
numConsumeAssetTxs: [String!]
|
|
440
|
-
tps: [Int!]
|
|
441
|
-
maxTps: Int
|
|
442
|
-
avgTps: Int
|
|
443
|
-
avgBlockTime: Float
|
|
444
|
-
}
|
|
445
|
-
type ForgeToken {
|
|
446
|
-
name: String
|
|
447
|
-
symbol: String
|
|
448
|
-
unit: String
|
|
449
|
-
description: String
|
|
450
|
-
icon: String
|
|
451
|
-
decimal: Int
|
|
452
|
-
initialSupply: String
|
|
453
|
-
totalSupply: String
|
|
454
|
-
inflationRate: Int
|
|
455
|
-
address: String
|
|
456
|
-
}
|
|
457
|
-
type GasEstimate {
|
|
458
|
-
max: String
|
|
459
|
-
}
|
|
460
|
-
type GeoInfo {
|
|
461
|
-
city: String
|
|
462
|
-
country: String
|
|
463
|
-
latitude: Float
|
|
464
|
-
longitude: Float
|
|
465
|
-
}
|
|
466
|
-
enum HashType {
|
|
467
|
-
KECCAK
|
|
468
|
-
SHA3
|
|
469
|
-
SHA2
|
|
470
|
-
KECCAK_384
|
|
471
|
-
SHA3_384
|
|
472
|
-
KECCAK_512
|
|
473
|
-
SHA3_512
|
|
474
|
-
}
|
|
475
|
-
type IndexedAccountState {
|
|
476
|
-
address: String
|
|
477
|
-
balance: String
|
|
478
|
-
numAssets: String
|
|
479
|
-
numTxs: String
|
|
480
|
-
nonce: String
|
|
481
|
-
genesisTime: String
|
|
482
|
-
renaissanceTime: String
|
|
483
|
-
moniker: String
|
|
484
|
-
migratedFrom: String
|
|
485
|
-
migratedTo: String
|
|
486
|
-
totalReceivedStakes: String
|
|
487
|
-
totalStakes: String
|
|
488
|
-
totalUnstakes: String
|
|
489
|
-
recentNumTxs: [String!]
|
|
490
|
-
tokens: [TokenInfo!]
|
|
491
|
-
}
|
|
492
|
-
type IndexedAssetState {
|
|
493
|
-
address: String
|
|
494
|
-
owner: String
|
|
495
|
-
genesisTime: String
|
|
496
|
-
renaissanceTime: String
|
|
497
|
-
moniker: String
|
|
498
|
-
readonly: Boolean
|
|
499
|
-
consumedTime: String
|
|
500
|
-
issuer: String
|
|
501
|
-
parent: String
|
|
502
|
-
transferrable: Boolean
|
|
503
|
-
ttl: String
|
|
504
|
-
display: NFTDisplay
|
|
505
|
-
endpoint: NFTEndpoint
|
|
506
|
-
tags: [String!]
|
|
507
|
-
data: Any
|
|
508
|
-
}
|
|
509
|
-
type IndexedBlock {
|
|
510
|
-
height: String
|
|
511
|
-
time: String
|
|
512
|
-
proposer: String
|
|
513
|
-
numTxs: String
|
|
514
|
-
numInvalidTxs: String
|
|
515
|
-
}
|
|
516
|
-
type IndexedDelegationState {
|
|
517
|
-
address: String
|
|
518
|
-
from: String
|
|
519
|
-
to: String
|
|
520
|
-
genesisTime: String
|
|
521
|
-
renaissanceTime: String
|
|
522
|
-
ops: [IndexedDelegationState_OpsEntry!]
|
|
523
|
-
data: Any
|
|
524
|
-
}
|
|
525
|
-
type IndexedDelegationState_OpsEntry {
|
|
526
|
-
key: String
|
|
527
|
-
value: DelegateOpState
|
|
528
|
-
}
|
|
529
|
-
type IndexedFactoryInput {
|
|
530
|
-
value: String
|
|
531
|
-
tokens: [IndexedTokenInput!]
|
|
532
|
-
assets: [String!]
|
|
533
|
-
variables: [VariableInput!]
|
|
534
|
-
}
|
|
535
|
-
type IndexedFactoryState {
|
|
536
|
-
address: String
|
|
537
|
-
owner: String
|
|
538
|
-
name: String
|
|
539
|
-
description: String
|
|
540
|
-
settlement: String
|
|
541
|
-
limit: String
|
|
542
|
-
trustedIssuers: [String!]
|
|
543
|
-
input: IndexedFactoryInput
|
|
544
|
-
output: CreateAssetTx
|
|
545
|
-
hooks: [AssetFactoryHook!]
|
|
546
|
-
data: Any
|
|
547
|
-
balance: String
|
|
548
|
-
tokens: [TokenInfo!]
|
|
549
|
-
numMinted: Int
|
|
550
|
-
lastSettlement: String
|
|
551
|
-
genesisTime: String
|
|
552
|
-
renaissanceTime: String
|
|
553
|
-
display: NFTDisplay
|
|
554
|
-
}
|
|
555
|
-
type IndexedRollupBlock {
|
|
556
|
-
hash: String
|
|
557
|
-
height: Int
|
|
558
|
-
merkleRoot: String
|
|
559
|
-
previousHash: String
|
|
560
|
-
txsHash: String
|
|
561
|
-
txs: [String!]
|
|
562
|
-
proposer: String
|
|
563
|
-
signatures: [Multisig!]
|
|
564
|
-
genesisTime: String
|
|
565
|
-
renaissanceTime: String
|
|
566
|
-
rollup: String
|
|
567
|
-
mintedAmount: String
|
|
568
|
-
burnedAmount: String
|
|
569
|
-
rewardAmount: String
|
|
570
|
-
governance: Boolean
|
|
571
|
-
tokenInfo: IndexedTokenInput
|
|
572
|
-
data: Any
|
|
573
|
-
}
|
|
574
|
-
type IndexedRollupState {
|
|
575
|
-
address: String
|
|
576
|
-
tokenAddress: String
|
|
577
|
-
vaultAddress: String
|
|
578
|
-
contractAddress: String
|
|
579
|
-
seedValidators: [RollupValidator!]
|
|
580
|
-
validators: [RollupValidator!]
|
|
581
|
-
minStakeAmount: String
|
|
582
|
-
maxStakeAmount: String
|
|
583
|
-
minSignerCount: Int
|
|
584
|
-
maxSignerCount: Int
|
|
585
|
-
minBlockSize: Int
|
|
586
|
-
maxBlockSize: Int
|
|
587
|
-
minBlockInterval: Int
|
|
588
|
-
genesisTime: String
|
|
589
|
-
renaissanceTime: String
|
|
590
|
-
tokenInfo: IndexedTokenInput
|
|
591
|
-
issuer: String
|
|
592
|
-
depositFeeRate: Int
|
|
593
|
-
withdrawFeeRate: Int
|
|
594
|
-
proposerFeeShare: Int
|
|
595
|
-
minDepositAmount: String
|
|
596
|
-
minWithdrawAmount: String
|
|
597
|
-
blockHeight: Int
|
|
598
|
-
blockHash: String
|
|
599
|
-
minBlockConfirmation: Int
|
|
600
|
-
totalDepositAmount: String
|
|
601
|
-
totalWithdrawAmount: String
|
|
602
|
-
maxDepositAmount: String
|
|
603
|
-
maxWithdrawAmount: String
|
|
604
|
-
minDepositFee: String
|
|
605
|
-
maxDepositFee: String
|
|
606
|
-
minWithdrawFee: String
|
|
607
|
-
maxWithdrawFee: String
|
|
608
|
-
paused: Boolean
|
|
609
|
-
foreignToken: ForeignToken
|
|
610
|
-
leaveWaitingPeriod: Int
|
|
611
|
-
publisherFeeShare: Int
|
|
612
|
-
publishWaitingPeriod: Int
|
|
613
|
-
publishSlashRate: Int
|
|
614
|
-
migrateHistory: [String!]
|
|
615
|
-
closed: Boolean
|
|
616
|
-
vaultHistory: [String!]
|
|
617
|
-
data: Any
|
|
618
|
-
}
|
|
619
|
-
type IndexedRollupValidator {
|
|
620
|
-
pk: String
|
|
621
|
-
address: String
|
|
622
|
-
moniker: String
|
|
623
|
-
endpoint: String
|
|
624
|
-
joinTime: String
|
|
625
|
-
leaveTime: String
|
|
626
|
-
genesisTime: String
|
|
627
|
-
renaissanceTime: String
|
|
628
|
-
totalStake: String
|
|
629
|
-
revokedStake: String
|
|
630
|
-
availableStake: String
|
|
631
|
-
totalGain: String
|
|
632
|
-
proposedBlockCount: Int
|
|
633
|
-
verifiedBlockCount: Int
|
|
634
|
-
latestBlockHeight: Int
|
|
635
|
-
latestBlockHash: String
|
|
636
|
-
rollup: String
|
|
637
|
-
}
|
|
638
|
-
type IndexedStakeState {
|
|
639
|
-
address: String
|
|
640
|
-
sender: String
|
|
641
|
-
receiver: String
|
|
642
|
-
tokens: [TokenInfo!]
|
|
643
|
-
assets: [String!]
|
|
644
|
-
revocable: Boolean
|
|
645
|
-
genesisTime: String
|
|
646
|
-
renaissanceTime: String
|
|
647
|
-
message: String
|
|
648
|
-
revokeWaitingPeriod: Int
|
|
649
|
-
revokedTokens: [TokenInfo!]
|
|
650
|
-
revokedAssets: [String!]
|
|
651
|
-
slashers: [String!]
|
|
652
|
-
nonce: String
|
|
653
|
-
data: Any
|
|
654
|
-
}
|
|
655
|
-
type IndexedTokenFlow {
|
|
656
|
-
value: String
|
|
657
|
-
hash: String
|
|
658
|
-
from: String
|
|
659
|
-
to: String
|
|
660
|
-
}
|
|
661
|
-
type IndexedTokenInput {
|
|
662
|
-
address: String
|
|
663
|
-
value: String
|
|
664
|
-
decimal: Int
|
|
665
|
-
unit: String
|
|
666
|
-
symbol: String
|
|
667
|
-
}
|
|
668
|
-
type IndexedTokenState {
|
|
669
|
-
name: String
|
|
670
|
-
description: String
|
|
671
|
-
symbol: String
|
|
672
|
-
unit: String
|
|
673
|
-
decimal: Int
|
|
674
|
-
issuer: String
|
|
675
|
-
icon: String
|
|
676
|
-
totalSupply: String
|
|
677
|
-
address: String
|
|
678
|
-
genesisTime: String
|
|
679
|
-
renaissanceTime: String
|
|
680
|
-
foreignToken: ForeignToken
|
|
681
|
-
data: Any
|
|
682
|
-
}
|
|
683
|
-
type IndexedTransaction {
|
|
684
|
-
hash: String
|
|
685
|
-
sender: String
|
|
686
|
-
receiver: String
|
|
687
|
-
time: String
|
|
688
|
-
type: String
|
|
689
|
-
tx: Transaction
|
|
690
|
-
valid: Boolean
|
|
691
|
-
code: String
|
|
692
|
-
tokenSymbols: [TokenSymbol!]
|
|
693
|
-
receipts: [TransactionReceipt!]
|
|
694
|
-
}
|
|
695
|
-
type JoinRollupTx {
|
|
696
|
-
rollup: String
|
|
697
|
-
endpoint: String
|
|
698
|
-
evidence: Evidence
|
|
699
|
-
signatures: [Multisig!]
|
|
700
|
-
data: Any
|
|
701
|
-
}
|
|
702
|
-
type KVPair {
|
|
703
|
-
key: String
|
|
704
|
-
value: String
|
|
705
|
-
}
|
|
706
|
-
enum KeyType {
|
|
707
|
-
ED25519
|
|
708
|
-
SECP256K1
|
|
709
|
-
ETHEREUM
|
|
710
|
-
}
|
|
711
|
-
type LeaveRollupTx {
|
|
712
|
-
rollup: String
|
|
713
|
-
evidence: Evidence
|
|
714
|
-
signatures: [Multisig!]
|
|
715
|
-
data: Any
|
|
716
|
-
}
|
|
717
|
-
type MigrateRollupTx {
|
|
718
|
-
rollup: String
|
|
719
|
-
to: String
|
|
720
|
-
type: String
|
|
721
|
-
message: String
|
|
722
|
-
data: Any
|
|
723
|
-
}
|
|
724
|
-
type MintAssetTx {
|
|
725
|
-
factory: String
|
|
726
|
-
address: String
|
|
727
|
-
assets: [String!]
|
|
728
|
-
variables: [VariableInput!]
|
|
729
|
-
owner: String
|
|
730
|
-
data: Any
|
|
731
|
-
}
|
|
732
|
-
type Multisig {
|
|
733
|
-
signer: String
|
|
734
|
-
pk: String
|
|
735
|
-
signature: String
|
|
736
|
-
delegator: String
|
|
737
|
-
data: Any
|
|
738
|
-
}
|
|
739
|
-
type NFTDisplay {
|
|
740
|
-
type: String
|
|
741
|
-
content: String
|
|
742
|
-
}
|
|
743
|
-
type NFTEndpoint {
|
|
744
|
-
id: String
|
|
745
|
-
scope: String
|
|
746
|
-
}
|
|
747
|
-
type NFTIssuer {
|
|
748
|
-
id: String
|
|
749
|
-
pk: String
|
|
750
|
-
name: String
|
|
751
|
-
}
|
|
752
|
-
type NetInfo {
|
|
753
|
-
listening: Boolean
|
|
754
|
-
listeners: [String!]
|
|
755
|
-
nPeers: Int
|
|
756
|
-
peers: [PeerInfo!]
|
|
757
|
-
}
|
|
758
|
-
type NodeInfo {
|
|
759
|
-
id: String
|
|
760
|
-
network: String
|
|
761
|
-
moniker: String
|
|
762
|
-
consensusVersion: String
|
|
763
|
-
synced: Boolean
|
|
764
|
-
appHash: String
|
|
765
|
-
blockHash: String
|
|
766
|
-
blockHeight: String
|
|
767
|
-
blockTime: String
|
|
768
|
-
address: String
|
|
769
|
-
votingPower: String
|
|
770
|
-
totalTxs: String
|
|
771
|
-
version: String
|
|
772
|
-
forgeAppsVersion: [NodeInfo_ForgeAppsVersionEntry!]
|
|
773
|
-
supportedTxs: [String!]
|
|
774
|
-
ip: String
|
|
775
|
-
geoInfo: GeoInfo
|
|
776
|
-
p2pAddress: String
|
|
777
|
-
}
|
|
778
|
-
type NodeInfo_ForgeAppsVersionEntry {
|
|
779
|
-
key: String
|
|
780
|
-
value: String
|
|
781
|
-
}
|
|
782
|
-
type PageInfo {
|
|
783
|
-
cursor: String
|
|
784
|
-
next: Boolean
|
|
785
|
-
total: Int
|
|
786
|
-
}
|
|
787
|
-
input PageInput {
|
|
788
|
-
cursor: String
|
|
789
|
-
size: Int
|
|
790
|
-
order: [PageOrderInput!]
|
|
791
|
-
}
|
|
792
|
-
input PageOrderInput {
|
|
793
|
-
field: String
|
|
794
|
-
type: String
|
|
795
|
-
}
|
|
796
|
-
type PartSetHeader {
|
|
797
|
-
total: Int
|
|
798
|
-
hash: String
|
|
799
|
-
}
|
|
800
|
-
type PauseRollupTx {
|
|
801
|
-
rollup: String
|
|
802
|
-
data: Any
|
|
803
|
-
}
|
|
804
|
-
type PeerInfo {
|
|
805
|
-
id: String
|
|
806
|
-
network: String
|
|
807
|
-
consensusVersion: String
|
|
808
|
-
moniker: String
|
|
809
|
-
ip: String
|
|
810
|
-
geoInfo: GeoInfo
|
|
811
|
-
}
|
|
812
|
-
type PubKey {
|
|
813
|
-
type: String
|
|
814
|
-
data: String
|
|
815
|
-
}
|
|
816
|
-
input RangeFilterInput {
|
|
817
|
-
from: String
|
|
818
|
-
to: String
|
|
819
|
-
}
|
|
820
|
-
type RateLimit {
|
|
821
|
-
interval: Int
|
|
822
|
-
anchor: Int
|
|
823
|
-
}
|
|
824
|
-
type ReceiptChange {
|
|
825
|
-
target: String
|
|
826
|
-
action: String
|
|
827
|
-
value: String
|
|
828
|
-
}
|
|
829
|
-
input RequestEstimateGasInput {
|
|
830
|
-
typeUrl: String
|
|
831
|
-
tx: String
|
|
832
|
-
}
|
|
833
|
-
input RequestGetAccountStateInput {
|
|
834
|
-
address: String
|
|
835
|
-
keys: [String!]
|
|
836
|
-
height: Int
|
|
837
|
-
traceMigration: Boolean
|
|
838
|
-
}
|
|
839
|
-
input RequestGetAccountTokensInput {
|
|
840
|
-
address: String
|
|
841
|
-
token: String
|
|
842
|
-
}
|
|
843
|
-
input RequestGetBlockInput {
|
|
844
|
-
height: Int
|
|
845
|
-
}
|
|
846
|
-
input RequestGetBlocksInput {
|
|
847
|
-
paging: PageInput
|
|
848
|
-
heightFilter: RangeFilterInput
|
|
849
|
-
emptyExcluded: Boolean
|
|
850
|
-
}
|
|
851
|
-
input RequestGetConfigInput {
|
|
852
|
-
parsed: Boolean
|
|
853
|
-
}
|
|
854
|
-
input RequestGetEvidenceStateInput {
|
|
855
|
-
hash: String
|
|
856
|
-
}
|
|
857
|
-
input RequestGetRollupBlockInput {
|
|
858
|
-
hash: String
|
|
859
|
-
height: Int
|
|
860
|
-
rollupAddress: String
|
|
861
|
-
}
|
|
862
|
-
input RequestGetStateInput {
|
|
863
|
-
address: String
|
|
864
|
-
keys: [String!]
|
|
865
|
-
height: Int
|
|
866
|
-
}
|
|
867
|
-
input RequestGetTokenDistributionInput {
|
|
868
|
-
tokenAddress: String
|
|
869
|
-
}
|
|
870
|
-
input RequestGetTxInput {
|
|
871
|
-
hash: String
|
|
872
|
-
}
|
|
873
|
-
input RequestListAssetTransactionsInput {
|
|
874
|
-
paging: PageInput
|
|
875
|
-
address: String
|
|
876
|
-
}
|
|
877
|
-
input RequestListAssetsInput {
|
|
878
|
-
paging: PageInput
|
|
879
|
-
ownerAddress: String
|
|
880
|
-
factoryAddress: String
|
|
881
|
-
timeFilter: TimeFilterInput
|
|
882
|
-
}
|
|
883
|
-
input RequestListBlocksInput {
|
|
884
|
-
paging: PageInput
|
|
885
|
-
proposer: String
|
|
886
|
-
timeFilter: TimeFilterInput
|
|
887
|
-
heightFilter: RangeFilterInput
|
|
888
|
-
numTxsFilter: RangeFilterInput
|
|
889
|
-
numInvalidTxsFilter: RangeFilterInput
|
|
890
|
-
}
|
|
891
|
-
input RequestListDelegationsInput {
|
|
892
|
-
paging: PageInput
|
|
893
|
-
from: String
|
|
894
|
-
to: String
|
|
895
|
-
timeFilter: TimeFilterInput
|
|
896
|
-
}
|
|
897
|
-
input RequestListFactoriesInput {
|
|
898
|
-
paging: PageInput
|
|
899
|
-
ownerAddress: String
|
|
900
|
-
addressList: [String!]
|
|
901
|
-
timeFilter: TimeFilterInput
|
|
902
|
-
}
|
|
903
|
-
input RequestListRollupBlocksInput {
|
|
904
|
-
paging: PageInput
|
|
905
|
-
rollupAddress: String
|
|
906
|
-
tokenAddress: String
|
|
907
|
-
proposer: String
|
|
908
|
-
validatorFilter: ValidatorFilterInput
|
|
909
|
-
txFilter: TxFilterInput
|
|
910
|
-
timeFilter: TimeFilterInput
|
|
911
|
-
}
|
|
912
|
-
input RequestListRollupValidatorsInput {
|
|
913
|
-
paging: PageInput
|
|
914
|
-
rollupAddress: String
|
|
915
|
-
}
|
|
916
|
-
input RequestListRollupsInput {
|
|
917
|
-
paging: PageInput
|
|
918
|
-
tokenAddress: String
|
|
919
|
-
foreignTokenAddress: String
|
|
920
|
-
timeFilter: TimeFilterInput
|
|
921
|
-
}
|
|
922
|
-
input RequestListStakesInput {
|
|
923
|
-
paging: PageInput
|
|
924
|
-
addressFilter: AddressFilterInput
|
|
925
|
-
timeFilter: TimeFilterInput
|
|
926
|
-
assetFilter: AssetFilterInput
|
|
927
|
-
}
|
|
928
|
-
input RequestListTokenFlowsInput {
|
|
929
|
-
paging: PageInput
|
|
930
|
-
accountAddress: String
|
|
931
|
-
tokenAddress: String
|
|
932
|
-
depth: Int
|
|
933
|
-
direction: TokenFlowDirection
|
|
934
|
-
}
|
|
935
|
-
input RequestListTokensInput {
|
|
936
|
-
paging: PageInput
|
|
937
|
-
issuerAddress: String
|
|
938
|
-
timeFilter: TimeFilterInput
|
|
939
|
-
}
|
|
940
|
-
input RequestListTopAccountsInput {
|
|
941
|
-
paging: PageInput
|
|
942
|
-
tokenAddress: String
|
|
943
|
-
timeFilter: TimeFilterInput
|
|
944
|
-
}
|
|
945
|
-
input RequestListTransactionsInput {
|
|
946
|
-
paging: PageInput
|
|
947
|
-
timeFilter: TimeFilterInput
|
|
948
|
-
addressFilter: AddressFilterInput
|
|
949
|
-
typeFilter: TypeFilterInput
|
|
950
|
-
validityFilter: ValidityFilterInput
|
|
951
|
-
factoryFilter: FactoryFilterInput
|
|
952
|
-
tokenFilter: TokenFilterInput
|
|
953
|
-
assetFilter: AssetFilterInput
|
|
954
|
-
accountFilter: AccountFilterInput
|
|
955
|
-
txFilter: TxFilterInput
|
|
956
|
-
rollupFilter: RollupFilterInput
|
|
957
|
-
stakeFilter: StakeFilterInput
|
|
958
|
-
delegationFilter: DelegationFilterInput
|
|
959
|
-
}
|
|
960
|
-
input RequestSearchInput {
|
|
961
|
-
paging: PageInput
|
|
962
|
-
keyword: String
|
|
963
|
-
}
|
|
964
|
-
input RequestSendTxInput {
|
|
965
|
-
tx: String
|
|
966
|
-
wallet: WalletInfoInput
|
|
967
|
-
token: String
|
|
968
|
-
commit: Boolean
|
|
969
|
-
extra: String
|
|
970
|
-
}
|
|
971
|
-
input RequestVerifyAccountRiskInput {
|
|
972
|
-
accountAddress: String
|
|
973
|
-
tokenAddress: String
|
|
974
|
-
}
|
|
975
|
-
type ResponseEstimateGas {
|
|
976
|
-
code: String
|
|
977
|
-
estimate: GasEstimate
|
|
978
|
-
}
|
|
979
|
-
type ResponseGetAccountState {
|
|
980
|
-
code: String
|
|
981
|
-
state: AccountState
|
|
982
|
-
}
|
|
983
|
-
type ResponseGetAccountTokens {
|
|
984
|
-
code: String
|
|
985
|
-
tokens: [AccountToken!]
|
|
986
|
-
}
|
|
987
|
-
type ResponseGetAssetState {
|
|
988
|
-
code: String
|
|
989
|
-
state: AssetState
|
|
990
|
-
}
|
|
991
|
-
type ResponseGetBlock {
|
|
992
|
-
code: String
|
|
993
|
-
block: BlockInfo
|
|
994
|
-
}
|
|
995
|
-
type ResponseGetBlocks {
|
|
996
|
-
code: String
|
|
997
|
-
page: PageInfo
|
|
998
|
-
blocks: [BlockInfoSimple!]
|
|
999
|
-
}
|
|
1000
|
-
type ResponseGetChainInfo {
|
|
1001
|
-
code: String
|
|
1002
|
-
info: ChainInfo
|
|
1003
|
-
}
|
|
1004
|
-
type ResponseGetConfig {
|
|
1005
|
-
code: String
|
|
1006
|
-
config: String
|
|
1007
|
-
}
|
|
1008
|
-
type ResponseGetDelegateState {
|
|
1009
|
-
code: String
|
|
1010
|
-
state: DelegateState
|
|
1011
|
-
}
|
|
1012
|
-
type ResponseGetEvidenceState {
|
|
1013
|
-
code: String
|
|
1014
|
-
state: EvidenceState
|
|
1015
|
-
}
|
|
1016
|
-
type ResponseGetFactoryState {
|
|
1017
|
-
code: String
|
|
1018
|
-
state: AssetFactoryState
|
|
1019
|
-
}
|
|
1020
|
-
type ResponseGetForgeState {
|
|
1021
|
-
code: String
|
|
1022
|
-
state: ForgeState
|
|
1023
|
-
}
|
|
1024
|
-
type ResponseGetForgeStats {
|
|
1025
|
-
code: String
|
|
1026
|
-
forgeStats: ForgeStats
|
|
1027
|
-
}
|
|
1028
|
-
type ResponseGetNetInfo {
|
|
1029
|
-
code: String
|
|
1030
|
-
netInfo: NetInfo
|
|
1031
|
-
}
|
|
1032
|
-
type ResponseGetNodeInfo {
|
|
1033
|
-
code: String
|
|
1034
|
-
info: NodeInfo
|
|
1035
|
-
}
|
|
1036
|
-
type ResponseGetRollupBlock {
|
|
1037
|
-
code: String
|
|
1038
|
-
block: RollupBlock
|
|
1039
|
-
}
|
|
1040
|
-
type ResponseGetRollupState {
|
|
1041
|
-
code: String
|
|
1042
|
-
state: RollupState
|
|
1043
|
-
}
|
|
1044
|
-
type ResponseGetStakeState {
|
|
1045
|
-
code: String
|
|
1046
|
-
state: StakeState
|
|
1047
|
-
}
|
|
1048
|
-
type ResponseGetTokenDistribution {
|
|
1049
|
-
code: String
|
|
1050
|
-
data: TokenDistribution
|
|
1051
|
-
}
|
|
1052
|
-
type ResponseGetTokenState {
|
|
1053
|
-
code: String
|
|
1054
|
-
state: TokenState
|
|
1055
|
-
}
|
|
1056
|
-
type ResponseGetTx {
|
|
1057
|
-
code: String
|
|
1058
|
-
info: TransactionInfo
|
|
1059
|
-
}
|
|
1060
|
-
type ResponseGetUnconfirmedTxs {
|
|
1061
|
-
code: String
|
|
1062
|
-
page: PageInfo
|
|
1063
|
-
unconfirmedTxs: UnconfirmedTxs
|
|
1064
|
-
}
|
|
1065
|
-
type ResponseGetValidatorsInfo {
|
|
1066
|
-
code: String
|
|
1067
|
-
validatorsInfo: ValidatorsInfo
|
|
1068
|
-
}
|
|
1069
|
-
type ResponseListAssetTransactions {
|
|
1070
|
-
code: String
|
|
1071
|
-
page: PageInfo
|
|
1072
|
-
transactions: [IndexedTransaction!]
|
|
1073
|
-
}
|
|
1074
|
-
type ResponseListAssets {
|
|
1075
|
-
code: String
|
|
1076
|
-
page: PageInfo
|
|
1077
|
-
assets: [IndexedAssetState!]
|
|
1078
|
-
}
|
|
1079
|
-
type ResponseListBlocks {
|
|
1080
|
-
code: String
|
|
1081
|
-
page: PageInfo
|
|
1082
|
-
blocks: [IndexedBlock!]
|
|
1083
|
-
}
|
|
1084
|
-
type ResponseListDelegations {
|
|
1085
|
-
code: String
|
|
1086
|
-
page: PageInfo
|
|
1087
|
-
delegations: [IndexedDelegationState!]
|
|
1088
|
-
}
|
|
1089
|
-
type ResponseListFactories {
|
|
1090
|
-
code: String
|
|
1091
|
-
page: PageInfo
|
|
1092
|
-
factories: [IndexedFactoryState!]
|
|
1093
|
-
}
|
|
1094
|
-
type ResponseListRollupBlocks {
|
|
1095
|
-
code: String
|
|
1096
|
-
page: PageInfo
|
|
1097
|
-
blocks: [IndexedRollupBlock!]
|
|
1098
|
-
}
|
|
1099
|
-
type ResponseListRollupValidators {
|
|
1100
|
-
code: String
|
|
1101
|
-
page: PageInfo
|
|
1102
|
-
validators: [IndexedRollupValidator!]
|
|
1103
|
-
}
|
|
1104
|
-
type ResponseListRollups {
|
|
1105
|
-
code: String
|
|
1106
|
-
page: PageInfo
|
|
1107
|
-
rollups: [IndexedRollupState!]
|
|
1108
|
-
}
|
|
1109
|
-
type ResponseListStakes {
|
|
1110
|
-
code: String
|
|
1111
|
-
page: PageInfo
|
|
1112
|
-
stakes: [IndexedStakeState!]
|
|
1113
|
-
}
|
|
1114
|
-
type ResponseListTokenFlows {
|
|
1115
|
-
code: String
|
|
1116
|
-
page: PageInfo
|
|
1117
|
-
data: [IndexedTokenFlow!]
|
|
1118
|
-
}
|
|
1119
|
-
type ResponseListTokens {
|
|
1120
|
-
code: String
|
|
1121
|
-
page: PageInfo
|
|
1122
|
-
tokens: [IndexedTokenState!]
|
|
1123
|
-
}
|
|
1124
|
-
type ResponseListTopAccounts {
|
|
1125
|
-
code: String
|
|
1126
|
-
page: PageInfo
|
|
1127
|
-
accounts: [IndexedAccountState!]
|
|
1128
|
-
}
|
|
1129
|
-
type ResponseListTransactions {
|
|
1130
|
-
code: String
|
|
1131
|
-
page: PageInfo
|
|
1132
|
-
transactions: [IndexedTransaction!]
|
|
1133
|
-
}
|
|
1134
|
-
type ResponseSearch {
|
|
1135
|
-
code: String
|
|
1136
|
-
page: PageInfo
|
|
1137
|
-
results: [SearchResult!]
|
|
1138
|
-
}
|
|
1139
|
-
type ResponseSendTx {
|
|
1140
|
-
code: String
|
|
1141
|
-
hash: String
|
|
1142
|
-
}
|
|
1143
|
-
type ResponseVerifyAccountRisk {
|
|
1144
|
-
code: String
|
|
1145
|
-
data: VerifyAccountRiskResult
|
|
1146
|
-
}
|
|
1147
|
-
type ResumeRollupTx {
|
|
1148
|
-
rollup: String
|
|
1149
|
-
data: Any
|
|
1150
|
-
}
|
|
1151
|
-
type ReturnStakeTx {
|
|
1152
|
-
address: String
|
|
1153
|
-
outputs: [TransactionInput!]
|
|
1154
|
-
message: String
|
|
1155
|
-
data: Any
|
|
1156
|
-
}
|
|
1157
|
-
type RevokeDelegateTx {
|
|
1158
|
-
address: String
|
|
1159
|
-
to: String
|
|
1160
|
-
typeUrls: [String!]
|
|
1161
|
-
data: Any
|
|
1162
|
-
}
|
|
1163
|
-
type RevokeStakeTx {
|
|
1164
|
-
address: String
|
|
1165
|
-
outputs: [TransactionInput!]
|
|
1166
|
-
data: Any
|
|
1167
|
-
}
|
|
1168
|
-
enum RoleType {
|
|
1169
|
-
ROLE_ACCOUNT
|
|
1170
|
-
ROLE_NODE
|
|
1171
|
-
ROLE_DEVICE
|
|
1172
|
-
ROLE_APPLICATION
|
|
1173
|
-
ROLE_SMART_CONTRACT
|
|
1174
|
-
ROLE_BOT
|
|
1175
|
-
ROLE_ASSET
|
|
1176
|
-
ROLE_STAKE
|
|
1177
|
-
ROLE_VALIDATOR
|
|
1178
|
-
ROLE_GROUP
|
|
1179
|
-
ROLE_TX
|
|
1180
|
-
ROLE_TETHER
|
|
1181
|
-
ROLE_SWAP
|
|
1182
|
-
ROLE_DELEGATION
|
|
1183
|
-
ROLE_VC
|
|
1184
|
-
ROLE_BLOCKLET
|
|
1185
|
-
ROLE_STORE
|
|
1186
|
-
ROLE_TOKEN
|
|
1187
|
-
ROLE_FACTORY
|
|
1188
|
-
ROLE_ROLLUP
|
|
1189
|
-
ROLE_STORAGE
|
|
1190
|
-
ROLE_ANY
|
|
1191
|
-
}
|
|
1192
|
-
type RollupBlock {
|
|
1193
|
-
hash: String
|
|
1194
|
-
height: Int
|
|
1195
|
-
merkleRoot: String
|
|
1196
|
-
previousHash: String
|
|
1197
|
-
txsHash: String
|
|
1198
|
-
txs: [String!]
|
|
1199
|
-
proposer: String
|
|
1200
|
-
signatures: [Multisig!]
|
|
1201
|
-
rollup: String
|
|
1202
|
-
mintedAmount: String
|
|
1203
|
-
burnedAmount: String
|
|
1204
|
-
rewardAmount: String
|
|
1205
|
-
minReward: String
|
|
1206
|
-
governance: Boolean
|
|
1207
|
-
context: StateContext
|
|
1208
|
-
data: Any
|
|
1209
|
-
}
|
|
1210
|
-
input RollupFilterInput {
|
|
1211
|
-
rollups: [String!]
|
|
1212
|
-
}
|
|
1213
|
-
type RollupState {
|
|
1214
|
-
address: String
|
|
1215
|
-
tokenAddress: String
|
|
1216
|
-
vaultAddress: String
|
|
1217
|
-
contractAddress: String
|
|
1218
|
-
seedValidators: [RollupValidator!]
|
|
1219
|
-
validators: [RollupValidator!]
|
|
1220
|
-
minStakeAmount: String
|
|
1221
|
-
maxStakeAmount: String
|
|
1222
|
-
minSignerCount: Int
|
|
1223
|
-
maxSignerCount: Int
|
|
1224
|
-
minBlockSize: Int
|
|
1225
|
-
maxBlockSize: Int
|
|
1226
|
-
minBlockInterval: Int
|
|
1227
|
-
minBlockConfirmation: Int
|
|
1228
|
-
issuer: String
|
|
1229
|
-
depositFeeRate: Int
|
|
1230
|
-
withdrawFeeRate: Int
|
|
1231
|
-
proposerFeeShare: Int
|
|
1232
|
-
publisherFeeShare: Int
|
|
1233
|
-
minDepositAmount: String
|
|
1234
|
-
minWithdrawAmount: String
|
|
1235
|
-
blockHeight: Int
|
|
1236
|
-
blockHash: String
|
|
1237
|
-
tokenInfo: IndexedTokenInput
|
|
1238
|
-
totalDepositAmount: String
|
|
1239
|
-
totalWithdrawAmount: String
|
|
1240
|
-
maxDepositAmount: String
|
|
1241
|
-
maxWithdrawAmount: String
|
|
1242
|
-
minDepositFee: String
|
|
1243
|
-
maxDepositFee: String
|
|
1244
|
-
minWithdrawFee: String
|
|
1245
|
-
maxWithdrawFee: String
|
|
1246
|
-
paused: Boolean
|
|
1247
|
-
foreignToken: ForeignToken
|
|
1248
|
-
leaveWaitingPeriod: Int
|
|
1249
|
-
publishWaitingPeriod: Int
|
|
1250
|
-
publishSlashRate: Int
|
|
1251
|
-
migrateHistory: [String!]
|
|
1252
|
-
closed: Boolean
|
|
1253
|
-
vaultHistory: [String!]
|
|
1254
|
-
context: StateContext
|
|
1255
|
-
data: Any
|
|
1256
|
-
}
|
|
1257
|
-
type RollupValidator {
|
|
1258
|
-
pk: String
|
|
1259
|
-
address: String
|
|
1260
|
-
endpoint: String
|
|
1261
|
-
}
|
|
1262
|
-
type SearchResult {
|
|
1263
|
-
type: String
|
|
1264
|
-
id: String
|
|
1265
|
-
}
|
|
1266
|
-
type SlashStakeTx {
|
|
1267
|
-
address: String
|
|
1268
|
-
outputs: [TransactionInput!]
|
|
1269
|
-
message: String
|
|
1270
|
-
data: Any
|
|
1271
|
-
}
|
|
1272
|
-
input StakeFilterInput {
|
|
1273
|
-
stakes: [String!]
|
|
1274
|
-
}
|
|
1275
|
-
type StakeState {
|
|
1276
|
-
address: String
|
|
1277
|
-
sender: String
|
|
1278
|
-
receiver: String
|
|
1279
|
-
tokens: [IndexedTokenInput!]
|
|
1280
|
-
assets: [String!]
|
|
1281
|
-
revocable: Boolean
|
|
1282
|
-
message: String
|
|
1283
|
-
revokeWaitingPeriod: Int
|
|
1284
|
-
revokedTokens: [IndexedTokenInput!]
|
|
1285
|
-
revokedAssets: [String!]
|
|
1286
|
-
slashers: [String!]
|
|
1287
|
-
nonce: String
|
|
1288
|
-
context: StateContext
|
|
1289
|
-
data: Any
|
|
1290
|
-
}
|
|
1291
|
-
type StakeTx {
|
|
1292
|
-
address: String
|
|
1293
|
-
receiver: String
|
|
1294
|
-
inputs: [TransactionInput!]
|
|
1295
|
-
locked: Boolean
|
|
1296
|
-
message: String
|
|
1297
|
-
revokeWaitingPeriod: Int
|
|
1298
|
-
slashers: [String!]
|
|
1299
|
-
nonce: String
|
|
1300
|
-
data: Any
|
|
1301
|
-
}
|
|
1302
|
-
enum StatusCode {
|
|
1303
|
-
OK
|
|
1304
|
-
INVALID_NONCE
|
|
1305
|
-
INVALID_SIGNATURE
|
|
1306
|
-
INVALID_SENDER_STATE
|
|
1307
|
-
INVALID_RECEIVER_STATE
|
|
1308
|
-
INSUFFICIENT_DATA
|
|
1309
|
-
INSUFFICIENT_FUND
|
|
1310
|
-
INVALID_OWNER
|
|
1311
|
-
INVALID_TX
|
|
1312
|
-
UNSUPPORTED_TX
|
|
1313
|
-
EXPIRED_TX
|
|
1314
|
-
TOO_MANY_TXS
|
|
1315
|
-
INVALID_LOCK_STATUS
|
|
1316
|
-
INVALID_REQUEST
|
|
1317
|
-
INVALID_MONIKER
|
|
1318
|
-
INVALID_PASSPHRASE
|
|
1319
|
-
INVALID_MULTISIG
|
|
1320
|
-
INVALID_WALLET
|
|
1321
|
-
INVALID_CHAIN_ID
|
|
1322
|
-
CONSENSUS_RPC_ERROR
|
|
1323
|
-
STORAGE_RPC_ERROR
|
|
1324
|
-
NOENT
|
|
1325
|
-
ACCOUNT_MIGRATED
|
|
1326
|
-
RPC_CONNECTION_ERROR
|
|
1327
|
-
UNSUPPORTED_STAKE
|
|
1328
|
-
INSUFFICIENT_STAKE
|
|
1329
|
-
INVALID_STAKE_STATE
|
|
1330
|
-
EXPIRED_WALLET_TOKEN
|
|
1331
|
-
BANNED_UNSTAKE
|
|
1332
|
-
INVALID_ASSET
|
|
1333
|
-
INVALID_TX_SIZE
|
|
1334
|
-
INVALID_SIGNER_STATE
|
|
1335
|
-
INVALID_FORGE_STATE
|
|
1336
|
-
EXPIRED_ASSET
|
|
1337
|
-
UNTRANSFERRABLE_ASSET
|
|
1338
|
-
READONLY_ASSET
|
|
1339
|
-
CONSUMED_ASSET
|
|
1340
|
-
INVALID_DEPOSIT_VALUE
|
|
1341
|
-
EXCEED_DEPOSIT_CAP
|
|
1342
|
-
INVALID_DEPOSIT_TARGET
|
|
1343
|
-
INVALID_DEPOSITOR
|
|
1344
|
-
INVALID_WITHDRAWER
|
|
1345
|
-
INVALID_EXPIRY_DATE
|
|
1346
|
-
INVALID_CUSTODIAN
|
|
1347
|
-
INSUFFICIENT_GAS
|
|
1348
|
-
INVALID_SWAP
|
|
1349
|
-
INVALID_HASHKEY
|
|
1350
|
-
INVALID_DELEGATION
|
|
1351
|
-
INSUFFICIENT_DELEGATION
|
|
1352
|
-
INVALID_DELEGATION_RULE
|
|
1353
|
-
INVALID_DELEGATION_TYPE_URL
|
|
1354
|
-
SENDER_NOT_AUTHORIZED
|
|
1355
|
-
PROTOCOL_NOT_RUNNING
|
|
1356
|
-
PROTOCOL_NOT_PAUSED
|
|
1357
|
-
PROTOCOL_NOT_ACTIVATED
|
|
1358
|
-
INVALID_DEACTIVATION
|
|
1359
|
-
SENDER_WITHDRAW_ITEMS_FULL
|
|
1360
|
-
WITHDRAW_ITEM_MISSING
|
|
1361
|
-
INVALID_WITHDRAW_TX
|
|
1362
|
-
INVALID_CHAIN_TYPE
|
|
1363
|
-
INVALID_TIME
|
|
1364
|
-
INVALID_SUBSCRIBE
|
|
1365
|
-
INVALID_DID_TYPE
|
|
1366
|
-
INVALID_CANDIDATE_STATE
|
|
1367
|
-
VALIDATOR_NOT_FOUND
|
|
1368
|
-
VALIDATOR_NOT_CHANGED
|
|
1369
|
-
INVALID_FACTORY_STATE
|
|
1370
|
-
INVALID_FACTORY_PROPS
|
|
1371
|
-
INVALID_FACTORY_INPUT
|
|
1372
|
-
INVALID_TOKEN
|
|
1373
|
-
INVALID_ROLLUP
|
|
1374
|
-
INVALID_BLOCK
|
|
1375
|
-
FORBIDDEN
|
|
1376
|
-
INTERNAL
|
|
1377
|
-
TIMEOUT
|
|
1378
|
-
}
|
|
1379
|
-
input TimeFilterInput {
|
|
1380
|
-
startDateTime: String
|
|
1381
|
-
endDateTime: String
|
|
1382
|
-
field: String
|
|
1383
|
-
}
|
|
1384
|
-
type TokenDistribution {
|
|
1385
|
-
tokenAddress: String
|
|
1386
|
-
txTime: String
|
|
1387
|
-
account: String
|
|
1388
|
-
gas: String
|
|
1389
|
-
fee: String
|
|
1390
|
-
slashedVault: String
|
|
1391
|
-
stake: String
|
|
1392
|
-
revokedStake: String
|
|
1393
|
-
gasStake: String
|
|
1394
|
-
}
|
|
1395
|
-
input TokenFilterInput {
|
|
1396
|
-
tokens: [String!]
|
|
1397
|
-
}
|
|
1398
|
-
enum TokenFlowDirection {
|
|
1399
|
-
IN
|
|
1400
|
-
OUT
|
|
1401
|
-
}
|
|
1402
|
-
type TokenInfo {
|
|
1403
|
-
address: String
|
|
1404
|
-
balance: String
|
|
1405
|
-
decimal: Int
|
|
1406
|
-
unit: String
|
|
1407
|
-
symbol: String
|
|
1408
|
-
}
|
|
1409
|
-
type TokenInput {
|
|
1410
|
-
address: String
|
|
1411
|
-
value: String
|
|
1412
|
-
}
|
|
1413
|
-
type TokenLimit {
|
|
1414
|
-
address: String
|
|
1415
|
-
to: [String!]
|
|
1416
|
-
txCount: Int
|
|
1417
|
-
txAllowance: String
|
|
1418
|
-
totalAllowance: String
|
|
1419
|
-
validUntil: Int
|
|
1420
|
-
rate: RateLimit
|
|
1421
|
-
txSent: Int
|
|
1422
|
-
spentAllowance: String
|
|
1423
|
-
lastTx: Int
|
|
1424
|
-
decimal: Int
|
|
1425
|
-
symbol: String
|
|
1426
|
-
}
|
|
1427
|
-
type TokenState {
|
|
1428
|
-
address: String
|
|
1429
|
-
issuer: String
|
|
1430
|
-
name: String
|
|
1431
|
-
description: String
|
|
1432
|
-
symbol: String
|
|
1433
|
-
unit: String
|
|
1434
|
-
decimal: Int
|
|
1435
|
-
icon: String
|
|
1436
|
-
totalSupply: String
|
|
1437
|
-
foreignToken: ForeignToken
|
|
1438
|
-
context: StateContext
|
|
1439
|
-
data: Any
|
|
1440
|
-
}
|
|
1441
|
-
type TokenSymbol {
|
|
1442
|
-
address: String
|
|
1443
|
-
symbol: String
|
|
1444
|
-
decimal: Int
|
|
1445
|
-
unit: String
|
|
1446
|
-
}
|
|
1447
|
-
type TransactionConfig {
|
|
1448
|
-
maxAssetSize: Int
|
|
1449
|
-
maxListSize: Int
|
|
1450
|
-
maxMultisig: Int
|
|
1451
|
-
delegate: DelegateConfig
|
|
1452
|
-
txFee: [TxFeeConfig!]
|
|
1453
|
-
txGas: TxGasConfig
|
|
1454
|
-
}
|
|
1455
|
-
type TransactionInfo {
|
|
1456
|
-
tx: Transaction
|
|
1457
|
-
height: String
|
|
1458
|
-
index: Int
|
|
1459
|
-
hash: String
|
|
1460
|
-
tags: [KVPair!]
|
|
1461
|
-
code: String
|
|
1462
|
-
time: String
|
|
1463
|
-
receipts: [TransactionReceipt!]
|
|
1464
|
-
sender: String
|
|
1465
|
-
receiver: String
|
|
1466
|
-
tokenSymbols: [TokenSymbol!]
|
|
1467
|
-
}
|
|
1468
|
-
type TransactionInput {
|
|
1469
|
-
owner: String
|
|
1470
|
-
tokens: [TokenInput!]
|
|
1471
|
-
assets: [String!]
|
|
1472
|
-
}
|
|
1473
|
-
type TransactionReceipt {
|
|
1474
|
-
address: String
|
|
1475
|
-
changes: [ReceiptChange!]
|
|
1476
|
-
}
|
|
1477
|
-
type TransferTx {
|
|
1478
|
-
to: String
|
|
1479
|
-
value: String
|
|
1480
|
-
assets: [String!]
|
|
1481
|
-
data: Any
|
|
1482
|
-
}
|
|
1483
|
-
type TransferV2Tx {
|
|
1484
|
-
to: String
|
|
1485
|
-
value: String
|
|
1486
|
-
assets: [String!]
|
|
1487
|
-
tokens: [TokenInput!]
|
|
1488
|
-
data: Any
|
|
1489
|
-
}
|
|
1490
|
-
type TransferV3Tx {
|
|
1491
|
-
inputs: [TransactionInput!]
|
|
1492
|
-
outputs: [TransactionInput!]
|
|
1493
|
-
data: Any
|
|
1494
|
-
}
|
|
1495
|
-
type TxFeeConfig {
|
|
1496
|
-
typeUrl: String
|
|
1497
|
-
fee: String
|
|
1498
|
-
}
|
|
1499
|
-
input TxFilterInput {
|
|
1500
|
-
txs: [String!]
|
|
1501
|
-
}
|
|
1502
|
-
type TxGasConfig {
|
|
1503
|
-
price: Int
|
|
1504
|
-
createState: Int
|
|
1505
|
-
updateState: Int
|
|
1506
|
-
dataStorage: Int
|
|
1507
|
-
minStake: String
|
|
1508
|
-
maxStake: String
|
|
1509
|
-
stakeLockPeriod: Int
|
|
1510
|
-
}
|
|
1511
|
-
input TypeFilterInput {
|
|
1512
|
-
types: [String!]
|
|
1513
|
-
}
|
|
1514
|
-
type UnconfirmedTxs {
|
|
1515
|
-
nTxs: Int
|
|
1516
|
-
txs: [Transaction!]
|
|
1517
|
-
}
|
|
1518
|
-
type UpdateAssetTx {
|
|
1519
|
-
address: String
|
|
1520
|
-
moniker: String
|
|
1521
|
-
consumed: Boolean
|
|
1522
|
-
data: Any
|
|
1523
|
-
}
|
|
1524
|
-
type UpdateRollupTx {
|
|
1525
|
-
minStakeAmount: String
|
|
1526
|
-
maxStakeAmount: String
|
|
1527
|
-
minSignerCount: Int
|
|
1528
|
-
maxSignerCount: Int
|
|
1529
|
-
minBlockSize: Int
|
|
1530
|
-
maxBlockSize: Int
|
|
1531
|
-
minBlockInterval: Int
|
|
1532
|
-
minBlockConfirmation: Int
|
|
1533
|
-
depositFeeRate: Int
|
|
1534
|
-
withdrawFeeRate: Int
|
|
1535
|
-
proposerFeeShare: Int
|
|
1536
|
-
minDepositAmount: String
|
|
1537
|
-
minWithdrawAmount: String
|
|
1538
|
-
maxDepositAmount: String
|
|
1539
|
-
maxWithdrawAmount: String
|
|
1540
|
-
minDepositFee: String
|
|
1541
|
-
maxDepositFee: String
|
|
1542
|
-
minWithdrawFee: String
|
|
1543
|
-
maxWithdrawFee: String
|
|
1544
|
-
publisherFeeShare: Int
|
|
1545
|
-
leaveWaitingPeriod: Int
|
|
1546
|
-
publishWaitingPeriod: Int
|
|
1547
|
-
publishSlashRate: Int
|
|
1548
|
-
rollup: String
|
|
1549
|
-
data: Any
|
|
1550
|
-
}
|
|
1551
|
-
enum UpgradeAction {
|
|
1552
|
-
VERIFY
|
|
1553
|
-
BACKUP
|
|
1554
|
-
REPLACE
|
|
1555
|
-
RESTART_APP
|
|
1556
|
-
RESTART_DFS
|
|
1557
|
-
RESTART_CONSENSUS
|
|
1558
|
-
RESTART_P2P
|
|
1559
|
-
RESTART_FORGE
|
|
1560
|
-
ROLLBACK_IF_FAIL
|
|
1561
|
-
RESTART_ALL_IF_FAIL
|
|
1562
|
-
CRASH_IF_FAIL
|
|
1563
|
-
DROP_ADDRESS_BOOK
|
|
1564
|
-
}
|
|
1565
|
-
type UpgradeInfo {
|
|
1566
|
-
height: String
|
|
1567
|
-
version: String
|
|
1568
|
-
}
|
|
1569
|
-
type UpgradeNodeTx {
|
|
1570
|
-
height: Int
|
|
1571
|
-
version: String
|
|
1572
|
-
override: Boolean
|
|
1573
|
-
}
|
|
1574
|
-
type UpgradeTask {
|
|
1575
|
-
type: UpgradeType
|
|
1576
|
-
dataHash: String
|
|
1577
|
-
actions: [UpgradeAction!]
|
|
1578
|
-
}
|
|
1579
|
-
type UpgradeTasks {
|
|
1580
|
-
item: [UpgradeTask!]
|
|
1581
|
-
}
|
|
1582
|
-
enum UpgradeType {
|
|
1583
|
-
CONFIG_APP
|
|
1584
|
-
CONFIG_FORGE
|
|
1585
|
-
CONFIG_DFS
|
|
1586
|
-
CONFIG_CONSENSUS
|
|
1587
|
-
CONFIG_P2P
|
|
1588
|
-
EXE_APP
|
|
1589
|
-
EXE_FORGE
|
|
1590
|
-
EXE_DFS
|
|
1591
|
-
EXE_CONSENSUS
|
|
1592
|
-
EXE_P2P
|
|
1593
|
-
}
|
|
1594
|
-
type Validator {
|
|
1595
|
-
address: String
|
|
1596
|
-
power: String
|
|
1597
|
-
}
|
|
1598
|
-
input ValidatorFilterInput {
|
|
1599
|
-
validators: [String!]
|
|
1600
|
-
}
|
|
1601
|
-
type ValidatorInfo {
|
|
1602
|
-
address: String
|
|
1603
|
-
pubKey: PubKey
|
|
1604
|
-
votingPower: String
|
|
1605
|
-
proposerPriority: String
|
|
1606
|
-
name: String
|
|
1607
|
-
geoInfo: GeoInfo
|
|
1608
|
-
}
|
|
1609
|
-
type ValidatorsInfo {
|
|
1610
|
-
blockHeight: String
|
|
1611
|
-
validators: [ValidatorInfo!]
|
|
1612
|
-
}
|
|
1613
|
-
enum Validity {
|
|
1614
|
-
BOTH
|
|
1615
|
-
VALID
|
|
1616
|
-
INVALID
|
|
1617
|
-
}
|
|
1618
|
-
input ValidityFilterInput {
|
|
1619
|
-
validity: Validity
|
|
1620
|
-
}
|
|
1621
|
-
type VariableInput {
|
|
1622
|
-
name: String
|
|
1623
|
-
value: String
|
|
1624
|
-
description: String
|
|
1625
|
-
required: Boolean
|
|
1626
|
-
}
|
|
1627
|
-
type VaultConfig {
|
|
1628
|
-
slashedStake: String
|
|
1629
|
-
txFee: String
|
|
1630
|
-
txGas: [String!]
|
|
1631
|
-
}
|
|
1632
|
-
type VerifyAccountRiskResult {
|
|
1633
|
-
isRisky: Boolean
|
|
1634
|
-
reason: String
|
|
1635
|
-
data: VerifyAccountRiskResult_BalanceRisky
|
|
1636
|
-
}
|
|
1637
|
-
type VerifyAccountRiskResult_BalanceRisky {
|
|
1638
|
-
address: String
|
|
1639
|
-
balance: String
|
|
1640
|
-
transferIn: String
|
|
1641
|
-
transferOut: String
|
|
1642
|
-
accountCount: Int
|
|
1643
|
-
txCount: Int
|
|
1644
|
-
}
|
|
1645
|
-
type Version {
|
|
1646
|
-
block: Int
|
|
1647
|
-
app: Int
|
|
1648
|
-
}
|
|
1649
|
-
input WalletInfoInput {
|
|
1650
|
-
type: WalletTypeInput
|
|
1651
|
-
sk: String
|
|
1652
|
-
pk: String
|
|
1653
|
-
address: String
|
|
1654
|
-
}
|
|
1655
|
-
type WalletType {
|
|
1656
|
-
pk: KeyType
|
|
1657
|
-
hash: HashType
|
|
1658
|
-
address: EncodingType
|
|
1659
|
-
role: RoleType
|
|
1660
|
-
}
|
|
1661
|
-
input WalletTypeInput {
|
|
1662
|
-
pk: KeyType
|
|
1663
|
-
hash: HashType
|
|
1664
|
-
address: EncodingType
|
|
1665
|
-
role: RoleType
|
|
1666
|
-
}
|
|
1667
|
-
type WithdrawTokenV2Tx {
|
|
1668
|
-
token: TokenInput
|
|
1669
|
-
to: String
|
|
1670
|
-
rollup: String
|
|
1671
|
-
proposer: String
|
|
1672
|
-
maxFee: String
|
|
1673
|
-
actualFee: String
|
|
1674
|
-
data: Any
|
|
1675
|
-
}
|
|
1676
|
-
schema {
|
|
1677
|
-
query: RootQueryType
|
|
1678
|
-
mutation: RootMutationType
|
|
1679
|
-
}
|
|
1680
|
-
|
|
1681
|
-
scalar Json
|
|
1682
|
-
|
|
1683
|
-
type Any {
|
|
1684
|
-
typeUrl: String
|
|
1685
|
-
value: String
|
|
1686
|
-
}
|
|
1687
|
-
|
|
1688
|
-
type Transaction {
|
|
1689
|
-
from: String!
|
|
1690
|
-
delegator: String
|
|
1691
|
-
nonce: String!
|
|
1692
|
-
chainId: String!
|
|
1693
|
-
pk: String
|
|
1694
|
-
signature: String
|
|
1695
|
-
signatures: [Multisig]
|
|
1696
|
-
itxJson: Json!
|
|
1697
|
-
sender: String
|
|
1698
|
-
receiver: String
|
|
1699
|
-
serviceFee: String
|
|
1700
|
-
gasFee: String
|
|
1701
|
-
gasPaid: String
|
|
1702
|
-
}
|
|
1703
|
-
type StateContext {
|
|
1704
|
-
genesisTx: TransactionInfo
|
|
1705
|
-
renaissanceTx: TransactionInfo
|
|
1706
|
-
genesisTime: String
|
|
1707
|
-
renaissanceTime: String
|
|
1708
|
-
}
|
|
1709
|
-
|
|
1710
|
-
type RootMutationType {
|
|
1711
|
-
sendTx(commit: Boolean, token: String, tx: String, wallet: String, extra: String): ResponseSendTx
|
|
1712
|
-
}
|
|
1713
|
-
|
|
1714
|
-
type RootQueryType {
|
|
1715
|
-
getAccountState(address: String, height: String, keys: [String], traceMigration: Boolean): ResponseGetAccountState
|
|
1716
|
-
getAssetState(address: String, height: String, keys: [String]): ResponseGetAssetState
|
|
1717
|
-
getFactoryState(address: String): ResponseGetFactoryState
|
|
1718
|
-
getDelegateState(address: String, height: String, keys: [String]): ResponseGetDelegateState
|
|
1719
|
-
getTokenState(address: String): ResponseGetTokenState
|
|
1720
|
-
getEvidenceState(hash: String): ResponseGetEvidenceState
|
|
1721
|
-
getForgeState(height: String, keys: [String]): ResponseGetForgeState
|
|
1722
|
-
|
|
1723
|
-
getTx(hash: String): ResponseGetTx
|
|
1724
|
-
getBlock(height: String): ResponseGetBlock
|
|
1725
|
-
getBlocks(emptyExcluded: Boolean, heightFilter: RangeFilterInput, paging: PageInput): ResponseGetBlocks
|
|
1726
|
-
getUnconfirmedTxs(paging: PageInput): ResponseGetUnconfirmedTxs
|
|
1727
|
-
|
|
1728
|
-
getChainInfo: ResponseGetChainInfo
|
|
1729
|
-
getConfig(parsed: Boolean): ResponseGetConfig
|
|
1730
|
-
getNetInfo: ResponseGetNetInfo
|
|
1731
|
-
getNodeInfo: ResponseGetNodeInfo
|
|
1732
|
-
getValidatorsInfo: ResponseGetValidatorsInfo
|
|
1733
|
-
getForgeStats: ResponseGetForgeStats
|
|
1734
|
-
|
|
1735
|
-
listAssetTransactions(address: String, paging: PageInput): ResponseListAssetTransactions
|
|
1736
|
-
listAssets(
|
|
1737
|
-
ownerAddress: String
|
|
1738
|
-
paging: PageInput
|
|
1739
|
-
factoryAddress: String
|
|
1740
|
-
timeFilter: TimeFilterInput
|
|
1741
|
-
): ResponseListAssets
|
|
1742
|
-
listBlocks(
|
|
1743
|
-
heightFilter: RangeFilterInput
|
|
1744
|
-
numInvalidTxsFilter: RangeFilterInput
|
|
1745
|
-
numTxsFilter: RangeFilterInput
|
|
1746
|
-
paging: PageInput
|
|
1747
|
-
proposer: String
|
|
1748
|
-
timeFilter: TimeFilterInput
|
|
1749
|
-
): ResponseListBlocks
|
|
1750
|
-
listTopAccounts(paging: PageInput, tokenAddress: String, timeFilter: TimeFilterInput): ResponseListTopAccounts
|
|
1751
|
-
listTransactions(
|
|
1752
|
-
addressFilter: AddressFilterInput
|
|
1753
|
-
paging: PageInput
|
|
1754
|
-
timeFilter: TimeFilterInput
|
|
1755
|
-
typeFilter: TypeFilterInput
|
|
1756
|
-
validityFilter: ValidityFilterInput
|
|
1757
|
-
factoryFilter: FactoryFilterInput
|
|
1758
|
-
tokenFilter: TokenFilterInput
|
|
1759
|
-
assetFilter: AssetFilterInput
|
|
1760
|
-
accountFilter: AccountFilterInput
|
|
1761
|
-
txFilter: TxFilterInput
|
|
1762
|
-
rollupFilter: RollupFilterInput
|
|
1763
|
-
stakeFilter: StakeFilterInput
|
|
1764
|
-
delegationFilter: DelegationFilterInput
|
|
1765
|
-
): ResponseListTransactions
|
|
1766
|
-
|
|
1767
|
-
# since 1.7.0
|
|
1768
|
-
listTokens(issuerAddress: String, paging: PageInput, timeFilter: TimeFilterInput): ResponseListTokens
|
|
1769
|
-
listFactories(
|
|
1770
|
-
ownerAddress: String
|
|
1771
|
-
addressList: [String]
|
|
1772
|
-
paging: PageInput
|
|
1773
|
-
timeFilter: TimeFilterInput
|
|
1774
|
-
): ResponseListFactories
|
|
1775
|
-
|
|
1776
|
-
# since v1.8.3
|
|
1777
|
-
getAccountTokens(address: String, token: String): ResponseGetAccountTokens
|
|
1778
|
-
|
|
1779
|
-
# since v1.13.x
|
|
1780
|
-
getStakeState(address: String, height: String, keys: [String]): ResponseGetStakeState
|
|
1781
|
-
listStakes(
|
|
1782
|
-
addressFilter: AddressFilterInput
|
|
1783
|
-
assetFilter: AssetFilterInput
|
|
1784
|
-
timeFilter: TimeFilterInput
|
|
1785
|
-
paging: PageInput
|
|
1786
|
-
): ResponseListStakes
|
|
1787
|
-
|
|
1788
|
-
getRollupState(address: String, height: String, keys: [String]): ResponseGetRollupState
|
|
1789
|
-
listRollups(
|
|
1790
|
-
paging: PageInput
|
|
1791
|
-
tokenAddress: String
|
|
1792
|
-
erc20TokenAddress: String
|
|
1793
|
-
foreignTokenAddress: String
|
|
1794
|
-
timeFilter: TimeFilterInput
|
|
1795
|
-
): ResponseListRollups
|
|
1796
|
-
getRollupBlock(hash: String, height: String, rollupAddress: String): ResponseGetRollupBlock
|
|
1797
|
-
listRollupBlocks(
|
|
1798
|
-
paging: PageInput
|
|
1799
|
-
rollupAddress: String
|
|
1800
|
-
tokenAddress: String
|
|
1801
|
-
proposer: String
|
|
1802
|
-
validatorFilter: ValidatorFilterInput
|
|
1803
|
-
txFilter: TxFilterInput
|
|
1804
|
-
timeFilter: TimeFilterInput
|
|
1805
|
-
): ResponseListRollupBlocks
|
|
1806
|
-
listRollupValidators(paging: PageInput, rollupAddress: String): ResponseListRollupValidators
|
|
1807
|
-
|
|
1808
|
-
listDelegations(from: String, to: String, paging: PageInput, timeFilter: TimeFilterInput): ResponseListDelegations
|
|
1809
|
-
|
|
1810
|
-
# since v1.13.17
|
|
1811
|
-
search(paging: PageInput, keyword: String): ResponseSearch
|
|
1812
|
-
|
|
1813
|
-
# since v1.18.9
|
|
1814
|
-
estimateGas(typeUrl: String, tx: String): ResponseEstimateGas
|
|
1815
|
-
|
|
1816
|
-
listTokenFlows(
|
|
1817
|
-
accountAddress: String
|
|
1818
|
-
tokenAddress: String
|
|
1819
|
-
paging: PageInput
|
|
1820
|
-
depth: Int
|
|
1821
|
-
direction: TokenFlowDirection
|
|
1822
|
-
): ResponseListTokenFlows
|
|
1823
|
-
|
|
1824
|
-
verifyAccountRisk(accountAddress: String, tokenAddress: String): ResponseVerifyAccountRisk
|
|
1825
|
-
|
|
1826
|
-
getTokenDistribution(tokenAddress: String): ResponseGetTokenDistribution
|
|
1827
|
-
}
|