@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
package/lookup/types-dicle.d.ts
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
import '@pezkuwi/types/lookup';
|
|
2
|
-
import type { Compact, Enum, Null, Option, Struct, Vec, bool, u16, u32 } from '@pezkuwi/types-codec';
|
|
2
|
+
import type { Compact, Enum, Null, Option, Struct, Vec, bool, u16, u32, u64 } from '@pezkuwi/types-codec';
|
|
3
3
|
import type { ITuple } from '@pezkuwi/types-codec/types';
|
|
4
|
-
import type { AccountId32,
|
|
4
|
+
import type { AccountId32, MultiAddress } 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 StagingDicleRuntimeSessionKeys (138) */
|
|
7
13
|
interface StagingDicleRuntimeSessionKeys extends Struct {
|
|
8
14
|
readonly grandpa: PezspConsensusGrandpaAppPublic;
|
|
@@ -67,13 +73,13 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
67
73
|
/** @name StagingDicleRuntimeDynamicParamsInflationParameters (173) */
|
|
68
74
|
interface StagingDicleRuntimeDynamicParamsInflationParameters extends Enum {
|
|
69
75
|
readonly isMinInflation: boolean;
|
|
70
|
-
readonly asMinInflation: ITuple<[StagingDicleRuntimeDynamicParamsInflationMinInflation, Option<
|
|
76
|
+
readonly asMinInflation: ITuple<[StagingDicleRuntimeDynamicParamsInflationMinInflation, Option<u64>]>;
|
|
71
77
|
readonly isMaxInflation: boolean;
|
|
72
|
-
readonly asMaxInflation: ITuple<[StagingDicleRuntimeDynamicParamsInflationMaxInflation, Option<
|
|
78
|
+
readonly asMaxInflation: ITuple<[StagingDicleRuntimeDynamicParamsInflationMaxInflation, Option<u64>]>;
|
|
73
79
|
readonly isIdealStake: boolean;
|
|
74
|
-
readonly asIdealStake: ITuple<[StagingDicleRuntimeDynamicParamsInflationIdealStake, Option<
|
|
80
|
+
readonly asIdealStake: ITuple<[StagingDicleRuntimeDynamicParamsInflationIdealStake, Option<u64>]>;
|
|
75
81
|
readonly isFalloff: boolean;
|
|
76
|
-
readonly asFalloff: ITuple<[StagingDicleRuntimeDynamicParamsInflationFalloff, Option<
|
|
82
|
+
readonly asFalloff: ITuple<[StagingDicleRuntimeDynamicParamsInflationFalloff, Option<u64>]>;
|
|
77
83
|
readonly isUseAuctionSlots: boolean;
|
|
78
84
|
readonly asUseAuctionSlots: ITuple<[StagingDicleRuntimeDynamicParamsInflationUseAuctionSlots, Option<bool>]>;
|
|
79
85
|
readonly type: 'MinInflation' | 'MaxInflation' | 'IdealStake' | 'Falloff' | 'UseAuctionSlots';
|
|
@@ -91,7 +97,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
91
97
|
/** @name StagingDicleRuntimeDynamicParamsTreasuryParameters (182) */
|
|
92
98
|
interface StagingDicleRuntimeDynamicParamsTreasuryParameters extends Enum {
|
|
93
99
|
readonly isBurnPortion: boolean;
|
|
94
|
-
readonly asBurnPortion: ITuple<[StagingDicleRuntimeDynamicParamsTreasuryBurnPortion, Option<
|
|
100
|
+
readonly asBurnPortion: ITuple<[StagingDicleRuntimeDynamicParamsTreasuryBurnPortion, Option<u32>]>;
|
|
95
101
|
readonly isBurnDestination: boolean;
|
|
96
102
|
readonly asBurnDestination: ITuple<[StagingDicleRuntimeDynamicParamsTreasuryBurnDestination, Option<StagingDicleRuntimeBurnDestinationAccount>]>;
|
|
97
103
|
readonly type: 'BurnPortion' | 'BurnDestination';
|
|
@@ -101,7 +107,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
101
107
|
/** @name StagingDicleRuntimeDynamicParamsTreasuryBurnDestination (186) */
|
|
102
108
|
type StagingDicleRuntimeDynamicParamsTreasuryBurnDestination = Null;
|
|
103
109
|
/** @name StagingDicleRuntimeBurnDestinationAccount (188) */
|
|
104
|
-
interface StagingDicleRuntimeBurnDestinationAccount extends Option<
|
|
110
|
+
interface StagingDicleRuntimeBurnDestinationAccount extends Option<PezspCoreCryptoAccountId32> {
|
|
105
111
|
}
|
|
106
112
|
/** @name DicleRuntimeConstantsProxyProxyType (209) */
|
|
107
113
|
interface DicleRuntimeConstantsProxyProxyType extends Enum {
|
|
@@ -120,38 +126,38 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
120
126
|
/** @name StagingDicleRuntimeNposCompactSolution24 (219) */
|
|
121
127
|
interface StagingDicleRuntimeNposCompactSolution24 extends Struct {
|
|
122
128
|
readonly votes1: Vec<ITuple<[Compact<u32>, Compact<u16>]>>;
|
|
123
|
-
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<
|
|
124
|
-
readonly votes3: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
125
|
-
readonly votes4: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
126
|
-
readonly votes5: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
127
|
-
readonly votes6: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
128
|
-
readonly votes7: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
129
|
-
readonly votes8: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
130
|
-
readonly votes9: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
131
|
-
readonly votes10: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
132
|
-
readonly votes11: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
133
|
-
readonly votes12: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
134
|
-
readonly votes13: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
135
|
-
readonly votes14: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
136
|
-
readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
137
|
-
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
138
|
-
readonly votes17: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
139
|
-
readonly votes18: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
140
|
-
readonly votes19: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
141
|
-
readonly votes20: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
142
|
-
readonly votes21: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
143
|
-
readonly votes22: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
144
|
-
readonly votes23: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
145
|
-
readonly votes24: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<
|
|
129
|
+
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<u16>]>, Compact<u16>]>>;
|
|
130
|
+
readonly votes3: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
131
|
+
readonly votes4: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
132
|
+
readonly votes5: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
133
|
+
readonly votes6: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
134
|
+
readonly votes7: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
135
|
+
readonly votes8: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
136
|
+
readonly votes9: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
137
|
+
readonly votes10: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
138
|
+
readonly votes11: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
139
|
+
readonly votes12: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
140
|
+
readonly votes13: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
141
|
+
readonly votes14: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
142
|
+
readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
143
|
+
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
144
|
+
readonly votes17: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
145
|
+
readonly votes18: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
146
|
+
readonly votes19: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
147
|
+
readonly votes20: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
148
|
+
readonly votes21: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
149
|
+
readonly votes22: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
150
|
+
readonly votes23: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
151
|
+
readonly votes24: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
|
146
152
|
}
|
|
147
153
|
/** @name PezpalletRcMigratorRecoveryRecoveryStage (539) */
|
|
148
154
|
interface PezpalletRcMigratorRecoveryRecoveryStage extends Enum {
|
|
149
155
|
readonly isRecoverable: boolean;
|
|
150
|
-
readonly asRecoverable: Option<
|
|
156
|
+
readonly asRecoverable: Option<PezspCoreCryptoAccountId32>;
|
|
151
157
|
readonly isActiveRecoveries: boolean;
|
|
152
|
-
readonly asActiveRecoveries: Option<ITuple<[
|
|
158
|
+
readonly asActiveRecoveries: Option<ITuple<[PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]>>;
|
|
153
159
|
readonly isProxy: boolean;
|
|
154
|
-
readonly asProxy: Option<
|
|
160
|
+
readonly asProxy: Option<PezspCoreCryptoAccountId32>;
|
|
155
161
|
readonly isFinished: boolean;
|
|
156
162
|
readonly type: 'Recoverable' | 'ActiveRecoveries' | 'Proxy' | 'Finished';
|
|
157
163
|
}
|
|
@@ -159,21 +165,21 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
159
165
|
interface PezpalletRcMigratorSocietySocietyStage extends Enum {
|
|
160
166
|
readonly isValues: boolean;
|
|
161
167
|
readonly isMembers: boolean;
|
|
162
|
-
readonly asMembers: Option<
|
|
168
|
+
readonly asMembers: Option<PezspCoreCryptoAccountId32>;
|
|
163
169
|
readonly isPayouts: boolean;
|
|
164
|
-
readonly asPayouts: Option<
|
|
170
|
+
readonly asPayouts: Option<PezspCoreCryptoAccountId32>;
|
|
165
171
|
readonly isMemberByIndex: boolean;
|
|
166
172
|
readonly asMemberByIndex: Option<u32>;
|
|
167
173
|
readonly isSuspendedMembers: boolean;
|
|
168
|
-
readonly asSuspendedMembers: Option<
|
|
174
|
+
readonly asSuspendedMembers: Option<PezspCoreCryptoAccountId32>;
|
|
169
175
|
readonly isCandidates: boolean;
|
|
170
|
-
readonly asCandidates: Option<
|
|
176
|
+
readonly asCandidates: Option<PezspCoreCryptoAccountId32>;
|
|
171
177
|
readonly isVotes: boolean;
|
|
172
|
-
readonly asVotes: Option<ITuple<[
|
|
178
|
+
readonly asVotes: Option<ITuple<[PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]>>;
|
|
173
179
|
readonly isVoteClearCursor: boolean;
|
|
174
|
-
readonly asVoteClearCursor: Option<
|
|
180
|
+
readonly asVoteClearCursor: Option<PezspCoreCryptoAccountId32>;
|
|
175
181
|
readonly isDefenderVotes: boolean;
|
|
176
|
-
readonly asDefenderVotes: Option<ITuple<[u32,
|
|
182
|
+
readonly asDefenderVotes: Option<ITuple<[u32, PezspCoreCryptoAccountId32]>>;
|
|
177
183
|
readonly isFinished: boolean;
|
|
178
184
|
readonly type: 'Values' | 'Members' | 'Payouts' | 'MemberByIndex' | 'SuspendedMembers' | 'Candidates' | 'Votes' | 'VoteClearCursor' | 'DefenderVotes' | 'Finished';
|
|
179
185
|
}
|
|
@@ -211,13 +217,13 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
211
217
|
/** @name StagingDicleRuntimeDynamicParamsInflationParametersValue (571) */
|
|
212
218
|
interface StagingDicleRuntimeDynamicParamsInflationParametersValue extends Enum {
|
|
213
219
|
readonly isMinInflation: boolean;
|
|
214
|
-
readonly asMinInflation:
|
|
220
|
+
readonly asMinInflation: u64;
|
|
215
221
|
readonly isMaxInflation: boolean;
|
|
216
|
-
readonly asMaxInflation:
|
|
222
|
+
readonly asMaxInflation: u64;
|
|
217
223
|
readonly isIdealStake: boolean;
|
|
218
|
-
readonly asIdealStake:
|
|
224
|
+
readonly asIdealStake: u64;
|
|
219
225
|
readonly isFalloff: boolean;
|
|
220
|
-
readonly asFalloff:
|
|
226
|
+
readonly asFalloff: u64;
|
|
221
227
|
readonly isUseAuctionSlots: boolean;
|
|
222
228
|
readonly asUseAuctionSlots: bool;
|
|
223
229
|
readonly type: 'MinInflation' | 'MaxInflation' | 'IdealStake' | 'Falloff' | 'UseAuctionSlots';
|
|
@@ -225,7 +231,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
225
231
|
/** @name StagingDicleRuntimeDynamicParamsTreasuryParametersValue (572) */
|
|
226
232
|
interface StagingDicleRuntimeDynamicParamsTreasuryParametersValue extends Enum {
|
|
227
233
|
readonly isBurnPortion: boolean;
|
|
228
|
-
readonly asBurnPortion:
|
|
234
|
+
readonly asBurnPortion: u32;
|
|
229
235
|
readonly isBurnDestination: boolean;
|
|
230
236
|
readonly asBurnDestination: StagingDicleRuntimeBurnDestinationAccount;
|
|
231
237
|
readonly type: 'BurnPortion' | 'BurnDestination';
|
|
@@ -234,7 +240,7 @@ declare module '@pezkuwi/types/lookup' {
|
|
|
234
240
|
interface PezpalletRecoveryDepositKind extends Enum {
|
|
235
241
|
readonly isRecoveryConfig: boolean;
|
|
236
242
|
readonly isActiveRecoveryFor: boolean;
|
|
237
|
-
readonly asActiveRecoveryFor:
|
|
243
|
+
readonly asActiveRecoveryFor: PezspCoreCryptoAccountId32;
|
|
238
244
|
readonly type: 'RecoveryConfig' | 'ActiveRecoveryFor';
|
|
239
245
|
}
|
|
240
246
|
/** @name StagingDicleRuntimeRuntime (580) */
|