@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
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
import '@pezkuwi/types/lookup';
|
|
2
2
|
import type { BTreeMap, Bytes, Compact, Enum, Null, Option, Struct, U256, U8aFixed, Vec, bool, u128, u16, u32, u64 } from '@pezkuwi/types-codec';
|
|
3
3
|
import type { ITuple } from '@pezkuwi/types-codec/types';
|
|
4
|
-
import type { AccountId32, H160, H256, MultiAddress,
|
|
4
|
+
import type { AccountId32, H160, H256, MultiAddress, RuntimeCall } from '@pezkuwi/types/interfaces/runtime';
|
|
5
5
|
declare module '@pezkuwi/types/lookup' {
|
|
6
|
+
/** @name PezspCoreCryptoAccountId32 (0) */
|
|
7
|
+
interface PezspCoreCryptoAccountId32 extends AccountId32 {
|
|
8
|
+
}
|
|
9
|
+
/** @name PezspRuntimeMultiAddress (1) */
|
|
10
|
+
interface PezspRuntimeMultiAddress extends MultiAddress {
|
|
11
|
+
}
|
|
6
12
|
/** @name AssetHubDicleRuntimeRuntimeTask (32) */
|
|
7
13
|
type AssetHubDicleRuntimeRuntimeTask = Null;
|
|
8
14
|
/** @name AssetHubDicleRuntimeRuntimeParametersKey (43) */
|
|
@@ -107,25 +113,25 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
107
113
|
/** @name AssetHubDicleRuntimeDynamicParamsIssuanceParametersValue (68) */
|
|
108
114
|
interface AssetHubDicleRuntimeDynamicParamsIssuanceParametersValue extends Enum {
|
|
109
115
|
readonly isMinInflation: boolean;
|
|
110
|
-
readonly asMinInflation:
|
|
116
|
+
readonly asMinInflation: u64;
|
|
111
117
|
readonly isMaxInflation: boolean;
|
|
112
|
-
readonly asMaxInflation:
|
|
118
|
+
readonly asMaxInflation: u64;
|
|
113
119
|
readonly isIdealStake: boolean;
|
|
114
|
-
readonly asIdealStake:
|
|
120
|
+
readonly asIdealStake: u64;
|
|
115
121
|
readonly isFalloff: boolean;
|
|
116
|
-
readonly asFalloff:
|
|
122
|
+
readonly asFalloff: u64;
|
|
117
123
|
readonly type: 'MinInflation' | 'MaxInflation' | 'IdealStake' | 'Falloff';
|
|
118
124
|
}
|
|
119
125
|
/** @name AssetHubDicleRuntimeDynamicParamsTreasuryParametersValue (70) */
|
|
120
126
|
interface AssetHubDicleRuntimeDynamicParamsTreasuryParametersValue extends Enum {
|
|
121
127
|
readonly isBurnPortion: boolean;
|
|
122
|
-
readonly asBurnPortion:
|
|
128
|
+
readonly asBurnPortion: u32;
|
|
123
129
|
readonly isBurnDestination: boolean;
|
|
124
130
|
readonly asBurnDestination: AssetHubDicleRuntimeTreasuryBurnDestinationAccount;
|
|
125
131
|
readonly type: 'BurnPortion' | 'BurnDestination';
|
|
126
132
|
}
|
|
127
133
|
/** @name AssetHubDicleRuntimeTreasuryBurnDestinationAccount (72) */
|
|
128
|
-
interface AssetHubDicleRuntimeTreasuryBurnDestinationAccount extends Option<
|
|
134
|
+
interface AssetHubDicleRuntimeTreasuryBurnDestinationAccount extends Option<PezspCoreCryptoAccountId32> {
|
|
129
135
|
}
|
|
130
136
|
/** @name AssetHubDicleRuntimeDynamicParamsStakingElectionParametersValue (74) */
|
|
131
137
|
interface AssetHubDicleRuntimeDynamicParamsStakingElectionParametersValue extends Enum {
|
|
@@ -198,19 +204,19 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
198
204
|
/** @name AssetHubDicleRuntimeDynamicParamsIssuanceParameters (309) */
|
|
199
205
|
interface AssetHubDicleRuntimeDynamicParamsIssuanceParameters extends Enum {
|
|
200
206
|
readonly isMinInflation: boolean;
|
|
201
|
-
readonly asMinInflation: ITuple<[AssetHubDicleRuntimeDynamicParamsIssuanceMinInflation, Option<
|
|
207
|
+
readonly asMinInflation: ITuple<[AssetHubDicleRuntimeDynamicParamsIssuanceMinInflation, Option<u64>]>;
|
|
202
208
|
readonly isMaxInflation: boolean;
|
|
203
|
-
readonly asMaxInflation: ITuple<[AssetHubDicleRuntimeDynamicParamsIssuanceMaxInflation, Option<
|
|
209
|
+
readonly asMaxInflation: ITuple<[AssetHubDicleRuntimeDynamicParamsIssuanceMaxInflation, Option<u64>]>;
|
|
204
210
|
readonly isIdealStake: boolean;
|
|
205
|
-
readonly asIdealStake: ITuple<[AssetHubDicleRuntimeDynamicParamsIssuanceIdealStake, Option<
|
|
211
|
+
readonly asIdealStake: ITuple<[AssetHubDicleRuntimeDynamicParamsIssuanceIdealStake, Option<u64>]>;
|
|
206
212
|
readonly isFalloff: boolean;
|
|
207
|
-
readonly asFalloff: ITuple<[AssetHubDicleRuntimeDynamicParamsIssuanceFalloff, Option<
|
|
213
|
+
readonly asFalloff: ITuple<[AssetHubDicleRuntimeDynamicParamsIssuanceFalloff, Option<u64>]>;
|
|
208
214
|
readonly type: 'MinInflation' | 'MaxInflation' | 'IdealStake' | 'Falloff';
|
|
209
215
|
}
|
|
210
216
|
/** @name AssetHubDicleRuntimeDynamicParamsTreasuryParameters (311) */
|
|
211
217
|
interface AssetHubDicleRuntimeDynamicParamsTreasuryParameters extends Enum {
|
|
212
218
|
readonly isBurnPortion: boolean;
|
|
213
|
-
readonly asBurnPortion: ITuple<[AssetHubDicleRuntimeDynamicParamsTreasuryBurnPortion, Option<
|
|
219
|
+
readonly asBurnPortion: ITuple<[AssetHubDicleRuntimeDynamicParamsTreasuryBurnPortion, Option<u32>]>;
|
|
214
220
|
readonly isBurnDestination: boolean;
|
|
215
221
|
readonly asBurnDestination: ITuple<[AssetHubDicleRuntimeDynamicParamsTreasuryBurnDestination, Option<AssetHubDicleRuntimeTreasuryBurnDestinationAccount>]>;
|
|
216
222
|
readonly type: 'BurnPortion' | 'BurnDestination';
|
|
@@ -304,7 +310,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
304
310
|
interface PezpalletRemoteProxyCall extends Enum {
|
|
305
311
|
readonly isRemoteProxy: boolean;
|
|
306
312
|
readonly asRemoteProxy: {
|
|
307
|
-
readonly real:
|
|
313
|
+
readonly real: PezspRuntimeMultiAddress;
|
|
308
314
|
readonly forceProxyType: Option<AssetHubDicleRuntimeProxyType>;
|
|
309
315
|
readonly call: RuntimeCall;
|
|
310
316
|
readonly proof: PezpalletRemoteProxyRemoteProxyProof;
|
|
@@ -315,7 +321,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
315
321
|
} & Struct;
|
|
316
322
|
readonly isRemoteProxyWithRegisteredProof: boolean;
|
|
317
323
|
readonly asRemoteProxyWithRegisteredProof: {
|
|
318
|
-
readonly real:
|
|
324
|
+
readonly real: PezspRuntimeMultiAddress;
|
|
319
325
|
readonly forceProxyType: Option<AssetHubDicleRuntimeProxyType>;
|
|
320
326
|
readonly call: RuntimeCall;
|
|
321
327
|
} & Struct;
|
|
@@ -333,33 +339,33 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
333
339
|
/** @name AssetHubDicleRuntimeStakingNposCompactSolution24 (466) */
|
|
334
340
|
interface AssetHubDicleRuntimeStakingNposCompactSolution24 extends Struct {
|
|
335
341
|
readonly votes1: Vec<ITuple<[Compact<u32>, Compact<u16>]>>;
|
|
336
|
-
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<
|
|
337
|
-
readonly votes3: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
338
|
-
readonly votes4: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
339
|
-
readonly votes5: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
340
|
-
readonly votes6: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
341
|
-
readonly votes7: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
342
|
-
readonly votes8: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
343
|
-
readonly votes9: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
344
|
-
readonly votes10: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
345
|
-
readonly votes11: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
346
|
-
readonly votes12: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
347
|
-
readonly votes13: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
348
|
-
readonly votes14: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
349
|
-
readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
350
|
-
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
351
|
-
readonly votes17: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
352
|
-
readonly votes18: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
353
|
-
readonly votes19: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
354
|
-
readonly votes20: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
355
|
-
readonly votes21: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
356
|
-
readonly votes22: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
357
|
-
readonly votes23: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
358
|
-
readonly votes24: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
342
|
+
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<u16>]>, Compact<u16>]>>;
|
|
343
|
+
readonly votes3: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
344
|
+
readonly votes4: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
345
|
+
readonly votes5: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
346
|
+
readonly votes6: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
347
|
+
readonly votes7: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
348
|
+
readonly votes8: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
349
|
+
readonly votes9: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
350
|
+
readonly votes10: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
351
|
+
readonly votes11: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
352
|
+
readonly votes12: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
353
|
+
readonly votes13: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
354
|
+
readonly votes14: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
355
|
+
readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
356
|
+
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
357
|
+
readonly votes17: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
358
|
+
readonly votes18: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
359
|
+
readonly votes19: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
360
|
+
readonly votes20: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
361
|
+
readonly votes21: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
362
|
+
readonly votes22: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
363
|
+
readonly votes23: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
364
|
+
readonly votes24: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
359
365
|
}
|
|
360
366
|
/** @name PezpalletProxyProxyDefinitionDicleRuntimeConstantsProxyProxyType (598) */
|
|
361
367
|
interface PezpalletProxyProxyDefinitionDicleRuntimeConstantsProxyProxyType extends Struct {
|
|
362
|
-
readonly delegate:
|
|
368
|
+
readonly delegate: PezspCoreCryptoAccountId32;
|
|
363
369
|
readonly proxyType: DicleRuntimeConstantsProxyProxyType;
|
|
364
370
|
readonly delay: u32;
|
|
365
371
|
}
|
|
@@ -374,11 +380,11 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
374
380
|
/** @name PezpalletRcMigratorRecoveryPortableRecoveryMessage (746) */
|
|
375
381
|
interface PezpalletRcMigratorRecoveryPortableRecoveryMessage extends Enum {
|
|
376
382
|
readonly isRecoverable: boolean;
|
|
377
|
-
readonly asRecoverable: ITuple<[
|
|
383
|
+
readonly asRecoverable: ITuple<[PezspCoreCryptoAccountId32, PezpalletRcMigratorRecoveryPortableRecoveryConfig]>;
|
|
378
384
|
readonly isActiveRecoveries: boolean;
|
|
379
|
-
readonly asActiveRecoveries: ITuple<[
|
|
385
|
+
readonly asActiveRecoveries: ITuple<[PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32, PezpalletRcMigratorRecoveryPortableActiveRecovery]>;
|
|
380
386
|
readonly isProxy: boolean;
|
|
381
|
-
readonly asProxy: ITuple<[
|
|
387
|
+
readonly asProxy: ITuple<[PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]>;
|
|
382
388
|
readonly type: 'Recoverable' | 'ActiveRecoveries' | 'Proxy';
|
|
383
389
|
}
|
|
384
390
|
/** @name PezpalletRcMigratorRecoveryPortableRecoveryConfig (748) */
|
|
@@ -390,7 +396,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
390
396
|
}
|
|
391
397
|
/** @name PezpalletRcMigratorRecoveryPortableRecoveryFriends (749) */
|
|
392
398
|
interface PezpalletRcMigratorRecoveryPortableRecoveryFriends extends Struct {
|
|
393
|
-
readonly friends: Vec<
|
|
399
|
+
readonly friends: Vec<PezspCoreCryptoAccountId32>;
|
|
394
400
|
}
|
|
395
401
|
/** @name PezpalletRcMigratorRecoveryPortableActiveRecovery (752) */
|
|
396
402
|
interface PezpalletRcMigratorRecoveryPortableActiveRecovery extends Struct {
|
|
@@ -403,37 +409,37 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
403
409
|
readonly isValues: boolean;
|
|
404
410
|
readonly asValues: PezpalletRcMigratorSocietySocietyValues;
|
|
405
411
|
readonly isMember: boolean;
|
|
406
|
-
readonly asMember: ITuple<[
|
|
412
|
+
readonly asMember: ITuple<[PezspCoreCryptoAccountId32, PezpalletRcMigratorSocietyPortableMemberRecord]>;
|
|
407
413
|
readonly isPayout: boolean;
|
|
408
|
-
readonly asPayout: ITuple<[
|
|
414
|
+
readonly asPayout: ITuple<[PezspCoreCryptoAccountId32, PezpalletRcMigratorSocietyPortablePayoutRecord]>;
|
|
409
415
|
readonly isMemberByIndex: boolean;
|
|
410
|
-
readonly asMemberByIndex: ITuple<[u32,
|
|
416
|
+
readonly asMemberByIndex: ITuple<[u32, PezspCoreCryptoAccountId32]>;
|
|
411
417
|
readonly isSuspendedMembers: boolean;
|
|
412
|
-
readonly asSuspendedMembers: ITuple<[
|
|
418
|
+
readonly asSuspendedMembers: ITuple<[PezspCoreCryptoAccountId32, PezpalletRcMigratorSocietyPortableMemberRecord]>;
|
|
413
419
|
readonly isCandidates: boolean;
|
|
414
|
-
readonly asCandidates: ITuple<[
|
|
420
|
+
readonly asCandidates: ITuple<[PezspCoreCryptoAccountId32, PezpalletRcMigratorSocietyPortableCandidacy]>;
|
|
415
421
|
readonly isVotes: boolean;
|
|
416
|
-
readonly asVotes: ITuple<[
|
|
422
|
+
readonly asVotes: ITuple<[PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32, PezpalletRcMigratorSocietyPortableVote]>;
|
|
417
423
|
readonly isVoteClearCursor: boolean;
|
|
418
|
-
readonly asVoteClearCursor: ITuple<[
|
|
424
|
+
readonly asVoteClearCursor: ITuple<[PezspCoreCryptoAccountId32, Bytes]>;
|
|
419
425
|
readonly isDefenderVotes: boolean;
|
|
420
|
-
readonly asDefenderVotes: ITuple<[u32,
|
|
426
|
+
readonly asDefenderVotes: ITuple<[u32, PezspCoreCryptoAccountId32, PezpalletRcMigratorSocietyPortableVote]>;
|
|
421
427
|
readonly type: 'Values' | 'Member' | 'Payout' | 'MemberByIndex' | 'SuspendedMembers' | 'Candidates' | 'Votes' | 'VoteClearCursor' | 'DefenderVotes';
|
|
422
428
|
}
|
|
423
429
|
/** @name PezpalletRcMigratorSocietySocietyValues (756) */
|
|
424
430
|
interface PezpalletRcMigratorSocietySocietyValues extends Struct {
|
|
425
431
|
readonly parameters: Option<PezpalletRcMigratorSocietyPortableGroupParams>;
|
|
426
432
|
readonly pot: Option<u128>;
|
|
427
|
-
readonly founder: Option<
|
|
428
|
-
readonly head: Option<
|
|
433
|
+
readonly founder: Option<PezspCoreCryptoAccountId32>;
|
|
434
|
+
readonly head: Option<PezspCoreCryptoAccountId32>;
|
|
429
435
|
readonly rules: Option<H256>;
|
|
430
436
|
readonly memberCount: Option<u32>;
|
|
431
437
|
readonly roundCount: Option<u32>;
|
|
432
438
|
readonly bids: Option<Vec<PezpalletRcMigratorSocietyPortableBid>>;
|
|
433
|
-
readonly sceptic: Option<
|
|
439
|
+
readonly sceptic: Option<PezspCoreCryptoAccountId32>;
|
|
434
440
|
readonly nextHead: Option<PezpalletRcMigratorSocietyPortableIntakeRecord>;
|
|
435
441
|
readonly challengeRoundCount: Option<u32>;
|
|
436
|
-
readonly defending: Option<ITuple<[
|
|
442
|
+
readonly defending: Option<ITuple<[PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32, PezpalletRcMigratorSocietyPortableTally]>>;
|
|
437
443
|
readonly nextIntakeAt: Option<u32>;
|
|
438
444
|
readonly nextChallengeAt: Option<u32>;
|
|
439
445
|
}
|
|
@@ -446,7 +452,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
446
452
|
}
|
|
447
453
|
/** @name PezpalletRcMigratorSocietyPortableBid (761) */
|
|
448
454
|
interface PezpalletRcMigratorSocietyPortableBid extends Struct {
|
|
449
|
-
readonly who:
|
|
455
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
450
456
|
readonly kind: PezpalletRcMigratorSocietyPortableBidKind;
|
|
451
457
|
readonly value: u128;
|
|
452
458
|
}
|
|
@@ -455,12 +461,12 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
455
461
|
readonly isDeposit: boolean;
|
|
456
462
|
readonly asDeposit: u128;
|
|
457
463
|
readonly isVouch: boolean;
|
|
458
|
-
readonly asVouch: ITuple<[
|
|
464
|
+
readonly asVouch: ITuple<[PezspCoreCryptoAccountId32, u128]>;
|
|
459
465
|
readonly type: 'Deposit' | 'Vouch';
|
|
460
466
|
}
|
|
461
467
|
/** @name PezpalletRcMigratorSocietyPortableIntakeRecord (764) */
|
|
462
468
|
interface PezpalletRcMigratorSocietyPortableIntakeRecord extends Struct {
|
|
463
|
-
readonly who:
|
|
469
|
+
readonly who: PezspCoreCryptoAccountId32;
|
|
464
470
|
readonly bid: u128;
|
|
465
471
|
readonly round: u32;
|
|
466
472
|
}
|
|
@@ -530,7 +536,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
530
536
|
}
|
|
531
537
|
/** @name PezpalletProxyProxyDefinitionAssetHubDicleRuntimeProxyType (939) */
|
|
532
538
|
interface PezpalletProxyProxyDefinitionAssetHubDicleRuntimeProxyType extends Struct {
|
|
533
|
-
readonly delegate:
|
|
539
|
+
readonly delegate: PezspCoreCryptoAccountId32;
|
|
534
540
|
readonly proxyType: AssetHubDicleRuntimeProxyType;
|
|
535
541
|
readonly delay: u32;
|
|
536
542
|
}
|
|
@@ -547,7 +553,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
547
553
|
}
|
|
548
554
|
/** @name PezpalletReviveVmCodeInfo (1023) */
|
|
549
555
|
interface PezpalletReviveVmCodeInfo extends Struct {
|
|
550
|
-
readonly owner:
|
|
556
|
+
readonly owner: PezspCoreCryptoAccountId32;
|
|
551
557
|
readonly deposit: Compact<u128>;
|
|
552
558
|
readonly refcount: Compact<u64>;
|
|
553
559
|
readonly codeLen: u32;
|