@pezkuwi/types-augment 16.5.23 → 16.5.25
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/cjs/lookup/assetHubDicle.js +58 -58
- package/cjs/lookup/assetHubPezkuwi.js +167 -167
- package/cjs/lookup/bizinikiwi.d.ts +283 -0
- package/cjs/lookup/bizinikiwi.js +996 -713
- package/cjs/lookup/dicle.js +45 -45
- package/cjs/lookup/pezkuwi.js +85 -85
- package/cjs/lookup/types-assetHubDicle.d.ts +65 -59
- package/cjs/lookup/types-assetHubPezkuwi.d.ts +174 -168
- package/cjs/lookup/types-bizinikiwi.d.ts +1238 -715
- package/cjs/lookup/types-dicle.d.ts +53 -47
- package/cjs/lookup/types-pezkuwi.d.ts +92 -86
- package/cjs/packageInfo.js +1 -1
- package/cjs/registry/bizinikiwi.d.ts +5 -1
- package/lookup/assetHubDicle.js +58 -58
- package/lookup/assetHubPezkuwi.js +167 -167
- package/lookup/bizinikiwi.d.ts +283 -0
- package/lookup/bizinikiwi.js +996 -713
- package/lookup/dicle.js +45 -45
- package/lookup/pezkuwi.js +85 -85
- package/lookup/types-assetHubDicle.d.ts +65 -59
- package/lookup/types-assetHubPezkuwi.d.ts +174 -168
- package/lookup/types-bizinikiwi.d.ts +1238 -715
- package/lookup/types-dicle.d.ts +53 -47
- package/lookup/types-pezkuwi.d.ts +92 -86
- package/package.json +3 -3
- package/packageInfo.js +1 -1
- package/registry/bizinikiwi.d.ts +5 -1
|
@@ -3,9 +3,11 @@ import type { Data } from '@pezkuwi/types';
|
|
|
3
3
|
import type { BTreeMap, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, i32, i64, u128, u16, u32, u64, u8 } from '@pezkuwi/types-codec';
|
|
4
4
|
import type { ITuple } from '@pezkuwi/types-codec/types';
|
|
5
5
|
import type { Vote } from '@pezkuwi/types/interfaces/elections';
|
|
6
|
-
import type {
|
|
7
|
-
import type { AccountId32, H160, H256, MultiAddress, PerU16, Perbill, Percent, Permill, Perquintill, RuntimeCall, RuntimeEvent } from '@pezkuwi/types/interfaces/runtime';
|
|
6
|
+
import type { AccountId32, H160, H256, MultiAddress, RuntimeCall, RuntimeEvent } from '@pezkuwi/types/interfaces/runtime';
|
|
8
7
|
declare module '@pezkuwi/types/lookup' {
|
|
8
|
+
/** @name PezspCoreCryptoAccountId32 (0) */
|
|
9
|
+
interface PezspCoreCryptoAccountId32 extends AccountId32 {
|
|
10
|
+
}
|
|
9
11
|
/** @name PezframeSystemAccountInfo (3) */
|
|
10
12
|
interface PezframeSystemAccountInfo extends Struct {
|
|
11
13
|
readonly nonce: u32;
|
|
@@ -69,15 +71,15 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
69
71
|
readonly isCodeUpdated: boolean;
|
|
70
72
|
readonly isNewAccount: boolean;
|
|
71
73
|
readonly asNewAccount: {
|
|
72
|
-
readonly account:
|
|
74
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
73
75
|
} & Struct;
|
|
74
76
|
readonly isKilledAccount: boolean;
|
|
75
77
|
readonly asKilledAccount: {
|
|
76
|
-
readonly account:
|
|
78
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
77
79
|
} & Struct;
|
|
78
80
|
readonly isRemarked: boolean;
|
|
79
81
|
readonly asRemarked: {
|
|
80
|
-
readonly sender:
|
|
82
|
+
readonly sender: PezspCoreCryptoAccountId32;
|
|
81
83
|
readonly hash_: H256;
|
|
82
84
|
} & Struct;
|
|
83
85
|
readonly isUpgradeAuthorized: boolean;
|
|
@@ -214,7 +216,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
214
216
|
interface PezpalletIndicesEvent extends Enum {
|
|
215
217
|
readonly isIndexAssigned: boolean;
|
|
216
218
|
readonly asIndexAssigned: {
|
|
217
|
-
readonly who:
|
|
219
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
218
220
|
readonly index: u32;
|
|
219
221
|
} & Struct;
|
|
220
222
|
readonly isIndexFreed: boolean;
|
|
@@ -224,11 +226,11 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
224
226
|
readonly isIndexFrozen: boolean;
|
|
225
227
|
readonly asIndexFrozen: {
|
|
226
228
|
readonly index: u32;
|
|
227
|
-
readonly who:
|
|
229
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
228
230
|
} & Struct;
|
|
229
231
|
readonly isDepositPoked: boolean;
|
|
230
232
|
readonly asDepositPoked: {
|
|
231
|
-
readonly who:
|
|
233
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
232
234
|
readonly index: u32;
|
|
233
235
|
readonly oldDeposit: u128;
|
|
234
236
|
readonly newDeposit: u128;
|
|
@@ -239,80 +241,80 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
239
241
|
interface PezpalletBalancesEvent extends Enum {
|
|
240
242
|
readonly isEndowed: boolean;
|
|
241
243
|
readonly asEndowed: {
|
|
242
|
-
readonly account:
|
|
244
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
243
245
|
readonly freeBalance: u128;
|
|
244
246
|
} & Struct;
|
|
245
247
|
readonly isDustLost: boolean;
|
|
246
248
|
readonly asDustLost: {
|
|
247
|
-
readonly account:
|
|
249
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
248
250
|
readonly amount: u128;
|
|
249
251
|
} & Struct;
|
|
250
252
|
readonly isTransfer: boolean;
|
|
251
253
|
readonly asTransfer: {
|
|
252
|
-
readonly from:
|
|
253
|
-
readonly to:
|
|
254
|
+
readonly from: PezspCoreCryptoAccountId32;
|
|
255
|
+
readonly to: PezspCoreCryptoAccountId32;
|
|
254
256
|
readonly amount: u128;
|
|
255
257
|
} & Struct;
|
|
256
258
|
readonly isBalanceSet: boolean;
|
|
257
259
|
readonly asBalanceSet: {
|
|
258
|
-
readonly who:
|
|
260
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
259
261
|
readonly free: u128;
|
|
260
262
|
} & Struct;
|
|
261
263
|
readonly isReserved: boolean;
|
|
262
264
|
readonly asReserved: {
|
|
263
|
-
readonly who:
|
|
265
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
264
266
|
readonly amount: u128;
|
|
265
267
|
} & Struct;
|
|
266
268
|
readonly isUnreserved: boolean;
|
|
267
269
|
readonly asUnreserved: {
|
|
268
|
-
readonly who:
|
|
270
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
269
271
|
readonly amount: u128;
|
|
270
272
|
} & Struct;
|
|
271
273
|
readonly isReserveRepatriated: boolean;
|
|
272
274
|
readonly asReserveRepatriated: {
|
|
273
|
-
readonly from:
|
|
274
|
-
readonly to:
|
|
275
|
+
readonly from: PezspCoreCryptoAccountId32;
|
|
276
|
+
readonly to: PezspCoreCryptoAccountId32;
|
|
275
277
|
readonly amount: u128;
|
|
276
278
|
readonly destinationStatus: PezframeSupportTokensMiscBalanceStatus;
|
|
277
279
|
} & Struct;
|
|
278
280
|
readonly isDeposit: boolean;
|
|
279
281
|
readonly asDeposit: {
|
|
280
|
-
readonly who:
|
|
282
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
281
283
|
readonly amount: u128;
|
|
282
284
|
} & Struct;
|
|
283
285
|
readonly isWithdraw: boolean;
|
|
284
286
|
readonly asWithdraw: {
|
|
285
|
-
readonly who:
|
|
287
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
286
288
|
readonly amount: u128;
|
|
287
289
|
} & Struct;
|
|
288
290
|
readonly isSlashed: boolean;
|
|
289
291
|
readonly asSlashed: {
|
|
290
|
-
readonly who:
|
|
292
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
291
293
|
readonly amount: u128;
|
|
292
294
|
} & Struct;
|
|
293
295
|
readonly isMinted: boolean;
|
|
294
296
|
readonly asMinted: {
|
|
295
|
-
readonly who:
|
|
297
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
296
298
|
readonly amount: u128;
|
|
297
299
|
} & Struct;
|
|
298
300
|
readonly isBurned: boolean;
|
|
299
301
|
readonly asBurned: {
|
|
300
|
-
readonly who:
|
|
302
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
301
303
|
readonly amount: u128;
|
|
302
304
|
} & Struct;
|
|
303
305
|
readonly isSuspended: boolean;
|
|
304
306
|
readonly asSuspended: {
|
|
305
|
-
readonly who:
|
|
307
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
306
308
|
readonly amount: u128;
|
|
307
309
|
} & Struct;
|
|
308
310
|
readonly isRestored: boolean;
|
|
309
311
|
readonly asRestored: {
|
|
310
|
-
readonly who:
|
|
312
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
311
313
|
readonly amount: u128;
|
|
312
314
|
} & Struct;
|
|
313
315
|
readonly isUpgraded: boolean;
|
|
314
316
|
readonly asUpgraded: {
|
|
315
|
-
readonly who:
|
|
317
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
316
318
|
} & Struct;
|
|
317
319
|
readonly isIssued: boolean;
|
|
318
320
|
readonly asIssued: {
|
|
@@ -324,22 +326,22 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
324
326
|
} & Struct;
|
|
325
327
|
readonly isLocked: boolean;
|
|
326
328
|
readonly asLocked: {
|
|
327
|
-
readonly who:
|
|
329
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
328
330
|
readonly amount: u128;
|
|
329
331
|
} & Struct;
|
|
330
332
|
readonly isUnlocked: boolean;
|
|
331
333
|
readonly asUnlocked: {
|
|
332
|
-
readonly who:
|
|
334
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
333
335
|
readonly amount: u128;
|
|
334
336
|
} & Struct;
|
|
335
337
|
readonly isFrozen: boolean;
|
|
336
338
|
readonly asFrozen: {
|
|
337
|
-
readonly who:
|
|
339
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
338
340
|
readonly amount: u128;
|
|
339
341
|
} & Struct;
|
|
340
342
|
readonly isThawed: boolean;
|
|
341
343
|
readonly asThawed: {
|
|
342
|
-
readonly who:
|
|
344
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
343
345
|
readonly amount: u128;
|
|
344
346
|
} & Struct;
|
|
345
347
|
readonly isTotalIssuanceForced: boolean;
|
|
@@ -359,7 +361,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
359
361
|
interface PezpalletTransactionPaymentEvent extends Enum {
|
|
360
362
|
readonly isTransactionFeePaid: boolean;
|
|
361
363
|
readonly asTransactionFeePaid: {
|
|
362
|
-
readonly who:
|
|
364
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
363
365
|
readonly actualFee: u128;
|
|
364
366
|
readonly tip: u128;
|
|
365
367
|
} & Struct;
|
|
@@ -369,7 +371,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
369
371
|
interface PezpalletAssetConversionTxPaymentEvent extends Enum {
|
|
370
372
|
readonly isAssetTxFeePaid: boolean;
|
|
371
373
|
readonly asAssetTxFeePaid: {
|
|
372
|
-
readonly who:
|
|
374
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
373
375
|
readonly actualFee: u128;
|
|
374
376
|
readonly tip: u128;
|
|
375
377
|
readonly assetId: PezframeSupportTokensFungibleUnionOfNativeOrWithId;
|
|
@@ -392,7 +394,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
392
394
|
readonly isSolutionStored: boolean;
|
|
393
395
|
readonly asSolutionStored: {
|
|
394
396
|
readonly compute: PezpalletElectionProviderMultiPhaseElectionCompute;
|
|
395
|
-
readonly origin: Option<
|
|
397
|
+
readonly origin: Option<PezspCoreCryptoAccountId32>;
|
|
396
398
|
readonly prevEjected: bool;
|
|
397
399
|
} & Struct;
|
|
398
400
|
readonly isElectionFinalized: boolean;
|
|
@@ -403,12 +405,12 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
403
405
|
readonly isElectionFailed: boolean;
|
|
404
406
|
readonly isRewarded: boolean;
|
|
405
407
|
readonly asRewarded: {
|
|
406
|
-
readonly account:
|
|
408
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
407
409
|
readonly value: u128;
|
|
408
410
|
} & Struct;
|
|
409
411
|
readonly isSlashed: boolean;
|
|
410
412
|
readonly asSlashed: {
|
|
411
|
-
readonly account:
|
|
413
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
412
414
|
readonly value: u128;
|
|
413
415
|
} & Struct;
|
|
414
416
|
readonly isPhaseTransitioned: boolean;
|
|
@@ -453,19 +455,19 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
453
455
|
} & Struct;
|
|
454
456
|
readonly isRewarded: boolean;
|
|
455
457
|
readonly asRewarded: {
|
|
456
|
-
readonly stash:
|
|
458
|
+
readonly stash: PezspCoreCryptoAccountId32;
|
|
457
459
|
readonly dest: PezpalletStakingRewardDestination;
|
|
458
460
|
readonly amount: u128;
|
|
459
461
|
} & Struct;
|
|
460
462
|
readonly isSlashed: boolean;
|
|
461
463
|
readonly asSlashed: {
|
|
462
|
-
readonly staker:
|
|
464
|
+
readonly staker: PezspCoreCryptoAccountId32;
|
|
463
465
|
readonly amount: u128;
|
|
464
466
|
} & Struct;
|
|
465
467
|
readonly isSlashReported: boolean;
|
|
466
468
|
readonly asSlashReported: {
|
|
467
|
-
readonly validator:
|
|
468
|
-
readonly fraction:
|
|
469
|
+
readonly validator: PezspCoreCryptoAccountId32;
|
|
470
|
+
readonly fraction: u32;
|
|
469
471
|
readonly slashEra: u32;
|
|
470
472
|
} & Struct;
|
|
471
473
|
readonly isOldSlashingReportDiscarded: boolean;
|
|
@@ -475,39 +477,39 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
475
477
|
readonly isStakersElected: boolean;
|
|
476
478
|
readonly isBonded: boolean;
|
|
477
479
|
readonly asBonded: {
|
|
478
|
-
readonly stash:
|
|
480
|
+
readonly stash: PezspCoreCryptoAccountId32;
|
|
479
481
|
readonly amount: u128;
|
|
480
482
|
} & Struct;
|
|
481
483
|
readonly isUnbonded: boolean;
|
|
482
484
|
readonly asUnbonded: {
|
|
483
|
-
readonly stash:
|
|
485
|
+
readonly stash: PezspCoreCryptoAccountId32;
|
|
484
486
|
readonly amount: u128;
|
|
485
487
|
} & Struct;
|
|
486
488
|
readonly isWithdrawn: boolean;
|
|
487
489
|
readonly asWithdrawn: {
|
|
488
|
-
readonly stash:
|
|
490
|
+
readonly stash: PezspCoreCryptoAccountId32;
|
|
489
491
|
readonly amount: u128;
|
|
490
492
|
} & Struct;
|
|
491
493
|
readonly isKicked: boolean;
|
|
492
494
|
readonly asKicked: {
|
|
493
|
-
readonly nominator:
|
|
494
|
-
readonly stash:
|
|
495
|
+
readonly nominator: PezspCoreCryptoAccountId32;
|
|
496
|
+
readonly stash: PezspCoreCryptoAccountId32;
|
|
495
497
|
} & Struct;
|
|
496
498
|
readonly isStakingElectionFailed: boolean;
|
|
497
499
|
readonly isChilled: boolean;
|
|
498
500
|
readonly asChilled: {
|
|
499
|
-
readonly stash:
|
|
501
|
+
readonly stash: PezspCoreCryptoAccountId32;
|
|
500
502
|
} & Struct;
|
|
501
503
|
readonly isPayoutStarted: boolean;
|
|
502
504
|
readonly asPayoutStarted: {
|
|
503
505
|
readonly eraIndex: u32;
|
|
504
|
-
readonly validatorStash:
|
|
506
|
+
readonly validatorStash: PezspCoreCryptoAccountId32;
|
|
505
507
|
readonly page: u32;
|
|
506
508
|
readonly next: Option<u32>;
|
|
507
509
|
} & Struct;
|
|
508
510
|
readonly isValidatorPrefsSet: boolean;
|
|
509
511
|
readonly asValidatorPrefsSet: {
|
|
510
|
-
readonly stash:
|
|
512
|
+
readonly stash: PezspCoreCryptoAccountId32;
|
|
511
513
|
readonly prefs: PezpalletStakingValidatorPrefs;
|
|
512
514
|
} & Struct;
|
|
513
515
|
readonly isSnapshotVotersSizeExceeded: boolean;
|
|
@@ -528,7 +530,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
528
530
|
} & Struct;
|
|
529
531
|
readonly isCurrencyMigrated: boolean;
|
|
530
532
|
readonly asCurrencyMigrated: {
|
|
531
|
-
readonly stash:
|
|
533
|
+
readonly stash: PezspCoreCryptoAccountId32;
|
|
532
534
|
readonly forceWithdraw: u128;
|
|
533
535
|
} & Struct;
|
|
534
536
|
readonly type: 'EraPaid' | 'Rewarded' | 'Slashed' | 'SlashReported' | 'OldSlashingReportDiscarded' | 'StakersElected' | 'Bonded' | 'Unbonded' | 'Withdrawn' | 'Kicked' | 'StakingElectionFailed' | 'Chilled' | 'PayoutStarted' | 'ValidatorPrefsSet' | 'SnapshotVotersSizeExceeded' | 'SnapshotTargetsSizeExceeded' | 'ForceEra' | 'ControllerBatchDeprecated' | 'CurrencyMigrated';
|
|
@@ -539,13 +541,13 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
539
541
|
readonly isStash: boolean;
|
|
540
542
|
readonly isController: boolean;
|
|
541
543
|
readonly isAccount: boolean;
|
|
542
|
-
readonly asAccount:
|
|
544
|
+
readonly asAccount: PezspCoreCryptoAccountId32;
|
|
543
545
|
readonly isNone: boolean;
|
|
544
546
|
readonly type: 'Staked' | 'Stash' | 'Controller' | 'Account' | 'None';
|
|
545
547
|
}
|
|
546
548
|
/** @name PezpalletStakingValidatorPrefs (51) */
|
|
547
549
|
interface PezpalletStakingValidatorPrefs extends Struct {
|
|
548
|
-
readonly commission: Compact<
|
|
550
|
+
readonly commission: Compact<u32>;
|
|
549
551
|
readonly blocked: bool;
|
|
550
552
|
}
|
|
551
553
|
/** @name PezpalletStakingForcing (53) */
|
|
@@ -564,11 +566,11 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
564
566
|
} & Struct;
|
|
565
567
|
readonly isValidatorDisabled: boolean;
|
|
566
568
|
readonly asValidatorDisabled: {
|
|
567
|
-
readonly validator:
|
|
569
|
+
readonly validator: PezspCoreCryptoAccountId32;
|
|
568
570
|
} & Struct;
|
|
569
571
|
readonly isValidatorReenabled: boolean;
|
|
570
572
|
readonly asValidatorReenabled: {
|
|
571
|
-
readonly validator:
|
|
573
|
+
readonly validator: PezspCoreCryptoAccountId32;
|
|
572
574
|
} & Struct;
|
|
573
575
|
readonly type: 'NewSession' | 'ValidatorDisabled' | 'ValidatorReenabled';
|
|
574
576
|
}
|
|
@@ -604,16 +606,16 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
604
606
|
} & Struct;
|
|
605
607
|
readonly isDelegated: boolean;
|
|
606
608
|
readonly asDelegated: {
|
|
607
|
-
readonly who:
|
|
608
|
-
readonly target:
|
|
609
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
610
|
+
readonly target: PezspCoreCryptoAccountId32;
|
|
609
611
|
} & Struct;
|
|
610
612
|
readonly isUndelegated: boolean;
|
|
611
613
|
readonly asUndelegated: {
|
|
612
|
-
readonly account:
|
|
614
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
613
615
|
} & Struct;
|
|
614
616
|
readonly isVetoed: boolean;
|
|
615
617
|
readonly asVetoed: {
|
|
616
|
-
readonly who:
|
|
618
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
617
619
|
readonly proposalHash: H256;
|
|
618
620
|
readonly until: u32;
|
|
619
621
|
} & Struct;
|
|
@@ -623,13 +625,13 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
623
625
|
} & Struct;
|
|
624
626
|
readonly isVoted: boolean;
|
|
625
627
|
readonly asVoted: {
|
|
626
|
-
readonly voter:
|
|
628
|
+
readonly voter: PezspCoreCryptoAccountId32;
|
|
627
629
|
readonly refIndex: u32;
|
|
628
630
|
readonly vote: PezpalletDemocracyVoteAccountVote;
|
|
629
631
|
} & Struct;
|
|
630
632
|
readonly isSeconded: boolean;
|
|
631
633
|
readonly asSeconded: {
|
|
632
|
-
readonly seconder:
|
|
634
|
+
readonly seconder: PezspCoreCryptoAccountId32;
|
|
633
635
|
readonly propIndex: u32;
|
|
634
636
|
} & Struct;
|
|
635
637
|
readonly isProposalCanceled: boolean;
|
|
@@ -688,14 +690,14 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
688
690
|
interface PezpalletCollectiveEvent extends Enum {
|
|
689
691
|
readonly isProposed: boolean;
|
|
690
692
|
readonly asProposed: {
|
|
691
|
-
readonly account:
|
|
693
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
692
694
|
readonly proposalIndex: u32;
|
|
693
695
|
readonly proposalHash: H256;
|
|
694
696
|
readonly threshold: u32;
|
|
695
697
|
} & Struct;
|
|
696
698
|
readonly isVoted: boolean;
|
|
697
699
|
readonly asVoted: {
|
|
698
|
-
readonly account:
|
|
700
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
699
701
|
readonly proposalHash: H256;
|
|
700
702
|
readonly voted: bool;
|
|
701
703
|
readonly yes: u32;
|
|
@@ -732,12 +734,12 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
732
734
|
readonly isProposalCostBurned: boolean;
|
|
733
735
|
readonly asProposalCostBurned: {
|
|
734
736
|
readonly proposalHash: H256;
|
|
735
|
-
readonly who:
|
|
737
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
736
738
|
} & Struct;
|
|
737
739
|
readonly isProposalCostReleased: boolean;
|
|
738
740
|
readonly asProposalCostReleased: {
|
|
739
741
|
readonly proposalHash: H256;
|
|
740
|
-
readonly who:
|
|
742
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
741
743
|
} & Struct;
|
|
742
744
|
readonly type: 'Proposed' | 'Voted' | 'Approved' | 'Disapproved' | 'Executed' | 'MemberExecuted' | 'Closed' | 'Killed' | 'ProposalCostBurned' | 'ProposalCostReleased';
|
|
743
745
|
}
|
|
@@ -745,26 +747,26 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
745
747
|
interface PezpalletElectionsPhragmenEvent extends Enum {
|
|
746
748
|
readonly isNewTerm: boolean;
|
|
747
749
|
readonly asNewTerm: {
|
|
748
|
-
readonly newMembers: Vec<ITuple<[
|
|
750
|
+
readonly newMembers: Vec<ITuple<[PezspCoreCryptoAccountId32, u128]>>;
|
|
749
751
|
} & Struct;
|
|
750
752
|
readonly isEmptyTerm: boolean;
|
|
751
753
|
readonly isElectionError: boolean;
|
|
752
754
|
readonly isMemberKicked: boolean;
|
|
753
755
|
readonly asMemberKicked: {
|
|
754
|
-
readonly member:
|
|
756
|
+
readonly member: PezspCoreCryptoAccountId32;
|
|
755
757
|
} & Struct;
|
|
756
758
|
readonly isRenounced: boolean;
|
|
757
759
|
readonly asRenounced: {
|
|
758
|
-
readonly candidate:
|
|
760
|
+
readonly candidate: PezspCoreCryptoAccountId32;
|
|
759
761
|
} & Struct;
|
|
760
762
|
readonly isCandidateSlashed: boolean;
|
|
761
763
|
readonly asCandidateSlashed: {
|
|
762
|
-
readonly candidate:
|
|
764
|
+
readonly candidate: PezspCoreCryptoAccountId32;
|
|
763
765
|
readonly amount: u128;
|
|
764
766
|
} & Struct;
|
|
765
767
|
readonly isSeatHolderSlashed: boolean;
|
|
766
768
|
readonly asSeatHolderSlashed: {
|
|
767
|
-
readonly seatHolder:
|
|
769
|
+
readonly seatHolder: PezspCoreCryptoAccountId32;
|
|
768
770
|
readonly amount: u128;
|
|
769
771
|
} & Struct;
|
|
770
772
|
readonly type: 'NewTerm' | 'EmptyTerm' | 'ElectionError' | 'MemberKicked' | 'Renounced' | 'CandidateSlashed' | 'SeatHolderSlashed';
|
|
@@ -802,7 +804,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
802
804
|
readonly asAwarded: {
|
|
803
805
|
readonly proposalIndex: u32;
|
|
804
806
|
readonly award: u128;
|
|
805
|
-
readonly account:
|
|
807
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
806
808
|
} & Struct;
|
|
807
809
|
readonly isBurnt: boolean;
|
|
808
810
|
readonly asBurnt: {
|
|
@@ -820,7 +822,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
820
822
|
readonly asSpendApproved: {
|
|
821
823
|
readonly proposalIndex: u32;
|
|
822
824
|
readonly amount: u128;
|
|
823
|
-
readonly beneficiary:
|
|
825
|
+
readonly beneficiary: PezspCoreCryptoAccountId32;
|
|
824
826
|
} & Struct;
|
|
825
827
|
readonly isUpdatedInactive: boolean;
|
|
826
828
|
readonly asUpdatedInactive: {
|
|
@@ -832,7 +834,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
832
834
|
readonly index: u32;
|
|
833
835
|
readonly assetKind: PezframeSupportTokensFungibleUnionOfNativeOrWithId;
|
|
834
836
|
readonly amount: u128;
|
|
835
|
-
readonly beneficiary:
|
|
837
|
+
readonly beneficiary: PezspCoreCryptoAccountId32;
|
|
836
838
|
readonly validFrom: u32;
|
|
837
839
|
readonly expireAt: u32;
|
|
838
840
|
} & Struct;
|
|
@@ -879,57 +881,57 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
879
881
|
interface PezpalletContractsEvent extends Enum {
|
|
880
882
|
readonly isInstantiated: boolean;
|
|
881
883
|
readonly asInstantiated: {
|
|
882
|
-
readonly deployer:
|
|
883
|
-
readonly contract:
|
|
884
|
+
readonly deployer: PezspCoreCryptoAccountId32;
|
|
885
|
+
readonly contract: PezspCoreCryptoAccountId32;
|
|
884
886
|
} & Struct;
|
|
885
887
|
readonly isTerminated: boolean;
|
|
886
888
|
readonly asTerminated: {
|
|
887
|
-
readonly contract:
|
|
888
|
-
readonly beneficiary:
|
|
889
|
+
readonly contract: PezspCoreCryptoAccountId32;
|
|
890
|
+
readonly beneficiary: PezspCoreCryptoAccountId32;
|
|
889
891
|
} & Struct;
|
|
890
892
|
readonly isCodeStored: boolean;
|
|
891
893
|
readonly asCodeStored: {
|
|
892
894
|
readonly codeHash: H256;
|
|
893
895
|
readonly depositHeld: u128;
|
|
894
|
-
readonly uploader:
|
|
896
|
+
readonly uploader: PezspCoreCryptoAccountId32;
|
|
895
897
|
} & Struct;
|
|
896
898
|
readonly isContractEmitted: boolean;
|
|
897
899
|
readonly asContractEmitted: {
|
|
898
|
-
readonly contract:
|
|
900
|
+
readonly contract: PezspCoreCryptoAccountId32;
|
|
899
901
|
readonly data: Bytes;
|
|
900
902
|
} & Struct;
|
|
901
903
|
readonly isCodeRemoved: boolean;
|
|
902
904
|
readonly asCodeRemoved: {
|
|
903
905
|
readonly codeHash: H256;
|
|
904
906
|
readonly depositReleased: u128;
|
|
905
|
-
readonly remover:
|
|
907
|
+
readonly remover: PezspCoreCryptoAccountId32;
|
|
906
908
|
} & Struct;
|
|
907
909
|
readonly isContractCodeUpdated: boolean;
|
|
908
910
|
readonly asContractCodeUpdated: {
|
|
909
|
-
readonly contract:
|
|
911
|
+
readonly contract: PezspCoreCryptoAccountId32;
|
|
910
912
|
readonly newCodeHash: H256;
|
|
911
913
|
readonly oldCodeHash: H256;
|
|
912
914
|
} & Struct;
|
|
913
915
|
readonly isCalled: boolean;
|
|
914
916
|
readonly asCalled: {
|
|
915
917
|
readonly caller: PezpalletContractsOrigin;
|
|
916
|
-
readonly contract:
|
|
918
|
+
readonly contract: PezspCoreCryptoAccountId32;
|
|
917
919
|
} & Struct;
|
|
918
920
|
readonly isDelegateCalled: boolean;
|
|
919
921
|
readonly asDelegateCalled: {
|
|
920
|
-
readonly contract:
|
|
922
|
+
readonly contract: PezspCoreCryptoAccountId32;
|
|
921
923
|
readonly codeHash: H256;
|
|
922
924
|
} & Struct;
|
|
923
925
|
readonly isStorageDepositTransferredAndHeld: boolean;
|
|
924
926
|
readonly asStorageDepositTransferredAndHeld: {
|
|
925
|
-
readonly from:
|
|
926
|
-
readonly to:
|
|
927
|
+
readonly from: PezspCoreCryptoAccountId32;
|
|
928
|
+
readonly to: PezspCoreCryptoAccountId32;
|
|
927
929
|
readonly amount: u128;
|
|
928
930
|
} & Struct;
|
|
929
931
|
readonly isStorageDepositTransferredAndReleased: boolean;
|
|
930
932
|
readonly asStorageDepositTransferredAndReleased: {
|
|
931
|
-
readonly from:
|
|
932
|
-
readonly to:
|
|
933
|
+
readonly from: PezspCoreCryptoAccountId32;
|
|
934
|
+
readonly to: PezspCoreCryptoAccountId32;
|
|
933
935
|
readonly amount: u128;
|
|
934
936
|
} & Struct;
|
|
935
937
|
readonly type: 'Instantiated' | 'Terminated' | 'CodeStored' | 'ContractEmitted' | 'CodeRemoved' | 'ContractCodeUpdated' | 'Called' | 'DelegateCalled' | 'StorageDepositTransferredAndHeld' | 'StorageDepositTransferredAndReleased';
|
|
@@ -938,7 +940,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
938
940
|
interface PezpalletContractsOrigin extends Enum {
|
|
939
941
|
readonly isRoot: boolean;
|
|
940
942
|
readonly isSigned: boolean;
|
|
941
|
-
readonly asSigned:
|
|
943
|
+
readonly asSigned: PezspCoreCryptoAccountId32;
|
|
942
944
|
readonly type: 'Root' | 'Signed';
|
|
943
945
|
}
|
|
944
946
|
/** @name KitchensinkRuntimeRuntime (75) */
|
|
@@ -951,8 +953,8 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
951
953
|
} & Struct;
|
|
952
954
|
readonly isKeyChanged: boolean;
|
|
953
955
|
readonly asKeyChanged: {
|
|
954
|
-
readonly old: Option<
|
|
955
|
-
readonly new_:
|
|
956
|
+
readonly old: Option<PezspCoreCryptoAccountId32>;
|
|
957
|
+
readonly new_: PezspCoreCryptoAccountId32;
|
|
956
958
|
} & Struct;
|
|
957
959
|
readonly isKeyRemoved: boolean;
|
|
958
960
|
readonly isSudoAsDone: boolean;
|
|
@@ -970,7 +972,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
970
972
|
readonly isAllGood: boolean;
|
|
971
973
|
readonly isSomeOffline: boolean;
|
|
972
974
|
readonly asSomeOffline: {
|
|
973
|
-
readonly offline: Vec<ITuple<[
|
|
975
|
+
readonly offline: Vec<ITuple<[PezspCoreCryptoAccountId32, Null]>>;
|
|
974
976
|
} & Struct;
|
|
975
977
|
readonly type: 'HeartbeatReceived' | 'AllGood' | 'SomeOffline';
|
|
976
978
|
}
|
|
@@ -990,31 +992,31 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
990
992
|
interface PezpalletIdentityEvent extends Enum {
|
|
991
993
|
readonly isIdentitySet: boolean;
|
|
992
994
|
readonly asIdentitySet: {
|
|
993
|
-
readonly who:
|
|
995
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
994
996
|
} & Struct;
|
|
995
997
|
readonly isIdentityCleared: boolean;
|
|
996
998
|
readonly asIdentityCleared: {
|
|
997
|
-
readonly who:
|
|
999
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
998
1000
|
readonly deposit: u128;
|
|
999
1001
|
} & Struct;
|
|
1000
1002
|
readonly isIdentityKilled: boolean;
|
|
1001
1003
|
readonly asIdentityKilled: {
|
|
1002
|
-
readonly who:
|
|
1004
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1003
1005
|
readonly deposit: u128;
|
|
1004
1006
|
} & Struct;
|
|
1005
1007
|
readonly isJudgementRequested: boolean;
|
|
1006
1008
|
readonly asJudgementRequested: {
|
|
1007
|
-
readonly who:
|
|
1009
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1008
1010
|
readonly registrarIndex: u32;
|
|
1009
1011
|
} & Struct;
|
|
1010
1012
|
readonly isJudgementUnrequested: boolean;
|
|
1011
1013
|
readonly asJudgementUnrequested: {
|
|
1012
|
-
readonly who:
|
|
1014
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1013
1015
|
readonly registrarIndex: u32;
|
|
1014
1016
|
} & Struct;
|
|
1015
1017
|
readonly isJudgementGiven: boolean;
|
|
1016
1018
|
readonly asJudgementGiven: {
|
|
1017
|
-
readonly target:
|
|
1019
|
+
readonly target: PezspCoreCryptoAccountId32;
|
|
1018
1020
|
readonly registrarIndex: u32;
|
|
1019
1021
|
} & Struct;
|
|
1020
1022
|
readonly isRegistrarAdded: boolean;
|
|
@@ -1023,64 +1025,64 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1023
1025
|
} & Struct;
|
|
1024
1026
|
readonly isSubIdentityAdded: boolean;
|
|
1025
1027
|
readonly asSubIdentityAdded: {
|
|
1026
|
-
readonly sub:
|
|
1027
|
-
readonly main:
|
|
1028
|
+
readonly sub: PezspCoreCryptoAccountId32;
|
|
1029
|
+
readonly main: PezspCoreCryptoAccountId32;
|
|
1028
1030
|
readonly deposit: u128;
|
|
1029
1031
|
} & Struct;
|
|
1030
1032
|
readonly isSubIdentitiesSet: boolean;
|
|
1031
1033
|
readonly asSubIdentitiesSet: {
|
|
1032
|
-
readonly main:
|
|
1034
|
+
readonly main: PezspCoreCryptoAccountId32;
|
|
1033
1035
|
readonly numberOfSubs: u32;
|
|
1034
1036
|
readonly newDeposit: u128;
|
|
1035
1037
|
} & Struct;
|
|
1036
1038
|
readonly isSubIdentityRenamed: boolean;
|
|
1037
1039
|
readonly asSubIdentityRenamed: {
|
|
1038
|
-
readonly sub:
|
|
1039
|
-
readonly main:
|
|
1040
|
+
readonly sub: PezspCoreCryptoAccountId32;
|
|
1041
|
+
readonly main: PezspCoreCryptoAccountId32;
|
|
1040
1042
|
} & Struct;
|
|
1041
1043
|
readonly isSubIdentityRemoved: boolean;
|
|
1042
1044
|
readonly asSubIdentityRemoved: {
|
|
1043
|
-
readonly sub:
|
|
1044
|
-
readonly main:
|
|
1045
|
+
readonly sub: PezspCoreCryptoAccountId32;
|
|
1046
|
+
readonly main: PezspCoreCryptoAccountId32;
|
|
1045
1047
|
readonly deposit: u128;
|
|
1046
1048
|
} & Struct;
|
|
1047
1049
|
readonly isSubIdentityRevoked: boolean;
|
|
1048
1050
|
readonly asSubIdentityRevoked: {
|
|
1049
|
-
readonly sub:
|
|
1050
|
-
readonly main:
|
|
1051
|
+
readonly sub: PezspCoreCryptoAccountId32;
|
|
1052
|
+
readonly main: PezspCoreCryptoAccountId32;
|
|
1051
1053
|
readonly deposit: u128;
|
|
1052
1054
|
} & Struct;
|
|
1053
1055
|
readonly isAuthorityAdded: boolean;
|
|
1054
1056
|
readonly asAuthorityAdded: {
|
|
1055
|
-
readonly authority:
|
|
1057
|
+
readonly authority: PezspCoreCryptoAccountId32;
|
|
1056
1058
|
} & Struct;
|
|
1057
1059
|
readonly isAuthorityRemoved: boolean;
|
|
1058
1060
|
readonly asAuthorityRemoved: {
|
|
1059
|
-
readonly authority:
|
|
1061
|
+
readonly authority: PezspCoreCryptoAccountId32;
|
|
1060
1062
|
} & Struct;
|
|
1061
1063
|
readonly isUsernameSet: boolean;
|
|
1062
1064
|
readonly asUsernameSet: {
|
|
1063
|
-
readonly who:
|
|
1065
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1064
1066
|
readonly username: Bytes;
|
|
1065
1067
|
} & Struct;
|
|
1066
1068
|
readonly isUsernameQueued: boolean;
|
|
1067
1069
|
readonly asUsernameQueued: {
|
|
1068
|
-
readonly who:
|
|
1070
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1069
1071
|
readonly username: Bytes;
|
|
1070
1072
|
readonly expiration: u32;
|
|
1071
1073
|
} & Struct;
|
|
1072
1074
|
readonly isPreapprovalExpired: boolean;
|
|
1073
1075
|
readonly asPreapprovalExpired: {
|
|
1074
|
-
readonly whose:
|
|
1076
|
+
readonly whose: PezspCoreCryptoAccountId32;
|
|
1075
1077
|
} & Struct;
|
|
1076
1078
|
readonly isPrimaryUsernameSet: boolean;
|
|
1077
1079
|
readonly asPrimaryUsernameSet: {
|
|
1078
|
-
readonly who:
|
|
1080
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1079
1081
|
readonly username: Bytes;
|
|
1080
1082
|
} & Struct;
|
|
1081
1083
|
readonly isDanglingUsernameRemoved: boolean;
|
|
1082
1084
|
readonly asDanglingUsernameRemoved: {
|
|
1083
|
-
readonly who:
|
|
1085
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1084
1086
|
readonly username: Bytes;
|
|
1085
1087
|
} & Struct;
|
|
1086
1088
|
readonly isUsernameUnbound: boolean;
|
|
@@ -1101,62 +1103,62 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1101
1103
|
interface PezpalletSocietyEvent extends Enum {
|
|
1102
1104
|
readonly isFounded: boolean;
|
|
1103
1105
|
readonly asFounded: {
|
|
1104
|
-
readonly founder:
|
|
1106
|
+
readonly founder: PezspCoreCryptoAccountId32;
|
|
1105
1107
|
} & Struct;
|
|
1106
1108
|
readonly isBid: boolean;
|
|
1107
1109
|
readonly asBid: {
|
|
1108
|
-
readonly candidateId:
|
|
1110
|
+
readonly candidateId: PezspCoreCryptoAccountId32;
|
|
1109
1111
|
readonly offer: u128;
|
|
1110
1112
|
} & Struct;
|
|
1111
1113
|
readonly isVouch: boolean;
|
|
1112
1114
|
readonly asVouch: {
|
|
1113
|
-
readonly candidateId:
|
|
1115
|
+
readonly candidateId: PezspCoreCryptoAccountId32;
|
|
1114
1116
|
readonly offer: u128;
|
|
1115
|
-
readonly vouching:
|
|
1117
|
+
readonly vouching: PezspCoreCryptoAccountId32;
|
|
1116
1118
|
} & Struct;
|
|
1117
1119
|
readonly isAutoUnbid: boolean;
|
|
1118
1120
|
readonly asAutoUnbid: {
|
|
1119
|
-
readonly candidate:
|
|
1121
|
+
readonly candidate: PezspCoreCryptoAccountId32;
|
|
1120
1122
|
} & Struct;
|
|
1121
1123
|
readonly isUnbid: boolean;
|
|
1122
1124
|
readonly asUnbid: {
|
|
1123
|
-
readonly candidate:
|
|
1125
|
+
readonly candidate: PezspCoreCryptoAccountId32;
|
|
1124
1126
|
} & Struct;
|
|
1125
1127
|
readonly isUnvouch: boolean;
|
|
1126
1128
|
readonly asUnvouch: {
|
|
1127
|
-
readonly candidate:
|
|
1129
|
+
readonly candidate: PezspCoreCryptoAccountId32;
|
|
1128
1130
|
} & Struct;
|
|
1129
1131
|
readonly isInducted: boolean;
|
|
1130
1132
|
readonly asInducted: {
|
|
1131
|
-
readonly primary:
|
|
1132
|
-
readonly candidates: Vec<
|
|
1133
|
+
readonly primary: PezspCoreCryptoAccountId32;
|
|
1134
|
+
readonly candidates: Vec<PezspCoreCryptoAccountId32>;
|
|
1133
1135
|
} & Struct;
|
|
1134
1136
|
readonly isSuspendedMemberJudgement: boolean;
|
|
1135
1137
|
readonly asSuspendedMemberJudgement: {
|
|
1136
|
-
readonly who:
|
|
1138
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1137
1139
|
readonly judged: bool;
|
|
1138
1140
|
} & Struct;
|
|
1139
1141
|
readonly isCandidateSuspended: boolean;
|
|
1140
1142
|
readonly asCandidateSuspended: {
|
|
1141
|
-
readonly candidate:
|
|
1143
|
+
readonly candidate: PezspCoreCryptoAccountId32;
|
|
1142
1144
|
} & Struct;
|
|
1143
1145
|
readonly isMemberSuspended: boolean;
|
|
1144
1146
|
readonly asMemberSuspended: {
|
|
1145
|
-
readonly member:
|
|
1147
|
+
readonly member: PezspCoreCryptoAccountId32;
|
|
1146
1148
|
} & Struct;
|
|
1147
1149
|
readonly isChallenged: boolean;
|
|
1148
1150
|
readonly asChallenged: {
|
|
1149
|
-
readonly member:
|
|
1151
|
+
readonly member: PezspCoreCryptoAccountId32;
|
|
1150
1152
|
} & Struct;
|
|
1151
1153
|
readonly isVote: boolean;
|
|
1152
1154
|
readonly asVote: {
|
|
1153
|
-
readonly candidate:
|
|
1154
|
-
readonly voter:
|
|
1155
|
+
readonly candidate: PezspCoreCryptoAccountId32;
|
|
1156
|
+
readonly voter: PezspCoreCryptoAccountId32;
|
|
1155
1157
|
readonly vote: bool;
|
|
1156
1158
|
} & Struct;
|
|
1157
1159
|
readonly isDefenderVote: boolean;
|
|
1158
1160
|
readonly asDefenderVote: {
|
|
1159
|
-
readonly voter:
|
|
1161
|
+
readonly voter: PezspCoreCryptoAccountId32;
|
|
1160
1162
|
readonly vote: bool;
|
|
1161
1163
|
} & Struct;
|
|
1162
1164
|
readonly isNewParams: boolean;
|
|
@@ -1165,7 +1167,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1165
1167
|
} & Struct;
|
|
1166
1168
|
readonly isUnfounded: boolean;
|
|
1167
1169
|
readonly asUnfounded: {
|
|
1168
|
-
readonly founder:
|
|
1170
|
+
readonly founder: PezspCoreCryptoAccountId32;
|
|
1169
1171
|
} & Struct;
|
|
1170
1172
|
readonly isDeposit: boolean;
|
|
1171
1173
|
readonly asDeposit: {
|
|
@@ -1173,7 +1175,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1173
1175
|
} & Struct;
|
|
1174
1176
|
readonly isElevated: boolean;
|
|
1175
1177
|
readonly asElevated: {
|
|
1176
|
-
readonly member:
|
|
1178
|
+
readonly member: PezspCoreCryptoAccountId32;
|
|
1177
1179
|
readonly rank: u32;
|
|
1178
1180
|
} & Struct;
|
|
1179
1181
|
readonly type: 'Founded' | 'Bid' | 'Vouch' | 'AutoUnbid' | 'Unbid' | 'Unvouch' | 'Inducted' | 'SuspendedMemberJudgement' | 'CandidateSuspended' | 'MemberSuspended' | 'Challenged' | 'Vote' | 'DefenderVote' | 'NewParams' | 'Unfounded' | 'Deposit' | 'Elevated';
|
|
@@ -1189,32 +1191,32 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1189
1191
|
interface PezpalletRecoveryEvent extends Enum {
|
|
1190
1192
|
readonly isRecoveryCreated: boolean;
|
|
1191
1193
|
readonly asRecoveryCreated: {
|
|
1192
|
-
readonly account:
|
|
1194
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
1193
1195
|
} & Struct;
|
|
1194
1196
|
readonly isRecoveryInitiated: boolean;
|
|
1195
1197
|
readonly asRecoveryInitiated: {
|
|
1196
|
-
readonly lostAccount:
|
|
1197
|
-
readonly rescuerAccount:
|
|
1198
|
+
readonly lostAccount: PezspCoreCryptoAccountId32;
|
|
1199
|
+
readonly rescuerAccount: PezspCoreCryptoAccountId32;
|
|
1198
1200
|
} & Struct;
|
|
1199
1201
|
readonly isRecoveryVouched: boolean;
|
|
1200
1202
|
readonly asRecoveryVouched: {
|
|
1201
|
-
readonly lostAccount:
|
|
1202
|
-
readonly rescuerAccount:
|
|
1203
|
-
readonly sender:
|
|
1203
|
+
readonly lostAccount: PezspCoreCryptoAccountId32;
|
|
1204
|
+
readonly rescuerAccount: PezspCoreCryptoAccountId32;
|
|
1205
|
+
readonly sender: PezspCoreCryptoAccountId32;
|
|
1204
1206
|
} & Struct;
|
|
1205
1207
|
readonly isRecoveryClosed: boolean;
|
|
1206
1208
|
readonly asRecoveryClosed: {
|
|
1207
|
-
readonly lostAccount:
|
|
1208
|
-
readonly rescuerAccount:
|
|
1209
|
+
readonly lostAccount: PezspCoreCryptoAccountId32;
|
|
1210
|
+
readonly rescuerAccount: PezspCoreCryptoAccountId32;
|
|
1209
1211
|
} & Struct;
|
|
1210
1212
|
readonly isAccountRecovered: boolean;
|
|
1211
1213
|
readonly asAccountRecovered: {
|
|
1212
|
-
readonly lostAccount:
|
|
1213
|
-
readonly rescuerAccount:
|
|
1214
|
+
readonly lostAccount: PezspCoreCryptoAccountId32;
|
|
1215
|
+
readonly rescuerAccount: PezspCoreCryptoAccountId32;
|
|
1214
1216
|
} & Struct;
|
|
1215
1217
|
readonly isRecoveryRemoved: boolean;
|
|
1216
1218
|
readonly asRecoveryRemoved: {
|
|
1217
|
-
readonly lostAccount:
|
|
1219
|
+
readonly lostAccount: PezspCoreCryptoAccountId32;
|
|
1218
1220
|
} & Struct;
|
|
1219
1221
|
readonly type: 'RecoveryCreated' | 'RecoveryInitiated' | 'RecoveryVouched' | 'RecoveryClosed' | 'AccountRecovered' | 'RecoveryRemoved';
|
|
1220
1222
|
}
|
|
@@ -1222,12 +1224,12 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1222
1224
|
interface PezpalletVestingEvent extends Enum {
|
|
1223
1225
|
readonly isVestingUpdated: boolean;
|
|
1224
1226
|
readonly asVestingUpdated: {
|
|
1225
|
-
readonly account:
|
|
1227
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
1226
1228
|
readonly unvested: u128;
|
|
1227
1229
|
} & Struct;
|
|
1228
1230
|
readonly isVestingCompleted: boolean;
|
|
1229
1231
|
readonly asVestingCompleted: {
|
|
1230
|
-
readonly account:
|
|
1232
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
1231
1233
|
} & Struct;
|
|
1232
1234
|
readonly type: 'VestingUpdated' | 'VestingCompleted';
|
|
1233
1235
|
}
|
|
@@ -1331,34 +1333,34 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1331
1333
|
} & Struct;
|
|
1332
1334
|
readonly isPureCreated: boolean;
|
|
1333
1335
|
readonly asPureCreated: {
|
|
1334
|
-
readonly pure:
|
|
1335
|
-
readonly who:
|
|
1336
|
+
readonly pure: PezspCoreCryptoAccountId32;
|
|
1337
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1336
1338
|
readonly proxyType: KitchensinkRuntimeProxyType;
|
|
1337
1339
|
readonly disambiguationIndex: u16;
|
|
1338
1340
|
} & Struct;
|
|
1339
1341
|
readonly isAnnounced: boolean;
|
|
1340
1342
|
readonly asAnnounced: {
|
|
1341
|
-
readonly real:
|
|
1342
|
-
readonly proxy:
|
|
1343
|
+
readonly real: PezspCoreCryptoAccountId32;
|
|
1344
|
+
readonly proxy: PezspCoreCryptoAccountId32;
|
|
1343
1345
|
readonly callHash: H256;
|
|
1344
1346
|
} & Struct;
|
|
1345
1347
|
readonly isProxyAdded: boolean;
|
|
1346
1348
|
readonly asProxyAdded: {
|
|
1347
|
-
readonly delegator:
|
|
1348
|
-
readonly delegatee:
|
|
1349
|
+
readonly delegator: PezspCoreCryptoAccountId32;
|
|
1350
|
+
readonly delegatee: PezspCoreCryptoAccountId32;
|
|
1349
1351
|
readonly proxyType: KitchensinkRuntimeProxyType;
|
|
1350
1352
|
readonly delay: u32;
|
|
1351
1353
|
} & Struct;
|
|
1352
1354
|
readonly isProxyRemoved: boolean;
|
|
1353
1355
|
readonly asProxyRemoved: {
|
|
1354
|
-
readonly delegator:
|
|
1355
|
-
readonly delegatee:
|
|
1356
|
+
readonly delegator: PezspCoreCryptoAccountId32;
|
|
1357
|
+
readonly delegatee: PezspCoreCryptoAccountId32;
|
|
1356
1358
|
readonly proxyType: KitchensinkRuntimeProxyType;
|
|
1357
1359
|
readonly delay: u32;
|
|
1358
1360
|
} & Struct;
|
|
1359
1361
|
readonly isDepositPoked: boolean;
|
|
1360
1362
|
readonly asDepositPoked: {
|
|
1361
|
-
readonly who:
|
|
1363
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1362
1364
|
readonly kind: PezpalletProxyDepositKind;
|
|
1363
1365
|
readonly oldDeposit: u128;
|
|
1364
1366
|
readonly newDeposit: u128;
|
|
@@ -1383,35 +1385,35 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1383
1385
|
interface PezpalletMultisigEvent extends Enum {
|
|
1384
1386
|
readonly isNewMultisig: boolean;
|
|
1385
1387
|
readonly asNewMultisig: {
|
|
1386
|
-
readonly approving:
|
|
1387
|
-
readonly multisig:
|
|
1388
|
+
readonly approving: PezspCoreCryptoAccountId32;
|
|
1389
|
+
readonly multisig: PezspCoreCryptoAccountId32;
|
|
1388
1390
|
readonly callHash: U8aFixed;
|
|
1389
1391
|
} & Struct;
|
|
1390
1392
|
readonly isMultisigApproval: boolean;
|
|
1391
1393
|
readonly asMultisigApproval: {
|
|
1392
|
-
readonly approving:
|
|
1394
|
+
readonly approving: PezspCoreCryptoAccountId32;
|
|
1393
1395
|
readonly timepoint: PezpalletMultisigTimepoint;
|
|
1394
|
-
readonly multisig:
|
|
1396
|
+
readonly multisig: PezspCoreCryptoAccountId32;
|
|
1395
1397
|
readonly callHash: U8aFixed;
|
|
1396
1398
|
} & Struct;
|
|
1397
1399
|
readonly isMultisigExecuted: boolean;
|
|
1398
1400
|
readonly asMultisigExecuted: {
|
|
1399
|
-
readonly approving:
|
|
1401
|
+
readonly approving: PezspCoreCryptoAccountId32;
|
|
1400
1402
|
readonly timepoint: PezpalletMultisigTimepoint;
|
|
1401
|
-
readonly multisig:
|
|
1403
|
+
readonly multisig: PezspCoreCryptoAccountId32;
|
|
1402
1404
|
readonly callHash: U8aFixed;
|
|
1403
1405
|
readonly result: Result<Null, PezspRuntimeDispatchError>;
|
|
1404
1406
|
} & Struct;
|
|
1405
1407
|
readonly isMultisigCancelled: boolean;
|
|
1406
1408
|
readonly asMultisigCancelled: {
|
|
1407
|
-
readonly cancelling:
|
|
1409
|
+
readonly cancelling: PezspCoreCryptoAccountId32;
|
|
1408
1410
|
readonly timepoint: PezpalletMultisigTimepoint;
|
|
1409
|
-
readonly multisig:
|
|
1411
|
+
readonly multisig: PezspCoreCryptoAccountId32;
|
|
1410
1412
|
readonly callHash: U8aFixed;
|
|
1411
1413
|
} & Struct;
|
|
1412
1414
|
readonly isDepositPoked: boolean;
|
|
1413
1415
|
readonly asDepositPoked: {
|
|
1414
|
-
readonly who:
|
|
1416
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1415
1417
|
readonly callHash: U8aFixed;
|
|
1416
1418
|
readonly oldDeposit: u128;
|
|
1417
1419
|
readonly newDeposit: u128;
|
|
@@ -1441,13 +1443,13 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1441
1443
|
readonly isBountyAwarded: boolean;
|
|
1442
1444
|
readonly asBountyAwarded: {
|
|
1443
1445
|
readonly index: u32;
|
|
1444
|
-
readonly beneficiary:
|
|
1446
|
+
readonly beneficiary: PezspCoreCryptoAccountId32;
|
|
1445
1447
|
} & Struct;
|
|
1446
1448
|
readonly isBountyClaimed: boolean;
|
|
1447
1449
|
readonly asBountyClaimed: {
|
|
1448
1450
|
readonly index: u32;
|
|
1449
1451
|
readonly payout: u128;
|
|
1450
|
-
readonly beneficiary:
|
|
1452
|
+
readonly beneficiary: PezspCoreCryptoAccountId32;
|
|
1451
1453
|
} & Struct;
|
|
1452
1454
|
readonly isBountyCanceled: boolean;
|
|
1453
1455
|
readonly asBountyCanceled: {
|
|
@@ -1464,7 +1466,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1464
1466
|
readonly isCuratorProposed: boolean;
|
|
1465
1467
|
readonly asCuratorProposed: {
|
|
1466
1468
|
readonly bountyId: u32;
|
|
1467
|
-
readonly curator:
|
|
1469
|
+
readonly curator: PezspCoreCryptoAccountId32;
|
|
1468
1470
|
} & Struct;
|
|
1469
1471
|
readonly isCuratorUnassigned: boolean;
|
|
1470
1472
|
readonly asCuratorUnassigned: {
|
|
@@ -1473,7 +1475,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1473
1475
|
readonly isCuratorAccepted: boolean;
|
|
1474
1476
|
readonly asCuratorAccepted: {
|
|
1475
1477
|
readonly bountyId: u32;
|
|
1476
|
-
readonly curator:
|
|
1478
|
+
readonly curator: PezspCoreCryptoAccountId32;
|
|
1477
1479
|
} & Struct;
|
|
1478
1480
|
readonly type: 'BountyProposed' | 'BountyRejected' | 'BountyBecameActive' | 'BountyAwarded' | 'BountyClaimed' | 'BountyCanceled' | 'BountyExtended' | 'BountyApproved' | 'CuratorProposed' | 'CuratorUnassigned' | 'CuratorAccepted';
|
|
1479
1481
|
}
|
|
@@ -1490,7 +1492,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1490
1492
|
readonly isTipClosed: boolean;
|
|
1491
1493
|
readonly asTipClosed: {
|
|
1492
1494
|
readonly tipHash: H256;
|
|
1493
|
-
readonly who:
|
|
1495
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1494
1496
|
readonly payout: u128;
|
|
1495
1497
|
} & Struct;
|
|
1496
1498
|
readonly isTipRetracted: boolean;
|
|
@@ -1500,7 +1502,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1500
1502
|
readonly isTipSlashed: boolean;
|
|
1501
1503
|
readonly asTipSlashed: {
|
|
1502
1504
|
readonly tipHash: H256;
|
|
1503
|
-
readonly finder:
|
|
1505
|
+
readonly finder: PezspCoreCryptoAccountId32;
|
|
1504
1506
|
readonly deposit: u128;
|
|
1505
1507
|
} & Struct;
|
|
1506
1508
|
readonly type: 'NewTip' | 'TipClosing' | 'TipClosed' | 'TipRetracted' | 'TipSlashed';
|
|
@@ -1510,49 +1512,49 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1510
1512
|
readonly isCreated: boolean;
|
|
1511
1513
|
readonly asCreated: {
|
|
1512
1514
|
readonly assetId: u32;
|
|
1513
|
-
readonly creator:
|
|
1514
|
-
readonly owner:
|
|
1515
|
+
readonly creator: PezspCoreCryptoAccountId32;
|
|
1516
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
1515
1517
|
} & Struct;
|
|
1516
1518
|
readonly isIssued: boolean;
|
|
1517
1519
|
readonly asIssued: {
|
|
1518
1520
|
readonly assetId: u32;
|
|
1519
|
-
readonly owner:
|
|
1521
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
1520
1522
|
readonly amount: u128;
|
|
1521
1523
|
} & Struct;
|
|
1522
1524
|
readonly isTransferred: boolean;
|
|
1523
1525
|
readonly asTransferred: {
|
|
1524
1526
|
readonly assetId: u32;
|
|
1525
|
-
readonly from:
|
|
1526
|
-
readonly to:
|
|
1527
|
+
readonly from: PezspCoreCryptoAccountId32;
|
|
1528
|
+
readonly to: PezspCoreCryptoAccountId32;
|
|
1527
1529
|
readonly amount: u128;
|
|
1528
1530
|
} & Struct;
|
|
1529
1531
|
readonly isBurned: boolean;
|
|
1530
1532
|
readonly asBurned: {
|
|
1531
1533
|
readonly assetId: u32;
|
|
1532
|
-
readonly owner:
|
|
1534
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
1533
1535
|
readonly balance: u128;
|
|
1534
1536
|
} & Struct;
|
|
1535
1537
|
readonly isTeamChanged: boolean;
|
|
1536
1538
|
readonly asTeamChanged: {
|
|
1537
1539
|
readonly assetId: u32;
|
|
1538
|
-
readonly issuer:
|
|
1539
|
-
readonly admin:
|
|
1540
|
-
readonly freezer:
|
|
1540
|
+
readonly issuer: PezspCoreCryptoAccountId32;
|
|
1541
|
+
readonly admin: PezspCoreCryptoAccountId32;
|
|
1542
|
+
readonly freezer: PezspCoreCryptoAccountId32;
|
|
1541
1543
|
} & Struct;
|
|
1542
1544
|
readonly isOwnerChanged: boolean;
|
|
1543
1545
|
readonly asOwnerChanged: {
|
|
1544
1546
|
readonly assetId: u32;
|
|
1545
|
-
readonly owner:
|
|
1547
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
1546
1548
|
} & Struct;
|
|
1547
1549
|
readonly isFrozen: boolean;
|
|
1548
1550
|
readonly asFrozen: {
|
|
1549
1551
|
readonly assetId: u32;
|
|
1550
|
-
readonly who:
|
|
1552
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1551
1553
|
} & Struct;
|
|
1552
1554
|
readonly isThawed: boolean;
|
|
1553
1555
|
readonly asThawed: {
|
|
1554
1556
|
readonly assetId: u32;
|
|
1555
|
-
readonly who:
|
|
1557
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1556
1558
|
} & Struct;
|
|
1557
1559
|
readonly isAssetFrozen: boolean;
|
|
1558
1560
|
readonly asAssetFrozen: {
|
|
@@ -1585,7 +1587,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1585
1587
|
readonly isForceCreated: boolean;
|
|
1586
1588
|
readonly asForceCreated: {
|
|
1587
1589
|
readonly assetId: u32;
|
|
1588
|
-
readonly owner:
|
|
1590
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
1589
1591
|
} & Struct;
|
|
1590
1592
|
readonly isMetadataSet: boolean;
|
|
1591
1593
|
readonly asMetadataSet: {
|
|
@@ -1602,22 +1604,22 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1602
1604
|
readonly isApprovedTransfer: boolean;
|
|
1603
1605
|
readonly asApprovedTransfer: {
|
|
1604
1606
|
readonly assetId: u32;
|
|
1605
|
-
readonly source:
|
|
1606
|
-
readonly delegate:
|
|
1607
|
+
readonly source: PezspCoreCryptoAccountId32;
|
|
1608
|
+
readonly delegate: PezspCoreCryptoAccountId32;
|
|
1607
1609
|
readonly amount: u128;
|
|
1608
1610
|
} & Struct;
|
|
1609
1611
|
readonly isApprovalCancelled: boolean;
|
|
1610
1612
|
readonly asApprovalCancelled: {
|
|
1611
1613
|
readonly assetId: u32;
|
|
1612
|
-
readonly owner:
|
|
1613
|
-
readonly delegate:
|
|
1614
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
1615
|
+
readonly delegate: PezspCoreCryptoAccountId32;
|
|
1614
1616
|
} & Struct;
|
|
1615
1617
|
readonly isTransferredApproved: boolean;
|
|
1616
1618
|
readonly asTransferredApproved: {
|
|
1617
1619
|
readonly assetId: u32;
|
|
1618
|
-
readonly owner:
|
|
1619
|
-
readonly delegate:
|
|
1620
|
-
readonly destination:
|
|
1620
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
1621
|
+
readonly delegate: PezspCoreCryptoAccountId32;
|
|
1622
|
+
readonly destination: PezspCoreCryptoAccountId32;
|
|
1621
1623
|
readonly amount: u128;
|
|
1622
1624
|
} & Struct;
|
|
1623
1625
|
readonly isAssetStatusChanged: boolean;
|
|
@@ -1632,24 +1634,24 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1632
1634
|
readonly isTouched: boolean;
|
|
1633
1635
|
readonly asTouched: {
|
|
1634
1636
|
readonly assetId: u32;
|
|
1635
|
-
readonly who:
|
|
1636
|
-
readonly depositor:
|
|
1637
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1638
|
+
readonly depositor: PezspCoreCryptoAccountId32;
|
|
1637
1639
|
} & Struct;
|
|
1638
1640
|
readonly isBlocked: boolean;
|
|
1639
1641
|
readonly asBlocked: {
|
|
1640
1642
|
readonly assetId: u32;
|
|
1641
|
-
readonly who:
|
|
1643
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1642
1644
|
} & Struct;
|
|
1643
1645
|
readonly isDeposited: boolean;
|
|
1644
1646
|
readonly asDeposited: {
|
|
1645
1647
|
readonly assetId: u32;
|
|
1646
|
-
readonly who:
|
|
1648
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1647
1649
|
readonly amount: u128;
|
|
1648
1650
|
} & Struct;
|
|
1649
1651
|
readonly isWithdrawn: boolean;
|
|
1650
1652
|
readonly asWithdrawn: {
|
|
1651
1653
|
readonly assetId: u32;
|
|
1652
|
-
readonly who:
|
|
1654
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1653
1655
|
readonly amount: u128;
|
|
1654
1656
|
} & Struct;
|
|
1655
1657
|
readonly type: 'Created' | 'Issued' | 'Transferred' | 'Burned' | 'TeamChanged' | 'OwnerChanged' | 'Frozen' | 'Thawed' | 'AssetFrozen' | 'AssetThawed' | 'AccountsDestroyed' | 'ApprovalsDestroyed' | 'DestructionStarted' | 'Destroyed' | 'ForceCreated' | 'MetadataSet' | 'MetadataCleared' | 'ApprovedTransfer' | 'ApprovalCancelled' | 'TransferredApproved' | 'AssetStatusChanged' | 'AssetMinBalanceChanged' | 'Touched' | 'Blocked' | 'Deposited' | 'Withdrawn';
|
|
@@ -1660,12 +1662,12 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1660
1662
|
readonly isCallsUpdated: boolean;
|
|
1661
1663
|
readonly isWinner: boolean;
|
|
1662
1664
|
readonly asWinner: {
|
|
1663
|
-
readonly winner:
|
|
1665
|
+
readonly winner: PezspCoreCryptoAccountId32;
|
|
1664
1666
|
readonly lotteryBalance: u128;
|
|
1665
1667
|
} & Struct;
|
|
1666
1668
|
readonly isTicketBought: boolean;
|
|
1667
1669
|
readonly asTicketBought: {
|
|
1668
|
-
readonly who:
|
|
1670
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1669
1671
|
readonly callIndex: ITuple<[u8, u8]>;
|
|
1670
1672
|
} & Struct;
|
|
1671
1673
|
readonly type: 'LotteryStarted' | 'CallsUpdated' | 'Winner' | 'TicketBought';
|
|
@@ -1674,19 +1676,19 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1674
1676
|
interface PezpalletNisEvent extends Enum {
|
|
1675
1677
|
readonly isBidPlaced: boolean;
|
|
1676
1678
|
readonly asBidPlaced: {
|
|
1677
|
-
readonly who:
|
|
1679
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1678
1680
|
readonly amount: u128;
|
|
1679
1681
|
readonly duration: u32;
|
|
1680
1682
|
} & Struct;
|
|
1681
1683
|
readonly isBidRetracted: boolean;
|
|
1682
1684
|
readonly asBidRetracted: {
|
|
1683
|
-
readonly who:
|
|
1685
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1684
1686
|
readonly amount: u128;
|
|
1685
1687
|
readonly duration: u32;
|
|
1686
1688
|
} & Struct;
|
|
1687
1689
|
readonly isBidDropped: boolean;
|
|
1688
1690
|
readonly asBidDropped: {
|
|
1689
|
-
readonly who:
|
|
1691
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1690
1692
|
readonly amount: u128;
|
|
1691
1693
|
readonly duration: u32;
|
|
1692
1694
|
} & Struct;
|
|
@@ -1694,15 +1696,15 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1694
1696
|
readonly asIssued: {
|
|
1695
1697
|
readonly index: u32;
|
|
1696
1698
|
readonly expiry: u32;
|
|
1697
|
-
readonly who:
|
|
1698
|
-
readonly proportion:
|
|
1699
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1700
|
+
readonly proportion: u64;
|
|
1699
1701
|
readonly amount: u128;
|
|
1700
1702
|
} & Struct;
|
|
1701
1703
|
readonly isThawed: boolean;
|
|
1702
1704
|
readonly asThawed: {
|
|
1703
1705
|
readonly index: u32;
|
|
1704
|
-
readonly who:
|
|
1705
|
-
readonly proportion:
|
|
1706
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1707
|
+
readonly proportion: u64;
|
|
1706
1708
|
readonly amount: u128;
|
|
1707
1709
|
readonly dropped: bool;
|
|
1708
1710
|
} & Struct;
|
|
@@ -1712,8 +1714,8 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1712
1714
|
} & Struct;
|
|
1713
1715
|
readonly isTransferred: boolean;
|
|
1714
1716
|
readonly asTransferred: {
|
|
1715
|
-
readonly from:
|
|
1716
|
-
readonly to:
|
|
1717
|
+
readonly from: PezspCoreCryptoAccountId32;
|
|
1718
|
+
readonly to: PezspCoreCryptoAccountId32;
|
|
1717
1719
|
readonly index: u32;
|
|
1718
1720
|
} & Struct;
|
|
1719
1721
|
readonly type: 'BidPlaced' | 'BidRetracted' | 'BidDropped' | 'Issued' | 'Thawed' | 'Funded' | 'Transferred';
|
|
@@ -1723,13 +1725,13 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1723
1725
|
readonly isCreated: boolean;
|
|
1724
1726
|
readonly asCreated: {
|
|
1725
1727
|
readonly collection: u32;
|
|
1726
|
-
readonly creator:
|
|
1727
|
-
readonly owner:
|
|
1728
|
+
readonly creator: PezspCoreCryptoAccountId32;
|
|
1729
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
1728
1730
|
} & Struct;
|
|
1729
1731
|
readonly isForceCreated: boolean;
|
|
1730
1732
|
readonly asForceCreated: {
|
|
1731
1733
|
readonly collection: u32;
|
|
1732
|
-
readonly owner:
|
|
1734
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
1733
1735
|
} & Struct;
|
|
1734
1736
|
readonly isDestroyed: boolean;
|
|
1735
1737
|
readonly asDestroyed: {
|
|
@@ -1739,20 +1741,20 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1739
1741
|
readonly asIssued: {
|
|
1740
1742
|
readonly collection: u32;
|
|
1741
1743
|
readonly item: u32;
|
|
1742
|
-
readonly owner:
|
|
1744
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
1743
1745
|
} & Struct;
|
|
1744
1746
|
readonly isTransferred: boolean;
|
|
1745
1747
|
readonly asTransferred: {
|
|
1746
1748
|
readonly collection: u32;
|
|
1747
1749
|
readonly item: u32;
|
|
1748
|
-
readonly from:
|
|
1749
|
-
readonly to:
|
|
1750
|
+
readonly from: PezspCoreCryptoAccountId32;
|
|
1751
|
+
readonly to: PezspCoreCryptoAccountId32;
|
|
1750
1752
|
} & Struct;
|
|
1751
1753
|
readonly isBurned: boolean;
|
|
1752
1754
|
readonly asBurned: {
|
|
1753
1755
|
readonly collection: u32;
|
|
1754
1756
|
readonly item: u32;
|
|
1755
|
-
readonly owner:
|
|
1757
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
1756
1758
|
} & Struct;
|
|
1757
1759
|
readonly isFrozen: boolean;
|
|
1758
1760
|
readonly asFrozen: {
|
|
@@ -1775,28 +1777,28 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1775
1777
|
readonly isOwnerChanged: boolean;
|
|
1776
1778
|
readonly asOwnerChanged: {
|
|
1777
1779
|
readonly collection: u32;
|
|
1778
|
-
readonly newOwner:
|
|
1780
|
+
readonly newOwner: PezspCoreCryptoAccountId32;
|
|
1779
1781
|
} & Struct;
|
|
1780
1782
|
readonly isTeamChanged: boolean;
|
|
1781
1783
|
readonly asTeamChanged: {
|
|
1782
1784
|
readonly collection: u32;
|
|
1783
|
-
readonly issuer:
|
|
1784
|
-
readonly admin:
|
|
1785
|
-
readonly freezer:
|
|
1785
|
+
readonly issuer: PezspCoreCryptoAccountId32;
|
|
1786
|
+
readonly admin: PezspCoreCryptoAccountId32;
|
|
1787
|
+
readonly freezer: PezspCoreCryptoAccountId32;
|
|
1786
1788
|
} & Struct;
|
|
1787
1789
|
readonly isApprovedTransfer: boolean;
|
|
1788
1790
|
readonly asApprovedTransfer: {
|
|
1789
1791
|
readonly collection: u32;
|
|
1790
1792
|
readonly item: u32;
|
|
1791
|
-
readonly owner:
|
|
1792
|
-
readonly delegate:
|
|
1793
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
1794
|
+
readonly delegate: PezspCoreCryptoAccountId32;
|
|
1793
1795
|
} & Struct;
|
|
1794
1796
|
readonly isApprovalCancelled: boolean;
|
|
1795
1797
|
readonly asApprovalCancelled: {
|
|
1796
1798
|
readonly collection: u32;
|
|
1797
1799
|
readonly item: u32;
|
|
1798
|
-
readonly owner:
|
|
1799
|
-
readonly delegate:
|
|
1800
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
1801
|
+
readonly delegate: PezspCoreCryptoAccountId32;
|
|
1800
1802
|
} & Struct;
|
|
1801
1803
|
readonly isItemStatusChanged: boolean;
|
|
1802
1804
|
readonly asItemStatusChanged: {
|
|
@@ -1844,7 +1846,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1844
1846
|
} & Struct;
|
|
1845
1847
|
readonly isOwnershipAcceptanceChanged: boolean;
|
|
1846
1848
|
readonly asOwnershipAcceptanceChanged: {
|
|
1847
|
-
readonly who:
|
|
1849
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
1848
1850
|
readonly maybeCollection: Option<u32>;
|
|
1849
1851
|
} & Struct;
|
|
1850
1852
|
readonly isCollectionMaxSupplySet: boolean;
|
|
@@ -1857,7 +1859,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1857
1859
|
readonly collection: u32;
|
|
1858
1860
|
readonly item: u32;
|
|
1859
1861
|
readonly price: u128;
|
|
1860
|
-
readonly whitelistedBuyer: Option<
|
|
1862
|
+
readonly whitelistedBuyer: Option<PezspCoreCryptoAccountId32>;
|
|
1861
1863
|
} & Struct;
|
|
1862
1864
|
readonly isItemPriceRemoved: boolean;
|
|
1863
1865
|
readonly asItemPriceRemoved: {
|
|
@@ -1869,8 +1871,8 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1869
1871
|
readonly collection: u32;
|
|
1870
1872
|
readonly item: u32;
|
|
1871
1873
|
readonly price: u128;
|
|
1872
|
-
readonly seller:
|
|
1873
|
-
readonly buyer:
|
|
1874
|
+
readonly seller: PezspCoreCryptoAccountId32;
|
|
1875
|
+
readonly buyer: PezspCoreCryptoAccountId32;
|
|
1874
1876
|
} & Struct;
|
|
1875
1877
|
readonly type: 'Created' | 'ForceCreated' | 'Destroyed' | 'Issued' | 'Transferred' | 'Burned' | 'Frozen' | 'Thawed' | 'CollectionFrozen' | 'CollectionThawed' | 'OwnerChanged' | 'TeamChanged' | 'ApprovedTransfer' | 'ApprovalCancelled' | 'ItemStatusChanged' | 'CollectionMetadataSet' | 'CollectionMetadataCleared' | 'MetadataSet' | 'MetadataCleared' | 'Redeposited' | 'AttributeSet' | 'AttributeCleared' | 'OwnershipAcceptanceChanged' | 'CollectionMaxSupplySet' | 'ItemPriceSet' | 'ItemPriceRemoved' | 'ItemBought';
|
|
1876
1878
|
}
|
|
@@ -1879,13 +1881,13 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1879
1881
|
readonly isCreated: boolean;
|
|
1880
1882
|
readonly asCreated: {
|
|
1881
1883
|
readonly collection: u32;
|
|
1882
|
-
readonly creator:
|
|
1883
|
-
readonly owner:
|
|
1884
|
+
readonly creator: PezspCoreCryptoAccountId32;
|
|
1885
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
1884
1886
|
} & Struct;
|
|
1885
1887
|
readonly isForceCreated: boolean;
|
|
1886
1888
|
readonly asForceCreated: {
|
|
1887
1889
|
readonly collection: u32;
|
|
1888
|
-
readonly owner:
|
|
1890
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
1889
1891
|
} & Struct;
|
|
1890
1892
|
readonly isDestroyed: boolean;
|
|
1891
1893
|
readonly asDestroyed: {
|
|
@@ -1895,20 +1897,20 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1895
1897
|
readonly asIssued: {
|
|
1896
1898
|
readonly collection: u32;
|
|
1897
1899
|
readonly item: u32;
|
|
1898
|
-
readonly owner:
|
|
1900
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
1899
1901
|
} & Struct;
|
|
1900
1902
|
readonly isTransferred: boolean;
|
|
1901
1903
|
readonly asTransferred: {
|
|
1902
1904
|
readonly collection: u32;
|
|
1903
1905
|
readonly item: u32;
|
|
1904
|
-
readonly from:
|
|
1905
|
-
readonly to:
|
|
1906
|
+
readonly from: PezspCoreCryptoAccountId32;
|
|
1907
|
+
readonly to: PezspCoreCryptoAccountId32;
|
|
1906
1908
|
} & Struct;
|
|
1907
1909
|
readonly isBurned: boolean;
|
|
1908
1910
|
readonly asBurned: {
|
|
1909
1911
|
readonly collection: u32;
|
|
1910
1912
|
readonly item: u32;
|
|
1911
|
-
readonly owner:
|
|
1913
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
1912
1914
|
} & Struct;
|
|
1913
1915
|
readonly isItemTransferLocked: boolean;
|
|
1914
1916
|
readonly asItemTransferLocked: {
|
|
@@ -1934,35 +1936,35 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
1934
1936
|
readonly isOwnerChanged: boolean;
|
|
1935
1937
|
readonly asOwnerChanged: {
|
|
1936
1938
|
readonly collection: u32;
|
|
1937
|
-
readonly newOwner:
|
|
1939
|
+
readonly newOwner: PezspCoreCryptoAccountId32;
|
|
1938
1940
|
} & Struct;
|
|
1939
1941
|
readonly isTeamChanged: boolean;
|
|
1940
1942
|
readonly asTeamChanged: {
|
|
1941
1943
|
readonly collection: u32;
|
|
1942
|
-
readonly issuer: Option<
|
|
1943
|
-
readonly admin: Option<
|
|
1944
|
-
readonly freezer: Option<
|
|
1944
|
+
readonly issuer: Option<PezspCoreCryptoAccountId32>;
|
|
1945
|
+
readonly admin: Option<PezspCoreCryptoAccountId32>;
|
|
1946
|
+
readonly freezer: Option<PezspCoreCryptoAccountId32>;
|
|
1945
1947
|
} & Struct;
|
|
1946
1948
|
readonly isTransferApproved: boolean;
|
|
1947
1949
|
readonly asTransferApproved: {
|
|
1948
1950
|
readonly collection: u32;
|
|
1949
1951
|
readonly item: u32;
|
|
1950
|
-
readonly owner:
|
|
1951
|
-
readonly delegate:
|
|
1952
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
1953
|
+
readonly delegate: PezspCoreCryptoAccountId32;
|
|
1952
1954
|
readonly deadline: Option<u32>;
|
|
1953
1955
|
} & Struct;
|
|
1954
1956
|
readonly isApprovalCancelled: boolean;
|
|
1955
1957
|
readonly asApprovalCancelled: {
|
|
1956
1958
|
readonly collection: u32;
|
|
1957
1959
|
readonly item: u32;
|
|
1958
|
-
readonly owner:
|
|
1959
|
-
readonly delegate:
|
|
1960
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
1961
|
+
readonly delegate: PezspCoreCryptoAccountId32;
|
|
1960
1962
|
} & Struct;
|
|
1961
1963
|
readonly isAllApprovalsCancelled: boolean;
|
|
1962
1964
|
readonly asAllApprovalsCancelled: {
|
|
1963
1965
|
readonly collection: u32;
|
|
1964
1966
|
readonly item: u32;
|
|
1965
|
-
readonly owner:
|
|
1967
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
1966
1968
|
} & Struct;
|
|
1967
1969
|
readonly isCollectionConfigChanged: boolean;
|
|
1968
1970
|
readonly asCollectionConfigChanged: {
|
|
@@ -2012,17 +2014,17 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2012
2014
|
readonly asItemAttributesApprovalAdded: {
|
|
2013
2015
|
readonly collection: u32;
|
|
2014
2016
|
readonly item: u32;
|
|
2015
|
-
readonly delegate:
|
|
2017
|
+
readonly delegate: PezspCoreCryptoAccountId32;
|
|
2016
2018
|
} & Struct;
|
|
2017
2019
|
readonly isItemAttributesApprovalRemoved: boolean;
|
|
2018
2020
|
readonly asItemAttributesApprovalRemoved: {
|
|
2019
2021
|
readonly collection: u32;
|
|
2020
2022
|
readonly item: u32;
|
|
2021
|
-
readonly delegate:
|
|
2023
|
+
readonly delegate: PezspCoreCryptoAccountId32;
|
|
2022
2024
|
} & Struct;
|
|
2023
2025
|
readonly isOwnershipAcceptanceChanged: boolean;
|
|
2024
2026
|
readonly asOwnershipAcceptanceChanged: {
|
|
2025
|
-
readonly who:
|
|
2027
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
2026
2028
|
readonly maybeCollection: Option<u32>;
|
|
2027
2029
|
} & Struct;
|
|
2028
2030
|
readonly isCollectionMaxSupplySet: boolean;
|
|
@@ -2043,7 +2045,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2043
2045
|
readonly collection: u32;
|
|
2044
2046
|
readonly item: u32;
|
|
2045
2047
|
readonly price: u128;
|
|
2046
|
-
readonly whitelistedBuyer: Option<
|
|
2048
|
+
readonly whitelistedBuyer: Option<PezspCoreCryptoAccountId32>;
|
|
2047
2049
|
} & Struct;
|
|
2048
2050
|
readonly isItemPriceRemoved: boolean;
|
|
2049
2051
|
readonly asItemPriceRemoved: {
|
|
@@ -2055,15 +2057,15 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2055
2057
|
readonly collection: u32;
|
|
2056
2058
|
readonly item: u32;
|
|
2057
2059
|
readonly price: u128;
|
|
2058
|
-
readonly seller:
|
|
2059
|
-
readonly buyer:
|
|
2060
|
+
readonly seller: PezspCoreCryptoAccountId32;
|
|
2061
|
+
readonly buyer: PezspCoreCryptoAccountId32;
|
|
2060
2062
|
} & Struct;
|
|
2061
2063
|
readonly isTipSent: boolean;
|
|
2062
2064
|
readonly asTipSent: {
|
|
2063
2065
|
readonly collection: u32;
|
|
2064
2066
|
readonly item: u32;
|
|
2065
|
-
readonly sender:
|
|
2066
|
-
readonly receiver:
|
|
2067
|
+
readonly sender: PezspCoreCryptoAccountId32;
|
|
2068
|
+
readonly receiver: PezspCoreCryptoAccountId32;
|
|
2067
2069
|
readonly amount: u128;
|
|
2068
2070
|
} & Struct;
|
|
2069
2071
|
readonly isSwapCreated: boolean;
|
|
@@ -2088,10 +2090,10 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2088
2090
|
readonly asSwapClaimed: {
|
|
2089
2091
|
readonly sentCollection: u32;
|
|
2090
2092
|
readonly sentItem: u32;
|
|
2091
|
-
readonly sentItemOwner:
|
|
2093
|
+
readonly sentItemOwner: PezspCoreCryptoAccountId32;
|
|
2092
2094
|
readonly receivedCollection: u32;
|
|
2093
2095
|
readonly receivedItem: u32;
|
|
2094
|
-
readonly receivedItemOwner:
|
|
2096
|
+
readonly receivedItemOwner: PezspCoreCryptoAccountId32;
|
|
2095
2097
|
readonly price: Option<PezpalletNftsPriceWithDirection>;
|
|
2096
2098
|
readonly deadline: u32;
|
|
2097
2099
|
} & Struct;
|
|
@@ -2116,7 +2118,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2116
2118
|
readonly isCollectionOwner: boolean;
|
|
2117
2119
|
readonly isItemOwner: boolean;
|
|
2118
2120
|
readonly isAccount: boolean;
|
|
2119
|
-
readonly asAccount:
|
|
2121
|
+
readonly asAccount: PezspCoreCryptoAccountId32;
|
|
2120
2122
|
readonly type: 'Pallet' | 'CollectionOwner' | 'ItemOwner' | 'Account';
|
|
2121
2123
|
}
|
|
2122
2124
|
/** @name PezpalletNftsPriceWithDirection (118) */
|
|
@@ -2145,14 +2147,14 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2145
2147
|
readonly nft: u32;
|
|
2146
2148
|
readonly fractions: u128;
|
|
2147
2149
|
readonly asset: u32;
|
|
2148
|
-
readonly beneficiary:
|
|
2150
|
+
readonly beneficiary: PezspCoreCryptoAccountId32;
|
|
2149
2151
|
} & Struct;
|
|
2150
2152
|
readonly isNftUnified: boolean;
|
|
2151
2153
|
readonly asNftUnified: {
|
|
2152
2154
|
readonly nftCollection: u32;
|
|
2153
2155
|
readonly nft: u32;
|
|
2154
2156
|
readonly asset: u32;
|
|
2155
|
-
readonly beneficiary:
|
|
2157
|
+
readonly beneficiary: PezspCoreCryptoAccountId32;
|
|
2156
2158
|
} & Struct;
|
|
2157
2159
|
readonly type: 'NftFractionalized' | 'NftUnified';
|
|
2158
2160
|
}
|
|
@@ -2160,17 +2162,17 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2160
2162
|
interface PezpalletSalaryEvent extends Enum {
|
|
2161
2163
|
readonly isInducted: boolean;
|
|
2162
2164
|
readonly asInducted: {
|
|
2163
|
-
readonly who:
|
|
2165
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
2164
2166
|
} & Struct;
|
|
2165
2167
|
readonly isRegistered: boolean;
|
|
2166
2168
|
readonly asRegistered: {
|
|
2167
|
-
readonly who:
|
|
2169
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
2168
2170
|
readonly amount: u128;
|
|
2169
2171
|
} & Struct;
|
|
2170
2172
|
readonly isPaid: boolean;
|
|
2171
2173
|
readonly asPaid: {
|
|
2172
|
-
readonly who:
|
|
2173
|
-
readonly beneficiary:
|
|
2174
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
2175
|
+
readonly beneficiary: PezspCoreCryptoAccountId32;
|
|
2174
2176
|
readonly amount: u128;
|
|
2175
2177
|
readonly id: Null;
|
|
2176
2178
|
} & Struct;
|
|
@@ -2180,8 +2182,8 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2180
2182
|
} & Struct;
|
|
2181
2183
|
readonly isSwapped: boolean;
|
|
2182
2184
|
readonly asSwapped: {
|
|
2183
|
-
readonly who:
|
|
2184
|
-
readonly newWho:
|
|
2185
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
2186
|
+
readonly newWho: PezspCoreCryptoAccountId32;
|
|
2185
2187
|
} & Struct;
|
|
2186
2188
|
readonly type: 'Inducted' | 'Registered' | 'Paid' | 'CycleStarted' | 'Swapped';
|
|
2187
2189
|
}
|
|
@@ -2193,40 +2195,40 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2193
2195
|
} & Struct;
|
|
2194
2196
|
readonly isActiveChanged: boolean;
|
|
2195
2197
|
readonly asActiveChanged: {
|
|
2196
|
-
readonly who:
|
|
2198
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
2197
2199
|
readonly isActive: bool;
|
|
2198
2200
|
} & Struct;
|
|
2199
2201
|
readonly isInducted: boolean;
|
|
2200
2202
|
readonly asInducted: {
|
|
2201
|
-
readonly who:
|
|
2203
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
2202
2204
|
} & Struct;
|
|
2203
2205
|
readonly isOffboarded: boolean;
|
|
2204
2206
|
readonly asOffboarded: {
|
|
2205
|
-
readonly who:
|
|
2207
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
2206
2208
|
} & Struct;
|
|
2207
2209
|
readonly isPromoted: boolean;
|
|
2208
2210
|
readonly asPromoted: {
|
|
2209
|
-
readonly who:
|
|
2211
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
2210
2212
|
readonly toRank: u16;
|
|
2211
2213
|
} & Struct;
|
|
2212
2214
|
readonly isDemoted: boolean;
|
|
2213
2215
|
readonly asDemoted: {
|
|
2214
|
-
readonly who:
|
|
2216
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
2215
2217
|
readonly toRank: u16;
|
|
2216
2218
|
} & Struct;
|
|
2217
2219
|
readonly isProven: boolean;
|
|
2218
2220
|
readonly asProven: {
|
|
2219
|
-
readonly who:
|
|
2221
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
2220
2222
|
readonly atRank: u16;
|
|
2221
2223
|
} & Struct;
|
|
2222
2224
|
readonly isRequested: boolean;
|
|
2223
2225
|
readonly asRequested: {
|
|
2224
|
-
readonly who:
|
|
2226
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
2225
2227
|
readonly wish: PezpalletCoreFellowshipWish;
|
|
2226
2228
|
} & Struct;
|
|
2227
2229
|
readonly isEvidenceJudged: boolean;
|
|
2228
2230
|
readonly asEvidenceJudged: {
|
|
2229
|
-
readonly who:
|
|
2231
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
2230
2232
|
readonly wish: PezpalletCoreFellowshipWish;
|
|
2231
2233
|
readonly evidence: Bytes;
|
|
2232
2234
|
readonly oldRank: u16;
|
|
@@ -2234,13 +2236,13 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2234
2236
|
} & Struct;
|
|
2235
2237
|
readonly isImported: boolean;
|
|
2236
2238
|
readonly asImported: {
|
|
2237
|
-
readonly who:
|
|
2239
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
2238
2240
|
readonly rank: u16;
|
|
2239
2241
|
} & Struct;
|
|
2240
2242
|
readonly isSwapped: boolean;
|
|
2241
2243
|
readonly asSwapped: {
|
|
2242
|
-
readonly who:
|
|
2243
|
-
readonly newWho:
|
|
2244
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
2245
|
+
readonly newWho: PezspCoreCryptoAccountId32;
|
|
2244
2246
|
} & Struct;
|
|
2245
2247
|
readonly type: 'ParamsChanged' | 'ActiveChanged' | 'Inducted' | 'Offboarded' | 'Promoted' | 'Demoted' | 'Proven' | 'Requested' | 'EvidenceJudged' | 'Imported' | 'Swapped';
|
|
2246
2248
|
}
|
|
@@ -2275,13 +2277,13 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2275
2277
|
interface PezpalletBagsListEvent extends Enum {
|
|
2276
2278
|
readonly isRebagged: boolean;
|
|
2277
2279
|
readonly asRebagged: {
|
|
2278
|
-
readonly who:
|
|
2280
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
2279
2281
|
readonly from: u64;
|
|
2280
2282
|
readonly to: u64;
|
|
2281
2283
|
} & Struct;
|
|
2282
2284
|
readonly isScoreUpdated: boolean;
|
|
2283
2285
|
readonly asScoreUpdated: {
|
|
2284
|
-
readonly who:
|
|
2286
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
2285
2287
|
readonly newScore: u64;
|
|
2286
2288
|
} & Struct;
|
|
2287
2289
|
readonly type: 'Rebagged' | 'ScoreUpdated';
|
|
@@ -2296,7 +2298,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2296
2298
|
} & Struct;
|
|
2297
2299
|
readonly isSlashed: boolean;
|
|
2298
2300
|
readonly asSlashed: {
|
|
2299
|
-
readonly who:
|
|
2301
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
2300
2302
|
readonly amount: u128;
|
|
2301
2303
|
} & Struct;
|
|
2302
2304
|
readonly isAutoMigrationFinished: boolean;
|
|
@@ -2333,14 +2335,14 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2333
2335
|
readonly asAwarded: {
|
|
2334
2336
|
readonly index: u32;
|
|
2335
2337
|
readonly childIndex: u32;
|
|
2336
|
-
readonly beneficiary:
|
|
2338
|
+
readonly beneficiary: PezspCoreCryptoAccountId32;
|
|
2337
2339
|
} & Struct;
|
|
2338
2340
|
readonly isClaimed: boolean;
|
|
2339
2341
|
readonly asClaimed: {
|
|
2340
2342
|
readonly index: u32;
|
|
2341
2343
|
readonly childIndex: u32;
|
|
2342
2344
|
readonly payout: u128;
|
|
2343
|
-
readonly beneficiary:
|
|
2345
|
+
readonly beneficiary: PezspCoreCryptoAccountId32;
|
|
2344
2346
|
} & Struct;
|
|
2345
2347
|
readonly isCanceled: boolean;
|
|
2346
2348
|
readonly asCanceled: {
|
|
@@ -2360,18 +2362,18 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2360
2362
|
readonly isDecisionDepositPlaced: boolean;
|
|
2361
2363
|
readonly asDecisionDepositPlaced: {
|
|
2362
2364
|
readonly index: u32;
|
|
2363
|
-
readonly who:
|
|
2365
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
2364
2366
|
readonly amount: u128;
|
|
2365
2367
|
} & Struct;
|
|
2366
2368
|
readonly isDecisionDepositRefunded: boolean;
|
|
2367
2369
|
readonly asDecisionDepositRefunded: {
|
|
2368
2370
|
readonly index: u32;
|
|
2369
|
-
readonly who:
|
|
2371
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
2370
2372
|
readonly amount: u128;
|
|
2371
2373
|
} & Struct;
|
|
2372
2374
|
readonly isDepositSlashed: boolean;
|
|
2373
2375
|
readonly asDepositSlashed: {
|
|
2374
|
-
readonly who:
|
|
2376
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
2375
2377
|
readonly amount: u128;
|
|
2376
2378
|
} & Struct;
|
|
2377
2379
|
readonly isDecisionStarted: boolean;
|
|
@@ -2421,7 +2423,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2421
2423
|
readonly isSubmissionDepositRefunded: boolean;
|
|
2422
2424
|
readonly asSubmissionDepositRefunded: {
|
|
2423
2425
|
readonly index: u32;
|
|
2424
|
-
readonly who:
|
|
2426
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
2425
2427
|
readonly amount: u128;
|
|
2426
2428
|
} & Struct;
|
|
2427
2429
|
readonly isMetadataSet: boolean;
|
|
@@ -2557,7 +2559,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2557
2559
|
interface PezframeSupportDispatchRawOrigin extends Enum {
|
|
2558
2560
|
readonly isRoot: boolean;
|
|
2559
2561
|
readonly isSigned: boolean;
|
|
2560
|
-
readonly asSigned:
|
|
2562
|
+
readonly asSigned: PezspCoreCryptoAccountId32;
|
|
2561
2563
|
readonly isNone: boolean;
|
|
2562
2564
|
readonly type: 'Root' | 'Signed' | 'None';
|
|
2563
2565
|
}
|
|
@@ -2566,7 +2568,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2566
2568
|
readonly isMembers: boolean;
|
|
2567
2569
|
readonly asMembers: ITuple<[u32, u32]>;
|
|
2568
2570
|
readonly isMember: boolean;
|
|
2569
|
-
readonly asMember:
|
|
2571
|
+
readonly asMember: PezspCoreCryptoAccountId32;
|
|
2570
2572
|
readonly isPhantom: boolean;
|
|
2571
2573
|
readonly type: 'Members' | 'Member' | 'Phantom';
|
|
2572
2574
|
}
|
|
@@ -2644,7 +2646,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2644
2646
|
} & Struct;
|
|
2645
2647
|
readonly isTransfer: boolean;
|
|
2646
2648
|
readonly asTransfer: {
|
|
2647
|
-
readonly new_:
|
|
2649
|
+
readonly new_: PezspRuntimeMultiAddress;
|
|
2648
2650
|
readonly index: u32;
|
|
2649
2651
|
} & Struct;
|
|
2650
2652
|
readonly isFree: boolean;
|
|
@@ -2653,7 +2655,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2653
2655
|
} & Struct;
|
|
2654
2656
|
readonly isForceTransfer: boolean;
|
|
2655
2657
|
readonly asForceTransfer: {
|
|
2656
|
-
readonly new_:
|
|
2658
|
+
readonly new_: PezspRuntimeMultiAddress;
|
|
2657
2659
|
readonly index: u32;
|
|
2658
2660
|
readonly freeze: bool;
|
|
2659
2661
|
} & Struct;
|
|
@@ -2667,41 +2669,44 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2667
2669
|
} & Struct;
|
|
2668
2670
|
readonly type: 'Claim' | 'Transfer' | 'Free' | 'ForceTransfer' | 'Freeze' | 'PokeDeposit';
|
|
2669
2671
|
}
|
|
2672
|
+
/** @name PezspRuntimeMultiAddress (163) */
|
|
2673
|
+
interface PezspRuntimeMultiAddress extends MultiAddress {
|
|
2674
|
+
}
|
|
2670
2675
|
/** @name PezpalletBalancesCall (165) */
|
|
2671
2676
|
interface PezpalletBalancesCall extends Enum {
|
|
2672
2677
|
readonly isTransferAllowDeath: boolean;
|
|
2673
2678
|
readonly asTransferAllowDeath: {
|
|
2674
|
-
readonly dest:
|
|
2679
|
+
readonly dest: PezspRuntimeMultiAddress;
|
|
2675
2680
|
readonly value: Compact<u128>;
|
|
2676
2681
|
} & Struct;
|
|
2677
2682
|
readonly isForceTransfer: boolean;
|
|
2678
2683
|
readonly asForceTransfer: {
|
|
2679
|
-
readonly source:
|
|
2680
|
-
readonly dest:
|
|
2684
|
+
readonly source: PezspRuntimeMultiAddress;
|
|
2685
|
+
readonly dest: PezspRuntimeMultiAddress;
|
|
2681
2686
|
readonly value: Compact<u128>;
|
|
2682
2687
|
} & Struct;
|
|
2683
2688
|
readonly isTransferKeepAlive: boolean;
|
|
2684
2689
|
readonly asTransferKeepAlive: {
|
|
2685
|
-
readonly dest:
|
|
2690
|
+
readonly dest: PezspRuntimeMultiAddress;
|
|
2686
2691
|
readonly value: Compact<u128>;
|
|
2687
2692
|
} & Struct;
|
|
2688
2693
|
readonly isTransferAll: boolean;
|
|
2689
2694
|
readonly asTransferAll: {
|
|
2690
|
-
readonly dest:
|
|
2695
|
+
readonly dest: PezspRuntimeMultiAddress;
|
|
2691
2696
|
readonly keepAlive: bool;
|
|
2692
2697
|
} & Struct;
|
|
2693
2698
|
readonly isForceUnreserve: boolean;
|
|
2694
2699
|
readonly asForceUnreserve: {
|
|
2695
|
-
readonly who:
|
|
2700
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
2696
2701
|
readonly amount: u128;
|
|
2697
2702
|
} & Struct;
|
|
2698
2703
|
readonly isUpgradeAccounts: boolean;
|
|
2699
2704
|
readonly asUpgradeAccounts: {
|
|
2700
|
-
readonly who: Vec<
|
|
2705
|
+
readonly who: Vec<PezspCoreCryptoAccountId32>;
|
|
2701
2706
|
} & Struct;
|
|
2702
2707
|
readonly isForceSetBalance: boolean;
|
|
2703
2708
|
readonly asForceSetBalance: {
|
|
2704
|
-
readonly who:
|
|
2709
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
2705
2710
|
readonly newFree: Compact<u128>;
|
|
2706
2711
|
} & Struct;
|
|
2707
2712
|
readonly isForceAdjustTotalIssuance: boolean;
|
|
@@ -2735,7 +2740,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2735
2740
|
} & Struct;
|
|
2736
2741
|
readonly isSetEmergencyElectionResult: boolean;
|
|
2737
2742
|
readonly asSetEmergencyElectionResult: {
|
|
2738
|
-
readonly supports: Vec<ITuple<[
|
|
2743
|
+
readonly supports: Vec<ITuple<[PezspCoreCryptoAccountId32, PezspNposElectionsSupport]>>;
|
|
2739
2744
|
} & Struct;
|
|
2740
2745
|
readonly isSubmit: boolean;
|
|
2741
2746
|
readonly asSubmit: {
|
|
@@ -2757,21 +2762,21 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2757
2762
|
/** @name KitchensinkRuntimeNposSolution16 (170) */
|
|
2758
2763
|
interface KitchensinkRuntimeNposSolution16 extends Struct {
|
|
2759
2764
|
readonly votes1: Vec<ITuple<[Compact<u32>, Compact<u16>]>>;
|
|
2760
|
-
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<
|
|
2761
|
-
readonly votes3: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
2762
|
-
readonly votes4: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
2763
|
-
readonly votes5: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
2764
|
-
readonly votes6: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
2765
|
-
readonly votes7: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
2766
|
-
readonly votes8: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
2767
|
-
readonly votes9: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
2768
|
-
readonly votes10: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
2769
|
-
readonly votes11: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
2770
|
-
readonly votes12: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
2771
|
-
readonly votes13: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
2772
|
-
readonly votes14: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
2773
|
-
readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
2774
|
-
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
2765
|
+
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<u16>]>, Compact<u16>]>>;
|
|
2766
|
+
readonly votes3: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
2767
|
+
readonly votes4: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
2768
|
+
readonly votes5: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
2769
|
+
readonly votes6: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
2770
|
+
readonly votes7: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
2771
|
+
readonly votes8: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
2772
|
+
readonly votes9: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
2773
|
+
readonly votes10: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
2774
|
+
readonly votes11: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
2775
|
+
readonly votes12: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
2776
|
+
readonly votes13: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
2777
|
+
readonly votes14: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
2778
|
+
readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
2779
|
+
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
2775
2780
|
}
|
|
2776
2781
|
/** @name PezpalletElectionProviderMultiPhaseSolutionOrSnapshotSize (221) */
|
|
2777
2782
|
interface PezpalletElectionProviderMultiPhaseSolutionOrSnapshotSize extends Struct {
|
|
@@ -2781,7 +2786,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2781
2786
|
/** @name PezspNposElectionsSupport (225) */
|
|
2782
2787
|
interface PezspNposElectionsSupport extends Struct {
|
|
2783
2788
|
readonly total: u128;
|
|
2784
|
-
readonly voters: Vec<ITuple<[
|
|
2789
|
+
readonly voters: Vec<ITuple<[PezspCoreCryptoAccountId32, u128]>>;
|
|
2785
2790
|
}
|
|
2786
2791
|
/** @name PezpalletStakingPezpalletCall (226) */
|
|
2787
2792
|
interface PezpalletStakingPezpalletCall extends Enum {
|
|
@@ -2808,7 +2813,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2808
2813
|
} & Struct;
|
|
2809
2814
|
readonly isNominate: boolean;
|
|
2810
2815
|
readonly asNominate: {
|
|
2811
|
-
readonly targets: Vec<
|
|
2816
|
+
readonly targets: Vec<PezspRuntimeMultiAddress>;
|
|
2812
2817
|
} & Struct;
|
|
2813
2818
|
readonly isChill: boolean;
|
|
2814
2819
|
readonly isSetPayee: boolean;
|
|
@@ -2826,17 +2831,17 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2826
2831
|
} & Struct;
|
|
2827
2832
|
readonly isScaleValidatorCount: boolean;
|
|
2828
2833
|
readonly asScaleValidatorCount: {
|
|
2829
|
-
readonly factor:
|
|
2834
|
+
readonly factor: u8;
|
|
2830
2835
|
} & Struct;
|
|
2831
2836
|
readonly isForceNoEras: boolean;
|
|
2832
2837
|
readonly isForceNewEra: boolean;
|
|
2833
2838
|
readonly isSetInvulnerables: boolean;
|
|
2834
2839
|
readonly asSetInvulnerables: {
|
|
2835
|
-
readonly invulnerables: Vec<
|
|
2840
|
+
readonly invulnerables: Vec<PezspCoreCryptoAccountId32>;
|
|
2836
2841
|
} & Struct;
|
|
2837
2842
|
readonly isForceUnstake: boolean;
|
|
2838
2843
|
readonly asForceUnstake: {
|
|
2839
|
-
readonly stash:
|
|
2844
|
+
readonly stash: PezspCoreCryptoAccountId32;
|
|
2840
2845
|
readonly numSlashingSpans: u32;
|
|
2841
2846
|
} & Struct;
|
|
2842
2847
|
readonly isForceNewEraAlways: boolean;
|
|
@@ -2847,7 +2852,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2847
2852
|
} & Struct;
|
|
2848
2853
|
readonly isPayoutStakers: boolean;
|
|
2849
2854
|
readonly asPayoutStakers: {
|
|
2850
|
-
readonly validatorStash:
|
|
2855
|
+
readonly validatorStash: PezspCoreCryptoAccountId32;
|
|
2851
2856
|
readonly era: u32;
|
|
2852
2857
|
} & Struct;
|
|
2853
2858
|
readonly isRebond: boolean;
|
|
@@ -2856,12 +2861,12 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2856
2861
|
} & Struct;
|
|
2857
2862
|
readonly isReapStash: boolean;
|
|
2858
2863
|
readonly asReapStash: {
|
|
2859
|
-
readonly stash:
|
|
2864
|
+
readonly stash: PezspCoreCryptoAccountId32;
|
|
2860
2865
|
readonly numSlashingSpans: u32;
|
|
2861
2866
|
} & Struct;
|
|
2862
2867
|
readonly isKick: boolean;
|
|
2863
2868
|
readonly asKick: {
|
|
2864
|
-
readonly who: Vec<
|
|
2869
|
+
readonly who: Vec<PezspRuntimeMultiAddress>;
|
|
2865
2870
|
} & Struct;
|
|
2866
2871
|
readonly isSetStakingConfigs: boolean;
|
|
2867
2872
|
readonly asSetStakingConfigs: {
|
|
@@ -2875,46 +2880,46 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2875
2880
|
} & Struct;
|
|
2876
2881
|
readonly isChillOther: boolean;
|
|
2877
2882
|
readonly asChillOther: {
|
|
2878
|
-
readonly stash:
|
|
2883
|
+
readonly stash: PezspCoreCryptoAccountId32;
|
|
2879
2884
|
} & Struct;
|
|
2880
2885
|
readonly isForceApplyMinCommission: boolean;
|
|
2881
2886
|
readonly asForceApplyMinCommission: {
|
|
2882
|
-
readonly validatorStash:
|
|
2887
|
+
readonly validatorStash: PezspCoreCryptoAccountId32;
|
|
2883
2888
|
} & Struct;
|
|
2884
2889
|
readonly isSetMinCommission: boolean;
|
|
2885
2890
|
readonly asSetMinCommission: {
|
|
2886
|
-
readonly new_:
|
|
2891
|
+
readonly new_: u32;
|
|
2887
2892
|
} & Struct;
|
|
2888
2893
|
readonly isPayoutStakersByPage: boolean;
|
|
2889
2894
|
readonly asPayoutStakersByPage: {
|
|
2890
|
-
readonly validatorStash:
|
|
2895
|
+
readonly validatorStash: PezspCoreCryptoAccountId32;
|
|
2891
2896
|
readonly era: u32;
|
|
2892
2897
|
readonly page: u32;
|
|
2893
2898
|
} & Struct;
|
|
2894
2899
|
readonly isUpdatePayee: boolean;
|
|
2895
2900
|
readonly asUpdatePayee: {
|
|
2896
|
-
readonly controller:
|
|
2901
|
+
readonly controller: PezspCoreCryptoAccountId32;
|
|
2897
2902
|
} & Struct;
|
|
2898
2903
|
readonly isDeprecateControllerBatch: boolean;
|
|
2899
2904
|
readonly asDeprecateControllerBatch: {
|
|
2900
|
-
readonly controllers: Vec<
|
|
2905
|
+
readonly controllers: Vec<PezspCoreCryptoAccountId32>;
|
|
2901
2906
|
} & Struct;
|
|
2902
2907
|
readonly isRestoreLedger: boolean;
|
|
2903
2908
|
readonly asRestoreLedger: {
|
|
2904
|
-
readonly stash:
|
|
2905
|
-
readonly maybeController: Option<
|
|
2909
|
+
readonly stash: PezspCoreCryptoAccountId32;
|
|
2910
|
+
readonly maybeController: Option<PezspCoreCryptoAccountId32>;
|
|
2906
2911
|
readonly maybeTotal: Option<u128>;
|
|
2907
2912
|
readonly maybeUnlocking: Option<Vec<PezpalletStakingUnlockChunk>>;
|
|
2908
2913
|
} & Struct;
|
|
2909
2914
|
readonly isMigrateCurrency: boolean;
|
|
2910
2915
|
readonly asMigrateCurrency: {
|
|
2911
|
-
readonly stash:
|
|
2916
|
+
readonly stash: PezspCoreCryptoAccountId32;
|
|
2912
2917
|
} & Struct;
|
|
2913
2918
|
readonly isManualSlash: boolean;
|
|
2914
2919
|
readonly asManualSlash: {
|
|
2915
|
-
readonly validatorStash:
|
|
2920
|
+
readonly validatorStash: PezspCoreCryptoAccountId32;
|
|
2916
2921
|
readonly era: u32;
|
|
2917
|
-
readonly slashFraction:
|
|
2922
|
+
readonly slashFraction: u32;
|
|
2918
2923
|
} & Struct;
|
|
2919
2924
|
readonly type: 'Bond' | 'BondExtra' | 'Unbond' | 'WithdrawUnbonded' | 'Validate' | 'Nominate' | 'Chill' | 'SetPayee' | 'SetController' | 'SetValidatorCount' | 'IncreaseValidatorCount' | 'ScaleValidatorCount' | 'ForceNoEras' | 'ForceNewEra' | 'SetInvulnerables' | 'ForceUnstake' | 'ForceNewEraAlways' | 'CancelDeferredSlash' | 'PayoutStakers' | 'Rebond' | 'ReapStash' | 'Kick' | 'SetStakingConfigs' | 'ChillOther' | 'ForceApplyMinCommission' | 'SetMinCommission' | 'PayoutStakersByPage' | 'UpdatePayee' | 'DeprecateControllerBatch' | 'RestoreLedger' | 'MigrateCurrency' | 'ManualSlash';
|
|
2920
2925
|
}
|
|
@@ -2938,7 +2943,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2938
2943
|
interface PezpalletStakingPezpalletConfigOpPercent extends Enum {
|
|
2939
2944
|
readonly isNoop: boolean;
|
|
2940
2945
|
readonly isSet: boolean;
|
|
2941
|
-
readonly asSet:
|
|
2946
|
+
readonly asSet: u8;
|
|
2942
2947
|
readonly isRemove: boolean;
|
|
2943
2948
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
|
2944
2949
|
}
|
|
@@ -2946,7 +2951,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
2946
2951
|
interface PezpalletStakingPezpalletConfigOpPerbill extends Enum {
|
|
2947
2952
|
readonly isNoop: boolean;
|
|
2948
2953
|
readonly isSet: boolean;
|
|
2949
|
-
readonly asSet:
|
|
2954
|
+
readonly asSet: u32;
|
|
2950
2955
|
readonly isRemove: boolean;
|
|
2951
2956
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
|
2952
2957
|
}
|
|
@@ -3031,7 +3036,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3031
3036
|
} & Struct;
|
|
3032
3037
|
readonly isDelegate: boolean;
|
|
3033
3038
|
readonly asDelegate: {
|
|
3034
|
-
readonly to:
|
|
3039
|
+
readonly to: PezspRuntimeMultiAddress;
|
|
3035
3040
|
readonly conviction: PezpalletDemocracyConviction;
|
|
3036
3041
|
readonly balance: u128;
|
|
3037
3042
|
} & Struct;
|
|
@@ -3039,7 +3044,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3039
3044
|
readonly isClearPublicProposals: boolean;
|
|
3040
3045
|
readonly isUnlock: boolean;
|
|
3041
3046
|
readonly asUnlock: {
|
|
3042
|
-
readonly target:
|
|
3047
|
+
readonly target: PezspRuntimeMultiAddress;
|
|
3043
3048
|
} & Struct;
|
|
3044
3049
|
readonly isRemoveVote: boolean;
|
|
3045
3050
|
readonly asRemoveVote: {
|
|
@@ -3047,7 +3052,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3047
3052
|
} & Struct;
|
|
3048
3053
|
readonly isRemoveOtherVote: boolean;
|
|
3049
3054
|
readonly asRemoveOtherVote: {
|
|
3050
|
-
readonly target:
|
|
3055
|
+
readonly target: PezspRuntimeMultiAddress;
|
|
3051
3056
|
readonly index: u32;
|
|
3052
3057
|
} & Struct;
|
|
3053
3058
|
readonly isBlacklist: boolean;
|
|
@@ -3081,8 +3086,8 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3081
3086
|
interface PezpalletCollectiveCall extends Enum {
|
|
3082
3087
|
readonly isSetMembers: boolean;
|
|
3083
3088
|
readonly asSetMembers: {
|
|
3084
|
-
readonly newMembers: Vec<
|
|
3085
|
-
readonly prime: Option<
|
|
3089
|
+
readonly newMembers: Vec<PezspCoreCryptoAccountId32>;
|
|
3090
|
+
readonly prime: Option<PezspCoreCryptoAccountId32>;
|
|
3086
3091
|
readonly oldCount: u32;
|
|
3087
3092
|
} & Struct;
|
|
3088
3093
|
readonly isExecute: boolean;
|
|
@@ -3127,7 +3132,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3127
3132
|
interface PezpalletElectionsPhragmenCall extends Enum {
|
|
3128
3133
|
readonly isVote: boolean;
|
|
3129
3134
|
readonly asVote: {
|
|
3130
|
-
readonly votes: Vec<
|
|
3135
|
+
readonly votes: Vec<PezspCoreCryptoAccountId32>;
|
|
3131
3136
|
readonly value: Compact<u128>;
|
|
3132
3137
|
} & Struct;
|
|
3133
3138
|
readonly isRemoveVoter: boolean;
|
|
@@ -3141,7 +3146,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3141
3146
|
} & Struct;
|
|
3142
3147
|
readonly isRemoveMember: boolean;
|
|
3143
3148
|
readonly asRemoveMember: {
|
|
3144
|
-
readonly who:
|
|
3149
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
3145
3150
|
readonly slashBond: bool;
|
|
3146
3151
|
readonly rerunElection: bool;
|
|
3147
3152
|
} & Struct;
|
|
@@ -3164,28 +3169,28 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3164
3169
|
interface PezpalletMembershipCall extends Enum {
|
|
3165
3170
|
readonly isAddMember: boolean;
|
|
3166
3171
|
readonly asAddMember: {
|
|
3167
|
-
readonly who:
|
|
3172
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
3168
3173
|
} & Struct;
|
|
3169
3174
|
readonly isRemoveMember: boolean;
|
|
3170
3175
|
readonly asRemoveMember: {
|
|
3171
|
-
readonly who:
|
|
3176
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
3172
3177
|
} & Struct;
|
|
3173
3178
|
readonly isSwapMember: boolean;
|
|
3174
3179
|
readonly asSwapMember: {
|
|
3175
|
-
readonly remove:
|
|
3176
|
-
readonly add:
|
|
3180
|
+
readonly remove: PezspRuntimeMultiAddress;
|
|
3181
|
+
readonly add: PezspRuntimeMultiAddress;
|
|
3177
3182
|
} & Struct;
|
|
3178
3183
|
readonly isResetMembers: boolean;
|
|
3179
3184
|
readonly asResetMembers: {
|
|
3180
|
-
readonly members: Vec<
|
|
3185
|
+
readonly members: Vec<PezspCoreCryptoAccountId32>;
|
|
3181
3186
|
} & Struct;
|
|
3182
3187
|
readonly isChangeKey: boolean;
|
|
3183
3188
|
readonly asChangeKey: {
|
|
3184
|
-
readonly new_:
|
|
3189
|
+
readonly new_: PezspRuntimeMultiAddress;
|
|
3185
3190
|
} & Struct;
|
|
3186
3191
|
readonly isSetPrime: boolean;
|
|
3187
3192
|
readonly asSetPrime: {
|
|
3188
|
-
readonly who:
|
|
3193
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
3189
3194
|
} & Struct;
|
|
3190
3195
|
readonly isClearPrime: boolean;
|
|
3191
3196
|
readonly type: 'AddMember' | 'RemoveMember' | 'SwapMember' | 'ResetMembers' | 'ChangeKey' | 'SetPrime' | 'ClearPrime';
|
|
@@ -3254,7 +3259,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3254
3259
|
readonly isSpendLocal: boolean;
|
|
3255
3260
|
readonly asSpendLocal: {
|
|
3256
3261
|
readonly amount: Compact<u128>;
|
|
3257
|
-
readonly beneficiary:
|
|
3262
|
+
readonly beneficiary: PezspRuntimeMultiAddress;
|
|
3258
3263
|
} & Struct;
|
|
3259
3264
|
readonly isRemoveApproval: boolean;
|
|
3260
3265
|
readonly asRemoveApproval: {
|
|
@@ -3264,7 +3269,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3264
3269
|
readonly asSpend: {
|
|
3265
3270
|
readonly assetKind: PezframeSupportTokensFungibleUnionOfNativeOrWithId;
|
|
3266
3271
|
readonly amount: Compact<u128>;
|
|
3267
|
-
readonly beneficiary:
|
|
3272
|
+
readonly beneficiary: PezspRuntimeMultiAddress;
|
|
3268
3273
|
readonly validFrom: Option<u32>;
|
|
3269
3274
|
} & Struct;
|
|
3270
3275
|
readonly isPayout: boolean;
|
|
@@ -3303,7 +3308,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3303
3308
|
interface PezpalletContractsCall extends Enum {
|
|
3304
3309
|
readonly isCallOldWeight: boolean;
|
|
3305
3310
|
readonly asCallOldWeight: {
|
|
3306
|
-
readonly dest:
|
|
3311
|
+
readonly dest: PezspRuntimeMultiAddress;
|
|
3307
3312
|
readonly value: Compact<u128>;
|
|
3308
3313
|
readonly gasLimit: Compact<u64>;
|
|
3309
3314
|
readonly storageDepositLimit: Option<Compact<u128>>;
|
|
@@ -3339,12 +3344,12 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3339
3344
|
} & Struct;
|
|
3340
3345
|
readonly isSetCode: boolean;
|
|
3341
3346
|
readonly asSetCode: {
|
|
3342
|
-
readonly dest:
|
|
3347
|
+
readonly dest: PezspRuntimeMultiAddress;
|
|
3343
3348
|
readonly codeHash: H256;
|
|
3344
3349
|
} & Struct;
|
|
3345
3350
|
readonly isCall: boolean;
|
|
3346
3351
|
readonly asCall: {
|
|
3347
|
-
readonly dest:
|
|
3352
|
+
readonly dest: PezspRuntimeMultiAddress;
|
|
3348
3353
|
readonly value: Compact<u128>;
|
|
3349
3354
|
readonly gasLimit: PezspWeightsWeightV2Weight;
|
|
3350
3355
|
readonly storageDepositLimit: Option<Compact<u128>>;
|
|
@@ -3393,11 +3398,11 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3393
3398
|
} & Struct;
|
|
3394
3399
|
readonly isSetKey: boolean;
|
|
3395
3400
|
readonly asSetKey: {
|
|
3396
|
-
readonly new_:
|
|
3401
|
+
readonly new_: PezspRuntimeMultiAddress;
|
|
3397
3402
|
} & Struct;
|
|
3398
3403
|
readonly isSudoAs: boolean;
|
|
3399
3404
|
readonly asSudoAs: {
|
|
3400
|
-
readonly who:
|
|
3405
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
3401
3406
|
readonly call: RuntimeCall;
|
|
3402
3407
|
} & Struct;
|
|
3403
3408
|
readonly isRemoveKey: boolean;
|
|
@@ -3426,7 +3431,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3426
3431
|
interface PezpalletIdentityCall extends Enum {
|
|
3427
3432
|
readonly isAddRegistrar: boolean;
|
|
3428
3433
|
readonly asAddRegistrar: {
|
|
3429
|
-
readonly account:
|
|
3434
|
+
readonly account: PezspRuntimeMultiAddress;
|
|
3430
3435
|
} & Struct;
|
|
3431
3436
|
readonly isSetIdentity: boolean;
|
|
3432
3437
|
readonly asSetIdentity: {
|
|
@@ -3434,7 +3439,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3434
3439
|
} & Struct;
|
|
3435
3440
|
readonly isSetSubs: boolean;
|
|
3436
3441
|
readonly asSetSubs: {
|
|
3437
|
-
readonly subs: Vec<ITuple<[
|
|
3442
|
+
readonly subs: Vec<ITuple<[PezspCoreCryptoAccountId32, Data]>>;
|
|
3438
3443
|
} & Struct;
|
|
3439
3444
|
readonly isClearIdentity: boolean;
|
|
3440
3445
|
readonly isRequestJudgement: boolean;
|
|
@@ -3454,7 +3459,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3454
3459
|
readonly isSetAccountId: boolean;
|
|
3455
3460
|
readonly asSetAccountId: {
|
|
3456
3461
|
readonly index: Compact<u32>;
|
|
3457
|
-
readonly new_:
|
|
3462
|
+
readonly new_: PezspRuntimeMultiAddress;
|
|
3458
3463
|
} & Struct;
|
|
3459
3464
|
readonly isSetFields: boolean;
|
|
3460
3465
|
readonly asSetFields: {
|
|
@@ -3464,43 +3469,43 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3464
3469
|
readonly isProvideJudgement: boolean;
|
|
3465
3470
|
readonly asProvideJudgement: {
|
|
3466
3471
|
readonly regIndex: Compact<u32>;
|
|
3467
|
-
readonly target:
|
|
3472
|
+
readonly target: PezspRuntimeMultiAddress;
|
|
3468
3473
|
readonly judgement: PezpalletIdentityJudgement;
|
|
3469
3474
|
readonly identity: H256;
|
|
3470
3475
|
} & Struct;
|
|
3471
3476
|
readonly isKillIdentity: boolean;
|
|
3472
3477
|
readonly asKillIdentity: {
|
|
3473
|
-
readonly target:
|
|
3478
|
+
readonly target: PezspRuntimeMultiAddress;
|
|
3474
3479
|
} & Struct;
|
|
3475
3480
|
readonly isAddSub: boolean;
|
|
3476
3481
|
readonly asAddSub: {
|
|
3477
|
-
readonly sub:
|
|
3482
|
+
readonly sub: PezspRuntimeMultiAddress;
|
|
3478
3483
|
readonly data: Data;
|
|
3479
3484
|
} & Struct;
|
|
3480
3485
|
readonly isRenameSub: boolean;
|
|
3481
3486
|
readonly asRenameSub: {
|
|
3482
|
-
readonly sub:
|
|
3487
|
+
readonly sub: PezspRuntimeMultiAddress;
|
|
3483
3488
|
readonly data: Data;
|
|
3484
3489
|
} & Struct;
|
|
3485
3490
|
readonly isRemoveSub: boolean;
|
|
3486
3491
|
readonly asRemoveSub: {
|
|
3487
|
-
readonly sub:
|
|
3492
|
+
readonly sub: PezspRuntimeMultiAddress;
|
|
3488
3493
|
} & Struct;
|
|
3489
3494
|
readonly isQuitSub: boolean;
|
|
3490
3495
|
readonly isAddUsernameAuthority: boolean;
|
|
3491
3496
|
readonly asAddUsernameAuthority: {
|
|
3492
|
-
readonly authority:
|
|
3497
|
+
readonly authority: PezspRuntimeMultiAddress;
|
|
3493
3498
|
readonly suffix: Bytes;
|
|
3494
3499
|
readonly allocation: u32;
|
|
3495
3500
|
} & Struct;
|
|
3496
3501
|
readonly isRemoveUsernameAuthority: boolean;
|
|
3497
3502
|
readonly asRemoveUsernameAuthority: {
|
|
3498
3503
|
readonly suffix: Bytes;
|
|
3499
|
-
readonly authority:
|
|
3504
|
+
readonly authority: PezspRuntimeMultiAddress;
|
|
3500
3505
|
} & Struct;
|
|
3501
3506
|
readonly isSetUsernameFor: boolean;
|
|
3502
3507
|
readonly asSetUsernameFor: {
|
|
3503
|
-
readonly who:
|
|
3508
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
3504
3509
|
readonly username: Bytes;
|
|
3505
3510
|
readonly signature: Option<PezspRuntimeMultiSignature>;
|
|
3506
3511
|
readonly useAllocation: bool;
|
|
@@ -3574,14 +3579,14 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3574
3579
|
readonly isUnbid: boolean;
|
|
3575
3580
|
readonly isVouch: boolean;
|
|
3576
3581
|
readonly asVouch: {
|
|
3577
|
-
readonly who:
|
|
3582
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
3578
3583
|
readonly value: u128;
|
|
3579
3584
|
readonly tip: u128;
|
|
3580
3585
|
} & Struct;
|
|
3581
3586
|
readonly isUnvouch: boolean;
|
|
3582
3587
|
readonly isVote: boolean;
|
|
3583
3588
|
readonly asVote: {
|
|
3584
|
-
readonly candidate:
|
|
3589
|
+
readonly candidate: PezspRuntimeMultiAddress;
|
|
3585
3590
|
readonly approve: bool;
|
|
3586
3591
|
} & Struct;
|
|
3587
3592
|
readonly isDefenderVote: boolean;
|
|
@@ -3595,7 +3600,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3595
3600
|
} & Struct;
|
|
3596
3601
|
readonly isFoundSociety: boolean;
|
|
3597
3602
|
readonly asFoundSociety: {
|
|
3598
|
-
readonly founder:
|
|
3603
|
+
readonly founder: PezspRuntimeMultiAddress;
|
|
3599
3604
|
readonly maxMembers: u32;
|
|
3600
3605
|
readonly maxIntake: u32;
|
|
3601
3606
|
readonly maxStrikes: u32;
|
|
@@ -3605,7 +3610,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3605
3610
|
readonly isDissolve: boolean;
|
|
3606
3611
|
readonly isJudgeSuspendedMember: boolean;
|
|
3607
3612
|
readonly asJudgeSuspendedMember: {
|
|
3608
|
-
readonly who:
|
|
3613
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
3609
3614
|
readonly forgive: bool;
|
|
3610
3615
|
} & Struct;
|
|
3611
3616
|
readonly isSetParameters: boolean;
|
|
@@ -3619,20 +3624,20 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3619
3624
|
readonly isClaimMembership: boolean;
|
|
3620
3625
|
readonly isBestowMembership: boolean;
|
|
3621
3626
|
readonly asBestowMembership: {
|
|
3622
|
-
readonly candidate:
|
|
3627
|
+
readonly candidate: PezspCoreCryptoAccountId32;
|
|
3623
3628
|
} & Struct;
|
|
3624
3629
|
readonly isKickCandidate: boolean;
|
|
3625
3630
|
readonly asKickCandidate: {
|
|
3626
|
-
readonly candidate:
|
|
3631
|
+
readonly candidate: PezspCoreCryptoAccountId32;
|
|
3627
3632
|
} & Struct;
|
|
3628
3633
|
readonly isResignCandidacy: boolean;
|
|
3629
3634
|
readonly isDropCandidate: boolean;
|
|
3630
3635
|
readonly asDropCandidate: {
|
|
3631
|
-
readonly candidate:
|
|
3636
|
+
readonly candidate: PezspCoreCryptoAccountId32;
|
|
3632
3637
|
} & Struct;
|
|
3633
3638
|
readonly isCleanupCandidacy: boolean;
|
|
3634
3639
|
readonly asCleanupCandidacy: {
|
|
3635
|
-
readonly candidate:
|
|
3640
|
+
readonly candidate: PezspCoreCryptoAccountId32;
|
|
3636
3641
|
readonly max: u32;
|
|
3637
3642
|
} & Struct;
|
|
3638
3643
|
readonly isCleanupChallenge: boolean;
|
|
@@ -3646,41 +3651,41 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3646
3651
|
interface PezpalletRecoveryCall extends Enum {
|
|
3647
3652
|
readonly isAsRecovered: boolean;
|
|
3648
3653
|
readonly asAsRecovered: {
|
|
3649
|
-
readonly account:
|
|
3654
|
+
readonly account: PezspRuntimeMultiAddress;
|
|
3650
3655
|
readonly call: RuntimeCall;
|
|
3651
3656
|
} & Struct;
|
|
3652
3657
|
readonly isSetRecovered: boolean;
|
|
3653
3658
|
readonly asSetRecovered: {
|
|
3654
|
-
readonly lost:
|
|
3655
|
-
readonly rescuer:
|
|
3659
|
+
readonly lost: PezspRuntimeMultiAddress;
|
|
3660
|
+
readonly rescuer: PezspRuntimeMultiAddress;
|
|
3656
3661
|
} & Struct;
|
|
3657
3662
|
readonly isCreateRecovery: boolean;
|
|
3658
3663
|
readonly asCreateRecovery: {
|
|
3659
|
-
readonly friends: Vec<
|
|
3664
|
+
readonly friends: Vec<PezspCoreCryptoAccountId32>;
|
|
3660
3665
|
readonly threshold: u16;
|
|
3661
3666
|
readonly delayPeriod: u32;
|
|
3662
3667
|
} & Struct;
|
|
3663
3668
|
readonly isInitiateRecovery: boolean;
|
|
3664
3669
|
readonly asInitiateRecovery: {
|
|
3665
|
-
readonly account:
|
|
3670
|
+
readonly account: PezspRuntimeMultiAddress;
|
|
3666
3671
|
} & Struct;
|
|
3667
3672
|
readonly isVouchRecovery: boolean;
|
|
3668
3673
|
readonly asVouchRecovery: {
|
|
3669
|
-
readonly lost:
|
|
3670
|
-
readonly rescuer:
|
|
3674
|
+
readonly lost: PezspRuntimeMultiAddress;
|
|
3675
|
+
readonly rescuer: PezspRuntimeMultiAddress;
|
|
3671
3676
|
} & Struct;
|
|
3672
3677
|
readonly isClaimRecovery: boolean;
|
|
3673
3678
|
readonly asClaimRecovery: {
|
|
3674
|
-
readonly account:
|
|
3679
|
+
readonly account: PezspRuntimeMultiAddress;
|
|
3675
3680
|
} & Struct;
|
|
3676
3681
|
readonly isCloseRecovery: boolean;
|
|
3677
3682
|
readonly asCloseRecovery: {
|
|
3678
|
-
readonly rescuer:
|
|
3683
|
+
readonly rescuer: PezspRuntimeMultiAddress;
|
|
3679
3684
|
} & Struct;
|
|
3680
3685
|
readonly isRemoveRecovery: boolean;
|
|
3681
3686
|
readonly isCancelRecovered: boolean;
|
|
3682
3687
|
readonly asCancelRecovered: {
|
|
3683
|
-
readonly account:
|
|
3688
|
+
readonly account: PezspRuntimeMultiAddress;
|
|
3684
3689
|
} & Struct;
|
|
3685
3690
|
readonly type: 'AsRecovered' | 'SetRecovered' | 'CreateRecovery' | 'InitiateRecovery' | 'VouchRecovery' | 'ClaimRecovery' | 'CloseRecovery' | 'RemoveRecovery' | 'CancelRecovered';
|
|
3686
3691
|
}
|
|
@@ -3689,17 +3694,17 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3689
3694
|
readonly isVest: boolean;
|
|
3690
3695
|
readonly isVestOther: boolean;
|
|
3691
3696
|
readonly asVestOther: {
|
|
3692
|
-
readonly target:
|
|
3697
|
+
readonly target: PezspRuntimeMultiAddress;
|
|
3693
3698
|
} & Struct;
|
|
3694
3699
|
readonly isVestedTransfer: boolean;
|
|
3695
3700
|
readonly asVestedTransfer: {
|
|
3696
|
-
readonly target:
|
|
3701
|
+
readonly target: PezspRuntimeMultiAddress;
|
|
3697
3702
|
readonly schedule: PezpalletVestingVestingInfo;
|
|
3698
3703
|
} & Struct;
|
|
3699
3704
|
readonly isForceVestedTransfer: boolean;
|
|
3700
3705
|
readonly asForceVestedTransfer: {
|
|
3701
|
-
readonly source:
|
|
3702
|
-
readonly target:
|
|
3706
|
+
readonly source: PezspRuntimeMultiAddress;
|
|
3707
|
+
readonly target: PezspRuntimeMultiAddress;
|
|
3703
3708
|
readonly schedule: PezpalletVestingVestingInfo;
|
|
3704
3709
|
} & Struct;
|
|
3705
3710
|
readonly isMergeSchedules: boolean;
|
|
@@ -3709,7 +3714,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3709
3714
|
} & Struct;
|
|
3710
3715
|
readonly isForceRemoveVestingSchedule: boolean;
|
|
3711
3716
|
readonly asForceRemoveVestingSchedule: {
|
|
3712
|
-
readonly target:
|
|
3717
|
+
readonly target: PezspRuntimeMultiAddress;
|
|
3713
3718
|
readonly scheduleIndex: u32;
|
|
3714
3719
|
} & Struct;
|
|
3715
3720
|
readonly type: 'Vest' | 'VestOther' | 'VestedTransfer' | 'ForceVestedTransfer' | 'MergeSchedules' | 'ForceRemoveVestingSchedule';
|
|
@@ -3836,19 +3841,19 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3836
3841
|
interface PezpalletProxyCall extends Enum {
|
|
3837
3842
|
readonly isProxy: boolean;
|
|
3838
3843
|
readonly asProxy: {
|
|
3839
|
-
readonly real:
|
|
3844
|
+
readonly real: PezspRuntimeMultiAddress;
|
|
3840
3845
|
readonly forceProxyType: Option<KitchensinkRuntimeProxyType>;
|
|
3841
3846
|
readonly call: RuntimeCall;
|
|
3842
3847
|
} & Struct;
|
|
3843
3848
|
readonly isAddProxy: boolean;
|
|
3844
3849
|
readonly asAddProxy: {
|
|
3845
|
-
readonly delegate:
|
|
3850
|
+
readonly delegate: PezspRuntimeMultiAddress;
|
|
3846
3851
|
readonly proxyType: KitchensinkRuntimeProxyType;
|
|
3847
3852
|
readonly delay: u32;
|
|
3848
3853
|
} & Struct;
|
|
3849
3854
|
readonly isRemoveProxy: boolean;
|
|
3850
3855
|
readonly asRemoveProxy: {
|
|
3851
|
-
readonly delegate:
|
|
3856
|
+
readonly delegate: PezspRuntimeMultiAddress;
|
|
3852
3857
|
readonly proxyType: KitchensinkRuntimeProxyType;
|
|
3853
3858
|
readonly delay: u32;
|
|
3854
3859
|
} & Struct;
|
|
@@ -3861,7 +3866,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3861
3866
|
} & Struct;
|
|
3862
3867
|
readonly isKillPure: boolean;
|
|
3863
3868
|
readonly asKillPure: {
|
|
3864
|
-
readonly spawner:
|
|
3869
|
+
readonly spawner: PezspRuntimeMultiAddress;
|
|
3865
3870
|
readonly proxyType: KitchensinkRuntimeProxyType;
|
|
3866
3871
|
readonly index: u16;
|
|
3867
3872
|
readonly height: Compact<u32>;
|
|
@@ -3869,23 +3874,23 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3869
3874
|
} & Struct;
|
|
3870
3875
|
readonly isAnnounce: boolean;
|
|
3871
3876
|
readonly asAnnounce: {
|
|
3872
|
-
readonly real:
|
|
3877
|
+
readonly real: PezspRuntimeMultiAddress;
|
|
3873
3878
|
readonly callHash: H256;
|
|
3874
3879
|
} & Struct;
|
|
3875
3880
|
readonly isRemoveAnnouncement: boolean;
|
|
3876
3881
|
readonly asRemoveAnnouncement: {
|
|
3877
|
-
readonly real:
|
|
3882
|
+
readonly real: PezspRuntimeMultiAddress;
|
|
3878
3883
|
readonly callHash: H256;
|
|
3879
3884
|
} & Struct;
|
|
3880
3885
|
readonly isRejectAnnouncement: boolean;
|
|
3881
3886
|
readonly asRejectAnnouncement: {
|
|
3882
|
-
readonly delegate:
|
|
3887
|
+
readonly delegate: PezspRuntimeMultiAddress;
|
|
3883
3888
|
readonly callHash: H256;
|
|
3884
3889
|
} & Struct;
|
|
3885
3890
|
readonly isProxyAnnounced: boolean;
|
|
3886
3891
|
readonly asProxyAnnounced: {
|
|
3887
|
-
readonly delegate:
|
|
3888
|
-
readonly real:
|
|
3892
|
+
readonly delegate: PezspRuntimeMultiAddress;
|
|
3893
|
+
readonly real: PezspRuntimeMultiAddress;
|
|
3889
3894
|
readonly forceProxyType: Option<KitchensinkRuntimeProxyType>;
|
|
3890
3895
|
readonly call: RuntimeCall;
|
|
3891
3896
|
} & Struct;
|
|
@@ -3896,13 +3901,13 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3896
3901
|
interface PezpalletMultisigCall extends Enum {
|
|
3897
3902
|
readonly isAsMultiThreshold1: boolean;
|
|
3898
3903
|
readonly asAsMultiThreshold1: {
|
|
3899
|
-
readonly otherSignatories: Vec<
|
|
3904
|
+
readonly otherSignatories: Vec<PezspCoreCryptoAccountId32>;
|
|
3900
3905
|
readonly call: RuntimeCall;
|
|
3901
3906
|
} & Struct;
|
|
3902
3907
|
readonly isAsMulti: boolean;
|
|
3903
3908
|
readonly asAsMulti: {
|
|
3904
3909
|
readonly threshold: u16;
|
|
3905
|
-
readonly otherSignatories: Vec<
|
|
3910
|
+
readonly otherSignatories: Vec<PezspCoreCryptoAccountId32>;
|
|
3906
3911
|
readonly maybeTimepoint: Option<PezpalletMultisigTimepoint>;
|
|
3907
3912
|
readonly call: RuntimeCall;
|
|
3908
3913
|
readonly maxWeight: PezspWeightsWeightV2Weight;
|
|
@@ -3910,7 +3915,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3910
3915
|
readonly isApproveAsMulti: boolean;
|
|
3911
3916
|
readonly asApproveAsMulti: {
|
|
3912
3917
|
readonly threshold: u16;
|
|
3913
|
-
readonly otherSignatories: Vec<
|
|
3918
|
+
readonly otherSignatories: Vec<PezspCoreCryptoAccountId32>;
|
|
3914
3919
|
readonly maybeTimepoint: Option<PezpalletMultisigTimepoint>;
|
|
3915
3920
|
readonly callHash: U8aFixed;
|
|
3916
3921
|
readonly maxWeight: PezspWeightsWeightV2Weight;
|
|
@@ -3918,14 +3923,14 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3918
3923
|
readonly isCancelAsMulti: boolean;
|
|
3919
3924
|
readonly asCancelAsMulti: {
|
|
3920
3925
|
readonly threshold: u16;
|
|
3921
|
-
readonly otherSignatories: Vec<
|
|
3926
|
+
readonly otherSignatories: Vec<PezspCoreCryptoAccountId32>;
|
|
3922
3927
|
readonly timepoint: PezpalletMultisigTimepoint;
|
|
3923
3928
|
readonly callHash: U8aFixed;
|
|
3924
3929
|
} & Struct;
|
|
3925
3930
|
readonly isPokeDeposit: boolean;
|
|
3926
3931
|
readonly asPokeDeposit: {
|
|
3927
3932
|
readonly threshold: u16;
|
|
3928
|
-
readonly otherSignatories: Vec<
|
|
3933
|
+
readonly otherSignatories: Vec<PezspCoreCryptoAccountId32>;
|
|
3929
3934
|
readonly callHash: U8aFixed;
|
|
3930
3935
|
} & Struct;
|
|
3931
3936
|
readonly type: 'AsMultiThreshold1' | 'AsMulti' | 'ApproveAsMulti' | 'CancelAsMulti' | 'PokeDeposit';
|
|
@@ -3944,7 +3949,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3944
3949
|
readonly isProposeCurator: boolean;
|
|
3945
3950
|
readonly asProposeCurator: {
|
|
3946
3951
|
readonly bountyId: Compact<u32>;
|
|
3947
|
-
readonly curator:
|
|
3952
|
+
readonly curator: PezspRuntimeMultiAddress;
|
|
3948
3953
|
readonly fee: Compact<u128>;
|
|
3949
3954
|
} & Struct;
|
|
3950
3955
|
readonly isUnassignCurator: boolean;
|
|
@@ -3958,7 +3963,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3958
3963
|
readonly isAwardBounty: boolean;
|
|
3959
3964
|
readonly asAwardBounty: {
|
|
3960
3965
|
readonly bountyId: Compact<u32>;
|
|
3961
|
-
readonly beneficiary:
|
|
3966
|
+
readonly beneficiary: PezspRuntimeMultiAddress;
|
|
3962
3967
|
} & Struct;
|
|
3963
3968
|
readonly isClaimBounty: boolean;
|
|
3964
3969
|
readonly asClaimBounty: {
|
|
@@ -3976,7 +3981,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3976
3981
|
readonly isApproveBountyWithCurator: boolean;
|
|
3977
3982
|
readonly asApproveBountyWithCurator: {
|
|
3978
3983
|
readonly bountyId: Compact<u32>;
|
|
3979
|
-
readonly curator:
|
|
3984
|
+
readonly curator: PezspRuntimeMultiAddress;
|
|
3980
3985
|
readonly fee: Compact<u128>;
|
|
3981
3986
|
} & Struct;
|
|
3982
3987
|
readonly type: 'ProposeBounty' | 'ApproveBounty' | 'ProposeCurator' | 'UnassignCurator' | 'AcceptCurator' | 'AwardBounty' | 'ClaimBounty' | 'CloseBounty' | 'ExtendBountyExpiry' | 'ApproveBountyWithCurator';
|
|
@@ -3986,7 +3991,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3986
3991
|
readonly isReportAwesome: boolean;
|
|
3987
3992
|
readonly asReportAwesome: {
|
|
3988
3993
|
readonly reason: Bytes;
|
|
3989
|
-
readonly who:
|
|
3994
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
3990
3995
|
} & Struct;
|
|
3991
3996
|
readonly isRetractTip: boolean;
|
|
3992
3997
|
readonly asRetractTip: {
|
|
@@ -3995,7 +4000,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
3995
4000
|
readonly isTipNew: boolean;
|
|
3996
4001
|
readonly asTipNew: {
|
|
3997
4002
|
readonly reason: Bytes;
|
|
3998
|
-
readonly who:
|
|
4003
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
3999
4004
|
readonly tipValue: Compact<u128>;
|
|
4000
4005
|
} & Struct;
|
|
4001
4006
|
readonly isTip: boolean;
|
|
@@ -4018,13 +4023,13 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4018
4023
|
readonly isCreate: boolean;
|
|
4019
4024
|
readonly asCreate: {
|
|
4020
4025
|
readonly id: Compact<u32>;
|
|
4021
|
-
readonly admin:
|
|
4026
|
+
readonly admin: PezspRuntimeMultiAddress;
|
|
4022
4027
|
readonly minBalance: u128;
|
|
4023
4028
|
} & Struct;
|
|
4024
4029
|
readonly isForceCreate: boolean;
|
|
4025
4030
|
readonly asForceCreate: {
|
|
4026
4031
|
readonly id: Compact<u32>;
|
|
4027
|
-
readonly owner:
|
|
4032
|
+
readonly owner: PezspRuntimeMultiAddress;
|
|
4028
4033
|
readonly isSufficient: bool;
|
|
4029
4034
|
readonly minBalance: Compact<u128>;
|
|
4030
4035
|
} & Struct;
|
|
@@ -4047,43 +4052,43 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4047
4052
|
readonly isMint: boolean;
|
|
4048
4053
|
readonly asMint: {
|
|
4049
4054
|
readonly id: Compact<u32>;
|
|
4050
|
-
readonly beneficiary:
|
|
4055
|
+
readonly beneficiary: PezspRuntimeMultiAddress;
|
|
4051
4056
|
readonly amount: Compact<u128>;
|
|
4052
4057
|
} & Struct;
|
|
4053
4058
|
readonly isBurn: boolean;
|
|
4054
4059
|
readonly asBurn: {
|
|
4055
4060
|
readonly id: Compact<u32>;
|
|
4056
|
-
readonly who:
|
|
4061
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
4057
4062
|
readonly amount: Compact<u128>;
|
|
4058
4063
|
} & Struct;
|
|
4059
4064
|
readonly isTransfer: boolean;
|
|
4060
4065
|
readonly asTransfer: {
|
|
4061
4066
|
readonly id: Compact<u32>;
|
|
4062
|
-
readonly target:
|
|
4067
|
+
readonly target: PezspRuntimeMultiAddress;
|
|
4063
4068
|
readonly amount: Compact<u128>;
|
|
4064
4069
|
} & Struct;
|
|
4065
4070
|
readonly isTransferKeepAlive: boolean;
|
|
4066
4071
|
readonly asTransferKeepAlive: {
|
|
4067
4072
|
readonly id: Compact<u32>;
|
|
4068
|
-
readonly target:
|
|
4073
|
+
readonly target: PezspRuntimeMultiAddress;
|
|
4069
4074
|
readonly amount: Compact<u128>;
|
|
4070
4075
|
} & Struct;
|
|
4071
4076
|
readonly isForceTransfer: boolean;
|
|
4072
4077
|
readonly asForceTransfer: {
|
|
4073
4078
|
readonly id: Compact<u32>;
|
|
4074
|
-
readonly source:
|
|
4075
|
-
readonly dest:
|
|
4079
|
+
readonly source: PezspRuntimeMultiAddress;
|
|
4080
|
+
readonly dest: PezspRuntimeMultiAddress;
|
|
4076
4081
|
readonly amount: Compact<u128>;
|
|
4077
4082
|
} & Struct;
|
|
4078
4083
|
readonly isFreeze: boolean;
|
|
4079
4084
|
readonly asFreeze: {
|
|
4080
4085
|
readonly id: Compact<u32>;
|
|
4081
|
-
readonly who:
|
|
4086
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
4082
4087
|
} & Struct;
|
|
4083
4088
|
readonly isThaw: boolean;
|
|
4084
4089
|
readonly asThaw: {
|
|
4085
4090
|
readonly id: Compact<u32>;
|
|
4086
|
-
readonly who:
|
|
4091
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
4087
4092
|
} & Struct;
|
|
4088
4093
|
readonly isFreezeAsset: boolean;
|
|
4089
4094
|
readonly asFreezeAsset: {
|
|
@@ -4096,14 +4101,14 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4096
4101
|
readonly isTransferOwnership: boolean;
|
|
4097
4102
|
readonly asTransferOwnership: {
|
|
4098
4103
|
readonly id: Compact<u32>;
|
|
4099
|
-
readonly owner:
|
|
4104
|
+
readonly owner: PezspRuntimeMultiAddress;
|
|
4100
4105
|
} & Struct;
|
|
4101
4106
|
readonly isSetTeam: boolean;
|
|
4102
4107
|
readonly asSetTeam: {
|
|
4103
4108
|
readonly id: Compact<u32>;
|
|
4104
|
-
readonly issuer:
|
|
4105
|
-
readonly admin:
|
|
4106
|
-
readonly freezer:
|
|
4109
|
+
readonly issuer: PezspRuntimeMultiAddress;
|
|
4110
|
+
readonly admin: PezspRuntimeMultiAddress;
|
|
4111
|
+
readonly freezer: PezspRuntimeMultiAddress;
|
|
4107
4112
|
} & Struct;
|
|
4108
4113
|
readonly isSetMetadata: boolean;
|
|
4109
4114
|
readonly asSetMetadata: {
|
|
@@ -4131,10 +4136,10 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4131
4136
|
readonly isForceAssetStatus: boolean;
|
|
4132
4137
|
readonly asForceAssetStatus: {
|
|
4133
4138
|
readonly id: Compact<u32>;
|
|
4134
|
-
readonly owner:
|
|
4135
|
-
readonly issuer:
|
|
4136
|
-
readonly admin:
|
|
4137
|
-
readonly freezer:
|
|
4139
|
+
readonly owner: PezspRuntimeMultiAddress;
|
|
4140
|
+
readonly issuer: PezspRuntimeMultiAddress;
|
|
4141
|
+
readonly admin: PezspRuntimeMultiAddress;
|
|
4142
|
+
readonly freezer: PezspRuntimeMultiAddress;
|
|
4138
4143
|
readonly minBalance: Compact<u128>;
|
|
4139
4144
|
readonly isSufficient: bool;
|
|
4140
4145
|
readonly isFrozen: bool;
|
|
@@ -4142,25 +4147,25 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4142
4147
|
readonly isApproveTransfer: boolean;
|
|
4143
4148
|
readonly asApproveTransfer: {
|
|
4144
4149
|
readonly id: Compact<u32>;
|
|
4145
|
-
readonly delegate:
|
|
4150
|
+
readonly delegate: PezspRuntimeMultiAddress;
|
|
4146
4151
|
readonly amount: Compact<u128>;
|
|
4147
4152
|
} & Struct;
|
|
4148
4153
|
readonly isCancelApproval: boolean;
|
|
4149
4154
|
readonly asCancelApproval: {
|
|
4150
4155
|
readonly id: Compact<u32>;
|
|
4151
|
-
readonly delegate:
|
|
4156
|
+
readonly delegate: PezspRuntimeMultiAddress;
|
|
4152
4157
|
} & Struct;
|
|
4153
4158
|
readonly isForceCancelApproval: boolean;
|
|
4154
4159
|
readonly asForceCancelApproval: {
|
|
4155
4160
|
readonly id: Compact<u32>;
|
|
4156
|
-
readonly owner:
|
|
4157
|
-
readonly delegate:
|
|
4161
|
+
readonly owner: PezspRuntimeMultiAddress;
|
|
4162
|
+
readonly delegate: PezspRuntimeMultiAddress;
|
|
4158
4163
|
} & Struct;
|
|
4159
4164
|
readonly isTransferApproved: boolean;
|
|
4160
4165
|
readonly asTransferApproved: {
|
|
4161
4166
|
readonly id: Compact<u32>;
|
|
4162
|
-
readonly owner:
|
|
4163
|
-
readonly destination:
|
|
4167
|
+
readonly owner: PezspRuntimeMultiAddress;
|
|
4168
|
+
readonly destination: PezspRuntimeMultiAddress;
|
|
4164
4169
|
readonly amount: Compact<u128>;
|
|
4165
4170
|
} & Struct;
|
|
4166
4171
|
readonly isTouch: boolean;
|
|
@@ -4180,22 +4185,22 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4180
4185
|
readonly isTouchOther: boolean;
|
|
4181
4186
|
readonly asTouchOther: {
|
|
4182
4187
|
readonly id: Compact<u32>;
|
|
4183
|
-
readonly who:
|
|
4188
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
4184
4189
|
} & Struct;
|
|
4185
4190
|
readonly isRefundOther: boolean;
|
|
4186
4191
|
readonly asRefundOther: {
|
|
4187
4192
|
readonly id: Compact<u32>;
|
|
4188
|
-
readonly who:
|
|
4193
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
4189
4194
|
} & Struct;
|
|
4190
4195
|
readonly isBlock: boolean;
|
|
4191
4196
|
readonly asBlock: {
|
|
4192
4197
|
readonly id: Compact<u32>;
|
|
4193
|
-
readonly who:
|
|
4198
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
4194
4199
|
} & Struct;
|
|
4195
4200
|
readonly isTransferAll: boolean;
|
|
4196
4201
|
readonly asTransferAll: {
|
|
4197
4202
|
readonly id: Compact<u32>;
|
|
4198
|
-
readonly dest:
|
|
4203
|
+
readonly dest: PezspRuntimeMultiAddress;
|
|
4199
4204
|
readonly keepAlive: bool;
|
|
4200
4205
|
} & Struct;
|
|
4201
4206
|
readonly type: 'Create' | 'ForceCreate' | 'StartDestroy' | 'DestroyAccounts' | 'DestroyApprovals' | 'FinishDestroy' | 'Mint' | 'Burn' | 'Transfer' | 'TransferKeepAlive' | 'ForceTransfer' | 'Freeze' | 'Thaw' | 'FreezeAsset' | 'ThawAsset' | 'TransferOwnership' | 'SetTeam' | 'SetMetadata' | 'ClearMetadata' | 'ForceSetMetadata' | 'ForceClearMetadata' | 'ForceAssetStatus' | 'ApproveTransfer' | 'CancelApproval' | 'ForceCancelApproval' | 'TransferApproved' | 'Touch' | 'Refund' | 'SetMinBalance' | 'TouchOther' | 'RefundOther' | 'Block' | 'TransferAll';
|
|
@@ -4314,7 +4319,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4314
4319
|
readonly isThawPrivate: boolean;
|
|
4315
4320
|
readonly asThawPrivate: {
|
|
4316
4321
|
readonly index: Compact<u32>;
|
|
4317
|
-
readonly maybeProportion: Option<
|
|
4322
|
+
readonly maybeProportion: Option<u64>;
|
|
4318
4323
|
} & Struct;
|
|
4319
4324
|
readonly isThawCommunal: boolean;
|
|
4320
4325
|
readonly asThawCommunal: {
|
|
@@ -4335,12 +4340,12 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4335
4340
|
readonly isCreate: boolean;
|
|
4336
4341
|
readonly asCreate: {
|
|
4337
4342
|
readonly collection: u32;
|
|
4338
|
-
readonly admin:
|
|
4343
|
+
readonly admin: PezspRuntimeMultiAddress;
|
|
4339
4344
|
} & Struct;
|
|
4340
4345
|
readonly isForceCreate: boolean;
|
|
4341
4346
|
readonly asForceCreate: {
|
|
4342
4347
|
readonly collection: u32;
|
|
4343
|
-
readonly owner:
|
|
4348
|
+
readonly owner: PezspRuntimeMultiAddress;
|
|
4344
4349
|
readonly freeHolding: bool;
|
|
4345
4350
|
} & Struct;
|
|
4346
4351
|
readonly isDestroy: boolean;
|
|
@@ -4352,19 +4357,19 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4352
4357
|
readonly asMint: {
|
|
4353
4358
|
readonly collection: u32;
|
|
4354
4359
|
readonly item: u32;
|
|
4355
|
-
readonly owner:
|
|
4360
|
+
readonly owner: PezspRuntimeMultiAddress;
|
|
4356
4361
|
} & Struct;
|
|
4357
4362
|
readonly isBurn: boolean;
|
|
4358
4363
|
readonly asBurn: {
|
|
4359
4364
|
readonly collection: u32;
|
|
4360
4365
|
readonly item: u32;
|
|
4361
|
-
readonly checkOwner: Option<
|
|
4366
|
+
readonly checkOwner: Option<PezspRuntimeMultiAddress>;
|
|
4362
4367
|
} & Struct;
|
|
4363
4368
|
readonly isTransfer: boolean;
|
|
4364
4369
|
readonly asTransfer: {
|
|
4365
4370
|
readonly collection: u32;
|
|
4366
4371
|
readonly item: u32;
|
|
4367
|
-
readonly dest:
|
|
4372
|
+
readonly dest: PezspRuntimeMultiAddress;
|
|
4368
4373
|
} & Struct;
|
|
4369
4374
|
readonly isRedeposit: boolean;
|
|
4370
4375
|
readonly asRedeposit: {
|
|
@@ -4392,34 +4397,34 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4392
4397
|
readonly isTransferOwnership: boolean;
|
|
4393
4398
|
readonly asTransferOwnership: {
|
|
4394
4399
|
readonly collection: u32;
|
|
4395
|
-
readonly newOwner:
|
|
4400
|
+
readonly newOwner: PezspRuntimeMultiAddress;
|
|
4396
4401
|
} & Struct;
|
|
4397
4402
|
readonly isSetTeam: boolean;
|
|
4398
4403
|
readonly asSetTeam: {
|
|
4399
4404
|
readonly collection: u32;
|
|
4400
|
-
readonly issuer:
|
|
4401
|
-
readonly admin:
|
|
4402
|
-
readonly freezer:
|
|
4405
|
+
readonly issuer: PezspRuntimeMultiAddress;
|
|
4406
|
+
readonly admin: PezspRuntimeMultiAddress;
|
|
4407
|
+
readonly freezer: PezspRuntimeMultiAddress;
|
|
4403
4408
|
} & Struct;
|
|
4404
4409
|
readonly isApproveTransfer: boolean;
|
|
4405
4410
|
readonly asApproveTransfer: {
|
|
4406
4411
|
readonly collection: u32;
|
|
4407
4412
|
readonly item: u32;
|
|
4408
|
-
readonly delegate:
|
|
4413
|
+
readonly delegate: PezspRuntimeMultiAddress;
|
|
4409
4414
|
} & Struct;
|
|
4410
4415
|
readonly isCancelApproval: boolean;
|
|
4411
4416
|
readonly asCancelApproval: {
|
|
4412
4417
|
readonly collection: u32;
|
|
4413
4418
|
readonly item: u32;
|
|
4414
|
-
readonly maybeCheckDelegate: Option<
|
|
4419
|
+
readonly maybeCheckDelegate: Option<PezspRuntimeMultiAddress>;
|
|
4415
4420
|
} & Struct;
|
|
4416
4421
|
readonly isForceItemStatus: boolean;
|
|
4417
4422
|
readonly asForceItemStatus: {
|
|
4418
4423
|
readonly collection: u32;
|
|
4419
|
-
readonly owner:
|
|
4420
|
-
readonly issuer:
|
|
4421
|
-
readonly admin:
|
|
4422
|
-
readonly freezer:
|
|
4424
|
+
readonly owner: PezspRuntimeMultiAddress;
|
|
4425
|
+
readonly issuer: PezspRuntimeMultiAddress;
|
|
4426
|
+
readonly admin: PezspRuntimeMultiAddress;
|
|
4427
|
+
readonly freezer: PezspRuntimeMultiAddress;
|
|
4423
4428
|
readonly freeHolding: bool;
|
|
4424
4429
|
readonly isFrozen: bool;
|
|
4425
4430
|
} & Struct;
|
|
@@ -4472,7 +4477,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4472
4477
|
readonly collection: u32;
|
|
4473
4478
|
readonly item: u32;
|
|
4474
4479
|
readonly price: Option<u128>;
|
|
4475
|
-
readonly whitelistedBuyer: Option<
|
|
4480
|
+
readonly whitelistedBuyer: Option<PezspRuntimeMultiAddress>;
|
|
4476
4481
|
} & Struct;
|
|
4477
4482
|
readonly isBuyItem: boolean;
|
|
4478
4483
|
readonly asBuyItem: {
|
|
@@ -4492,12 +4497,12 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4492
4497
|
interface PezpalletNftsCall extends Enum {
|
|
4493
4498
|
readonly isCreate: boolean;
|
|
4494
4499
|
readonly asCreate: {
|
|
4495
|
-
readonly admin:
|
|
4500
|
+
readonly admin: PezspRuntimeMultiAddress;
|
|
4496
4501
|
readonly config: PezpalletNftsCollectionConfig;
|
|
4497
4502
|
} & Struct;
|
|
4498
4503
|
readonly isForceCreate: boolean;
|
|
4499
4504
|
readonly asForceCreate: {
|
|
4500
|
-
readonly owner:
|
|
4505
|
+
readonly owner: PezspRuntimeMultiAddress;
|
|
4501
4506
|
readonly config: PezpalletNftsCollectionConfig;
|
|
4502
4507
|
} & Struct;
|
|
4503
4508
|
readonly isDestroy: boolean;
|
|
@@ -4509,14 +4514,14 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4509
4514
|
readonly asMint: {
|
|
4510
4515
|
readonly collection: u32;
|
|
4511
4516
|
readonly item: u32;
|
|
4512
|
-
readonly mintTo:
|
|
4517
|
+
readonly mintTo: PezspRuntimeMultiAddress;
|
|
4513
4518
|
readonly witnessData: Option<PezpalletNftsMintWitness>;
|
|
4514
4519
|
} & Struct;
|
|
4515
4520
|
readonly isForceMint: boolean;
|
|
4516
4521
|
readonly asForceMint: {
|
|
4517
4522
|
readonly collection: u32;
|
|
4518
4523
|
readonly item: u32;
|
|
4519
|
-
readonly mintTo:
|
|
4524
|
+
readonly mintTo: PezspRuntimeMultiAddress;
|
|
4520
4525
|
readonly itemConfig: PezpalletNftsItemConfig;
|
|
4521
4526
|
} & Struct;
|
|
4522
4527
|
readonly isBurn: boolean;
|
|
@@ -4528,7 +4533,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4528
4533
|
readonly asTransfer: {
|
|
4529
4534
|
readonly collection: u32;
|
|
4530
4535
|
readonly item: u32;
|
|
4531
|
-
readonly dest:
|
|
4536
|
+
readonly dest: PezspRuntimeMultiAddress;
|
|
4532
4537
|
} & Struct;
|
|
4533
4538
|
readonly isRedeposit: boolean;
|
|
4534
4539
|
readonly asRedeposit: {
|
|
@@ -4553,19 +4558,19 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4553
4558
|
readonly isTransferOwnership: boolean;
|
|
4554
4559
|
readonly asTransferOwnership: {
|
|
4555
4560
|
readonly collection: u32;
|
|
4556
|
-
readonly newOwner:
|
|
4561
|
+
readonly newOwner: PezspRuntimeMultiAddress;
|
|
4557
4562
|
} & Struct;
|
|
4558
4563
|
readonly isSetTeam: boolean;
|
|
4559
4564
|
readonly asSetTeam: {
|
|
4560
4565
|
readonly collection: u32;
|
|
4561
|
-
readonly issuer: Option<
|
|
4562
|
-
readonly admin: Option<
|
|
4563
|
-
readonly freezer: Option<
|
|
4566
|
+
readonly issuer: Option<PezspRuntimeMultiAddress>;
|
|
4567
|
+
readonly admin: Option<PezspRuntimeMultiAddress>;
|
|
4568
|
+
readonly freezer: Option<PezspRuntimeMultiAddress>;
|
|
4564
4569
|
} & Struct;
|
|
4565
4570
|
readonly isForceCollectionOwner: boolean;
|
|
4566
4571
|
readonly asForceCollectionOwner: {
|
|
4567
4572
|
readonly collection: u32;
|
|
4568
|
-
readonly owner:
|
|
4573
|
+
readonly owner: PezspRuntimeMultiAddress;
|
|
4569
4574
|
} & Struct;
|
|
4570
4575
|
readonly isForceCollectionConfig: boolean;
|
|
4571
4576
|
readonly asForceCollectionConfig: {
|
|
@@ -4576,14 +4581,14 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4576
4581
|
readonly asApproveTransfer: {
|
|
4577
4582
|
readonly collection: u32;
|
|
4578
4583
|
readonly item: u32;
|
|
4579
|
-
readonly delegate:
|
|
4584
|
+
readonly delegate: PezspRuntimeMultiAddress;
|
|
4580
4585
|
readonly maybeDeadline: Option<u32>;
|
|
4581
4586
|
} & Struct;
|
|
4582
4587
|
readonly isCancelApproval: boolean;
|
|
4583
4588
|
readonly asCancelApproval: {
|
|
4584
4589
|
readonly collection: u32;
|
|
4585
4590
|
readonly item: u32;
|
|
4586
|
-
readonly delegate:
|
|
4591
|
+
readonly delegate: PezspRuntimeMultiAddress;
|
|
4587
4592
|
} & Struct;
|
|
4588
4593
|
readonly isClearAllTransferApprovals: boolean;
|
|
4589
4594
|
readonly asClearAllTransferApprovals: {
|
|
@@ -4607,7 +4612,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4607
4612
|
} & Struct;
|
|
4608
4613
|
readonly isForceSetAttribute: boolean;
|
|
4609
4614
|
readonly asForceSetAttribute: {
|
|
4610
|
-
readonly setAs: Option<
|
|
4615
|
+
readonly setAs: Option<PezspCoreCryptoAccountId32>;
|
|
4611
4616
|
readonly collection: u32;
|
|
4612
4617
|
readonly maybeItem: Option<u32>;
|
|
4613
4618
|
readonly namespace: PezpalletNftsAttributeNamespace;
|
|
@@ -4625,13 +4630,13 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4625
4630
|
readonly asApproveItemAttributes: {
|
|
4626
4631
|
readonly collection: u32;
|
|
4627
4632
|
readonly item: u32;
|
|
4628
|
-
readonly delegate:
|
|
4633
|
+
readonly delegate: PezspRuntimeMultiAddress;
|
|
4629
4634
|
} & Struct;
|
|
4630
4635
|
readonly isCancelItemAttributesApproval: boolean;
|
|
4631
4636
|
readonly asCancelItemAttributesApproval: {
|
|
4632
4637
|
readonly collection: u32;
|
|
4633
4638
|
readonly item: u32;
|
|
4634
|
-
readonly delegate:
|
|
4639
|
+
readonly delegate: PezspRuntimeMultiAddress;
|
|
4635
4640
|
readonly witness: PezpalletNftsCancelAttributesApprovalWitness;
|
|
4636
4641
|
} & Struct;
|
|
4637
4642
|
readonly isSetMetadata: boolean;
|
|
@@ -4673,7 +4678,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4673
4678
|
readonly collection: u32;
|
|
4674
4679
|
readonly item: u32;
|
|
4675
4680
|
readonly price: Option<u128>;
|
|
4676
|
-
readonly whitelistedBuyer: Option<
|
|
4681
|
+
readonly whitelistedBuyer: Option<PezspRuntimeMultiAddress>;
|
|
4677
4682
|
} & Struct;
|
|
4678
4683
|
readonly isBuyItem: boolean;
|
|
4679
4684
|
readonly asBuyItem: {
|
|
@@ -4711,13 +4716,13 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4711
4716
|
readonly asMintPreSigned: {
|
|
4712
4717
|
readonly mintData: PezpalletNftsPreSignedMint;
|
|
4713
4718
|
readonly signature: PezspRuntimeMultiSignature;
|
|
4714
|
-
readonly signer:
|
|
4719
|
+
readonly signer: PezspCoreCryptoAccountId32;
|
|
4715
4720
|
} & Struct;
|
|
4716
4721
|
readonly isSetAttributesPreSigned: boolean;
|
|
4717
4722
|
readonly asSetAttributesPreSigned: {
|
|
4718
4723
|
readonly data: PezpalletNftsPreSignedAttributes;
|
|
4719
4724
|
readonly signature: PezspRuntimeMultiSignature;
|
|
4720
|
-
readonly signer:
|
|
4725
|
+
readonly signer: PezspCoreCryptoAccountId32;
|
|
4721
4726
|
} & Struct;
|
|
4722
4727
|
readonly type: 'Create' | 'ForceCreate' | 'Destroy' | 'Mint' | 'ForceMint' | 'Burn' | 'Transfer' | 'Redeposit' | 'LockItemTransfer' | 'UnlockItemTransfer' | 'LockCollection' | 'TransferOwnership' | 'SetTeam' | 'ForceCollectionOwner' | 'ForceCollectionConfig' | 'ApproveTransfer' | 'CancelApproval' | 'ClearAllTransferApprovals' | 'LockItemProperties' | 'SetAttribute' | 'ForceSetAttribute' | 'ClearAttribute' | 'ApproveItemAttributes' | 'CancelItemAttributesApproval' | 'SetMetadata' | 'ClearMetadata' | 'SetCollectionMetadata' | 'ClearCollectionMetadata' | 'SetAcceptOwnership' | 'SetCollectionMaxSupply' | 'UpdateMintSettings' | 'SetPrice' | 'BuyItem' | 'PayTips' | 'CreateSwap' | 'CancelSwap' | 'ClaimSwap' | 'MintPreSigned' | 'SetAttributesPreSigned';
|
|
4723
4728
|
}
|
|
@@ -4782,7 +4787,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4782
4787
|
interface PezpalletNftsItemTip extends Struct {
|
|
4783
4788
|
readonly collection: u32;
|
|
4784
4789
|
readonly item: u32;
|
|
4785
|
-
readonly receiver:
|
|
4790
|
+
readonly receiver: PezspCoreCryptoAccountId32;
|
|
4786
4791
|
readonly amount: u128;
|
|
4787
4792
|
}
|
|
4788
4793
|
/** @name PezpalletNftsPreSignedMint (369) */
|
|
@@ -4791,7 +4796,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4791
4796
|
readonly item: u32;
|
|
4792
4797
|
readonly attributes: Vec<ITuple<[Bytes, Bytes]>>;
|
|
4793
4798
|
readonly metadata: Bytes;
|
|
4794
|
-
readonly onlyAccount: Option<
|
|
4799
|
+
readonly onlyAccount: Option<PezspCoreCryptoAccountId32>;
|
|
4795
4800
|
readonly deadline: u32;
|
|
4796
4801
|
readonly mintPrice: Option<u128>;
|
|
4797
4802
|
}
|
|
@@ -4810,7 +4815,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4810
4815
|
readonly nftCollectionId: u32;
|
|
4811
4816
|
readonly nftId: u32;
|
|
4812
4817
|
readonly assetId: u32;
|
|
4813
|
-
readonly beneficiary:
|
|
4818
|
+
readonly beneficiary: PezspRuntimeMultiAddress;
|
|
4814
4819
|
readonly fractions: u128;
|
|
4815
4820
|
} & Struct;
|
|
4816
4821
|
readonly isUnify: boolean;
|
|
@@ -4818,7 +4823,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4818
4823
|
readonly nftCollectionId: u32;
|
|
4819
4824
|
readonly nftId: u32;
|
|
4820
4825
|
readonly assetId: u32;
|
|
4821
|
-
readonly beneficiary:
|
|
4826
|
+
readonly beneficiary: PezspRuntimeMultiAddress;
|
|
4822
4827
|
} & Struct;
|
|
4823
4828
|
readonly type: 'Fractionalize' | 'Unify';
|
|
4824
4829
|
}
|
|
@@ -4831,7 +4836,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4831
4836
|
readonly isPayout: boolean;
|
|
4832
4837
|
readonly isPayoutOther: boolean;
|
|
4833
4838
|
readonly asPayoutOther: {
|
|
4834
|
-
readonly beneficiary:
|
|
4839
|
+
readonly beneficiary: PezspCoreCryptoAccountId32;
|
|
4835
4840
|
} & Struct;
|
|
4836
4841
|
readonly isCheckPayment: boolean;
|
|
4837
4842
|
readonly type: 'Init' | 'Bump' | 'Induct' | 'Register' | 'Payout' | 'PayoutOther' | 'CheckPayment';
|
|
@@ -4840,7 +4845,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4840
4845
|
interface PezpalletCoreFellowshipCall extends Enum {
|
|
4841
4846
|
readonly isBump: boolean;
|
|
4842
4847
|
readonly asBump: {
|
|
4843
|
-
readonly who:
|
|
4848
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
4844
4849
|
} & Struct;
|
|
4845
4850
|
readonly isSetParams: boolean;
|
|
4846
4851
|
readonly asSetParams: {
|
|
@@ -4852,21 +4857,21 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4852
4857
|
} & Struct;
|
|
4853
4858
|
readonly isApprove: boolean;
|
|
4854
4859
|
readonly asApprove: {
|
|
4855
|
-
readonly who:
|
|
4860
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
4856
4861
|
readonly atRank: u16;
|
|
4857
4862
|
} & Struct;
|
|
4858
4863
|
readonly isInduct: boolean;
|
|
4859
4864
|
readonly asInduct: {
|
|
4860
|
-
readonly who:
|
|
4865
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
4861
4866
|
} & Struct;
|
|
4862
4867
|
readonly isPromote: boolean;
|
|
4863
4868
|
readonly asPromote: {
|
|
4864
|
-
readonly who:
|
|
4869
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
4865
4870
|
readonly toRank: u16;
|
|
4866
4871
|
} & Struct;
|
|
4867
4872
|
readonly isOffboard: boolean;
|
|
4868
4873
|
readonly asOffboard: {
|
|
4869
|
-
readonly who:
|
|
4874
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
4870
4875
|
} & Struct;
|
|
4871
4876
|
readonly isSubmitEvidence: boolean;
|
|
4872
4877
|
readonly asSubmitEvidence: {
|
|
@@ -4880,12 +4885,12 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4880
4885
|
} & Struct;
|
|
4881
4886
|
readonly isPromoteFast: boolean;
|
|
4882
4887
|
readonly asPromoteFast: {
|
|
4883
|
-
readonly who:
|
|
4888
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
4884
4889
|
readonly toRank: u16;
|
|
4885
4890
|
} & Struct;
|
|
4886
4891
|
readonly isImportMember: boolean;
|
|
4887
4892
|
readonly asImportMember: {
|
|
4888
|
-
readonly who:
|
|
4893
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
4889
4894
|
} & Struct;
|
|
4890
4895
|
readonly type: 'Bump' | 'SetParams' | 'SetActive' | 'Approve' | 'Induct' | 'Promote' | 'Offboard' | 'SubmitEvidence' | 'Import' | 'SetPartialParams' | 'PromoteFast' | 'ImportMember';
|
|
4891
4896
|
}
|
|
@@ -4923,16 +4928,16 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
4923
4928
|
interface PezpalletBagsListCall extends Enum {
|
|
4924
4929
|
readonly isRebag: boolean;
|
|
4925
4930
|
readonly asRebag: {
|
|
4926
|
-
readonly dislocated:
|
|
4931
|
+
readonly dislocated: PezspRuntimeMultiAddress;
|
|
4927
4932
|
} & Struct;
|
|
4928
4933
|
readonly isPutInFrontOf: boolean;
|
|
4929
4934
|
readonly asPutInFrontOf: {
|
|
4930
|
-
readonly lighter:
|
|
4935
|
+
readonly lighter: PezspRuntimeMultiAddress;
|
|
4931
4936
|
} & Struct;
|
|
4932
4937
|
readonly isPutInFrontOfOther: boolean;
|
|
4933
4938
|
readonly asPutInFrontOfOther: {
|
|
4934
|
-
readonly heavier:
|
|
4935
|
-
readonly lighter:
|
|
4939
|
+
readonly heavier: PezspRuntimeMultiAddress;
|
|
4940
|
+
readonly lighter: PezspRuntimeMultiAddress;
|
|
4936
4941
|
} & Struct;
|
|
4937
4942
|
readonly type: 'Rebag' | 'PutInFrontOf' | 'PutInFrontOfOther';
|
|
4938
4943
|
}
|
|
@@ -5003,7 +5008,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5003
5008
|
readonly asProposeCurator: {
|
|
5004
5009
|
readonly parentBountyId: Compact<u32>;
|
|
5005
5010
|
readonly childBountyId: Compact<u32>;
|
|
5006
|
-
readonly curator:
|
|
5011
|
+
readonly curator: PezspRuntimeMultiAddress;
|
|
5007
5012
|
readonly fee: Compact<u128>;
|
|
5008
5013
|
} & Struct;
|
|
5009
5014
|
readonly isAcceptCurator: boolean;
|
|
@@ -5020,7 +5025,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5020
5025
|
readonly asAwardChildBounty: {
|
|
5021
5026
|
readonly parentBountyId: Compact<u32>;
|
|
5022
5027
|
readonly childBountyId: Compact<u32>;
|
|
5023
|
-
readonly beneficiary:
|
|
5028
|
+
readonly beneficiary: PezspRuntimeMultiAddress;
|
|
5024
5029
|
} & Struct;
|
|
5025
5030
|
readonly isClaimChildBounty: boolean;
|
|
5026
5031
|
readonly asClaimChildBounty: {
|
|
@@ -5097,7 +5102,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5097
5102
|
interface PezpalletRootTestingCall extends Enum {
|
|
5098
5103
|
readonly isFillBlock: boolean;
|
|
5099
5104
|
readonly asFillBlock: {
|
|
5100
|
-
readonly ratio:
|
|
5105
|
+
readonly ratio: u32;
|
|
5101
5106
|
} & Struct;
|
|
5102
5107
|
readonly isTriggerDefensive: boolean;
|
|
5103
5108
|
readonly type: 'FillBlock' | 'TriggerDefensive';
|
|
@@ -5112,7 +5117,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5112
5117
|
readonly isDelegate: boolean;
|
|
5113
5118
|
readonly asDelegate: {
|
|
5114
5119
|
readonly class: u16;
|
|
5115
|
-
readonly to:
|
|
5120
|
+
readonly to: PezspRuntimeMultiAddress;
|
|
5116
5121
|
readonly conviction: PezpalletConvictionVotingConviction;
|
|
5117
5122
|
readonly balance: u128;
|
|
5118
5123
|
} & Struct;
|
|
@@ -5123,7 +5128,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5123
5128
|
readonly isUnlock: boolean;
|
|
5124
5129
|
readonly asUnlock: {
|
|
5125
5130
|
readonly class: u16;
|
|
5126
|
-
readonly target:
|
|
5131
|
+
readonly target: PezspRuntimeMultiAddress;
|
|
5127
5132
|
} & Struct;
|
|
5128
5133
|
readonly isRemoveVote: boolean;
|
|
5129
5134
|
readonly asRemoveVote: {
|
|
@@ -5132,7 +5137,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5132
5137
|
} & Struct;
|
|
5133
5138
|
readonly isRemoveOtherVote: boolean;
|
|
5134
5139
|
readonly asRemoveOtherVote: {
|
|
5135
|
-
readonly target:
|
|
5140
|
+
readonly target: PezspRuntimeMultiAddress;
|
|
5136
5141
|
readonly class: u16;
|
|
5137
5142
|
readonly index: u32;
|
|
5138
5143
|
} & Struct;
|
|
@@ -5207,8 +5212,8 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5207
5212
|
} & Struct;
|
|
5208
5213
|
readonly isInitMembers: boolean;
|
|
5209
5214
|
readonly asInitMembers: {
|
|
5210
|
-
readonly fellows: Vec<
|
|
5211
|
-
readonly allies: Vec<
|
|
5215
|
+
readonly fellows: Vec<PezspCoreCryptoAccountId32>;
|
|
5216
|
+
readonly allies: Vec<PezspCoreCryptoAccountId32>;
|
|
5212
5217
|
} & Struct;
|
|
5213
5218
|
readonly isDisband: boolean;
|
|
5214
5219
|
readonly asDisband: {
|
|
@@ -5229,17 +5234,17 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5229
5234
|
readonly isJoinAlliance: boolean;
|
|
5230
5235
|
readonly isNominateAlly: boolean;
|
|
5231
5236
|
readonly asNominateAlly: {
|
|
5232
|
-
readonly who:
|
|
5237
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
5233
5238
|
} & Struct;
|
|
5234
5239
|
readonly isElevateAlly: boolean;
|
|
5235
5240
|
readonly asElevateAlly: {
|
|
5236
|
-
readonly ally:
|
|
5241
|
+
readonly ally: PezspRuntimeMultiAddress;
|
|
5237
5242
|
} & Struct;
|
|
5238
5243
|
readonly isGiveRetirementNotice: boolean;
|
|
5239
5244
|
readonly isRetire: boolean;
|
|
5240
5245
|
readonly isKickMember: boolean;
|
|
5241
5246
|
readonly asKickMember: {
|
|
5242
|
-
readonly who:
|
|
5247
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
5243
5248
|
} & Struct;
|
|
5244
5249
|
readonly isAddUnscrupulousItems: boolean;
|
|
5245
5250
|
readonly asAddUnscrupulousItems: {
|
|
@@ -5284,7 +5289,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5284
5289
|
/** @name PezpalletAllianceUnscrupulousItem (406) */
|
|
5285
5290
|
interface PezpalletAllianceUnscrupulousItem extends Enum {
|
|
5286
5291
|
readonly isAccountId: boolean;
|
|
5287
|
-
readonly asAccountId:
|
|
5292
|
+
readonly asAccountId: PezspCoreCryptoAccountId32;
|
|
5288
5293
|
readonly isWebsite: boolean;
|
|
5289
5294
|
readonly asWebsite: Bytes;
|
|
5290
5295
|
readonly type: 'AccountId' | 'Website';
|
|
@@ -5303,7 +5308,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5303
5308
|
readonly isClaimPayout: boolean;
|
|
5304
5309
|
readonly isUnbond: boolean;
|
|
5305
5310
|
readonly asUnbond: {
|
|
5306
|
-
readonly memberAccount:
|
|
5311
|
+
readonly memberAccount: PezspRuntimeMultiAddress;
|
|
5307
5312
|
readonly unbondingPoints: Compact<u128>;
|
|
5308
5313
|
} & Struct;
|
|
5309
5314
|
readonly isPoolWithdrawUnbonded: boolean;
|
|
@@ -5313,28 +5318,28 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5313
5318
|
} & Struct;
|
|
5314
5319
|
readonly isWithdrawUnbonded: boolean;
|
|
5315
5320
|
readonly asWithdrawUnbonded: {
|
|
5316
|
-
readonly memberAccount:
|
|
5321
|
+
readonly memberAccount: PezspRuntimeMultiAddress;
|
|
5317
5322
|
readonly numSlashingSpans: u32;
|
|
5318
5323
|
} & Struct;
|
|
5319
5324
|
readonly isCreate: boolean;
|
|
5320
5325
|
readonly asCreate: {
|
|
5321
5326
|
readonly amount: Compact<u128>;
|
|
5322
|
-
readonly root:
|
|
5323
|
-
readonly nominator:
|
|
5324
|
-
readonly bouncer:
|
|
5327
|
+
readonly root: PezspRuntimeMultiAddress;
|
|
5328
|
+
readonly nominator: PezspRuntimeMultiAddress;
|
|
5329
|
+
readonly bouncer: PezspRuntimeMultiAddress;
|
|
5325
5330
|
} & Struct;
|
|
5326
5331
|
readonly isCreateWithPoolId: boolean;
|
|
5327
5332
|
readonly asCreateWithPoolId: {
|
|
5328
5333
|
readonly amount: Compact<u128>;
|
|
5329
|
-
readonly root:
|
|
5330
|
-
readonly nominator:
|
|
5331
|
-
readonly bouncer:
|
|
5334
|
+
readonly root: PezspRuntimeMultiAddress;
|
|
5335
|
+
readonly nominator: PezspRuntimeMultiAddress;
|
|
5336
|
+
readonly bouncer: PezspRuntimeMultiAddress;
|
|
5332
5337
|
readonly poolId: u32;
|
|
5333
5338
|
} & Struct;
|
|
5334
5339
|
readonly isNominate: boolean;
|
|
5335
5340
|
readonly asNominate: {
|
|
5336
5341
|
readonly poolId: u32;
|
|
5337
|
-
readonly validators: Vec<
|
|
5342
|
+
readonly validators: Vec<PezspCoreCryptoAccountId32>;
|
|
5338
5343
|
} & Struct;
|
|
5339
5344
|
readonly isSetState: boolean;
|
|
5340
5345
|
readonly asSetState: {
|
|
@@ -5368,7 +5373,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5368
5373
|
} & Struct;
|
|
5369
5374
|
readonly isBondExtraOther: boolean;
|
|
5370
5375
|
readonly asBondExtraOther: {
|
|
5371
|
-
readonly member:
|
|
5376
|
+
readonly member: PezspRuntimeMultiAddress;
|
|
5372
5377
|
readonly extra: PezpalletNominationPoolsBondExtra;
|
|
5373
5378
|
} & Struct;
|
|
5374
5379
|
readonly isSetClaimPermission: boolean;
|
|
@@ -5377,17 +5382,17 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5377
5382
|
} & Struct;
|
|
5378
5383
|
readonly isClaimPayoutOther: boolean;
|
|
5379
5384
|
readonly asClaimPayoutOther: {
|
|
5380
|
-
readonly other:
|
|
5385
|
+
readonly other: PezspCoreCryptoAccountId32;
|
|
5381
5386
|
} & Struct;
|
|
5382
5387
|
readonly isSetCommission: boolean;
|
|
5383
5388
|
readonly asSetCommission: {
|
|
5384
5389
|
readonly poolId: u32;
|
|
5385
|
-
readonly newCommission: Option<ITuple<[
|
|
5390
|
+
readonly newCommission: Option<ITuple<[u32, PezspCoreCryptoAccountId32]>>;
|
|
5386
5391
|
} & Struct;
|
|
5387
5392
|
readonly isSetCommissionMax: boolean;
|
|
5388
5393
|
readonly asSetCommissionMax: {
|
|
5389
5394
|
readonly poolId: u32;
|
|
5390
|
-
readonly maxCommission:
|
|
5395
|
+
readonly maxCommission: u32;
|
|
5391
5396
|
} & Struct;
|
|
5392
5397
|
readonly isSetCommissionChangeRate: boolean;
|
|
5393
5398
|
readonly asSetCommissionChangeRate: {
|
|
@@ -5409,11 +5414,11 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5409
5414
|
} & Struct;
|
|
5410
5415
|
readonly isApplySlash: boolean;
|
|
5411
5416
|
readonly asApplySlash: {
|
|
5412
|
-
readonly memberAccount:
|
|
5417
|
+
readonly memberAccount: PezspRuntimeMultiAddress;
|
|
5413
5418
|
} & Struct;
|
|
5414
5419
|
readonly isMigrateDelegation: boolean;
|
|
5415
5420
|
readonly asMigrateDelegation: {
|
|
5416
|
-
readonly memberAccount:
|
|
5421
|
+
readonly memberAccount: PezspRuntimeMultiAddress;
|
|
5417
5422
|
} & Struct;
|
|
5418
5423
|
readonly isMigratePoolToDelegateStake: boolean;
|
|
5419
5424
|
readonly asMigratePoolToDelegateStake: {
|
|
@@ -5455,7 +5460,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5455
5460
|
interface PezpalletNominationPoolsConfigOpPerbill extends Enum {
|
|
5456
5461
|
readonly isNoop: boolean;
|
|
5457
5462
|
readonly isSet: boolean;
|
|
5458
|
-
readonly asSet:
|
|
5463
|
+
readonly asSet: u32;
|
|
5459
5464
|
readonly isRemove: boolean;
|
|
5460
5465
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
|
5461
5466
|
}
|
|
@@ -5463,7 +5468,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5463
5468
|
interface PezpalletNominationPoolsConfigOpAccountId32 extends Enum {
|
|
5464
5469
|
readonly isNoop: boolean;
|
|
5465
5470
|
readonly isSet: boolean;
|
|
5466
|
-
readonly asSet:
|
|
5471
|
+
readonly asSet: PezspCoreCryptoAccountId32;
|
|
5467
5472
|
readonly isRemove: boolean;
|
|
5468
5473
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
|
5469
5474
|
}
|
|
@@ -5477,33 +5482,33 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5477
5482
|
}
|
|
5478
5483
|
/** @name PezpalletNominationPoolsCommissionChangeRate (418) */
|
|
5479
5484
|
interface PezpalletNominationPoolsCommissionChangeRate extends Struct {
|
|
5480
|
-
readonly maxIncrease:
|
|
5485
|
+
readonly maxIncrease: u32;
|
|
5481
5486
|
readonly minDelay: u32;
|
|
5482
5487
|
}
|
|
5483
5488
|
/** @name PezpalletNominationPoolsCommissionClaimPermission (420) */
|
|
5484
5489
|
interface PezpalletNominationPoolsCommissionClaimPermission extends Enum {
|
|
5485
5490
|
readonly isPermissionless: boolean;
|
|
5486
5491
|
readonly isAccount: boolean;
|
|
5487
|
-
readonly asAccount:
|
|
5492
|
+
readonly asAccount: PezspCoreCryptoAccountId32;
|
|
5488
5493
|
readonly type: 'Permissionless' | 'Account';
|
|
5489
5494
|
}
|
|
5490
5495
|
/** @name PezpalletRankedCollectiveCall (422) */
|
|
5491
5496
|
interface PezpalletRankedCollectiveCall extends Enum {
|
|
5492
5497
|
readonly isAddMember: boolean;
|
|
5493
5498
|
readonly asAddMember: {
|
|
5494
|
-
readonly who:
|
|
5499
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
5495
5500
|
} & Struct;
|
|
5496
5501
|
readonly isPromoteMember: boolean;
|
|
5497
5502
|
readonly asPromoteMember: {
|
|
5498
|
-
readonly who:
|
|
5503
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
5499
5504
|
} & Struct;
|
|
5500
5505
|
readonly isDemoteMember: boolean;
|
|
5501
5506
|
readonly asDemoteMember: {
|
|
5502
|
-
readonly who:
|
|
5507
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
5503
5508
|
} & Struct;
|
|
5504
5509
|
readonly isRemoveMember: boolean;
|
|
5505
5510
|
readonly asRemoveMember: {
|
|
5506
|
-
readonly who:
|
|
5511
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
5507
5512
|
readonly minRank: u16;
|
|
5508
5513
|
} & Struct;
|
|
5509
5514
|
readonly isVote: boolean;
|
|
@@ -5518,8 +5523,8 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5518
5523
|
} & Struct;
|
|
5519
5524
|
readonly isExchangeMember: boolean;
|
|
5520
5525
|
readonly asExchangeMember: {
|
|
5521
|
-
readonly who:
|
|
5522
|
-
readonly newWho:
|
|
5526
|
+
readonly who: PezspRuntimeMultiAddress;
|
|
5527
|
+
readonly newWho: PezspRuntimeMultiAddress;
|
|
5523
5528
|
} & Struct;
|
|
5524
5529
|
readonly type: 'AddMember' | 'PromoteMember' | 'DemoteMember' | 'RemoveMember' | 'Vote' | 'CleanupPoll' | 'ExchangeMember';
|
|
5525
5530
|
}
|
|
@@ -5538,7 +5543,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5538
5543
|
readonly amount2Desired: u128;
|
|
5539
5544
|
readonly amount1Min: u128;
|
|
5540
5545
|
readonly amount2Min: u128;
|
|
5541
|
-
readonly mintTo:
|
|
5546
|
+
readonly mintTo: PezspCoreCryptoAccountId32;
|
|
5542
5547
|
} & Struct;
|
|
5543
5548
|
readonly isRemoveLiquidity: boolean;
|
|
5544
5549
|
readonly asRemoveLiquidity: {
|
|
@@ -5547,14 +5552,14 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5547
5552
|
readonly lpTokenBurn: u128;
|
|
5548
5553
|
readonly amount1MinReceive: u128;
|
|
5549
5554
|
readonly amount2MinReceive: u128;
|
|
5550
|
-
readonly withdrawTo:
|
|
5555
|
+
readonly withdrawTo: PezspCoreCryptoAccountId32;
|
|
5551
5556
|
} & Struct;
|
|
5552
5557
|
readonly isSwapExactTokensForTokens: boolean;
|
|
5553
5558
|
readonly asSwapExactTokensForTokens: {
|
|
5554
5559
|
readonly path: Vec<PezframeSupportTokensFungibleUnionOfNativeOrWithId>;
|
|
5555
5560
|
readonly amountIn: u128;
|
|
5556
5561
|
readonly amountOutMin: u128;
|
|
5557
|
-
readonly sendTo:
|
|
5562
|
+
readonly sendTo: PezspCoreCryptoAccountId32;
|
|
5558
5563
|
readonly keepAlive: bool;
|
|
5559
5564
|
} & Struct;
|
|
5560
5565
|
readonly isSwapTokensForExactTokens: boolean;
|
|
@@ -5562,7 +5567,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5562
5567
|
readonly path: Vec<PezframeSupportTokensFungibleUnionOfNativeOrWithId>;
|
|
5563
5568
|
readonly amountOut: u128;
|
|
5564
5569
|
readonly amountInMax: u128;
|
|
5565
|
-
readonly sendTo:
|
|
5570
|
+
readonly sendTo: PezspCoreCryptoAccountId32;
|
|
5566
5571
|
readonly keepAlive: bool;
|
|
5567
5572
|
} & Struct;
|
|
5568
5573
|
readonly isTouch: boolean;
|
|
@@ -5625,17 +5630,17 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5625
5630
|
readonly isForceExit: boolean;
|
|
5626
5631
|
readonly isForceSlashDeposit: boolean;
|
|
5627
5632
|
readonly asForceSlashDeposit: {
|
|
5628
|
-
readonly account:
|
|
5633
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
5629
5634
|
readonly block: u32;
|
|
5630
5635
|
} & Struct;
|
|
5631
5636
|
readonly isReleaseDeposit: boolean;
|
|
5632
5637
|
readonly asReleaseDeposit: {
|
|
5633
|
-
readonly account:
|
|
5638
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
5634
5639
|
readonly block: u32;
|
|
5635
5640
|
} & Struct;
|
|
5636
5641
|
readonly isForceReleaseDeposit: boolean;
|
|
5637
5642
|
readonly asForceReleaseDeposit: {
|
|
5638
|
-
readonly account:
|
|
5643
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
5639
5644
|
readonly block: u32;
|
|
5640
5645
|
} & Struct;
|
|
5641
5646
|
readonly type: 'Enter' | 'ForceEnter' | 'Extend' | 'ForceExtend' | 'ForceExit' | 'ForceSlashDeposit' | 'ReleaseDeposit' | 'ForceReleaseDeposit';
|
|
@@ -5718,7 +5723,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5718
5723
|
readonly isTransfer: boolean;
|
|
5719
5724
|
readonly asTransfer: {
|
|
5720
5725
|
readonly regionId: PezpalletBrokerRegionId;
|
|
5721
|
-
readonly newOwner:
|
|
5726
|
+
readonly newOwner: PezspCoreCryptoAccountId32;
|
|
5722
5727
|
} & Struct;
|
|
5723
5728
|
readonly isPartition: boolean;
|
|
5724
5729
|
readonly asPartition: {
|
|
@@ -5739,7 +5744,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5739
5744
|
readonly isPool: boolean;
|
|
5740
5745
|
readonly asPool: {
|
|
5741
5746
|
readonly regionId: PezpalletBrokerRegionId;
|
|
5742
|
-
readonly payee:
|
|
5747
|
+
readonly payee: PezspCoreCryptoAccountId32;
|
|
5743
5748
|
readonly finality: PezpalletBrokerFinality;
|
|
5744
5749
|
} & Struct;
|
|
5745
5750
|
readonly isClaimRevenue: boolean;
|
|
@@ -5750,7 +5755,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5750
5755
|
readonly isPurchaseCredit: boolean;
|
|
5751
5756
|
readonly asPurchaseCredit: {
|
|
5752
5757
|
readonly amount: u128;
|
|
5753
|
-
readonly beneficiary:
|
|
5758
|
+
readonly beneficiary: PezspCoreCryptoAccountId32;
|
|
5754
5759
|
} & Struct;
|
|
5755
5760
|
readonly isDropRegion: boolean;
|
|
5756
5761
|
readonly asDropRegion: {
|
|
@@ -5818,9 +5823,9 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5818
5823
|
readonly interludeLength: u32;
|
|
5819
5824
|
readonly leadinLength: u32;
|
|
5820
5825
|
readonly regionLength: u32;
|
|
5821
|
-
readonly idealBulkProportion:
|
|
5826
|
+
readonly idealBulkProportion: u32;
|
|
5822
5827
|
readonly limitCoresOffered: Option<u16>;
|
|
5823
|
-
readonly renewalBump:
|
|
5828
|
+
readonly renewalBump: u32;
|
|
5824
5829
|
readonly contributionTimeout: u32;
|
|
5825
5830
|
}
|
|
5826
5831
|
/** @name PezpalletBrokerScheduleItem (443) */
|
|
@@ -5938,16 +5943,16 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
5938
5943
|
interface PezpalletReferendaCurve extends Enum {
|
|
5939
5944
|
readonly isLinearDecreasing: boolean;
|
|
5940
5945
|
readonly asLinearDecreasing: {
|
|
5941
|
-
readonly length:
|
|
5942
|
-
readonly floor:
|
|
5943
|
-
readonly ceil:
|
|
5946
|
+
readonly length: u32;
|
|
5947
|
+
readonly floor: u32;
|
|
5948
|
+
readonly ceil: u32;
|
|
5944
5949
|
} & Struct;
|
|
5945
5950
|
readonly isSteppedDecreasing: boolean;
|
|
5946
5951
|
readonly asSteppedDecreasing: {
|
|
5947
|
-
readonly begin:
|
|
5948
|
-
readonly end:
|
|
5949
|
-
readonly step:
|
|
5950
|
-
readonly period:
|
|
5952
|
+
readonly begin: u32;
|
|
5953
|
+
readonly end: u32;
|
|
5954
|
+
readonly step: u32;
|
|
5955
|
+
readonly period: u32;
|
|
5951
5956
|
} & Struct;
|
|
5952
5957
|
readonly isReciprocal: boolean;
|
|
5953
5958
|
readonly asReciprocal: {
|
|
@@ -6030,7 +6035,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6030
6035
|
readonly rewardAssetId: PezframeSupportTokensFungibleUnionOfNativeOrWithId;
|
|
6031
6036
|
readonly rewardRatePerBlock: u128;
|
|
6032
6037
|
readonly expiry: PezframeSupportScheduleDispatchTime;
|
|
6033
|
-
readonly admin: Option<
|
|
6038
|
+
readonly admin: Option<PezspCoreCryptoAccountId32>;
|
|
6034
6039
|
} & Struct;
|
|
6035
6040
|
readonly isStake: boolean;
|
|
6036
6041
|
readonly asStake: {
|
|
@@ -6041,12 +6046,12 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6041
6046
|
readonly asUnstake: {
|
|
6042
6047
|
readonly poolId: u32;
|
|
6043
6048
|
readonly amount: u128;
|
|
6044
|
-
readonly staker: Option<
|
|
6049
|
+
readonly staker: Option<PezspCoreCryptoAccountId32>;
|
|
6045
6050
|
} & Struct;
|
|
6046
6051
|
readonly isHarvestRewards: boolean;
|
|
6047
6052
|
readonly asHarvestRewards: {
|
|
6048
6053
|
readonly poolId: u32;
|
|
6049
|
-
readonly staker: Option<
|
|
6054
|
+
readonly staker: Option<PezspCoreCryptoAccountId32>;
|
|
6050
6055
|
} & Struct;
|
|
6051
6056
|
readonly isSetPoolRewardRatePerBlock: boolean;
|
|
6052
6057
|
readonly asSetPoolRewardRatePerBlock: {
|
|
@@ -6056,7 +6061,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6056
6061
|
readonly isSetPoolAdmin: boolean;
|
|
6057
6062
|
readonly asSetPoolAdmin: {
|
|
6058
6063
|
readonly poolId: u32;
|
|
6059
|
-
readonly newAdmin:
|
|
6064
|
+
readonly newAdmin: PezspCoreCryptoAccountId32;
|
|
6060
6065
|
} & Struct;
|
|
6061
6066
|
readonly isSetPoolExpiryBlock: boolean;
|
|
6062
6067
|
readonly asSetPoolExpiryBlock: {
|
|
@@ -6086,14 +6091,14 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6086
6091
|
interface PezpalletMetaTxMetaTx extends Struct {
|
|
6087
6092
|
readonly call: RuntimeCall;
|
|
6088
6093
|
readonly extensionVersion: u8;
|
|
6089
|
-
readonly extension: ITuple<[PezpalletVerifySignatureExtensionVerifySignature, PezpalletMetaTxExtensionMetaTxMarker, PezframeSystemExtensionsCheckNonZeroSender, PezframeSystemExtensionsCheckSpecVersion, PezframeSystemExtensionsCheckTxVersion, PezframeSystemExtensionsCheckGenesis,
|
|
6094
|
+
readonly extension: ITuple<[PezpalletVerifySignatureExtensionVerifySignature, PezpalletMetaTxExtensionMetaTxMarker, PezframeSystemExtensionsCheckNonZeroSender, PezframeSystemExtensionsCheckSpecVersion, PezframeSystemExtensionsCheckTxVersion, PezframeSystemExtensionsCheckGenesis, PezframeSystemExtensionsCheckMortality, PezframeSystemExtensionsCheckNonce, PezframeMetadataHashExtensionCheckMetadataHash]>;
|
|
6090
6095
|
}
|
|
6091
6096
|
/** @name PezpalletVerifySignatureExtensionVerifySignature (483) */
|
|
6092
6097
|
interface PezpalletVerifySignatureExtensionVerifySignature extends Enum {
|
|
6093
6098
|
readonly isSigned: boolean;
|
|
6094
6099
|
readonly asSigned: {
|
|
6095
6100
|
readonly signature: PezspRuntimeMultiSignature;
|
|
6096
|
-
readonly account:
|
|
6101
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
6097
6102
|
} & Struct;
|
|
6098
6103
|
readonly isDisabled: boolean;
|
|
6099
6104
|
readonly type: 'Signed' | 'Disabled';
|
|
@@ -6108,6 +6113,524 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6108
6113
|
type PezframeSystemExtensionsCheckTxVersion = Null;
|
|
6109
6114
|
/** @name PezframeSystemExtensionsCheckGenesis (488) */
|
|
6110
6115
|
type PezframeSystemExtensionsCheckGenesis = Null;
|
|
6116
|
+
/** @name PezframeSystemExtensionsCheckMortality (489) */
|
|
6117
|
+
interface PezframeSystemExtensionsCheckMortality extends PezspRuntimeEra {
|
|
6118
|
+
}
|
|
6119
|
+
/** @name PezspRuntimeEra (490) */
|
|
6120
|
+
interface PezspRuntimeEra extends Enum {
|
|
6121
|
+
readonly isImmortal: boolean;
|
|
6122
|
+
readonly isMortal1: boolean;
|
|
6123
|
+
readonly asMortal1: u8;
|
|
6124
|
+
readonly isMortal2: boolean;
|
|
6125
|
+
readonly asMortal2: u8;
|
|
6126
|
+
readonly isMortal3: boolean;
|
|
6127
|
+
readonly asMortal3: u8;
|
|
6128
|
+
readonly isMortal4: boolean;
|
|
6129
|
+
readonly asMortal4: u8;
|
|
6130
|
+
readonly isMortal5: boolean;
|
|
6131
|
+
readonly asMortal5: u8;
|
|
6132
|
+
readonly isMortal6: boolean;
|
|
6133
|
+
readonly asMortal6: u8;
|
|
6134
|
+
readonly isMortal7: boolean;
|
|
6135
|
+
readonly asMortal7: u8;
|
|
6136
|
+
readonly isMortal8: boolean;
|
|
6137
|
+
readonly asMortal8: u8;
|
|
6138
|
+
readonly isMortal9: boolean;
|
|
6139
|
+
readonly asMortal9: u8;
|
|
6140
|
+
readonly isMortal10: boolean;
|
|
6141
|
+
readonly asMortal10: u8;
|
|
6142
|
+
readonly isMortal11: boolean;
|
|
6143
|
+
readonly asMortal11: u8;
|
|
6144
|
+
readonly isMortal12: boolean;
|
|
6145
|
+
readonly asMortal12: u8;
|
|
6146
|
+
readonly isMortal13: boolean;
|
|
6147
|
+
readonly asMortal13: u8;
|
|
6148
|
+
readonly isMortal14: boolean;
|
|
6149
|
+
readonly asMortal14: u8;
|
|
6150
|
+
readonly isMortal15: boolean;
|
|
6151
|
+
readonly asMortal15: u8;
|
|
6152
|
+
readonly isMortal16: boolean;
|
|
6153
|
+
readonly asMortal16: u8;
|
|
6154
|
+
readonly isMortal17: boolean;
|
|
6155
|
+
readonly asMortal17: u8;
|
|
6156
|
+
readonly isMortal18: boolean;
|
|
6157
|
+
readonly asMortal18: u8;
|
|
6158
|
+
readonly isMortal19: boolean;
|
|
6159
|
+
readonly asMortal19: u8;
|
|
6160
|
+
readonly isMortal20: boolean;
|
|
6161
|
+
readonly asMortal20: u8;
|
|
6162
|
+
readonly isMortal21: boolean;
|
|
6163
|
+
readonly asMortal21: u8;
|
|
6164
|
+
readonly isMortal22: boolean;
|
|
6165
|
+
readonly asMortal22: u8;
|
|
6166
|
+
readonly isMortal23: boolean;
|
|
6167
|
+
readonly asMortal23: u8;
|
|
6168
|
+
readonly isMortal24: boolean;
|
|
6169
|
+
readonly asMortal24: u8;
|
|
6170
|
+
readonly isMortal25: boolean;
|
|
6171
|
+
readonly asMortal25: u8;
|
|
6172
|
+
readonly isMortal26: boolean;
|
|
6173
|
+
readonly asMortal26: u8;
|
|
6174
|
+
readonly isMortal27: boolean;
|
|
6175
|
+
readonly asMortal27: u8;
|
|
6176
|
+
readonly isMortal28: boolean;
|
|
6177
|
+
readonly asMortal28: u8;
|
|
6178
|
+
readonly isMortal29: boolean;
|
|
6179
|
+
readonly asMortal29: u8;
|
|
6180
|
+
readonly isMortal30: boolean;
|
|
6181
|
+
readonly asMortal30: u8;
|
|
6182
|
+
readonly isMortal31: boolean;
|
|
6183
|
+
readonly asMortal31: u8;
|
|
6184
|
+
readonly isMortal32: boolean;
|
|
6185
|
+
readonly asMortal32: u8;
|
|
6186
|
+
readonly isMortal33: boolean;
|
|
6187
|
+
readonly asMortal33: u8;
|
|
6188
|
+
readonly isMortal34: boolean;
|
|
6189
|
+
readonly asMortal34: u8;
|
|
6190
|
+
readonly isMortal35: boolean;
|
|
6191
|
+
readonly asMortal35: u8;
|
|
6192
|
+
readonly isMortal36: boolean;
|
|
6193
|
+
readonly asMortal36: u8;
|
|
6194
|
+
readonly isMortal37: boolean;
|
|
6195
|
+
readonly asMortal37: u8;
|
|
6196
|
+
readonly isMortal38: boolean;
|
|
6197
|
+
readonly asMortal38: u8;
|
|
6198
|
+
readonly isMortal39: boolean;
|
|
6199
|
+
readonly asMortal39: u8;
|
|
6200
|
+
readonly isMortal40: boolean;
|
|
6201
|
+
readonly asMortal40: u8;
|
|
6202
|
+
readonly isMortal41: boolean;
|
|
6203
|
+
readonly asMortal41: u8;
|
|
6204
|
+
readonly isMortal42: boolean;
|
|
6205
|
+
readonly asMortal42: u8;
|
|
6206
|
+
readonly isMortal43: boolean;
|
|
6207
|
+
readonly asMortal43: u8;
|
|
6208
|
+
readonly isMortal44: boolean;
|
|
6209
|
+
readonly asMortal44: u8;
|
|
6210
|
+
readonly isMortal45: boolean;
|
|
6211
|
+
readonly asMortal45: u8;
|
|
6212
|
+
readonly isMortal46: boolean;
|
|
6213
|
+
readonly asMortal46: u8;
|
|
6214
|
+
readonly isMortal47: boolean;
|
|
6215
|
+
readonly asMortal47: u8;
|
|
6216
|
+
readonly isMortal48: boolean;
|
|
6217
|
+
readonly asMortal48: u8;
|
|
6218
|
+
readonly isMortal49: boolean;
|
|
6219
|
+
readonly asMortal49: u8;
|
|
6220
|
+
readonly isMortal50: boolean;
|
|
6221
|
+
readonly asMortal50: u8;
|
|
6222
|
+
readonly isMortal51: boolean;
|
|
6223
|
+
readonly asMortal51: u8;
|
|
6224
|
+
readonly isMortal52: boolean;
|
|
6225
|
+
readonly asMortal52: u8;
|
|
6226
|
+
readonly isMortal53: boolean;
|
|
6227
|
+
readonly asMortal53: u8;
|
|
6228
|
+
readonly isMortal54: boolean;
|
|
6229
|
+
readonly asMortal54: u8;
|
|
6230
|
+
readonly isMortal55: boolean;
|
|
6231
|
+
readonly asMortal55: u8;
|
|
6232
|
+
readonly isMortal56: boolean;
|
|
6233
|
+
readonly asMortal56: u8;
|
|
6234
|
+
readonly isMortal57: boolean;
|
|
6235
|
+
readonly asMortal57: u8;
|
|
6236
|
+
readonly isMortal58: boolean;
|
|
6237
|
+
readonly asMortal58: u8;
|
|
6238
|
+
readonly isMortal59: boolean;
|
|
6239
|
+
readonly asMortal59: u8;
|
|
6240
|
+
readonly isMortal60: boolean;
|
|
6241
|
+
readonly asMortal60: u8;
|
|
6242
|
+
readonly isMortal61: boolean;
|
|
6243
|
+
readonly asMortal61: u8;
|
|
6244
|
+
readonly isMortal62: boolean;
|
|
6245
|
+
readonly asMortal62: u8;
|
|
6246
|
+
readonly isMortal63: boolean;
|
|
6247
|
+
readonly asMortal63: u8;
|
|
6248
|
+
readonly isMortal64: boolean;
|
|
6249
|
+
readonly asMortal64: u8;
|
|
6250
|
+
readonly isMortal65: boolean;
|
|
6251
|
+
readonly asMortal65: u8;
|
|
6252
|
+
readonly isMortal66: boolean;
|
|
6253
|
+
readonly asMortal66: u8;
|
|
6254
|
+
readonly isMortal67: boolean;
|
|
6255
|
+
readonly asMortal67: u8;
|
|
6256
|
+
readonly isMortal68: boolean;
|
|
6257
|
+
readonly asMortal68: u8;
|
|
6258
|
+
readonly isMortal69: boolean;
|
|
6259
|
+
readonly asMortal69: u8;
|
|
6260
|
+
readonly isMortal70: boolean;
|
|
6261
|
+
readonly asMortal70: u8;
|
|
6262
|
+
readonly isMortal71: boolean;
|
|
6263
|
+
readonly asMortal71: u8;
|
|
6264
|
+
readonly isMortal72: boolean;
|
|
6265
|
+
readonly asMortal72: u8;
|
|
6266
|
+
readonly isMortal73: boolean;
|
|
6267
|
+
readonly asMortal73: u8;
|
|
6268
|
+
readonly isMortal74: boolean;
|
|
6269
|
+
readonly asMortal74: u8;
|
|
6270
|
+
readonly isMortal75: boolean;
|
|
6271
|
+
readonly asMortal75: u8;
|
|
6272
|
+
readonly isMortal76: boolean;
|
|
6273
|
+
readonly asMortal76: u8;
|
|
6274
|
+
readonly isMortal77: boolean;
|
|
6275
|
+
readonly asMortal77: u8;
|
|
6276
|
+
readonly isMortal78: boolean;
|
|
6277
|
+
readonly asMortal78: u8;
|
|
6278
|
+
readonly isMortal79: boolean;
|
|
6279
|
+
readonly asMortal79: u8;
|
|
6280
|
+
readonly isMortal80: boolean;
|
|
6281
|
+
readonly asMortal80: u8;
|
|
6282
|
+
readonly isMortal81: boolean;
|
|
6283
|
+
readonly asMortal81: u8;
|
|
6284
|
+
readonly isMortal82: boolean;
|
|
6285
|
+
readonly asMortal82: u8;
|
|
6286
|
+
readonly isMortal83: boolean;
|
|
6287
|
+
readonly asMortal83: u8;
|
|
6288
|
+
readonly isMortal84: boolean;
|
|
6289
|
+
readonly asMortal84: u8;
|
|
6290
|
+
readonly isMortal85: boolean;
|
|
6291
|
+
readonly asMortal85: u8;
|
|
6292
|
+
readonly isMortal86: boolean;
|
|
6293
|
+
readonly asMortal86: u8;
|
|
6294
|
+
readonly isMortal87: boolean;
|
|
6295
|
+
readonly asMortal87: u8;
|
|
6296
|
+
readonly isMortal88: boolean;
|
|
6297
|
+
readonly asMortal88: u8;
|
|
6298
|
+
readonly isMortal89: boolean;
|
|
6299
|
+
readonly asMortal89: u8;
|
|
6300
|
+
readonly isMortal90: boolean;
|
|
6301
|
+
readonly asMortal90: u8;
|
|
6302
|
+
readonly isMortal91: boolean;
|
|
6303
|
+
readonly asMortal91: u8;
|
|
6304
|
+
readonly isMortal92: boolean;
|
|
6305
|
+
readonly asMortal92: u8;
|
|
6306
|
+
readonly isMortal93: boolean;
|
|
6307
|
+
readonly asMortal93: u8;
|
|
6308
|
+
readonly isMortal94: boolean;
|
|
6309
|
+
readonly asMortal94: u8;
|
|
6310
|
+
readonly isMortal95: boolean;
|
|
6311
|
+
readonly asMortal95: u8;
|
|
6312
|
+
readonly isMortal96: boolean;
|
|
6313
|
+
readonly asMortal96: u8;
|
|
6314
|
+
readonly isMortal97: boolean;
|
|
6315
|
+
readonly asMortal97: u8;
|
|
6316
|
+
readonly isMortal98: boolean;
|
|
6317
|
+
readonly asMortal98: u8;
|
|
6318
|
+
readonly isMortal99: boolean;
|
|
6319
|
+
readonly asMortal99: u8;
|
|
6320
|
+
readonly isMortal100: boolean;
|
|
6321
|
+
readonly asMortal100: u8;
|
|
6322
|
+
readonly isMortal101: boolean;
|
|
6323
|
+
readonly asMortal101: u8;
|
|
6324
|
+
readonly isMortal102: boolean;
|
|
6325
|
+
readonly asMortal102: u8;
|
|
6326
|
+
readonly isMortal103: boolean;
|
|
6327
|
+
readonly asMortal103: u8;
|
|
6328
|
+
readonly isMortal104: boolean;
|
|
6329
|
+
readonly asMortal104: u8;
|
|
6330
|
+
readonly isMortal105: boolean;
|
|
6331
|
+
readonly asMortal105: u8;
|
|
6332
|
+
readonly isMortal106: boolean;
|
|
6333
|
+
readonly asMortal106: u8;
|
|
6334
|
+
readonly isMortal107: boolean;
|
|
6335
|
+
readonly asMortal107: u8;
|
|
6336
|
+
readonly isMortal108: boolean;
|
|
6337
|
+
readonly asMortal108: u8;
|
|
6338
|
+
readonly isMortal109: boolean;
|
|
6339
|
+
readonly asMortal109: u8;
|
|
6340
|
+
readonly isMortal110: boolean;
|
|
6341
|
+
readonly asMortal110: u8;
|
|
6342
|
+
readonly isMortal111: boolean;
|
|
6343
|
+
readonly asMortal111: u8;
|
|
6344
|
+
readonly isMortal112: boolean;
|
|
6345
|
+
readonly asMortal112: u8;
|
|
6346
|
+
readonly isMortal113: boolean;
|
|
6347
|
+
readonly asMortal113: u8;
|
|
6348
|
+
readonly isMortal114: boolean;
|
|
6349
|
+
readonly asMortal114: u8;
|
|
6350
|
+
readonly isMortal115: boolean;
|
|
6351
|
+
readonly asMortal115: u8;
|
|
6352
|
+
readonly isMortal116: boolean;
|
|
6353
|
+
readonly asMortal116: u8;
|
|
6354
|
+
readonly isMortal117: boolean;
|
|
6355
|
+
readonly asMortal117: u8;
|
|
6356
|
+
readonly isMortal118: boolean;
|
|
6357
|
+
readonly asMortal118: u8;
|
|
6358
|
+
readonly isMortal119: boolean;
|
|
6359
|
+
readonly asMortal119: u8;
|
|
6360
|
+
readonly isMortal120: boolean;
|
|
6361
|
+
readonly asMortal120: u8;
|
|
6362
|
+
readonly isMortal121: boolean;
|
|
6363
|
+
readonly asMortal121: u8;
|
|
6364
|
+
readonly isMortal122: boolean;
|
|
6365
|
+
readonly asMortal122: u8;
|
|
6366
|
+
readonly isMortal123: boolean;
|
|
6367
|
+
readonly asMortal123: u8;
|
|
6368
|
+
readonly isMortal124: boolean;
|
|
6369
|
+
readonly asMortal124: u8;
|
|
6370
|
+
readonly isMortal125: boolean;
|
|
6371
|
+
readonly asMortal125: u8;
|
|
6372
|
+
readonly isMortal126: boolean;
|
|
6373
|
+
readonly asMortal126: u8;
|
|
6374
|
+
readonly isMortal127: boolean;
|
|
6375
|
+
readonly asMortal127: u8;
|
|
6376
|
+
readonly isMortal128: boolean;
|
|
6377
|
+
readonly asMortal128: u8;
|
|
6378
|
+
readonly isMortal129: boolean;
|
|
6379
|
+
readonly asMortal129: u8;
|
|
6380
|
+
readonly isMortal130: boolean;
|
|
6381
|
+
readonly asMortal130: u8;
|
|
6382
|
+
readonly isMortal131: boolean;
|
|
6383
|
+
readonly asMortal131: u8;
|
|
6384
|
+
readonly isMortal132: boolean;
|
|
6385
|
+
readonly asMortal132: u8;
|
|
6386
|
+
readonly isMortal133: boolean;
|
|
6387
|
+
readonly asMortal133: u8;
|
|
6388
|
+
readonly isMortal134: boolean;
|
|
6389
|
+
readonly asMortal134: u8;
|
|
6390
|
+
readonly isMortal135: boolean;
|
|
6391
|
+
readonly asMortal135: u8;
|
|
6392
|
+
readonly isMortal136: boolean;
|
|
6393
|
+
readonly asMortal136: u8;
|
|
6394
|
+
readonly isMortal137: boolean;
|
|
6395
|
+
readonly asMortal137: u8;
|
|
6396
|
+
readonly isMortal138: boolean;
|
|
6397
|
+
readonly asMortal138: u8;
|
|
6398
|
+
readonly isMortal139: boolean;
|
|
6399
|
+
readonly asMortal139: u8;
|
|
6400
|
+
readonly isMortal140: boolean;
|
|
6401
|
+
readonly asMortal140: u8;
|
|
6402
|
+
readonly isMortal141: boolean;
|
|
6403
|
+
readonly asMortal141: u8;
|
|
6404
|
+
readonly isMortal142: boolean;
|
|
6405
|
+
readonly asMortal142: u8;
|
|
6406
|
+
readonly isMortal143: boolean;
|
|
6407
|
+
readonly asMortal143: u8;
|
|
6408
|
+
readonly isMortal144: boolean;
|
|
6409
|
+
readonly asMortal144: u8;
|
|
6410
|
+
readonly isMortal145: boolean;
|
|
6411
|
+
readonly asMortal145: u8;
|
|
6412
|
+
readonly isMortal146: boolean;
|
|
6413
|
+
readonly asMortal146: u8;
|
|
6414
|
+
readonly isMortal147: boolean;
|
|
6415
|
+
readonly asMortal147: u8;
|
|
6416
|
+
readonly isMortal148: boolean;
|
|
6417
|
+
readonly asMortal148: u8;
|
|
6418
|
+
readonly isMortal149: boolean;
|
|
6419
|
+
readonly asMortal149: u8;
|
|
6420
|
+
readonly isMortal150: boolean;
|
|
6421
|
+
readonly asMortal150: u8;
|
|
6422
|
+
readonly isMortal151: boolean;
|
|
6423
|
+
readonly asMortal151: u8;
|
|
6424
|
+
readonly isMortal152: boolean;
|
|
6425
|
+
readonly asMortal152: u8;
|
|
6426
|
+
readonly isMortal153: boolean;
|
|
6427
|
+
readonly asMortal153: u8;
|
|
6428
|
+
readonly isMortal154: boolean;
|
|
6429
|
+
readonly asMortal154: u8;
|
|
6430
|
+
readonly isMortal155: boolean;
|
|
6431
|
+
readonly asMortal155: u8;
|
|
6432
|
+
readonly isMortal156: boolean;
|
|
6433
|
+
readonly asMortal156: u8;
|
|
6434
|
+
readonly isMortal157: boolean;
|
|
6435
|
+
readonly asMortal157: u8;
|
|
6436
|
+
readonly isMortal158: boolean;
|
|
6437
|
+
readonly asMortal158: u8;
|
|
6438
|
+
readonly isMortal159: boolean;
|
|
6439
|
+
readonly asMortal159: u8;
|
|
6440
|
+
readonly isMortal160: boolean;
|
|
6441
|
+
readonly asMortal160: u8;
|
|
6442
|
+
readonly isMortal161: boolean;
|
|
6443
|
+
readonly asMortal161: u8;
|
|
6444
|
+
readonly isMortal162: boolean;
|
|
6445
|
+
readonly asMortal162: u8;
|
|
6446
|
+
readonly isMortal163: boolean;
|
|
6447
|
+
readonly asMortal163: u8;
|
|
6448
|
+
readonly isMortal164: boolean;
|
|
6449
|
+
readonly asMortal164: u8;
|
|
6450
|
+
readonly isMortal165: boolean;
|
|
6451
|
+
readonly asMortal165: u8;
|
|
6452
|
+
readonly isMortal166: boolean;
|
|
6453
|
+
readonly asMortal166: u8;
|
|
6454
|
+
readonly isMortal167: boolean;
|
|
6455
|
+
readonly asMortal167: u8;
|
|
6456
|
+
readonly isMortal168: boolean;
|
|
6457
|
+
readonly asMortal168: u8;
|
|
6458
|
+
readonly isMortal169: boolean;
|
|
6459
|
+
readonly asMortal169: u8;
|
|
6460
|
+
readonly isMortal170: boolean;
|
|
6461
|
+
readonly asMortal170: u8;
|
|
6462
|
+
readonly isMortal171: boolean;
|
|
6463
|
+
readonly asMortal171: u8;
|
|
6464
|
+
readonly isMortal172: boolean;
|
|
6465
|
+
readonly asMortal172: u8;
|
|
6466
|
+
readonly isMortal173: boolean;
|
|
6467
|
+
readonly asMortal173: u8;
|
|
6468
|
+
readonly isMortal174: boolean;
|
|
6469
|
+
readonly asMortal174: u8;
|
|
6470
|
+
readonly isMortal175: boolean;
|
|
6471
|
+
readonly asMortal175: u8;
|
|
6472
|
+
readonly isMortal176: boolean;
|
|
6473
|
+
readonly asMortal176: u8;
|
|
6474
|
+
readonly isMortal177: boolean;
|
|
6475
|
+
readonly asMortal177: u8;
|
|
6476
|
+
readonly isMortal178: boolean;
|
|
6477
|
+
readonly asMortal178: u8;
|
|
6478
|
+
readonly isMortal179: boolean;
|
|
6479
|
+
readonly asMortal179: u8;
|
|
6480
|
+
readonly isMortal180: boolean;
|
|
6481
|
+
readonly asMortal180: u8;
|
|
6482
|
+
readonly isMortal181: boolean;
|
|
6483
|
+
readonly asMortal181: u8;
|
|
6484
|
+
readonly isMortal182: boolean;
|
|
6485
|
+
readonly asMortal182: u8;
|
|
6486
|
+
readonly isMortal183: boolean;
|
|
6487
|
+
readonly asMortal183: u8;
|
|
6488
|
+
readonly isMortal184: boolean;
|
|
6489
|
+
readonly asMortal184: u8;
|
|
6490
|
+
readonly isMortal185: boolean;
|
|
6491
|
+
readonly asMortal185: u8;
|
|
6492
|
+
readonly isMortal186: boolean;
|
|
6493
|
+
readonly asMortal186: u8;
|
|
6494
|
+
readonly isMortal187: boolean;
|
|
6495
|
+
readonly asMortal187: u8;
|
|
6496
|
+
readonly isMortal188: boolean;
|
|
6497
|
+
readonly asMortal188: u8;
|
|
6498
|
+
readonly isMortal189: boolean;
|
|
6499
|
+
readonly asMortal189: u8;
|
|
6500
|
+
readonly isMortal190: boolean;
|
|
6501
|
+
readonly asMortal190: u8;
|
|
6502
|
+
readonly isMortal191: boolean;
|
|
6503
|
+
readonly asMortal191: u8;
|
|
6504
|
+
readonly isMortal192: boolean;
|
|
6505
|
+
readonly asMortal192: u8;
|
|
6506
|
+
readonly isMortal193: boolean;
|
|
6507
|
+
readonly asMortal193: u8;
|
|
6508
|
+
readonly isMortal194: boolean;
|
|
6509
|
+
readonly asMortal194: u8;
|
|
6510
|
+
readonly isMortal195: boolean;
|
|
6511
|
+
readonly asMortal195: u8;
|
|
6512
|
+
readonly isMortal196: boolean;
|
|
6513
|
+
readonly asMortal196: u8;
|
|
6514
|
+
readonly isMortal197: boolean;
|
|
6515
|
+
readonly asMortal197: u8;
|
|
6516
|
+
readonly isMortal198: boolean;
|
|
6517
|
+
readonly asMortal198: u8;
|
|
6518
|
+
readonly isMortal199: boolean;
|
|
6519
|
+
readonly asMortal199: u8;
|
|
6520
|
+
readonly isMortal200: boolean;
|
|
6521
|
+
readonly asMortal200: u8;
|
|
6522
|
+
readonly isMortal201: boolean;
|
|
6523
|
+
readonly asMortal201: u8;
|
|
6524
|
+
readonly isMortal202: boolean;
|
|
6525
|
+
readonly asMortal202: u8;
|
|
6526
|
+
readonly isMortal203: boolean;
|
|
6527
|
+
readonly asMortal203: u8;
|
|
6528
|
+
readonly isMortal204: boolean;
|
|
6529
|
+
readonly asMortal204: u8;
|
|
6530
|
+
readonly isMortal205: boolean;
|
|
6531
|
+
readonly asMortal205: u8;
|
|
6532
|
+
readonly isMortal206: boolean;
|
|
6533
|
+
readonly asMortal206: u8;
|
|
6534
|
+
readonly isMortal207: boolean;
|
|
6535
|
+
readonly asMortal207: u8;
|
|
6536
|
+
readonly isMortal208: boolean;
|
|
6537
|
+
readonly asMortal208: u8;
|
|
6538
|
+
readonly isMortal209: boolean;
|
|
6539
|
+
readonly asMortal209: u8;
|
|
6540
|
+
readonly isMortal210: boolean;
|
|
6541
|
+
readonly asMortal210: u8;
|
|
6542
|
+
readonly isMortal211: boolean;
|
|
6543
|
+
readonly asMortal211: u8;
|
|
6544
|
+
readonly isMortal212: boolean;
|
|
6545
|
+
readonly asMortal212: u8;
|
|
6546
|
+
readonly isMortal213: boolean;
|
|
6547
|
+
readonly asMortal213: u8;
|
|
6548
|
+
readonly isMortal214: boolean;
|
|
6549
|
+
readonly asMortal214: u8;
|
|
6550
|
+
readonly isMortal215: boolean;
|
|
6551
|
+
readonly asMortal215: u8;
|
|
6552
|
+
readonly isMortal216: boolean;
|
|
6553
|
+
readonly asMortal216: u8;
|
|
6554
|
+
readonly isMortal217: boolean;
|
|
6555
|
+
readonly asMortal217: u8;
|
|
6556
|
+
readonly isMortal218: boolean;
|
|
6557
|
+
readonly asMortal218: u8;
|
|
6558
|
+
readonly isMortal219: boolean;
|
|
6559
|
+
readonly asMortal219: u8;
|
|
6560
|
+
readonly isMortal220: boolean;
|
|
6561
|
+
readonly asMortal220: u8;
|
|
6562
|
+
readonly isMortal221: boolean;
|
|
6563
|
+
readonly asMortal221: u8;
|
|
6564
|
+
readonly isMortal222: boolean;
|
|
6565
|
+
readonly asMortal222: u8;
|
|
6566
|
+
readonly isMortal223: boolean;
|
|
6567
|
+
readonly asMortal223: u8;
|
|
6568
|
+
readonly isMortal224: boolean;
|
|
6569
|
+
readonly asMortal224: u8;
|
|
6570
|
+
readonly isMortal225: boolean;
|
|
6571
|
+
readonly asMortal225: u8;
|
|
6572
|
+
readonly isMortal226: boolean;
|
|
6573
|
+
readonly asMortal226: u8;
|
|
6574
|
+
readonly isMortal227: boolean;
|
|
6575
|
+
readonly asMortal227: u8;
|
|
6576
|
+
readonly isMortal228: boolean;
|
|
6577
|
+
readonly asMortal228: u8;
|
|
6578
|
+
readonly isMortal229: boolean;
|
|
6579
|
+
readonly asMortal229: u8;
|
|
6580
|
+
readonly isMortal230: boolean;
|
|
6581
|
+
readonly asMortal230: u8;
|
|
6582
|
+
readonly isMortal231: boolean;
|
|
6583
|
+
readonly asMortal231: u8;
|
|
6584
|
+
readonly isMortal232: boolean;
|
|
6585
|
+
readonly asMortal232: u8;
|
|
6586
|
+
readonly isMortal233: boolean;
|
|
6587
|
+
readonly asMortal233: u8;
|
|
6588
|
+
readonly isMortal234: boolean;
|
|
6589
|
+
readonly asMortal234: u8;
|
|
6590
|
+
readonly isMortal235: boolean;
|
|
6591
|
+
readonly asMortal235: u8;
|
|
6592
|
+
readonly isMortal236: boolean;
|
|
6593
|
+
readonly asMortal236: u8;
|
|
6594
|
+
readonly isMortal237: boolean;
|
|
6595
|
+
readonly asMortal237: u8;
|
|
6596
|
+
readonly isMortal238: boolean;
|
|
6597
|
+
readonly asMortal238: u8;
|
|
6598
|
+
readonly isMortal239: boolean;
|
|
6599
|
+
readonly asMortal239: u8;
|
|
6600
|
+
readonly isMortal240: boolean;
|
|
6601
|
+
readonly asMortal240: u8;
|
|
6602
|
+
readonly isMortal241: boolean;
|
|
6603
|
+
readonly asMortal241: u8;
|
|
6604
|
+
readonly isMortal242: boolean;
|
|
6605
|
+
readonly asMortal242: u8;
|
|
6606
|
+
readonly isMortal243: boolean;
|
|
6607
|
+
readonly asMortal243: u8;
|
|
6608
|
+
readonly isMortal244: boolean;
|
|
6609
|
+
readonly asMortal244: u8;
|
|
6610
|
+
readonly isMortal245: boolean;
|
|
6611
|
+
readonly asMortal245: u8;
|
|
6612
|
+
readonly isMortal246: boolean;
|
|
6613
|
+
readonly asMortal246: u8;
|
|
6614
|
+
readonly isMortal247: boolean;
|
|
6615
|
+
readonly asMortal247: u8;
|
|
6616
|
+
readonly isMortal248: boolean;
|
|
6617
|
+
readonly asMortal248: u8;
|
|
6618
|
+
readonly isMortal249: boolean;
|
|
6619
|
+
readonly asMortal249: u8;
|
|
6620
|
+
readonly isMortal250: boolean;
|
|
6621
|
+
readonly asMortal250: u8;
|
|
6622
|
+
readonly isMortal251: boolean;
|
|
6623
|
+
readonly asMortal251: u8;
|
|
6624
|
+
readonly isMortal252: boolean;
|
|
6625
|
+
readonly asMortal252: u8;
|
|
6626
|
+
readonly isMortal253: boolean;
|
|
6627
|
+
readonly asMortal253: u8;
|
|
6628
|
+
readonly isMortal254: boolean;
|
|
6629
|
+
readonly asMortal254: u8;
|
|
6630
|
+
readonly isMortal255: boolean;
|
|
6631
|
+
readonly asMortal255: u8;
|
|
6632
|
+
readonly type: 'Immortal' | 'Mortal1' | 'Mortal2' | 'Mortal3' | 'Mortal4' | 'Mortal5' | 'Mortal6' | 'Mortal7' | 'Mortal8' | 'Mortal9' | 'Mortal10' | 'Mortal11' | 'Mortal12' | 'Mortal13' | 'Mortal14' | 'Mortal15' | 'Mortal16' | 'Mortal17' | 'Mortal18' | 'Mortal19' | 'Mortal20' | 'Mortal21' | 'Mortal22' | 'Mortal23' | 'Mortal24' | 'Mortal25' | 'Mortal26' | 'Mortal27' | 'Mortal28' | 'Mortal29' | 'Mortal30' | 'Mortal31' | 'Mortal32' | 'Mortal33' | 'Mortal34' | 'Mortal35' | 'Mortal36' | 'Mortal37' | 'Mortal38' | 'Mortal39' | 'Mortal40' | 'Mortal41' | 'Mortal42' | 'Mortal43' | 'Mortal44' | 'Mortal45' | 'Mortal46' | 'Mortal47' | 'Mortal48' | 'Mortal49' | 'Mortal50' | 'Mortal51' | 'Mortal52' | 'Mortal53' | 'Mortal54' | 'Mortal55' | 'Mortal56' | 'Mortal57' | 'Mortal58' | 'Mortal59' | 'Mortal60' | 'Mortal61' | 'Mortal62' | 'Mortal63' | 'Mortal64' | 'Mortal65' | 'Mortal66' | 'Mortal67' | 'Mortal68' | 'Mortal69' | 'Mortal70' | 'Mortal71' | 'Mortal72' | 'Mortal73' | 'Mortal74' | 'Mortal75' | 'Mortal76' | 'Mortal77' | 'Mortal78' | 'Mortal79' | 'Mortal80' | 'Mortal81' | 'Mortal82' | 'Mortal83' | 'Mortal84' | 'Mortal85' | 'Mortal86' | 'Mortal87' | 'Mortal88' | 'Mortal89' | 'Mortal90' | 'Mortal91' | 'Mortal92' | 'Mortal93' | 'Mortal94' | 'Mortal95' | 'Mortal96' | 'Mortal97' | 'Mortal98' | 'Mortal99' | 'Mortal100' | 'Mortal101' | 'Mortal102' | 'Mortal103' | 'Mortal104' | 'Mortal105' | 'Mortal106' | 'Mortal107' | 'Mortal108' | 'Mortal109' | 'Mortal110' | 'Mortal111' | 'Mortal112' | 'Mortal113' | 'Mortal114' | 'Mortal115' | 'Mortal116' | 'Mortal117' | 'Mortal118' | 'Mortal119' | 'Mortal120' | 'Mortal121' | 'Mortal122' | 'Mortal123' | 'Mortal124' | 'Mortal125' | 'Mortal126' | 'Mortal127' | 'Mortal128' | 'Mortal129' | 'Mortal130' | 'Mortal131' | 'Mortal132' | 'Mortal133' | 'Mortal134' | 'Mortal135' | 'Mortal136' | 'Mortal137' | 'Mortal138' | 'Mortal139' | 'Mortal140' | 'Mortal141' | 'Mortal142' | 'Mortal143' | 'Mortal144' | 'Mortal145' | 'Mortal146' | 'Mortal147' | 'Mortal148' | 'Mortal149' | 'Mortal150' | 'Mortal151' | 'Mortal152' | 'Mortal153' | 'Mortal154' | 'Mortal155' | 'Mortal156' | 'Mortal157' | 'Mortal158' | 'Mortal159' | 'Mortal160' | 'Mortal161' | 'Mortal162' | 'Mortal163' | 'Mortal164' | 'Mortal165' | 'Mortal166' | 'Mortal167' | 'Mortal168' | 'Mortal169' | 'Mortal170' | 'Mortal171' | 'Mortal172' | 'Mortal173' | 'Mortal174' | 'Mortal175' | 'Mortal176' | 'Mortal177' | 'Mortal178' | 'Mortal179' | 'Mortal180' | 'Mortal181' | 'Mortal182' | 'Mortal183' | 'Mortal184' | 'Mortal185' | 'Mortal186' | 'Mortal187' | 'Mortal188' | 'Mortal189' | 'Mortal190' | 'Mortal191' | 'Mortal192' | 'Mortal193' | 'Mortal194' | 'Mortal195' | 'Mortal196' | 'Mortal197' | 'Mortal198' | 'Mortal199' | 'Mortal200' | 'Mortal201' | 'Mortal202' | 'Mortal203' | 'Mortal204' | 'Mortal205' | 'Mortal206' | 'Mortal207' | 'Mortal208' | 'Mortal209' | 'Mortal210' | 'Mortal211' | 'Mortal212' | 'Mortal213' | 'Mortal214' | 'Mortal215' | 'Mortal216' | 'Mortal217' | 'Mortal218' | 'Mortal219' | 'Mortal220' | 'Mortal221' | 'Mortal222' | 'Mortal223' | 'Mortal224' | 'Mortal225' | 'Mortal226' | 'Mortal227' | 'Mortal228' | 'Mortal229' | 'Mortal230' | 'Mortal231' | 'Mortal232' | 'Mortal233' | 'Mortal234' | 'Mortal235' | 'Mortal236' | 'Mortal237' | 'Mortal238' | 'Mortal239' | 'Mortal240' | 'Mortal241' | 'Mortal242' | 'Mortal243' | 'Mortal244' | 'Mortal245' | 'Mortal246' | 'Mortal247' | 'Mortal248' | 'Mortal249' | 'Mortal250' | 'Mortal251' | 'Mortal252' | 'Mortal253' | 'Mortal254' | 'Mortal255';
|
|
6633
|
+
}
|
|
6111
6634
|
/** @name PezframeSystemExtensionsCheckNonce (491) */
|
|
6112
6635
|
interface PezframeSystemExtensionsCheckNonce extends Compact<u32> {
|
|
6113
6636
|
}
|
|
@@ -6133,7 +6656,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6133
6656
|
interface PezpalletRemarkEvent extends Enum {
|
|
6134
6657
|
readonly isStored: boolean;
|
|
6135
6658
|
readonly asStored: {
|
|
6136
|
-
readonly sender:
|
|
6659
|
+
readonly sender: PezspCoreCryptoAccountId32;
|
|
6137
6660
|
readonly contentHash: H256;
|
|
6138
6661
|
} & Struct;
|
|
6139
6662
|
readonly type: 'Stored';
|
|
@@ -6146,22 +6669,22 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6146
6669
|
/** @name PezpalletConvictionVotingEvent (498) */
|
|
6147
6670
|
interface PezpalletConvictionVotingEvent extends Enum {
|
|
6148
6671
|
readonly isDelegated: boolean;
|
|
6149
|
-
readonly asDelegated: ITuple<[
|
|
6672
|
+
readonly asDelegated: ITuple<[PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]>;
|
|
6150
6673
|
readonly isUndelegated: boolean;
|
|
6151
|
-
readonly asUndelegated:
|
|
6674
|
+
readonly asUndelegated: PezspCoreCryptoAccountId32;
|
|
6152
6675
|
readonly isVoted: boolean;
|
|
6153
6676
|
readonly asVoted: {
|
|
6154
|
-
readonly who:
|
|
6677
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
6155
6678
|
readonly vote: PezpalletConvictionVotingVoteAccountVote;
|
|
6156
6679
|
} & Struct;
|
|
6157
6680
|
readonly isVoteRemoved: boolean;
|
|
6158
6681
|
readonly asVoteRemoved: {
|
|
6159
|
-
readonly who:
|
|
6682
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
6160
6683
|
readonly vote: PezpalletConvictionVotingVoteAccountVote;
|
|
6161
6684
|
} & Struct;
|
|
6162
6685
|
readonly isVoteUnlocked: boolean;
|
|
6163
6686
|
readonly asVoteUnlocked: {
|
|
6164
|
-
readonly who:
|
|
6687
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
6165
6688
|
readonly class: u16;
|
|
6166
6689
|
} & Struct;
|
|
6167
6690
|
readonly type: 'Delegated' | 'Undelegated' | 'Voted' | 'VoteRemoved' | 'VoteUnlocked';
|
|
@@ -6209,31 +6732,31 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6209
6732
|
} & Struct;
|
|
6210
6733
|
readonly isMembersInitialized: boolean;
|
|
6211
6734
|
readonly asMembersInitialized: {
|
|
6212
|
-
readonly fellows: Vec<
|
|
6213
|
-
readonly allies: Vec<
|
|
6735
|
+
readonly fellows: Vec<PezspCoreCryptoAccountId32>;
|
|
6736
|
+
readonly allies: Vec<PezspCoreCryptoAccountId32>;
|
|
6214
6737
|
} & Struct;
|
|
6215
6738
|
readonly isNewAllyJoined: boolean;
|
|
6216
6739
|
readonly asNewAllyJoined: {
|
|
6217
|
-
readonly ally:
|
|
6218
|
-
readonly nominator: Option<
|
|
6740
|
+
readonly ally: PezspCoreCryptoAccountId32;
|
|
6741
|
+
readonly nominator: Option<PezspCoreCryptoAccountId32>;
|
|
6219
6742
|
readonly reserved: Option<u128>;
|
|
6220
6743
|
} & Struct;
|
|
6221
6744
|
readonly isAllyElevated: boolean;
|
|
6222
6745
|
readonly asAllyElevated: {
|
|
6223
|
-
readonly ally:
|
|
6746
|
+
readonly ally: PezspCoreCryptoAccountId32;
|
|
6224
6747
|
} & Struct;
|
|
6225
6748
|
readonly isMemberRetirementPeriodStarted: boolean;
|
|
6226
6749
|
readonly asMemberRetirementPeriodStarted: {
|
|
6227
|
-
readonly member:
|
|
6750
|
+
readonly member: PezspCoreCryptoAccountId32;
|
|
6228
6751
|
} & Struct;
|
|
6229
6752
|
readonly isMemberRetired: boolean;
|
|
6230
6753
|
readonly asMemberRetired: {
|
|
6231
|
-
readonly member:
|
|
6754
|
+
readonly member: PezspCoreCryptoAccountId32;
|
|
6232
6755
|
readonly unreserved: Option<u128>;
|
|
6233
6756
|
} & Struct;
|
|
6234
6757
|
readonly isMemberKicked: boolean;
|
|
6235
6758
|
readonly asMemberKicked: {
|
|
6236
|
-
readonly member:
|
|
6759
|
+
readonly member: PezspCoreCryptoAccountId32;
|
|
6237
6760
|
readonly slashed: Option<u128>;
|
|
6238
6761
|
} & Struct;
|
|
6239
6762
|
readonly isUnscrupulousItemAdded: boolean;
|
|
@@ -6252,7 +6775,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6252
6775
|
} & Struct;
|
|
6253
6776
|
readonly isFellowAbdicated: boolean;
|
|
6254
6777
|
readonly asFellowAbdicated: {
|
|
6255
|
-
readonly fellow:
|
|
6778
|
+
readonly fellow: PezspCoreCryptoAccountId32;
|
|
6256
6779
|
} & Struct;
|
|
6257
6780
|
readonly type: 'NewRuleSet' | 'Announced' | 'AnnouncementRemoved' | 'MembersInitialized' | 'NewAllyJoined' | 'AllyElevated' | 'MemberRetirementPeriodStarted' | 'MemberRetired' | 'MemberKicked' | 'UnscrupulousItemAdded' | 'UnscrupulousItemRemoved' | 'AllianceDisbanded' | 'FellowAbdicated';
|
|
6258
6781
|
}
|
|
@@ -6260,25 +6783,25 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6260
6783
|
interface PezpalletNominationPoolsEvent extends Enum {
|
|
6261
6784
|
readonly isCreated: boolean;
|
|
6262
6785
|
readonly asCreated: {
|
|
6263
|
-
readonly depositor:
|
|
6786
|
+
readonly depositor: PezspCoreCryptoAccountId32;
|
|
6264
6787
|
readonly poolId: u32;
|
|
6265
6788
|
} & Struct;
|
|
6266
6789
|
readonly isBonded: boolean;
|
|
6267
6790
|
readonly asBonded: {
|
|
6268
|
-
readonly member:
|
|
6791
|
+
readonly member: PezspCoreCryptoAccountId32;
|
|
6269
6792
|
readonly poolId: u32;
|
|
6270
6793
|
readonly bonded: u128;
|
|
6271
6794
|
readonly joined: bool;
|
|
6272
6795
|
} & Struct;
|
|
6273
6796
|
readonly isPaidOut: boolean;
|
|
6274
6797
|
readonly asPaidOut: {
|
|
6275
|
-
readonly member:
|
|
6798
|
+
readonly member: PezspCoreCryptoAccountId32;
|
|
6276
6799
|
readonly poolId: u32;
|
|
6277
6800
|
readonly payout: u128;
|
|
6278
6801
|
} & Struct;
|
|
6279
6802
|
readonly isUnbonded: boolean;
|
|
6280
6803
|
readonly asUnbonded: {
|
|
6281
|
-
readonly member:
|
|
6804
|
+
readonly member: PezspCoreCryptoAccountId32;
|
|
6282
6805
|
readonly poolId: u32;
|
|
6283
6806
|
readonly balance: u128;
|
|
6284
6807
|
readonly points: u128;
|
|
@@ -6286,7 +6809,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6286
6809
|
} & Struct;
|
|
6287
6810
|
readonly isWithdrawn: boolean;
|
|
6288
6811
|
readonly asWithdrawn: {
|
|
6289
|
-
readonly member:
|
|
6812
|
+
readonly member: PezspCoreCryptoAccountId32;
|
|
6290
6813
|
readonly poolId: u32;
|
|
6291
6814
|
readonly balance: u128;
|
|
6292
6815
|
readonly points: u128;
|
|
@@ -6303,14 +6826,14 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6303
6826
|
readonly isMemberRemoved: boolean;
|
|
6304
6827
|
readonly asMemberRemoved: {
|
|
6305
6828
|
readonly poolId: u32;
|
|
6306
|
-
readonly member:
|
|
6829
|
+
readonly member: PezspCoreCryptoAccountId32;
|
|
6307
6830
|
readonly releasedBalance: u128;
|
|
6308
6831
|
} & Struct;
|
|
6309
6832
|
readonly isRolesUpdated: boolean;
|
|
6310
6833
|
readonly asRolesUpdated: {
|
|
6311
|
-
readonly root: Option<
|
|
6312
|
-
readonly bouncer: Option<
|
|
6313
|
-
readonly nominator: Option<
|
|
6834
|
+
readonly root: Option<PezspCoreCryptoAccountId32>;
|
|
6835
|
+
readonly bouncer: Option<PezspCoreCryptoAccountId32>;
|
|
6836
|
+
readonly nominator: Option<PezspCoreCryptoAccountId32>;
|
|
6314
6837
|
} & Struct;
|
|
6315
6838
|
readonly isPoolSlashed: boolean;
|
|
6316
6839
|
readonly asPoolSlashed: {
|
|
@@ -6326,12 +6849,12 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6326
6849
|
readonly isPoolCommissionUpdated: boolean;
|
|
6327
6850
|
readonly asPoolCommissionUpdated: {
|
|
6328
6851
|
readonly poolId: u32;
|
|
6329
|
-
readonly current: Option<ITuple<[
|
|
6852
|
+
readonly current: Option<ITuple<[u32, PezspCoreCryptoAccountId32]>>;
|
|
6330
6853
|
} & Struct;
|
|
6331
6854
|
readonly isPoolMaxCommissionUpdated: boolean;
|
|
6332
6855
|
readonly asPoolMaxCommissionUpdated: {
|
|
6333
6856
|
readonly poolId: u32;
|
|
6334
|
-
readonly maxCommission:
|
|
6857
|
+
readonly maxCommission: u32;
|
|
6335
6858
|
} & Struct;
|
|
6336
6859
|
readonly isPoolCommissionChangeRateUpdated: boolean;
|
|
6337
6860
|
readonly asPoolCommissionChangeRateUpdated: {
|
|
@@ -6360,23 +6883,23 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6360
6883
|
} & Struct;
|
|
6361
6884
|
readonly isMemberClaimPermissionUpdated: boolean;
|
|
6362
6885
|
readonly asMemberClaimPermissionUpdated: {
|
|
6363
|
-
readonly member:
|
|
6886
|
+
readonly member: PezspCoreCryptoAccountId32;
|
|
6364
6887
|
readonly permission: PezpalletNominationPoolsClaimPermission;
|
|
6365
6888
|
} & Struct;
|
|
6366
6889
|
readonly isMetadataUpdated: boolean;
|
|
6367
6890
|
readonly asMetadataUpdated: {
|
|
6368
6891
|
readonly poolId: u32;
|
|
6369
|
-
readonly caller:
|
|
6892
|
+
readonly caller: PezspCoreCryptoAccountId32;
|
|
6370
6893
|
} & Struct;
|
|
6371
6894
|
readonly isPoolNominationMade: boolean;
|
|
6372
6895
|
readonly asPoolNominationMade: {
|
|
6373
6896
|
readonly poolId: u32;
|
|
6374
|
-
readonly caller:
|
|
6897
|
+
readonly caller: PezspCoreCryptoAccountId32;
|
|
6375
6898
|
} & Struct;
|
|
6376
6899
|
readonly isPoolNominatorChilled: boolean;
|
|
6377
6900
|
readonly asPoolNominatorChilled: {
|
|
6378
6901
|
readonly poolId: u32;
|
|
6379
|
-
readonly caller:
|
|
6902
|
+
readonly caller: PezspCoreCryptoAccountId32;
|
|
6380
6903
|
} & Struct;
|
|
6381
6904
|
readonly isGlobalParamsUpdated: boolean;
|
|
6382
6905
|
readonly asGlobalParamsUpdated: {
|
|
@@ -6385,7 +6908,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6385
6908
|
readonly maxPools: Option<u32>;
|
|
6386
6909
|
readonly maxMembers: Option<u32>;
|
|
6387
6910
|
readonly maxMembersPerPool: Option<u32>;
|
|
6388
|
-
readonly globalMaxCommission: Option<
|
|
6911
|
+
readonly globalMaxCommission: Option<u32>;
|
|
6389
6912
|
} & Struct;
|
|
6390
6913
|
readonly type: 'Created' | 'Bonded' | 'PaidOut' | 'Unbonded' | 'Withdrawn' | 'Destroyed' | 'StateChanged' | 'MemberRemoved' | 'RolesUpdated' | 'PoolSlashed' | 'UnbondingPoolSlashed' | 'PoolCommissionUpdated' | 'PoolMaxCommissionUpdated' | 'PoolCommissionChangeRateUpdated' | 'PoolCommissionClaimPermissionUpdated' | 'PoolCommissionClaimed' | 'MinBalanceDeficitAdjusted' | 'MinBalanceExcessAdjusted' | 'MemberClaimPermissionUpdated' | 'MetadataUpdated' | 'PoolNominationMade' | 'PoolNominatorChilled' | 'GlobalParamsUpdated';
|
|
6391
6914
|
}
|
|
@@ -6399,29 +6922,29 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6399
6922
|
interface PezpalletRankedCollectiveEvent extends Enum {
|
|
6400
6923
|
readonly isMemberAdded: boolean;
|
|
6401
6924
|
readonly asMemberAdded: {
|
|
6402
|
-
readonly who:
|
|
6925
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
6403
6926
|
} & Struct;
|
|
6404
6927
|
readonly isRankChanged: boolean;
|
|
6405
6928
|
readonly asRankChanged: {
|
|
6406
|
-
readonly who:
|
|
6929
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
6407
6930
|
readonly rank: u16;
|
|
6408
6931
|
} & Struct;
|
|
6409
6932
|
readonly isMemberRemoved: boolean;
|
|
6410
6933
|
readonly asMemberRemoved: {
|
|
6411
|
-
readonly who:
|
|
6934
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
6412
6935
|
readonly rank: u16;
|
|
6413
6936
|
} & Struct;
|
|
6414
6937
|
readonly isVoted: boolean;
|
|
6415
6938
|
readonly asVoted: {
|
|
6416
|
-
readonly who:
|
|
6939
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
6417
6940
|
readonly poll: u32;
|
|
6418
6941
|
readonly vote: PezpalletRankedCollectiveVoteRecord;
|
|
6419
6942
|
readonly tally: PezpalletRankedCollectiveTally;
|
|
6420
6943
|
} & Struct;
|
|
6421
6944
|
readonly isMemberExchanged: boolean;
|
|
6422
6945
|
readonly asMemberExchanged: {
|
|
6423
|
-
readonly who:
|
|
6424
|
-
readonly newWho:
|
|
6946
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
6947
|
+
readonly newWho: PezspCoreCryptoAccountId32;
|
|
6425
6948
|
} & Struct;
|
|
6426
6949
|
readonly type: 'MemberAdded' | 'RankChanged' | 'MemberRemoved' | 'Voted' | 'MemberExchanged';
|
|
6427
6950
|
}
|
|
@@ -6437,15 +6960,15 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6437
6960
|
interface PezpalletAssetConversionEvent extends Enum {
|
|
6438
6961
|
readonly isPoolCreated: boolean;
|
|
6439
6962
|
readonly asPoolCreated: {
|
|
6440
|
-
readonly creator:
|
|
6963
|
+
readonly creator: PezspCoreCryptoAccountId32;
|
|
6441
6964
|
readonly poolId: ITuple<[PezframeSupportTokensFungibleUnionOfNativeOrWithId, PezframeSupportTokensFungibleUnionOfNativeOrWithId]>;
|
|
6442
|
-
readonly poolAccount:
|
|
6965
|
+
readonly poolAccount: PezspCoreCryptoAccountId32;
|
|
6443
6966
|
readonly lpToken: u32;
|
|
6444
6967
|
} & Struct;
|
|
6445
6968
|
readonly isLiquidityAdded: boolean;
|
|
6446
6969
|
readonly asLiquidityAdded: {
|
|
6447
|
-
readonly who:
|
|
6448
|
-
readonly mintTo:
|
|
6970
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
6971
|
+
readonly mintTo: PezspCoreCryptoAccountId32;
|
|
6449
6972
|
readonly poolId: ITuple<[PezframeSupportTokensFungibleUnionOfNativeOrWithId, PezframeSupportTokensFungibleUnionOfNativeOrWithId]>;
|
|
6450
6973
|
readonly amount1Provided: u128;
|
|
6451
6974
|
readonly amount2Provided: u128;
|
|
@@ -6454,19 +6977,19 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6454
6977
|
} & Struct;
|
|
6455
6978
|
readonly isLiquidityRemoved: boolean;
|
|
6456
6979
|
readonly asLiquidityRemoved: {
|
|
6457
|
-
readonly who:
|
|
6458
|
-
readonly withdrawTo:
|
|
6980
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
6981
|
+
readonly withdrawTo: PezspCoreCryptoAccountId32;
|
|
6459
6982
|
readonly poolId: ITuple<[PezframeSupportTokensFungibleUnionOfNativeOrWithId, PezframeSupportTokensFungibleUnionOfNativeOrWithId]>;
|
|
6460
6983
|
readonly amount1: u128;
|
|
6461
6984
|
readonly amount2: u128;
|
|
6462
6985
|
readonly lpToken: u32;
|
|
6463
6986
|
readonly lpTokenBurned: u128;
|
|
6464
|
-
readonly withdrawalFee:
|
|
6987
|
+
readonly withdrawalFee: u32;
|
|
6465
6988
|
} & Struct;
|
|
6466
6989
|
readonly isSwapExecuted: boolean;
|
|
6467
6990
|
readonly asSwapExecuted: {
|
|
6468
|
-
readonly who:
|
|
6469
|
-
readonly sendTo:
|
|
6991
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
6992
|
+
readonly sendTo: PezspCoreCryptoAccountId32;
|
|
6470
6993
|
readonly amountIn: u128;
|
|
6471
6994
|
readonly amountOut: u128;
|
|
6472
6995
|
readonly path: Vec<ITuple<[PezframeSupportTokensFungibleUnionOfNativeOrWithId, u128]>>;
|
|
@@ -6480,7 +7003,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6480
7003
|
readonly isTouched: boolean;
|
|
6481
7004
|
readonly asTouched: {
|
|
6482
7005
|
readonly poolId: ITuple<[PezframeSupportTokensFungibleUnionOfNativeOrWithId, PezframeSupportTokensFungibleUnionOfNativeOrWithId]>;
|
|
6483
|
-
readonly who:
|
|
7006
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
6484
7007
|
} & Struct;
|
|
6485
7008
|
readonly type: 'PoolCreated' | 'LiquidityAdded' | 'LiquidityRemoved' | 'SwapExecuted' | 'SwapCreditExecuted' | 'Touched';
|
|
6486
7009
|
}
|
|
@@ -6488,12 +7011,12 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6488
7011
|
interface PezpalletFastUnstakeEvent extends Enum {
|
|
6489
7012
|
readonly isUnstaked: boolean;
|
|
6490
7013
|
readonly asUnstaked: {
|
|
6491
|
-
readonly stash:
|
|
7014
|
+
readonly stash: PezspCoreCryptoAccountId32;
|
|
6492
7015
|
readonly result: Result<Null, PezspRuntimeDispatchError>;
|
|
6493
7016
|
} & Struct;
|
|
6494
7017
|
readonly isSlashed: boolean;
|
|
6495
7018
|
readonly asSlashed: {
|
|
6496
|
-
readonly stash:
|
|
7019
|
+
readonly stash: PezspCoreCryptoAccountId32;
|
|
6497
7020
|
readonly amount: u128;
|
|
6498
7021
|
} & Struct;
|
|
6499
7022
|
readonly isBatchChecked: boolean;
|
|
@@ -6580,17 +7103,17 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6580
7103
|
} & Struct;
|
|
6581
7104
|
readonly isDepositPlaced: boolean;
|
|
6582
7105
|
readonly asDepositPlaced: {
|
|
6583
|
-
readonly account:
|
|
7106
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
6584
7107
|
readonly amount: u128;
|
|
6585
7108
|
} & Struct;
|
|
6586
7109
|
readonly isDepositReleased: boolean;
|
|
6587
7110
|
readonly asDepositReleased: {
|
|
6588
|
-
readonly account:
|
|
7111
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
6589
7112
|
readonly amount: u128;
|
|
6590
7113
|
} & Struct;
|
|
6591
7114
|
readonly isDepositSlashed: boolean;
|
|
6592
7115
|
readonly asDepositSlashed: {
|
|
6593
|
-
readonly account:
|
|
7116
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
6594
7117
|
readonly amount: u128;
|
|
6595
7118
|
} & Struct;
|
|
6596
7119
|
readonly isCannotDeposit: boolean;
|
|
@@ -6607,7 +7130,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6607
7130
|
interface PezpalletStatementEvent extends Enum {
|
|
6608
7131
|
readonly isNewStatement: boolean;
|
|
6609
7132
|
readonly asNewStatement: {
|
|
6610
|
-
readonly account:
|
|
7133
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
6611
7134
|
readonly statement: PezspStatementStoreStatement;
|
|
6612
7135
|
} & Struct;
|
|
6613
7136
|
readonly type: 'NewStatement';
|
|
@@ -6684,7 +7207,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6684
7207
|
interface PezpalletBrokerEvent extends Enum {
|
|
6685
7208
|
readonly isPurchased: boolean;
|
|
6686
7209
|
readonly asPurchased: {
|
|
6687
|
-
readonly who:
|
|
7210
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
6688
7211
|
readonly regionId: PezpalletBrokerRegionId;
|
|
6689
7212
|
readonly price: u128;
|
|
6690
7213
|
readonly duration: u32;
|
|
@@ -6698,7 +7221,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6698
7221
|
} & Struct;
|
|
6699
7222
|
readonly isRenewed: boolean;
|
|
6700
7223
|
readonly asRenewed: {
|
|
6701
|
-
readonly who:
|
|
7224
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
6702
7225
|
readonly price: u128;
|
|
6703
7226
|
readonly oldCore: u16;
|
|
6704
7227
|
readonly core: u16;
|
|
@@ -6710,8 +7233,8 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6710
7233
|
readonly asTransferred: {
|
|
6711
7234
|
readonly regionId: PezpalletBrokerRegionId;
|
|
6712
7235
|
readonly duration: u32;
|
|
6713
|
-
readonly oldOwner: Option<
|
|
6714
|
-
readonly owner: Option<
|
|
7236
|
+
readonly oldOwner: Option<PezspCoreCryptoAccountId32>;
|
|
7237
|
+
readonly owner: Option<PezspCoreCryptoAccountId32>;
|
|
6715
7238
|
} & Struct;
|
|
6716
7239
|
readonly isPartitioned: boolean;
|
|
6717
7240
|
readonly asPartitioned: {
|
|
@@ -6798,14 +7321,14 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6798
7321
|
} & Struct;
|
|
6799
7322
|
readonly isRevenueClaimPaid: boolean;
|
|
6800
7323
|
readonly asRevenueClaimPaid: {
|
|
6801
|
-
readonly who:
|
|
7324
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
6802
7325
|
readonly amount: u128;
|
|
6803
7326
|
readonly next: Option<PezpalletBrokerRegionId>;
|
|
6804
7327
|
} & Struct;
|
|
6805
7328
|
readonly isCreditPurchased: boolean;
|
|
6806
7329
|
readonly asCreditPurchased: {
|
|
6807
|
-
readonly who:
|
|
6808
|
-
readonly beneficiary:
|
|
7330
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
7331
|
+
readonly beneficiary: PezspCoreCryptoAccountId32;
|
|
6809
7332
|
readonly amount: u128;
|
|
6810
7333
|
} & Struct;
|
|
6811
7334
|
readonly isRegionDropped: boolean;
|
|
@@ -6863,7 +7386,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6863
7386
|
readonly isAutoRenewalFailed: boolean;
|
|
6864
7387
|
readonly asAutoRenewalFailed: {
|
|
6865
7388
|
readonly core: u16;
|
|
6866
|
-
readonly payer: Option<
|
|
7389
|
+
readonly payer: Option<PezspCoreCryptoAccountId32>;
|
|
6867
7390
|
} & Struct;
|
|
6868
7391
|
readonly isAutoRenewalLimitReached: boolean;
|
|
6869
7392
|
readonly type: 'Purchased' | 'Renewable' | 'Renewed' | 'Transferred' | 'Partitioned' | 'Interlaced' | 'Assigned' | 'AssignmentRemoved' | 'Pooled' | 'CoreCountRequested' | 'CoreCountChanged' | 'ReservationMade' | 'ReservationCancelled' | 'SaleInitialized' | 'Leased' | 'LeaseRemoved' | 'LeaseEnding' | 'SalesStarted' | 'RevenueClaimBegun' | 'RevenueClaimItem' | 'RevenueClaimPaid' | 'CreditPurchased' | 'RegionDropped' | 'ContributionDropped' | 'HistoryInitialized' | 'HistoryDropped' | 'HistoryIgnored' | 'ClaimsReady' | 'CoreAssigned' | 'PotentialRenewalDropped' | 'AutoRenewalEnabled' | 'AutoRenewalDisabled' | 'AutoRenewalFailed' | 'AutoRenewalLimitReached';
|
|
@@ -6935,8 +7458,8 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6935
7458
|
readonly isMigratedToNewAccount: boolean;
|
|
6936
7459
|
readonly asMigratedToNewAccount: {
|
|
6937
7460
|
readonly poolId: ITuple<[PezframeSupportTokensFungibleUnionOfNativeOrWithId, PezframeSupportTokensFungibleUnionOfNativeOrWithId]>;
|
|
6938
|
-
readonly priorAccount:
|
|
6939
|
-
readonly newAccount:
|
|
7461
|
+
readonly priorAccount: PezspCoreCryptoAccountId32;
|
|
7462
|
+
readonly newAccount: PezspCoreCryptoAccountId32;
|
|
6940
7463
|
} & Struct;
|
|
6941
7464
|
readonly type: 'MigratedToNewAccount';
|
|
6942
7465
|
}
|
|
@@ -6954,26 +7477,26 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6954
7477
|
interface PezpalletDelegatedStakingEvent extends Enum {
|
|
6955
7478
|
readonly isDelegated: boolean;
|
|
6956
7479
|
readonly asDelegated: {
|
|
6957
|
-
readonly agent:
|
|
6958
|
-
readonly delegator:
|
|
7480
|
+
readonly agent: PezspCoreCryptoAccountId32;
|
|
7481
|
+
readonly delegator: PezspCoreCryptoAccountId32;
|
|
6959
7482
|
readonly amount: u128;
|
|
6960
7483
|
} & Struct;
|
|
6961
7484
|
readonly isReleased: boolean;
|
|
6962
7485
|
readonly asReleased: {
|
|
6963
|
-
readonly agent:
|
|
6964
|
-
readonly delegator:
|
|
7486
|
+
readonly agent: PezspCoreCryptoAccountId32;
|
|
7487
|
+
readonly delegator: PezspCoreCryptoAccountId32;
|
|
6965
7488
|
readonly amount: u128;
|
|
6966
7489
|
} & Struct;
|
|
6967
7490
|
readonly isSlashed: boolean;
|
|
6968
7491
|
readonly asSlashed: {
|
|
6969
|
-
readonly agent:
|
|
6970
|
-
readonly delegator:
|
|
7492
|
+
readonly agent: PezspCoreCryptoAccountId32;
|
|
7493
|
+
readonly delegator: PezspCoreCryptoAccountId32;
|
|
6971
7494
|
readonly amount: u128;
|
|
6972
7495
|
} & Struct;
|
|
6973
7496
|
readonly isMigratedDelegation: boolean;
|
|
6974
7497
|
readonly asMigratedDelegation: {
|
|
6975
|
-
readonly agent:
|
|
6976
|
-
readonly delegator:
|
|
7498
|
+
readonly agent: PezspCoreCryptoAccountId32;
|
|
7499
|
+
readonly delegator: PezspCoreCryptoAccountId32;
|
|
6977
7500
|
readonly amount: u128;
|
|
6978
7501
|
} & Struct;
|
|
6979
7502
|
readonly type: 'Delegated' | 'Released' | 'Slashed' | 'MigratedDelegation';
|
|
@@ -6982,33 +7505,33 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
6982
7505
|
interface PezpalletAssetRewardsEvent extends Enum {
|
|
6983
7506
|
readonly isStaked: boolean;
|
|
6984
7507
|
readonly asStaked: {
|
|
6985
|
-
readonly staker:
|
|
7508
|
+
readonly staker: PezspCoreCryptoAccountId32;
|
|
6986
7509
|
readonly poolId: u32;
|
|
6987
7510
|
readonly amount: u128;
|
|
6988
7511
|
} & Struct;
|
|
6989
7512
|
readonly isUnstaked: boolean;
|
|
6990
7513
|
readonly asUnstaked: {
|
|
6991
|
-
readonly caller:
|
|
6992
|
-
readonly staker:
|
|
7514
|
+
readonly caller: PezspCoreCryptoAccountId32;
|
|
7515
|
+
readonly staker: PezspCoreCryptoAccountId32;
|
|
6993
7516
|
readonly poolId: u32;
|
|
6994
7517
|
readonly amount: u128;
|
|
6995
7518
|
} & Struct;
|
|
6996
7519
|
readonly isRewardsHarvested: boolean;
|
|
6997
7520
|
readonly asRewardsHarvested: {
|
|
6998
|
-
readonly caller:
|
|
6999
|
-
readonly staker:
|
|
7521
|
+
readonly caller: PezspCoreCryptoAccountId32;
|
|
7522
|
+
readonly staker: PezspCoreCryptoAccountId32;
|
|
7000
7523
|
readonly poolId: u32;
|
|
7001
7524
|
readonly amount: u128;
|
|
7002
7525
|
} & Struct;
|
|
7003
7526
|
readonly isPoolCreated: boolean;
|
|
7004
7527
|
readonly asPoolCreated: {
|
|
7005
|
-
readonly creator:
|
|
7528
|
+
readonly creator: PezspCoreCryptoAccountId32;
|
|
7006
7529
|
readonly poolId: u32;
|
|
7007
7530
|
readonly stakedAssetId: PezframeSupportTokensFungibleUnionOfNativeOrWithId;
|
|
7008
7531
|
readonly rewardAssetId: PezframeSupportTokensFungibleUnionOfNativeOrWithId;
|
|
7009
7532
|
readonly rewardRatePerBlock: u128;
|
|
7010
7533
|
readonly expiryBlock: u32;
|
|
7011
|
-
readonly admin:
|
|
7534
|
+
readonly admin: PezspCoreCryptoAccountId32;
|
|
7012
7535
|
} & Struct;
|
|
7013
7536
|
readonly isPoolRewardRateModified: boolean;
|
|
7014
7537
|
readonly asPoolRewardRateModified: {
|
|
@@ -7018,7 +7541,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
7018
7541
|
readonly isPoolAdminModified: boolean;
|
|
7019
7542
|
readonly asPoolAdminModified: {
|
|
7020
7543
|
readonly poolId: u32;
|
|
7021
|
-
readonly newAdmin:
|
|
7544
|
+
readonly newAdmin: PezspCoreCryptoAccountId32;
|
|
7022
7545
|
} & Struct;
|
|
7023
7546
|
readonly isPoolExpiryBlockModified: boolean;
|
|
7024
7547
|
readonly asPoolExpiryBlockModified: {
|
|
@@ -7035,13 +7558,13 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
7035
7558
|
interface PezpalletAssetsFreezerEvent extends Enum {
|
|
7036
7559
|
readonly isFrozen: boolean;
|
|
7037
7560
|
readonly asFrozen: {
|
|
7038
|
-
readonly who:
|
|
7561
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
7039
7562
|
readonly assetId: u32;
|
|
7040
7563
|
readonly amount: u128;
|
|
7041
7564
|
} & Struct;
|
|
7042
7565
|
readonly isThawed: boolean;
|
|
7043
7566
|
readonly asThawed: {
|
|
7044
|
-
readonly who:
|
|
7567
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
7045
7568
|
readonly assetId: u32;
|
|
7046
7569
|
readonly amount: u128;
|
|
7047
7570
|
} & Struct;
|
|
@@ -7355,18 +7878,18 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
7355
7878
|
}
|
|
7356
7879
|
/** @name PezpalletElectionProviderMultiPhaseReadySolution (619) */
|
|
7357
7880
|
interface PezpalletElectionProviderMultiPhaseReadySolution extends Struct {
|
|
7358
|
-
readonly supports: Vec<ITuple<[
|
|
7881
|
+
readonly supports: Vec<ITuple<[PezspCoreCryptoAccountId32, PezspNposElectionsSupport]>>;
|
|
7359
7882
|
readonly score: PezspNposElectionsElectionScore;
|
|
7360
7883
|
readonly compute: PezpalletElectionProviderMultiPhaseElectionCompute;
|
|
7361
7884
|
}
|
|
7362
7885
|
/** @name PezpalletElectionProviderMultiPhaseRoundSnapshot (621) */
|
|
7363
7886
|
interface PezpalletElectionProviderMultiPhaseRoundSnapshot extends Struct {
|
|
7364
|
-
readonly voters: Vec<ITuple<[
|
|
7365
|
-
readonly targets: Vec<
|
|
7887
|
+
readonly voters: Vec<ITuple<[PezspCoreCryptoAccountId32, u64, Vec<PezspCoreCryptoAccountId32>]>>;
|
|
7888
|
+
readonly targets: Vec<PezspCoreCryptoAccountId32>;
|
|
7366
7889
|
}
|
|
7367
7890
|
/** @name PezpalletElectionProviderMultiPhaseSignedSignedSubmission (628) */
|
|
7368
7891
|
interface PezpalletElectionProviderMultiPhaseSignedSignedSubmission extends Struct {
|
|
7369
|
-
readonly who:
|
|
7892
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
7370
7893
|
readonly deposit: u128;
|
|
7371
7894
|
readonly rawSolution: PezpalletElectionProviderMultiPhaseRawSolution;
|
|
7372
7895
|
readonly callFee: u128;
|
|
@@ -7392,7 +7915,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
7392
7915
|
}
|
|
7393
7916
|
/** @name PezpalletStakingStakingLedger (630) */
|
|
7394
7917
|
interface PezpalletStakingStakingLedger extends Struct {
|
|
7395
|
-
readonly stash:
|
|
7918
|
+
readonly stash: PezspCoreCryptoAccountId32;
|
|
7396
7919
|
readonly total: Compact<u128>;
|
|
7397
7920
|
readonly active: Compact<u128>;
|
|
7398
7921
|
readonly unlocking: Vec<PezpalletStakingUnlockChunk>;
|
|
@@ -7400,7 +7923,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
7400
7923
|
}
|
|
7401
7924
|
/** @name PezpalletStakingNominations (632) */
|
|
7402
7925
|
interface PezpalletStakingNominations extends Struct {
|
|
7403
|
-
readonly targets: Vec<
|
|
7926
|
+
readonly targets: Vec<PezspCoreCryptoAccountId32>;
|
|
7404
7927
|
readonly submittedIn: u32;
|
|
7405
7928
|
readonly suppressed: bool;
|
|
7406
7929
|
}
|
|
@@ -7417,7 +7940,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
7417
7940
|
}
|
|
7418
7941
|
/** @name PezspStakingIndividualExposure (638) */
|
|
7419
7942
|
interface PezspStakingIndividualExposure extends Struct {
|
|
7420
|
-
readonly who:
|
|
7943
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
7421
7944
|
readonly value: Compact<u128>;
|
|
7422
7945
|
}
|
|
7423
7946
|
/** @name PezspStakingPagedExposureMetadata (639) */
|
|
@@ -7435,14 +7958,14 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
7435
7958
|
/** @name PezpalletStakingEraRewardPoints (642) */
|
|
7436
7959
|
interface PezpalletStakingEraRewardPoints extends Struct {
|
|
7437
7960
|
readonly total: u32;
|
|
7438
|
-
readonly individual: BTreeMap<
|
|
7961
|
+
readonly individual: BTreeMap<PezspCoreCryptoAccountId32, u32>;
|
|
7439
7962
|
}
|
|
7440
7963
|
/** @name PezpalletStakingUnappliedSlash (647) */
|
|
7441
7964
|
interface PezpalletStakingUnappliedSlash extends Struct {
|
|
7442
|
-
readonly validator:
|
|
7965
|
+
readonly validator: PezspCoreCryptoAccountId32;
|
|
7443
7966
|
readonly own: u128;
|
|
7444
|
-
readonly others: Vec<ITuple<[
|
|
7445
|
-
readonly reporters: Vec<
|
|
7967
|
+
readonly others: Vec<ITuple<[PezspCoreCryptoAccountId32, u128]>>;
|
|
7968
|
+
readonly reporters: Vec<PezspCoreCryptoAccountId32>;
|
|
7446
7969
|
readonly payout: u128;
|
|
7447
7970
|
}
|
|
7448
7971
|
/** @name PezpalletStakingSlashingSlashingSpans (649) */
|
|
@@ -7543,7 +8066,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
7543
8066
|
readonly isDelegating: boolean;
|
|
7544
8067
|
readonly asDelegating: {
|
|
7545
8068
|
readonly balance: u128;
|
|
7546
|
-
readonly target:
|
|
8069
|
+
readonly target: PezspCoreCryptoAccountId32;
|
|
7547
8070
|
readonly conviction: PezpalletDemocracyConviction;
|
|
7548
8071
|
readonly delegations: PezpalletDemocracyDelegations;
|
|
7549
8072
|
readonly prior: PezpalletDemocracyVotePriorLock;
|
|
@@ -7590,8 +8113,8 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
7590
8113
|
interface PezpalletCollectiveVotes extends Struct {
|
|
7591
8114
|
readonly index: u32;
|
|
7592
8115
|
readonly threshold: u32;
|
|
7593
|
-
readonly ayes: Vec<
|
|
7594
|
-
readonly nays: Vec<
|
|
8116
|
+
readonly ayes: Vec<PezspCoreCryptoAccountId32>;
|
|
8117
|
+
readonly nays: Vec<PezspCoreCryptoAccountId32>;
|
|
7595
8118
|
readonly end: u32;
|
|
7596
8119
|
}
|
|
7597
8120
|
/** @name PezpalletCollectiveError (681) */
|
|
@@ -7612,13 +8135,13 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
7612
8135
|
}
|
|
7613
8136
|
/** @name PezpalletElectionsPhragmenSeatHolder (685) */
|
|
7614
8137
|
interface PezpalletElectionsPhragmenSeatHolder extends Struct {
|
|
7615
|
-
readonly who:
|
|
8138
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
7616
8139
|
readonly stake: u128;
|
|
7617
8140
|
readonly deposit: u128;
|
|
7618
8141
|
}
|
|
7619
8142
|
/** @name PezpalletElectionsPhragmenVoter (686) */
|
|
7620
8143
|
interface PezpalletElectionsPhragmenVoter extends Struct {
|
|
7621
|
-
readonly votes: Vec<
|
|
8144
|
+
readonly votes: Vec<PezspCoreCryptoAccountId32>;
|
|
7622
8145
|
readonly stake: u128;
|
|
7623
8146
|
readonly deposit: u128;
|
|
7624
8147
|
}
|
|
@@ -7686,16 +8209,16 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
7686
8209
|
}
|
|
7687
8210
|
/** @name PezpalletTreasuryProposal (694) */
|
|
7688
8211
|
interface PezpalletTreasuryProposal extends Struct {
|
|
7689
|
-
readonly proposer:
|
|
8212
|
+
readonly proposer: PezspCoreCryptoAccountId32;
|
|
7690
8213
|
readonly value: u128;
|
|
7691
|
-
readonly beneficiary:
|
|
8214
|
+
readonly beneficiary: PezspCoreCryptoAccountId32;
|
|
7692
8215
|
readonly bond: u128;
|
|
7693
8216
|
}
|
|
7694
8217
|
/** @name PezpalletTreasurySpendStatus (696) */
|
|
7695
8218
|
interface PezpalletTreasurySpendStatus extends Struct {
|
|
7696
8219
|
readonly assetKind: PezframeSupportTokensFungibleUnionOfNativeOrWithId;
|
|
7697
8220
|
readonly amount: u128;
|
|
7698
|
-
readonly beneficiary:
|
|
8221
|
+
readonly beneficiary: PezspCoreCryptoAccountId32;
|
|
7699
8222
|
readonly validFrom: u32;
|
|
7700
8223
|
readonly expireAt: u32;
|
|
7701
8224
|
readonly status: PezpalletTreasuryPaymentState;
|
|
@@ -7737,7 +8260,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
7737
8260
|
}
|
|
7738
8261
|
/** @name PezpalletContractsWasmCodeInfo (702) */
|
|
7739
8262
|
interface PezpalletContractsWasmCodeInfo extends Struct {
|
|
7740
|
-
readonly owner:
|
|
8263
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
7741
8264
|
readonly deposit: Compact<u128>;
|
|
7742
8265
|
readonly refcount: Compact<u64>;
|
|
7743
8266
|
readonly determinism: PezpalletContractsWasmDeterminism;
|
|
@@ -7853,8 +8376,8 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
7853
8376
|
}
|
|
7854
8377
|
/** @name PezspStakingOffenceOffenceDetails (728) */
|
|
7855
8378
|
interface PezspStakingOffenceOffenceDetails extends Struct {
|
|
7856
|
-
readonly offender: ITuple<[
|
|
7857
|
-
readonly reporters: Vec<
|
|
8379
|
+
readonly offender: ITuple<[PezspCoreCryptoAccountId32, Null]>;
|
|
8380
|
+
readonly reporters: Vec<PezspCoreCryptoAccountId32>;
|
|
7858
8381
|
}
|
|
7859
8382
|
/** @name PezpalletIdentityRegistration (732) */
|
|
7860
8383
|
interface PezpalletIdentityRegistration extends Struct {
|
|
@@ -7864,18 +8387,18 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
7864
8387
|
}
|
|
7865
8388
|
/** @name PezpalletIdentityRegistrarInfo (740) */
|
|
7866
8389
|
interface PezpalletIdentityRegistrarInfo extends Struct {
|
|
7867
|
-
readonly account:
|
|
8390
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
7868
8391
|
readonly fee: u128;
|
|
7869
8392
|
readonly fields: u64;
|
|
7870
8393
|
}
|
|
7871
8394
|
/** @name PezpalletIdentityAuthorityProperties (743) */
|
|
7872
8395
|
interface PezpalletIdentityAuthorityProperties extends Struct {
|
|
7873
|
-
readonly accountId:
|
|
8396
|
+
readonly accountId: PezspCoreCryptoAccountId32;
|
|
7874
8397
|
readonly allocation: u32;
|
|
7875
8398
|
}
|
|
7876
8399
|
/** @name PezpalletIdentityUsernameInformation (744) */
|
|
7877
8400
|
interface PezpalletIdentityUsernameInformation extends Struct {
|
|
7878
|
-
readonly owner:
|
|
8401
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
7879
8402
|
readonly provider: PezpalletIdentityProvider;
|
|
7880
8403
|
}
|
|
7881
8404
|
/** @name PezpalletIdentityProvider (745) */
|
|
@@ -7940,7 +8463,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
7940
8463
|
}
|
|
7941
8464
|
/** @name PezpalletSocietyBid (756) */
|
|
7942
8465
|
interface PezpalletSocietyBid extends Struct {
|
|
7943
|
-
readonly who:
|
|
8466
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
7944
8467
|
readonly kind: PezpalletSocietyBidKind;
|
|
7945
8468
|
readonly value: u128;
|
|
7946
8469
|
}
|
|
@@ -7949,7 +8472,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
7949
8472
|
readonly isDeposit: boolean;
|
|
7950
8473
|
readonly asDeposit: u128;
|
|
7951
8474
|
readonly isVouch: boolean;
|
|
7952
|
-
readonly asVouch: ITuple<[
|
|
8475
|
+
readonly asVouch: ITuple<[PezspCoreCryptoAccountId32, u128]>;
|
|
7953
8476
|
readonly type: 'Deposit' | 'Vouch';
|
|
7954
8477
|
}
|
|
7955
8478
|
/** @name PezpalletSocietyCandidacy (759) */
|
|
@@ -7972,7 +8495,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
7972
8495
|
}
|
|
7973
8496
|
/** @name PezpalletSocietyIntakeRecord (764) */
|
|
7974
8497
|
interface PezpalletSocietyIntakeRecord extends Struct {
|
|
7975
|
-
readonly who:
|
|
8498
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
7976
8499
|
readonly bid: u128;
|
|
7977
8500
|
readonly round: u32;
|
|
7978
8501
|
}
|
|
@@ -8016,14 +8539,14 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
8016
8539
|
interface PezpalletRecoveryRecoveryConfig extends Struct {
|
|
8017
8540
|
readonly delayPeriod: u32;
|
|
8018
8541
|
readonly deposit: u128;
|
|
8019
|
-
readonly friends: Vec<
|
|
8542
|
+
readonly friends: Vec<PezspCoreCryptoAccountId32>;
|
|
8020
8543
|
readonly threshold: u16;
|
|
8021
8544
|
}
|
|
8022
8545
|
/** @name PezpalletRecoveryActiveRecovery (769) */
|
|
8023
8546
|
interface PezpalletRecoveryActiveRecovery extends Struct {
|
|
8024
8547
|
readonly created: u32;
|
|
8025
8548
|
readonly deposit: u128;
|
|
8026
|
-
readonly friends: Vec<
|
|
8549
|
+
readonly friends: Vec<PezspCoreCryptoAccountId32>;
|
|
8027
8550
|
}
|
|
8028
8551
|
/** @name PezpalletRecoveryError (770) */
|
|
8029
8552
|
interface PezpalletRecoveryError extends Enum {
|
|
@@ -8093,12 +8616,12 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
8093
8616
|
interface PezpalletPreimageOldRequestStatus extends Enum {
|
|
8094
8617
|
readonly isUnrequested: boolean;
|
|
8095
8618
|
readonly asUnrequested: {
|
|
8096
|
-
readonly deposit: ITuple<[
|
|
8619
|
+
readonly deposit: ITuple<[PezspCoreCryptoAccountId32, u128]>;
|
|
8097
8620
|
readonly len: u32;
|
|
8098
8621
|
} & Struct;
|
|
8099
8622
|
readonly isRequested: boolean;
|
|
8100
8623
|
readonly asRequested: {
|
|
8101
|
-
readonly deposit: Option<ITuple<[
|
|
8624
|
+
readonly deposit: Option<ITuple<[PezspCoreCryptoAccountId32, u128]>>;
|
|
8102
8625
|
readonly count: u32;
|
|
8103
8626
|
readonly len: Option<u32>;
|
|
8104
8627
|
} & Struct;
|
|
@@ -8108,12 +8631,12 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
8108
8631
|
interface PezpalletPreimageRequestStatus extends Enum {
|
|
8109
8632
|
readonly isUnrequested: boolean;
|
|
8110
8633
|
readonly asUnrequested: {
|
|
8111
|
-
readonly ticket: ITuple<[
|
|
8634
|
+
readonly ticket: ITuple<[PezspCoreCryptoAccountId32, u128]>;
|
|
8112
8635
|
readonly len: u32;
|
|
8113
8636
|
} & Struct;
|
|
8114
8637
|
readonly isRequested: boolean;
|
|
8115
8638
|
readonly asRequested: {
|
|
8116
|
-
readonly maybeTicket: Option<ITuple<[
|
|
8639
|
+
readonly maybeTicket: Option<ITuple<[PezspCoreCryptoAccountId32, u128]>>;
|
|
8117
8640
|
readonly count: u32;
|
|
8118
8641
|
readonly maybeLen: Option<u32>;
|
|
8119
8642
|
} & Struct;
|
|
@@ -8133,13 +8656,13 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
8133
8656
|
}
|
|
8134
8657
|
/** @name PezpalletProxyProxyDefinition (792) */
|
|
8135
8658
|
interface PezpalletProxyProxyDefinition extends Struct {
|
|
8136
|
-
readonly delegate:
|
|
8659
|
+
readonly delegate: PezspCoreCryptoAccountId32;
|
|
8137
8660
|
readonly proxyType: KitchensinkRuntimeProxyType;
|
|
8138
8661
|
readonly delay: u32;
|
|
8139
8662
|
}
|
|
8140
8663
|
/** @name PezpalletProxyAnnouncement (796) */
|
|
8141
8664
|
interface PezpalletProxyAnnouncement extends Struct {
|
|
8142
|
-
readonly real:
|
|
8665
|
+
readonly real: PezspCoreCryptoAccountId32;
|
|
8143
8666
|
readonly callHash: H256;
|
|
8144
8667
|
readonly height: u32;
|
|
8145
8668
|
}
|
|
@@ -8159,8 +8682,8 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
8159
8682
|
interface PezpalletMultisigMultisig extends Struct {
|
|
8160
8683
|
readonly when: PezpalletMultisigTimepoint;
|
|
8161
8684
|
readonly deposit: u128;
|
|
8162
|
-
readonly depositor:
|
|
8163
|
-
readonly approvals: Vec<
|
|
8685
|
+
readonly depositor: PezspCoreCryptoAccountId32;
|
|
8686
|
+
readonly approvals: Vec<PezspCoreCryptoAccountId32>;
|
|
8164
8687
|
}
|
|
8165
8688
|
/** @name PezpalletMultisigError (801) */
|
|
8166
8689
|
interface PezpalletMultisigError extends Enum {
|
|
@@ -8182,7 +8705,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
8182
8705
|
}
|
|
8183
8706
|
/** @name PezpalletBountiesBounty (802) */
|
|
8184
8707
|
interface PezpalletBountiesBounty extends Struct {
|
|
8185
|
-
readonly proposer:
|
|
8708
|
+
readonly proposer: PezspCoreCryptoAccountId32;
|
|
8186
8709
|
readonly value: u128;
|
|
8187
8710
|
readonly fee: u128;
|
|
8188
8711
|
readonly curatorDeposit: u128;
|
|
@@ -8196,22 +8719,22 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
8196
8719
|
readonly isFunded: boolean;
|
|
8197
8720
|
readonly isCuratorProposed: boolean;
|
|
8198
8721
|
readonly asCuratorProposed: {
|
|
8199
|
-
readonly curator:
|
|
8722
|
+
readonly curator: PezspCoreCryptoAccountId32;
|
|
8200
8723
|
} & Struct;
|
|
8201
8724
|
readonly isActive: boolean;
|
|
8202
8725
|
readonly asActive: {
|
|
8203
|
-
readonly curator:
|
|
8726
|
+
readonly curator: PezspCoreCryptoAccountId32;
|
|
8204
8727
|
readonly updateDue: u32;
|
|
8205
8728
|
} & Struct;
|
|
8206
8729
|
readonly isPendingPayout: boolean;
|
|
8207
8730
|
readonly asPendingPayout: {
|
|
8208
|
-
readonly curator:
|
|
8209
|
-
readonly beneficiary:
|
|
8731
|
+
readonly curator: PezspCoreCryptoAccountId32;
|
|
8732
|
+
readonly beneficiary: PezspCoreCryptoAccountId32;
|
|
8210
8733
|
readonly unlockAt: u32;
|
|
8211
8734
|
} & Struct;
|
|
8212
8735
|
readonly isApprovedWithCurator: boolean;
|
|
8213
8736
|
readonly asApprovedWithCurator: {
|
|
8214
|
-
readonly curator:
|
|
8737
|
+
readonly curator: PezspCoreCryptoAccountId32;
|
|
8215
8738
|
} & Struct;
|
|
8216
8739
|
readonly type: 'Proposed' | 'Approved' | 'Funded' | 'CuratorProposed' | 'Active' | 'PendingPayout' | 'ApprovedWithCurator';
|
|
8217
8740
|
}
|
|
@@ -8233,11 +8756,11 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
8233
8756
|
/** @name PezpalletTipsOpenTip (806) */
|
|
8234
8757
|
interface PezpalletTipsOpenTip extends Struct {
|
|
8235
8758
|
readonly reason: H256;
|
|
8236
|
-
readonly who:
|
|
8237
|
-
readonly finder:
|
|
8759
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
8760
|
+
readonly finder: PezspCoreCryptoAccountId32;
|
|
8238
8761
|
readonly deposit: u128;
|
|
8239
8762
|
readonly closes: Option<u32>;
|
|
8240
|
-
readonly tips: Vec<ITuple<[
|
|
8763
|
+
readonly tips: Vec<ITuple<[PezspCoreCryptoAccountId32, u128]>>;
|
|
8241
8764
|
readonly findersFee: bool;
|
|
8242
8765
|
}
|
|
8243
8766
|
/** @name PezpalletTipsError (807) */
|
|
@@ -8253,10 +8776,10 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
8253
8776
|
}
|
|
8254
8777
|
/** @name PezpalletAssetsAssetDetails (808) */
|
|
8255
8778
|
interface PezpalletAssetsAssetDetails extends Struct {
|
|
8256
|
-
readonly owner:
|
|
8257
|
-
readonly issuer:
|
|
8258
|
-
readonly admin:
|
|
8259
|
-
readonly freezer:
|
|
8779
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
8780
|
+
readonly issuer: PezspCoreCryptoAccountId32;
|
|
8781
|
+
readonly admin: PezspCoreCryptoAccountId32;
|
|
8782
|
+
readonly freezer: PezspCoreCryptoAccountId32;
|
|
8260
8783
|
readonly supply: u128;
|
|
8261
8784
|
readonly deposit: u128;
|
|
8262
8785
|
readonly minBalance: u128;
|
|
@@ -8295,7 +8818,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
8295
8818
|
readonly asDepositHeld: u128;
|
|
8296
8819
|
readonly isDepositRefunded: boolean;
|
|
8297
8820
|
readonly isDepositFrom: boolean;
|
|
8298
|
-
readonly asDepositFrom: ITuple<[
|
|
8821
|
+
readonly asDepositFrom: ITuple<[PezspCoreCryptoAccountId32, u128]>;
|
|
8299
8822
|
readonly type: 'Consumer' | 'Sufficient' | 'DepositHeld' | 'DepositRefunded' | 'DepositFrom';
|
|
8300
8823
|
}
|
|
8301
8824
|
/** @name PezpalletAssetsApproval (814) */
|
|
@@ -8377,20 +8900,20 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
8377
8900
|
/** @name PezpalletNisBid (830) */
|
|
8378
8901
|
interface PezpalletNisBid extends Struct {
|
|
8379
8902
|
readonly amount: u128;
|
|
8380
|
-
readonly who:
|
|
8903
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
8381
8904
|
}
|
|
8382
8905
|
/** @name PezpalletNisSummaryRecord (832) */
|
|
8383
8906
|
interface PezpalletNisSummaryRecord extends Struct {
|
|
8384
|
-
readonly proportionOwed:
|
|
8907
|
+
readonly proportionOwed: u64;
|
|
8385
8908
|
readonly index: u32;
|
|
8386
|
-
readonly thawed:
|
|
8909
|
+
readonly thawed: u64;
|
|
8387
8910
|
readonly lastPeriod: u32;
|
|
8388
8911
|
readonly receiptsOnHold: u128;
|
|
8389
8912
|
}
|
|
8390
8913
|
/** @name PezpalletNisReceiptRecord (833) */
|
|
8391
8914
|
interface PezpalletNisReceiptRecord extends Struct {
|
|
8392
|
-
readonly proportion:
|
|
8393
|
-
readonly owner: Option<ITuple<[
|
|
8915
|
+
readonly proportion: u64;
|
|
8916
|
+
readonly owner: Option<ITuple<[PezspCoreCryptoAccountId32, u128]>>;
|
|
8394
8917
|
readonly expiry: u32;
|
|
8395
8918
|
}
|
|
8396
8919
|
/** @name PezpalletNisError (835) */
|
|
@@ -8414,10 +8937,10 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
8414
8937
|
}
|
|
8415
8938
|
/** @name PezpalletUniquesCollectionDetails (836) */
|
|
8416
8939
|
interface PezpalletUniquesCollectionDetails extends Struct {
|
|
8417
|
-
readonly owner:
|
|
8418
|
-
readonly issuer:
|
|
8419
|
-
readonly admin:
|
|
8420
|
-
readonly freezer:
|
|
8940
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
8941
|
+
readonly issuer: PezspCoreCryptoAccountId32;
|
|
8942
|
+
readonly admin: PezspCoreCryptoAccountId32;
|
|
8943
|
+
readonly freezer: PezspCoreCryptoAccountId32;
|
|
8421
8944
|
readonly totalDeposit: u128;
|
|
8422
8945
|
readonly freeHolding: bool;
|
|
8423
8946
|
readonly items: u32;
|
|
@@ -8427,8 +8950,8 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
8427
8950
|
}
|
|
8428
8951
|
/** @name PezpalletUniquesItemDetails (838) */
|
|
8429
8952
|
interface PezpalletUniquesItemDetails extends Struct {
|
|
8430
|
-
readonly owner:
|
|
8431
|
-
readonly approved: Option<
|
|
8953
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
8954
|
+
readonly approved: Option<PezspCoreCryptoAccountId32>;
|
|
8432
8955
|
readonly isFrozen: bool;
|
|
8433
8956
|
readonly deposit: u128;
|
|
8434
8957
|
}
|
|
@@ -8468,7 +8991,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
8468
8991
|
}
|
|
8469
8992
|
/** @name PezpalletNftsCollectionDetails (845) */
|
|
8470
8993
|
interface PezpalletNftsCollectionDetails extends Struct {
|
|
8471
|
-
readonly owner:
|
|
8994
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
8472
8995
|
readonly ownerDeposit: u128;
|
|
8473
8996
|
readonly items: u32;
|
|
8474
8997
|
readonly itemMetadatas: u32;
|
|
@@ -8484,13 +9007,13 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
8484
9007
|
}
|
|
8485
9008
|
/** @name PezpalletNftsItemDetails (848) */
|
|
8486
9009
|
interface PezpalletNftsItemDetails extends Struct {
|
|
8487
|
-
readonly owner:
|
|
8488
|
-
readonly approvals: BTreeMap<
|
|
9010
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
9011
|
+
readonly approvals: BTreeMap<PezspCoreCryptoAccountId32, Option<u32>>;
|
|
8489
9012
|
readonly deposit: PezpalletNftsItemDeposit;
|
|
8490
9013
|
}
|
|
8491
9014
|
/** @name PezpalletNftsItemDeposit (849) */
|
|
8492
9015
|
interface PezpalletNftsItemDeposit extends Struct {
|
|
8493
|
-
readonly account:
|
|
9016
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
8494
9017
|
readonly amount: u128;
|
|
8495
9018
|
}
|
|
8496
9019
|
/** @name PezpalletNftsCollectionMetadata (854) */
|
|
@@ -8505,12 +9028,12 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
8505
9028
|
}
|
|
8506
9029
|
/** @name PezpalletNftsItemMetadataDeposit (856) */
|
|
8507
9030
|
interface PezpalletNftsItemMetadataDeposit extends Struct {
|
|
8508
|
-
readonly account: Option<
|
|
9031
|
+
readonly account: Option<PezspCoreCryptoAccountId32>;
|
|
8509
9032
|
readonly amount: u128;
|
|
8510
9033
|
}
|
|
8511
9034
|
/** @name PezpalletNftsAttributeDeposit (859) */
|
|
8512
9035
|
interface PezpalletNftsAttributeDeposit extends Struct {
|
|
8513
|
-
readonly account: Option<
|
|
9036
|
+
readonly account: Option<PezspCoreCryptoAccountId32>;
|
|
8514
9037
|
readonly amount: u128;
|
|
8515
9038
|
}
|
|
8516
9039
|
/** @name PezpalletNftsPendingSwap (862) */
|
|
@@ -8582,7 +9105,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
8582
9105
|
readonly asset: u32;
|
|
8583
9106
|
readonly fractions: u128;
|
|
8584
9107
|
readonly deposit: u128;
|
|
8585
|
-
readonly assetCreator:
|
|
9108
|
+
readonly assetCreator: PezspCoreCryptoAccountId32;
|
|
8586
9109
|
}
|
|
8587
9110
|
/** @name PezpalletNftFractionalizationError (867) */
|
|
8588
9111
|
interface PezpalletNftFractionalizationError extends Enum {
|
|
@@ -8680,16 +9203,16 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
8680
9203
|
}
|
|
8681
9204
|
/** @name PezpalletBagsListListNode (879) */
|
|
8682
9205
|
interface PezpalletBagsListListNode extends Struct {
|
|
8683
|
-
readonly id:
|
|
8684
|
-
readonly prev: Option<
|
|
8685
|
-
readonly next: Option<
|
|
9206
|
+
readonly id: PezspCoreCryptoAccountId32;
|
|
9207
|
+
readonly prev: Option<PezspCoreCryptoAccountId32>;
|
|
9208
|
+
readonly next: Option<PezspCoreCryptoAccountId32>;
|
|
8686
9209
|
readonly bagUpper: u64;
|
|
8687
9210
|
readonly score: u64;
|
|
8688
9211
|
}
|
|
8689
9212
|
/** @name PezpalletBagsListListBag (880) */
|
|
8690
9213
|
interface PezpalletBagsListListBag extends Struct {
|
|
8691
|
-
readonly head: Option<
|
|
8692
|
-
readonly tail: Option<
|
|
9214
|
+
readonly head: Option<PezspCoreCryptoAccountId32>;
|
|
9215
|
+
readonly tail: Option<PezspCoreCryptoAccountId32>;
|
|
8693
9216
|
}
|
|
8694
9217
|
/** @name PezpalletBagsListError (882) */
|
|
8695
9218
|
interface PezpalletBagsListError extends Enum {
|
|
@@ -8718,16 +9241,16 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
8718
9241
|
readonly isAdded: boolean;
|
|
8719
9242
|
readonly isCuratorProposed: boolean;
|
|
8720
9243
|
readonly asCuratorProposed: {
|
|
8721
|
-
readonly curator:
|
|
9244
|
+
readonly curator: PezspCoreCryptoAccountId32;
|
|
8722
9245
|
} & Struct;
|
|
8723
9246
|
readonly isActive: boolean;
|
|
8724
9247
|
readonly asActive: {
|
|
8725
|
-
readonly curator:
|
|
9248
|
+
readonly curator: PezspCoreCryptoAccountId32;
|
|
8726
9249
|
} & Struct;
|
|
8727
9250
|
readonly isPendingPayout: boolean;
|
|
8728
9251
|
readonly asPendingPayout: {
|
|
8729
|
-
readonly curator:
|
|
8730
|
-
readonly beneficiary:
|
|
9252
|
+
readonly curator: PezspCoreCryptoAccountId32;
|
|
9253
|
+
readonly beneficiary: PezspCoreCryptoAccountId32;
|
|
8731
9254
|
readonly unlockAt: u32;
|
|
8732
9255
|
} & Struct;
|
|
8733
9256
|
readonly type: 'Added' | 'CuratorProposed' | 'Active' | 'PendingPayout';
|
|
@@ -8771,7 +9294,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
8771
9294
|
}
|
|
8772
9295
|
/** @name PezpalletReferendaDeposit (889) */
|
|
8773
9296
|
interface PezpalletReferendaDeposit extends Struct {
|
|
8774
|
-
readonly who:
|
|
9297
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
8775
9298
|
readonly amount: u128;
|
|
8776
9299
|
}
|
|
8777
9300
|
/** @name PezpalletReferendaDecidingStatus (892) */
|
|
@@ -8840,7 +9363,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
8840
9363
|
/** @name PezpalletConvictionVotingVoteDelegating (909) */
|
|
8841
9364
|
interface PezpalletConvictionVotingVoteDelegating extends Struct {
|
|
8842
9365
|
readonly balance: u128;
|
|
8843
|
-
readonly target:
|
|
9366
|
+
readonly target: PezspCoreCryptoAccountId32;
|
|
8844
9367
|
readonly conviction: PezpalletConvictionVotingConviction;
|
|
8845
9368
|
readonly delegations: PezpalletConvictionVotingDelegations;
|
|
8846
9369
|
readonly prior: PezpalletConvictionVotingVotePriorLock;
|
|
@@ -8922,18 +9445,18 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
8922
9445
|
}
|
|
8923
9446
|
/** @name PezpalletNominationPoolsCommission (928) */
|
|
8924
9447
|
interface PezpalletNominationPoolsCommission extends Struct {
|
|
8925
|
-
readonly current: Option<ITuple<[
|
|
8926
|
-
readonly max: Option<
|
|
9448
|
+
readonly current: Option<ITuple<[u32, PezspCoreCryptoAccountId32]>>;
|
|
9449
|
+
readonly max: Option<u32>;
|
|
8927
9450
|
readonly changeRate: Option<PezpalletNominationPoolsCommissionChangeRate>;
|
|
8928
9451
|
readonly throttleFrom: Option<u32>;
|
|
8929
9452
|
readonly claimPermission: Option<PezpalletNominationPoolsCommissionClaimPermission>;
|
|
8930
9453
|
}
|
|
8931
9454
|
/** @name PezpalletNominationPoolsPoolRoles (930) */
|
|
8932
9455
|
interface PezpalletNominationPoolsPoolRoles extends Struct {
|
|
8933
|
-
readonly depositor:
|
|
8934
|
-
readonly root: Option<
|
|
8935
|
-
readonly nominator: Option<
|
|
8936
|
-
readonly bouncer: Option<
|
|
9456
|
+
readonly depositor: PezspCoreCryptoAccountId32;
|
|
9457
|
+
readonly root: Option<PezspCoreCryptoAccountId32>;
|
|
9458
|
+
readonly nominator: Option<PezspCoreCryptoAccountId32>;
|
|
9459
|
+
readonly bouncer: Option<PezspCoreCryptoAccountId32>;
|
|
8937
9460
|
}
|
|
8938
9461
|
/** @name PezpalletNominationPoolsRewardPool (931) */
|
|
8939
9462
|
interface PezpalletNominationPoolsRewardPool extends Struct {
|
|
@@ -9089,7 +9612,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
9089
9612
|
}
|
|
9090
9613
|
/** @name PezpalletFastUnstakeUnstakeRequest (951) */
|
|
9091
9614
|
interface PezpalletFastUnstakeUnstakeRequest extends Struct {
|
|
9092
|
-
readonly stashes: Vec<ITuple<[
|
|
9615
|
+
readonly stashes: Vec<ITuple<[PezspCoreCryptoAccountId32, u128]>>;
|
|
9093
9616
|
readonly checked: Vec<u32>;
|
|
9094
9617
|
}
|
|
9095
9618
|
/** @name PezpalletFastUnstakeError (954) */
|
|
@@ -9209,13 +9732,13 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
9209
9732
|
/** @name PezpalletBrokerRegionRecord (974) */
|
|
9210
9733
|
interface PezpalletBrokerRegionRecord extends Struct {
|
|
9211
9734
|
readonly end: u32;
|
|
9212
|
-
readonly owner: Option<
|
|
9735
|
+
readonly owner: Option<PezspCoreCryptoAccountId32>;
|
|
9213
9736
|
readonly paid: Option<u128>;
|
|
9214
9737
|
}
|
|
9215
9738
|
/** @name PezpalletBrokerContributionRecord (976) */
|
|
9216
9739
|
interface PezpalletBrokerContributionRecord extends Struct {
|
|
9217
9740
|
readonly length: u32;
|
|
9218
|
-
readonly payee:
|
|
9741
|
+
readonly payee: PezspCoreCryptoAccountId32;
|
|
9219
9742
|
}
|
|
9220
9743
|
/** @name PezpalletBrokerPoolIoRecord (977) */
|
|
9221
9744
|
interface PezpalletBrokerPoolIoRecord extends Struct {
|
|
@@ -9290,7 +9813,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
9290
9813
|
}
|
|
9291
9814
|
/** @name PezpalletReviveWasmCodeInfo (987) */
|
|
9292
9815
|
interface PezpalletReviveWasmCodeInfo extends Struct {
|
|
9293
|
-
readonly owner:
|
|
9816
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
9294
9817
|
readonly deposit: Compact<u128>;
|
|
9295
9818
|
readonly refcount: Compact<u64>;
|
|
9296
9819
|
readonly codeLen: u32;
|
|
@@ -9366,12 +9889,12 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
9366
9889
|
}
|
|
9367
9890
|
/** @name PezpalletDelegatedStakingDelegation (992) */
|
|
9368
9891
|
interface PezpalletDelegatedStakingDelegation extends Struct {
|
|
9369
|
-
readonly agent:
|
|
9892
|
+
readonly agent: PezspCoreCryptoAccountId32;
|
|
9370
9893
|
readonly amount: u128;
|
|
9371
9894
|
}
|
|
9372
9895
|
/** @name PezpalletDelegatedStakingAgentLedger (993) */
|
|
9373
9896
|
interface PezpalletDelegatedStakingAgentLedger extends Struct {
|
|
9374
|
-
readonly payee:
|
|
9897
|
+
readonly payee: PezspCoreCryptoAccountId32;
|
|
9375
9898
|
readonly totalDelegated: Compact<u128>;
|
|
9376
9899
|
readonly unclaimedWithdrawals: Compact<u128>;
|
|
9377
9900
|
readonly pendingSlash: Compact<u128>;
|
|
@@ -9404,11 +9927,11 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
9404
9927
|
readonly rewardAssetId: PezframeSupportTokensFungibleUnionOfNativeOrWithId;
|
|
9405
9928
|
readonly rewardRatePerBlock: u128;
|
|
9406
9929
|
readonly expiryBlock: u32;
|
|
9407
|
-
readonly admin:
|
|
9930
|
+
readonly admin: PezspCoreCryptoAccountId32;
|
|
9408
9931
|
readonly totalTokensStaked: u128;
|
|
9409
9932
|
readonly rewardPerTokenStored: u128;
|
|
9410
9933
|
readonly lastUpdateBlock: u32;
|
|
9411
|
-
readonly account:
|
|
9934
|
+
readonly account: PezspCoreCryptoAccountId32;
|
|
9412
9935
|
}
|
|
9413
9936
|
/** @name PezpalletAssetRewardsError (999) */
|
|
9414
9937
|
interface PezpalletAssetRewardsError extends Enum {
|
|
@@ -9605,7 +10128,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
9605
10128
|
/** @name PezpalletContractsPrimitivesInstantiateReturnValue (1049) */
|
|
9606
10129
|
interface PezpalletContractsPrimitivesInstantiateReturnValue extends Struct {
|
|
9607
10130
|
readonly result: PezpalletContractsPrimitivesExecReturnValue;
|
|
9608
|
-
readonly accountId:
|
|
10131
|
+
readonly accountId: PezspCoreCryptoAccountId32;
|
|
9609
10132
|
}
|
|
9610
10133
|
/** @name PezpalletContractsPrimitivesCodeUploadReturnValue (1051) */
|
|
9611
10134
|
interface PezpalletContractsPrimitivesCodeUploadReturnValue extends Struct {
|