@pezkuwi/api-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.
@@ -2,8 +2,8 @@ import '@pezkuwi/api-base/types/events';
2
2
  import type { ApiTypes, AugmentedEvent } from '@pezkuwi/api-base/types';
3
3
  import type { Bytes, Null, Option, Result, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@pezkuwi/types-codec';
4
4
  import type { ITuple } from '@pezkuwi/types-codec/types';
5
- import type { AccountId32, H256, Perbill } from '@pezkuwi/types/interfaces/runtime';
6
- import type { PezframeSupportDispatchPostDispatchInfo, PezframeSupportMessagesProcessMessageError, PezframeSupportPreimagesBounded, PezframeSupportTokensMiscBalanceStatus, PezframeSystemDispatchEventInfo, PezkuwiPrimitivesVstagingCandidateReceiptV2, PezkuwiRuntimeCommonClaimsEthereumAddress, PezkuwiRuntimeCommonImplsVersionedLocatableAsset, PezkuwiRuntimeConstantsProxyProxyType, PezkuwiRuntimeTeyrchainsDisputesDisputeLocation, PezkuwiRuntimeTeyrchainsDisputesDisputeResult, PezkuwiRuntimeTeyrchainsInclusionAggregateMessageOrigin, PezkuwiTeyrchainPrimitivesPrimitivesHrmpChannelId, PezpalletBalancesUnexpectedKind, PezpalletConvictionVotingTally, PezpalletConvictionVotingVoteAccountVote, PezpalletElectionProviderMultiPhaseElectionCompute, PezpalletElectionProviderMultiPhasePhase, PezpalletMultisigTimepoint, PezpalletNominationPoolsClaimPermission, PezpalletNominationPoolsCommissionChangeRate, PezpalletNominationPoolsCommissionClaimPermission, PezpalletNominationPoolsPoolState, PezpalletProxyDepositKind, PezpalletRcMigratorMigrationSettings, PezpalletRcMigratorMigrationStage, PezpalletRcMigratorQueuePriority, PezpalletStakingAsyncAhClientUnexpectedKind, PezpalletStakingForcing, PezpalletStakingRewardDestination, PezpalletStakingValidatorPrefs, PezpalletStateTrieMigrationError, PezpalletStateTrieMigrationMigrationCompute, PezspConsensusGrandpaAppPublic, PezspNposElectionsElectionScore, PezspRuntimeDispatchError, PezspRuntimeDispatchErrorWithPostInfo, PezspWeightsWeightV2Weight, StagingXcmV5AssetAssets, StagingXcmV5Location, StagingXcmV5Response, StagingXcmV5TraitsOutcome, StagingXcmV5Xcm, XcmV3MaybeErrorCode, XcmV3TraitsSendError, XcmV5TraitsError, XcmVersionedAssets, XcmVersionedLocation } from '@pezkuwi/types/lookup';
5
+ import type { H256 } from '@pezkuwi/types/interfaces/runtime';
6
+ import type { PezframeSupportDispatchPostDispatchInfo, PezframeSupportMessagesProcessMessageError, PezframeSupportPreimagesBounded, PezframeSupportTokensMiscBalanceStatus, PezframeSystemDispatchEventInfo, PezkuwiPrimitivesVstagingCandidateReceiptV2, PezkuwiRuntimeCommonClaimsEthereumAddress, PezkuwiRuntimeCommonImplsVersionedLocatableAsset, PezkuwiRuntimeConstantsProxyProxyType, PezkuwiRuntimeTeyrchainsDisputesDisputeLocation, PezkuwiRuntimeTeyrchainsDisputesDisputeResult, PezkuwiRuntimeTeyrchainsInclusionAggregateMessageOrigin, PezkuwiTeyrchainPrimitivesPrimitivesHrmpChannelId, PezpalletBalancesUnexpectedKind, PezpalletConvictionVotingTally, PezpalletConvictionVotingVoteAccountVote, PezpalletElectionProviderMultiPhaseElectionCompute, PezpalletElectionProviderMultiPhasePhase, PezpalletMultisigTimepoint, PezpalletNominationPoolsClaimPermission, PezpalletNominationPoolsCommissionChangeRate, PezpalletNominationPoolsCommissionClaimPermission, PezpalletNominationPoolsPoolState, PezpalletProxyDepositKind, PezpalletRcMigratorMigrationSettings, PezpalletRcMigratorMigrationStage, PezpalletRcMigratorQueuePriority, PezpalletStakingAsyncAhClientUnexpectedKind, PezpalletStakingForcing, PezpalletStakingRewardDestination, PezpalletStakingValidatorPrefs, PezpalletStateTrieMigrationError, PezpalletStateTrieMigrationMigrationCompute, PezspConsensusGrandpaAppPublic, PezspCoreCryptoAccountId32, PezspNposElectionsElectionScore, PezspRuntimeDispatchError, PezspRuntimeDispatchErrorWithPostInfo, PezspWeightsWeightV2Weight, StagingXcmV5AssetAssets, StagingXcmV5Location, StagingXcmV5Response, StagingXcmV5TraitsOutcome, StagingXcmV5Xcm, XcmV3MaybeErrorCode, XcmV3TraitsSendError, XcmV5TraitsError, XcmVersionedAssets, XcmVersionedLocation } from '@pezkuwi/types/lookup';
7
7
  export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;
8
8
  declare module '@pezkuwi/api-base/types/events' {
9
9
  interface AugmentedEvents<ApiType extends ApiTypes> {
@@ -44,8 +44,8 @@ declare module '@pezkuwi/api-base/types/events' {
44
44
  /**
45
45
  * A new bid has been accepted as the current winner.
46
46
  **/
47
- BidAccepted: AugmentedEvent<ApiType, [bidder: AccountId32, paraId: u32, amount: u128, firstSlot: u32, lastSlot: u32], {
48
- bidder: AccountId32;
47
+ BidAccepted: AugmentedEvent<ApiType, [bidder: PezspCoreCryptoAccountId32, paraId: u32, amount: u128, firstSlot: u32, lastSlot: u32], {
48
+ bidder: PezspCoreCryptoAccountId32;
49
49
  paraId: u32;
50
50
  amount: u128;
51
51
  firstSlot: u32;
@@ -55,25 +55,25 @@ declare module '@pezkuwi/api-base/types/events' {
55
55
  * Someone attempted to lease the same slot twice for a parachain. The amount is held in
56
56
  * reserve but no parachain slot has been leased.
57
57
  **/
58
- ReserveConfiscated: AugmentedEvent<ApiType, [paraId: u32, leaser: AccountId32, amount: u128], {
58
+ ReserveConfiscated: AugmentedEvent<ApiType, [paraId: u32, leaser: PezspCoreCryptoAccountId32, amount: u128], {
59
59
  paraId: u32;
60
- leaser: AccountId32;
60
+ leaser: PezspCoreCryptoAccountId32;
61
61
  amount: u128;
62
62
  }>;
63
63
  /**
64
64
  * Funds were reserved for a winning bid. First balance is the extra amount reserved.
65
65
  * Second is the total.
66
66
  **/
67
- Reserved: AugmentedEvent<ApiType, [bidder: AccountId32, extraReserved: u128, totalAmount: u128], {
68
- bidder: AccountId32;
67
+ Reserved: AugmentedEvent<ApiType, [bidder: PezspCoreCryptoAccountId32, extraReserved: u128, totalAmount: u128], {
68
+ bidder: PezspCoreCryptoAccountId32;
69
69
  extraReserved: u128;
70
70
  totalAmount: u128;
71
71
  }>;
72
72
  /**
73
73
  * Funds were unreserved since bidder is no longer active. `[bidder, amount]`
74
74
  **/
75
- Unreserved: AugmentedEvent<ApiType, [bidder: AccountId32, amount: u128], {
76
- bidder: AccountId32;
75
+ Unreserved: AugmentedEvent<ApiType, [bidder: PezspCoreCryptoAccountId32, amount: u128], {
76
+ bidder: PezspCoreCryptoAccountId32;
77
77
  amount: u128;
78
78
  }>;
79
79
  /**
@@ -93,44 +93,44 @@ declare module '@pezkuwi/api-base/types/events' {
93
93
  /**
94
94
  * A balance was set by root.
95
95
  **/
96
- BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128], {
97
- who: AccountId32;
96
+ BalanceSet: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, free: u128], {
97
+ who: PezspCoreCryptoAccountId32;
98
98
  free: u128;
99
99
  }>;
100
100
  /**
101
101
  * Some amount was burned from an account.
102
102
  **/
103
- Burned: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
104
- who: AccountId32;
103
+ Burned: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], {
104
+ who: PezspCoreCryptoAccountId32;
105
105
  amount: u128;
106
106
  }>;
107
107
  /**
108
108
  * Some amount was deposited (e.g. for transaction fees).
109
109
  **/
110
- Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
111
- who: AccountId32;
110
+ Deposit: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], {
111
+ who: PezspCoreCryptoAccountId32;
112
112
  amount: u128;
113
113
  }>;
114
114
  /**
115
115
  * An account was removed whose balance was non-zero but below ExistentialDeposit,
116
116
  * resulting in an outright loss.
117
117
  **/
118
- DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], {
119
- account: AccountId32;
118
+ DustLost: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32, amount: u128], {
119
+ account: PezspCoreCryptoAccountId32;
120
120
  amount: u128;
121
121
  }>;
122
122
  /**
123
123
  * An account was created with some free balance.
124
124
  **/
125
- Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], {
126
- account: AccountId32;
125
+ Endowed: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32, freeBalance: u128], {
126
+ account: PezspCoreCryptoAccountId32;
127
127
  freeBalance: u128;
128
128
  }>;
129
129
  /**
130
130
  * Some balance was frozen.
131
131
  **/
132
- Frozen: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
133
- who: AccountId32;
132
+ Frozen: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], {
133
+ who: PezspCoreCryptoAccountId32;
134
134
  amount: u128;
135
135
  }>;
136
136
  /**
@@ -142,15 +142,15 @@ declare module '@pezkuwi/api-base/types/events' {
142
142
  /**
143
143
  * Some balance was locked.
144
144
  **/
145
- Locked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
146
- who: AccountId32;
145
+ Locked: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], {
146
+ who: PezspCoreCryptoAccountId32;
147
147
  amount: u128;
148
148
  }>;
149
149
  /**
150
150
  * Some amount was minted into an account.
151
151
  **/
152
- Minted: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
153
- who: AccountId32;
152
+ Minted: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], {
153
+ who: PezspCoreCryptoAccountId32;
154
154
  amount: u128;
155
155
  }>;
156
156
  /**
@@ -162,46 +162,46 @@ declare module '@pezkuwi/api-base/types/events' {
162
162
  /**
163
163
  * Some balance was reserved (moved from free to reserved).
164
164
  **/
165
- Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
166
- who: AccountId32;
165
+ Reserved: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], {
166
+ who: PezspCoreCryptoAccountId32;
167
167
  amount: u128;
168
168
  }>;
169
169
  /**
170
170
  * Some balance was moved from the reserve of the first account to the second account.
171
171
  * Final argument indicates the destination balance type.
172
172
  **/
173
- ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: PezframeSupportTokensMiscBalanceStatus], {
174
- from: AccountId32;
175
- to: AccountId32;
173
+ ReserveRepatriated: AugmentedEvent<ApiType, [from: PezspCoreCryptoAccountId32, to: PezspCoreCryptoAccountId32, amount: u128, destinationStatus: PezframeSupportTokensMiscBalanceStatus], {
174
+ from: PezspCoreCryptoAccountId32;
175
+ to: PezspCoreCryptoAccountId32;
176
176
  amount: u128;
177
177
  destinationStatus: PezframeSupportTokensMiscBalanceStatus;
178
178
  }>;
179
179
  /**
180
180
  * Some amount was restored into an account.
181
181
  **/
182
- Restored: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
183
- who: AccountId32;
182
+ Restored: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], {
183
+ who: PezspCoreCryptoAccountId32;
184
184
  amount: u128;
185
185
  }>;
186
186
  /**
187
187
  * Some amount was removed from the account (e.g. for misbehavior).
188
188
  **/
189
- Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
190
- who: AccountId32;
189
+ Slashed: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], {
190
+ who: PezspCoreCryptoAccountId32;
191
191
  amount: u128;
192
192
  }>;
193
193
  /**
194
194
  * Some amount was suspended from an account (it can be restored later).
195
195
  **/
196
- Suspended: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
197
- who: AccountId32;
196
+ Suspended: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], {
197
+ who: PezspCoreCryptoAccountId32;
198
198
  amount: u128;
199
199
  }>;
200
200
  /**
201
201
  * Some balance was thawed.
202
202
  **/
203
- Thawed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
204
- who: AccountId32;
203
+ Thawed: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], {
204
+ who: PezspCoreCryptoAccountId32;
205
205
  amount: u128;
206
206
  }>;
207
207
  /**
@@ -214,9 +214,9 @@ declare module '@pezkuwi/api-base/types/events' {
214
214
  /**
215
215
  * Transfer succeeded.
216
216
  **/
217
- Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], {
218
- from: AccountId32;
219
- to: AccountId32;
217
+ Transfer: AugmentedEvent<ApiType, [from: PezspCoreCryptoAccountId32, to: PezspCoreCryptoAccountId32, amount: u128], {
218
+ from: PezspCoreCryptoAccountId32;
219
+ to: PezspCoreCryptoAccountId32;
220
220
  amount: u128;
221
221
  }>;
222
222
  /**
@@ -226,28 +226,28 @@ declare module '@pezkuwi/api-base/types/events' {
226
226
  /**
227
227
  * Some balance was unlocked.
228
228
  **/
229
- Unlocked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
230
- who: AccountId32;
229
+ Unlocked: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], {
230
+ who: PezspCoreCryptoAccountId32;
231
231
  amount: u128;
232
232
  }>;
233
233
  /**
234
234
  * Some balance was unreserved (moved from reserved to free).
235
235
  **/
236
- Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
237
- who: AccountId32;
236
+ Unreserved: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], {
237
+ who: PezspCoreCryptoAccountId32;
238
238
  amount: u128;
239
239
  }>;
240
240
  /**
241
241
  * An account was upgraded.
242
242
  **/
243
- Upgraded: AugmentedEvent<ApiType, [who: AccountId32], {
244
- who: AccountId32;
243
+ Upgraded: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32], {
244
+ who: PezspCoreCryptoAccountId32;
245
245
  }>;
246
246
  /**
247
247
  * Some amount was withdrawn from the account (e.g. for transaction fees).
248
248
  **/
249
- Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
250
- who: AccountId32;
249
+ Withdraw: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], {
250
+ who: PezspCoreCryptoAccountId32;
251
251
  amount: u128;
252
252
  }>;
253
253
  /**
@@ -265,9 +265,9 @@ declare module '@pezkuwi/api-base/types/events' {
265
265
  /**
266
266
  * A bounty is awarded to a beneficiary.
267
267
  **/
268
- BountyAwarded: AugmentedEvent<ApiType, [index: u32, beneficiary: AccountId32], {
268
+ BountyAwarded: AugmentedEvent<ApiType, [index: u32, beneficiary: PezspCoreCryptoAccountId32], {
269
269
  index: u32;
270
- beneficiary: AccountId32;
270
+ beneficiary: PezspCoreCryptoAccountId32;
271
271
  }>;
272
272
  /**
273
273
  * A bounty proposal is funded and became active.
@@ -284,10 +284,10 @@ declare module '@pezkuwi/api-base/types/events' {
284
284
  /**
285
285
  * A bounty is claimed by beneficiary.
286
286
  **/
287
- BountyClaimed: AugmentedEvent<ApiType, [index: u32, payout: u128, beneficiary: AccountId32], {
287
+ BountyClaimed: AugmentedEvent<ApiType, [index: u32, payout: u128, beneficiary: PezspCoreCryptoAccountId32], {
288
288
  index: u32;
289
289
  payout: u128;
290
- beneficiary: AccountId32;
290
+ beneficiary: PezspCoreCryptoAccountId32;
291
291
  }>;
292
292
  /**
293
293
  * A bounty expiry is extended.
@@ -311,16 +311,16 @@ declare module '@pezkuwi/api-base/types/events' {
311
311
  /**
312
312
  * A bounty curator is accepted.
313
313
  **/
314
- CuratorAccepted: AugmentedEvent<ApiType, [bountyId: u32, curator: AccountId32], {
314
+ CuratorAccepted: AugmentedEvent<ApiType, [bountyId: u32, curator: PezspCoreCryptoAccountId32], {
315
315
  bountyId: u32;
316
- curator: AccountId32;
316
+ curator: PezspCoreCryptoAccountId32;
317
317
  }>;
318
318
  /**
319
319
  * A bounty curator is proposed.
320
320
  **/
321
- CuratorProposed: AugmentedEvent<ApiType, [bountyId: u32, curator: AccountId32], {
321
+ CuratorProposed: AugmentedEvent<ApiType, [bountyId: u32, curator: PezspCoreCryptoAccountId32], {
322
322
  bountyId: u32;
323
- curator: AccountId32;
323
+ curator: PezspCoreCryptoAccountId32;
324
324
  }>;
325
325
  /**
326
326
  * A bounty curator is unassigned.
@@ -331,9 +331,9 @@ declare module '@pezkuwi/api-base/types/events' {
331
331
  /**
332
332
  * A bounty deposit has been poked.
333
333
  **/
334
- DepositPoked: AugmentedEvent<ApiType, [bountyId: u32, proposer: AccountId32, oldDeposit: u128, newDeposit: u128], {
334
+ DepositPoked: AugmentedEvent<ApiType, [bountyId: u32, proposer: PezspCoreCryptoAccountId32, oldDeposit: u128, newDeposit: u128], {
335
335
  bountyId: u32;
336
- proposer: AccountId32;
336
+ proposer: PezspCoreCryptoAccountId32;
337
337
  oldDeposit: u128;
338
338
  newDeposit: u128;
339
339
  }>;
@@ -353,10 +353,10 @@ declare module '@pezkuwi/api-base/types/events' {
353
353
  /**
354
354
  * A child-bounty is awarded to a beneficiary.
355
355
  **/
356
- Awarded: AugmentedEvent<ApiType, [index: u32, childIndex: u32, beneficiary: AccountId32], {
356
+ Awarded: AugmentedEvent<ApiType, [index: u32, childIndex: u32, beneficiary: PezspCoreCryptoAccountId32], {
357
357
  index: u32;
358
358
  childIndex: u32;
359
- beneficiary: AccountId32;
359
+ beneficiary: PezspCoreCryptoAccountId32;
360
360
  }>;
361
361
  /**
362
362
  * A child-bounty is cancelled.
@@ -368,11 +368,11 @@ declare module '@pezkuwi/api-base/types/events' {
368
368
  /**
369
369
  * A child-bounty is claimed by beneficiary.
370
370
  **/
371
- Claimed: AugmentedEvent<ApiType, [index: u32, childIndex: u32, payout: u128, beneficiary: AccountId32], {
371
+ Claimed: AugmentedEvent<ApiType, [index: u32, childIndex: u32, payout: u128, beneficiary: PezspCoreCryptoAccountId32], {
372
372
  index: u32;
373
373
  childIndex: u32;
374
374
  payout: u128;
375
- beneficiary: AccountId32;
375
+ beneficiary: PezspCoreCryptoAccountId32;
376
376
  }>;
377
377
  /**
378
378
  * Generic event
@@ -383,8 +383,8 @@ declare module '@pezkuwi/api-base/types/events' {
383
383
  /**
384
384
  * Someone claimed some DOTs.
385
385
  **/
386
- Claimed: AugmentedEvent<ApiType, [who: AccountId32, ethereumAddress: PezkuwiRuntimeCommonClaimsEthereumAddress, amount: u128], {
387
- who: AccountId32;
386
+ Claimed: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, ethereumAddress: PezkuwiRuntimeCommonClaimsEthereumAddress, amount: u128], {
387
+ who: PezspCoreCryptoAccountId32;
388
388
  ethereumAddress: PezkuwiRuntimeCommonClaimsEthereumAddress;
389
389
  amount: u128;
390
390
  }>;
@@ -397,30 +397,30 @@ declare module '@pezkuwi/api-base/types/events' {
397
397
  /**
398
398
  * An account has delegated their vote to another account. \[who, target\]
399
399
  **/
400
- Delegated: AugmentedEvent<ApiType, [AccountId32, AccountId32]>;
400
+ Delegated: AugmentedEvent<ApiType, [PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]>;
401
401
  /**
402
402
  * An \[account\] has cancelled a previous delegation operation.
403
403
  **/
404
- Undelegated: AugmentedEvent<ApiType, [AccountId32]>;
404
+ Undelegated: AugmentedEvent<ApiType, [PezspCoreCryptoAccountId32]>;
405
405
  /**
406
406
  * An account has voted
407
407
  **/
408
- Voted: AugmentedEvent<ApiType, [who: AccountId32, vote: PezpalletConvictionVotingVoteAccountVote], {
409
- who: AccountId32;
408
+ Voted: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, vote: PezpalletConvictionVotingVoteAccountVote], {
409
+ who: PezspCoreCryptoAccountId32;
410
410
  vote: PezpalletConvictionVotingVoteAccountVote;
411
411
  }>;
412
412
  /**
413
413
  * A vote has been removed
414
414
  **/
415
- VoteRemoved: AugmentedEvent<ApiType, [who: AccountId32, vote: PezpalletConvictionVotingVoteAccountVote], {
416
- who: AccountId32;
415
+ VoteRemoved: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, vote: PezpalletConvictionVotingVoteAccountVote], {
416
+ who: PezspCoreCryptoAccountId32;
417
417
  vote: PezpalletConvictionVotingVoteAccountVote;
418
418
  }>;
419
419
  /**
420
420
  * The lockup period of a conviction vote expired, and the funds have been unlocked.
421
421
  **/
422
- VoteUnlocked: AugmentedEvent<ApiType, [who: AccountId32, class_: u16], {
423
- who: AccountId32;
422
+ VoteUnlocked: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, class_: u16], {
423
+ who: PezspCoreCryptoAccountId32;
424
424
  class: u16;
425
425
  }>;
426
426
  /**
@@ -462,8 +462,8 @@ declare module '@pezkuwi/api-base/types/events' {
462
462
  /**
463
463
  * Contributed to a crowd sale.
464
464
  **/
465
- Contributed: AugmentedEvent<ApiType, [who: AccountId32, fundIndex: u32, amount: u128], {
466
- who: AccountId32;
465
+ Contributed: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, fundIndex: u32, amount: u128], {
466
+ who: PezspCoreCryptoAccountId32;
467
467
  fundIndex: u32;
468
468
  amount: u128;
469
469
  }>;
@@ -495,8 +495,8 @@ declare module '@pezkuwi/api-base/types/events' {
495
495
  /**
496
496
  * A memo has been updated.
497
497
  **/
498
- MemoUpdated: AugmentedEvent<ApiType, [who: AccountId32, paraId: u32, memo: Bytes], {
499
- who: AccountId32;
498
+ MemoUpdated: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, paraId: u32, memo: Bytes], {
499
+ who: PezspCoreCryptoAccountId32;
500
500
  paraId: u32;
501
501
  memo: Bytes;
502
502
  }>;
@@ -510,8 +510,8 @@ declare module '@pezkuwi/api-base/types/events' {
510
510
  /**
511
511
  * Withdrew full balance of a contributor.
512
512
  **/
513
- Withdrew: AugmentedEvent<ApiType, [who: AccountId32, fundIndex: u32, amount: u128], {
514
- who: AccountId32;
513
+ Withdrew: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, fundIndex: u32, amount: u128], {
514
+ who: PezspCoreCryptoAccountId32;
515
515
  fundIndex: u32;
516
516
  amount: u128;
517
517
  }>;
@@ -524,33 +524,33 @@ declare module '@pezkuwi/api-base/types/events' {
524
524
  /**
525
525
  * Funds delegated by a delegator.
526
526
  **/
527
- Delegated: AugmentedEvent<ApiType, [agent: AccountId32, delegator: AccountId32, amount: u128], {
528
- agent: AccountId32;
529
- delegator: AccountId32;
527
+ Delegated: AugmentedEvent<ApiType, [agent: PezspCoreCryptoAccountId32, delegator: PezspCoreCryptoAccountId32, amount: u128], {
528
+ agent: PezspCoreCryptoAccountId32;
529
+ delegator: PezspCoreCryptoAccountId32;
530
530
  amount: u128;
531
531
  }>;
532
532
  /**
533
533
  * Unclaimed delegation funds migrated to delegator.
534
534
  **/
535
- MigratedDelegation: AugmentedEvent<ApiType, [agent: AccountId32, delegator: AccountId32, amount: u128], {
536
- agent: AccountId32;
537
- delegator: AccountId32;
535
+ MigratedDelegation: AugmentedEvent<ApiType, [agent: PezspCoreCryptoAccountId32, delegator: PezspCoreCryptoAccountId32, amount: u128], {
536
+ agent: PezspCoreCryptoAccountId32;
537
+ delegator: PezspCoreCryptoAccountId32;
538
538
  amount: u128;
539
539
  }>;
540
540
  /**
541
541
  * Funds released to a delegator.
542
542
  **/
543
- Released: AugmentedEvent<ApiType, [agent: AccountId32, delegator: AccountId32, amount: u128], {
544
- agent: AccountId32;
545
- delegator: AccountId32;
543
+ Released: AugmentedEvent<ApiType, [agent: PezspCoreCryptoAccountId32, delegator: PezspCoreCryptoAccountId32, amount: u128], {
544
+ agent: PezspCoreCryptoAccountId32;
545
+ delegator: PezspCoreCryptoAccountId32;
546
546
  amount: u128;
547
547
  }>;
548
548
  /**
549
549
  * Funds slashed from a delegator.
550
550
  **/
551
- Slashed: AugmentedEvent<ApiType, [agent: AccountId32, delegator: AccountId32, amount: u128], {
552
- agent: AccountId32;
553
- delegator: AccountId32;
551
+ Slashed: AugmentedEvent<ApiType, [agent: PezspCoreCryptoAccountId32, delegator: PezspCoreCryptoAccountId32, amount: u128], {
552
+ agent: PezspCoreCryptoAccountId32;
553
+ delegator: PezspCoreCryptoAccountId32;
554
554
  amount: u128;
555
555
  }>;
556
556
  /**
@@ -583,15 +583,15 @@ declare module '@pezkuwi/api-base/types/events' {
583
583
  /**
584
584
  * An account has been rewarded for their signed submission being finalized.
585
585
  **/
586
- Rewarded: AugmentedEvent<ApiType, [account: AccountId32, value: u128], {
587
- account: AccountId32;
586
+ Rewarded: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32, value: u128], {
587
+ account: PezspCoreCryptoAccountId32;
588
588
  value: u128;
589
589
  }>;
590
590
  /**
591
591
  * An account has been slashed for submitting an invalid signed submission.
592
592
  **/
593
- Slashed: AugmentedEvent<ApiType, [account: AccountId32, value: u128], {
594
- account: AccountId32;
593
+ Slashed: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32, value: u128], {
594
+ account: PezspCoreCryptoAccountId32;
595
595
  value: u128;
596
596
  }>;
597
597
  /**
@@ -603,9 +603,9 @@ declare module '@pezkuwi/api-base/types/events' {
603
603
  * `T::ForceOrigin`. The `bool` is `true` when a previous solution was ejected to make
604
604
  * room for this one.
605
605
  **/
606
- SolutionStored: AugmentedEvent<ApiType, [compute: PezpalletElectionProviderMultiPhaseElectionCompute, origin: Option<AccountId32>, prevEjected: bool], {
606
+ SolutionStored: AugmentedEvent<ApiType, [compute: PezpalletElectionProviderMultiPhaseElectionCompute, origin: Option<PezspCoreCryptoAccountId32>, prevEjected: bool], {
607
607
  compute: PezpalletElectionProviderMultiPhaseElectionCompute;
608
- origin: Option<AccountId32>;
608
+ origin: Option<PezspCoreCryptoAccountId32>;
609
609
  prevEjected: bool;
610
610
  }>;
611
611
  /**
@@ -636,15 +636,15 @@ declare module '@pezkuwi/api-base/types/events' {
636
636
  /**
637
637
  * A staker was slashed for requesting fast-unstake whilst being exposed.
638
638
  **/
639
- Slashed: AugmentedEvent<ApiType, [stash: AccountId32, amount: u128], {
640
- stash: AccountId32;
639
+ Slashed: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, amount: u128], {
640
+ stash: PezspCoreCryptoAccountId32;
641
641
  amount: u128;
642
642
  }>;
643
643
  /**
644
644
  * A staker was unstaked.
645
645
  **/
646
- Unstaked: AugmentedEvent<ApiType, [stash: AccountId32, result: Result<Null, PezspRuntimeDispatchError>], {
647
- stash: AccountId32;
646
+ Unstaked: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, result: Result<Null, PezspRuntimeDispatchError>], {
647
+ stash: PezspCoreCryptoAccountId32;
648
648
  result: Result<Null, PezspRuntimeDispatchError>;
649
649
  }>;
650
650
  /**
@@ -755,8 +755,8 @@ declare module '@pezkuwi/api-base/types/events' {
755
755
  /**
756
756
  * A deposit to reserve an index has been poked/reconsidered.
757
757
  **/
758
- DepositPoked: AugmentedEvent<ApiType, [who: AccountId32, index: u32, oldDeposit: u128, newDeposit: u128], {
759
- who: AccountId32;
758
+ DepositPoked: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, index: u32, oldDeposit: u128, newDeposit: u128], {
759
+ who: PezspCoreCryptoAccountId32;
760
760
  index: u32;
761
761
  oldDeposit: u128;
762
762
  newDeposit: u128;
@@ -764,8 +764,8 @@ declare module '@pezkuwi/api-base/types/events' {
764
764
  /**
765
765
  * A account index was assigned.
766
766
  **/
767
- IndexAssigned: AugmentedEvent<ApiType, [who: AccountId32, index: u32], {
768
- who: AccountId32;
767
+ IndexAssigned: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, index: u32], {
768
+ who: PezspCoreCryptoAccountId32;
769
769
  index: u32;
770
770
  }>;
771
771
  /**
@@ -777,9 +777,9 @@ declare module '@pezkuwi/api-base/types/events' {
777
777
  /**
778
778
  * A account index has been frozen to its current account ID.
779
779
  **/
780
- IndexFrozen: AugmentedEvent<ApiType, [index: u32, who: AccountId32], {
780
+ IndexFrozen: AugmentedEvent<ApiType, [index: u32, who: PezspCoreCryptoAccountId32], {
781
781
  index: u32;
782
- who: AccountId32;
782
+ who: PezspCoreCryptoAccountId32;
783
783
  }>;
784
784
  /**
785
785
  * Generic event
@@ -829,8 +829,8 @@ declare module '@pezkuwi/api-base/types/events' {
829
829
  /**
830
830
  * The deposit for a multisig operation has been updated/poked.
831
831
  **/
832
- DepositPoked: AugmentedEvent<ApiType, [who: AccountId32, callHash: U8aFixed, oldDeposit: u128, newDeposit: u128], {
833
- who: AccountId32;
832
+ DepositPoked: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, callHash: U8aFixed, oldDeposit: u128, newDeposit: u128], {
833
+ who: PezspCoreCryptoAccountId32;
834
834
  callHash: U8aFixed;
835
835
  oldDeposit: u128;
836
836
  newDeposit: u128;
@@ -838,37 +838,37 @@ declare module '@pezkuwi/api-base/types/events' {
838
838
  /**
839
839
  * A multisig operation has been approved by someone.
840
840
  **/
841
- MultisigApproval: AugmentedEvent<ApiType, [approving: AccountId32, timepoint: PezpalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed], {
842
- approving: AccountId32;
841
+ MultisigApproval: AugmentedEvent<ApiType, [approving: PezspCoreCryptoAccountId32, timepoint: PezpalletMultisigTimepoint, multisig: PezspCoreCryptoAccountId32, callHash: U8aFixed], {
842
+ approving: PezspCoreCryptoAccountId32;
843
843
  timepoint: PezpalletMultisigTimepoint;
844
- multisig: AccountId32;
844
+ multisig: PezspCoreCryptoAccountId32;
845
845
  callHash: U8aFixed;
846
846
  }>;
847
847
  /**
848
848
  * A multisig operation has been cancelled.
849
849
  **/
850
- MultisigCancelled: AugmentedEvent<ApiType, [cancelling: AccountId32, timepoint: PezpalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed], {
851
- cancelling: AccountId32;
850
+ MultisigCancelled: AugmentedEvent<ApiType, [cancelling: PezspCoreCryptoAccountId32, timepoint: PezpalletMultisigTimepoint, multisig: PezspCoreCryptoAccountId32, callHash: U8aFixed], {
851
+ cancelling: PezspCoreCryptoAccountId32;
852
852
  timepoint: PezpalletMultisigTimepoint;
853
- multisig: AccountId32;
853
+ multisig: PezspCoreCryptoAccountId32;
854
854
  callHash: U8aFixed;
855
855
  }>;
856
856
  /**
857
857
  * A multisig operation has been executed.
858
858
  **/
859
- MultisigExecuted: AugmentedEvent<ApiType, [approving: AccountId32, timepoint: PezpalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed, result: Result<Null, PezspRuntimeDispatchError>], {
860
- approving: AccountId32;
859
+ MultisigExecuted: AugmentedEvent<ApiType, [approving: PezspCoreCryptoAccountId32, timepoint: PezpalletMultisigTimepoint, multisig: PezspCoreCryptoAccountId32, callHash: U8aFixed, result: Result<Null, PezspRuntimeDispatchError>], {
860
+ approving: PezspCoreCryptoAccountId32;
861
861
  timepoint: PezpalletMultisigTimepoint;
862
- multisig: AccountId32;
862
+ multisig: PezspCoreCryptoAccountId32;
863
863
  callHash: U8aFixed;
864
864
  result: Result<Null, PezspRuntimeDispatchError>;
865
865
  }>;
866
866
  /**
867
867
  * A new multisig operation has begun.
868
868
  **/
869
- NewMultisig: AugmentedEvent<ApiType, [approving: AccountId32, multisig: AccountId32, callHash: U8aFixed], {
870
- approving: AccountId32;
871
- multisig: AccountId32;
869
+ NewMultisig: AugmentedEvent<ApiType, [approving: PezspCoreCryptoAccountId32, multisig: PezspCoreCryptoAccountId32, callHash: U8aFixed], {
870
+ approving: PezspCoreCryptoAccountId32;
871
+ multisig: PezspCoreCryptoAccountId32;
872
872
  callHash: U8aFixed;
873
873
  }>;
874
874
  /**
@@ -880,8 +880,8 @@ declare module '@pezkuwi/api-base/types/events' {
880
880
  /**
881
881
  * A member has became bonded in a pool.
882
882
  **/
883
- Bonded: AugmentedEvent<ApiType, [member: AccountId32, poolId: u32, bonded: u128, joined: bool], {
884
- member: AccountId32;
883
+ Bonded: AugmentedEvent<ApiType, [member: PezspCoreCryptoAccountId32, poolId: u32, bonded: u128, joined: bool], {
884
+ member: PezspCoreCryptoAccountId32;
885
885
  poolId: u32;
886
886
  bonded: u128;
887
887
  joined: bool;
@@ -889,8 +889,8 @@ declare module '@pezkuwi/api-base/types/events' {
889
889
  /**
890
890
  * A pool has been created.
891
891
  **/
892
- Created: AugmentedEvent<ApiType, [depositor: AccountId32, poolId: u32], {
893
- depositor: AccountId32;
892
+ Created: AugmentedEvent<ApiType, [depositor: PezspCoreCryptoAccountId32, poolId: u32], {
893
+ depositor: PezspCoreCryptoAccountId32;
894
894
  poolId: u32;
895
895
  }>;
896
896
  /**
@@ -902,19 +902,19 @@ declare module '@pezkuwi/api-base/types/events' {
902
902
  /**
903
903
  * Global parameters regulating nomination pools have been updated.
904
904
  **/
905
- GlobalParamsUpdated: AugmentedEvent<ApiType, [minJoinBond: u128, minCreateBond: u128, maxPools: Option<u32>, maxMembers: Option<u32>, maxMembersPerPool: Option<u32>, globalMaxCommission: Option<Perbill>], {
905
+ GlobalParamsUpdated: AugmentedEvent<ApiType, [minJoinBond: u128, minCreateBond: u128, maxPools: Option<u32>, maxMembers: Option<u32>, maxMembersPerPool: Option<u32>, globalMaxCommission: Option<u32>], {
906
906
  minJoinBond: u128;
907
907
  minCreateBond: u128;
908
908
  maxPools: Option<u32>;
909
909
  maxMembers: Option<u32>;
910
910
  maxMembersPerPool: Option<u32>;
911
- globalMaxCommission: Option<Perbill>;
911
+ globalMaxCommission: Option<u32>;
912
912
  }>;
913
913
  /**
914
914
  * A pool member's claim permission has been updated.
915
915
  **/
916
- MemberClaimPermissionUpdated: AugmentedEvent<ApiType, [member: AccountId32, permission: PezpalletNominationPoolsClaimPermission], {
917
- member: AccountId32;
916
+ MemberClaimPermissionUpdated: AugmentedEvent<ApiType, [member: PezspCoreCryptoAccountId32, permission: PezpalletNominationPoolsClaimPermission], {
917
+ member: PezspCoreCryptoAccountId32;
918
918
  permission: PezpalletNominationPoolsClaimPermission;
919
919
  }>;
920
920
  /**
@@ -924,17 +924,17 @@ declare module '@pezkuwi/api-base/types/events' {
924
924
  * Any funds that are still delegated (i.e. dangling delegation) are released and are
925
925
  * represented by `released_balance`.
926
926
  **/
927
- MemberRemoved: AugmentedEvent<ApiType, [poolId: u32, member: AccountId32, releasedBalance: u128], {
927
+ MemberRemoved: AugmentedEvent<ApiType, [poolId: u32, member: PezspCoreCryptoAccountId32, releasedBalance: u128], {
928
928
  poolId: u32;
929
- member: AccountId32;
929
+ member: PezspCoreCryptoAccountId32;
930
930
  releasedBalance: u128;
931
931
  }>;
932
932
  /**
933
933
  * A pool's metadata was updated.
934
934
  **/
935
- MetadataUpdated: AugmentedEvent<ApiType, [poolId: u32, caller: AccountId32], {
935
+ MetadataUpdated: AugmentedEvent<ApiType, [poolId: u32, caller: PezspCoreCryptoAccountId32], {
936
936
  poolId: u32;
937
- caller: AccountId32;
937
+ caller: PezspCoreCryptoAccountId32;
938
938
  }>;
939
939
  /**
940
940
  * Topped up deficit in frozen ED of the reward pool.
@@ -953,8 +953,8 @@ declare module '@pezkuwi/api-base/types/events' {
953
953
  /**
954
954
  * A payout has been made to a member.
955
955
  **/
956
- PaidOut: AugmentedEvent<ApiType, [member: AccountId32, poolId: u32, payout: u128], {
957
- member: AccountId32;
956
+ PaidOut: AugmentedEvent<ApiType, [member: PezspCoreCryptoAccountId32, poolId: u32, payout: u128], {
957
+ member: PezspCoreCryptoAccountId32;
958
958
  poolId: u32;
959
959
  payout: u128;
960
960
  }>;
@@ -982,31 +982,31 @@ declare module '@pezkuwi/api-base/types/events' {
982
982
  /**
983
983
  * A pool's commission setting has been changed.
984
984
  **/
985
- PoolCommissionUpdated: AugmentedEvent<ApiType, [poolId: u32, current: Option<ITuple<[Perbill, AccountId32]>>], {
985
+ PoolCommissionUpdated: AugmentedEvent<ApiType, [poolId: u32, current: Option<ITuple<[u32, PezspCoreCryptoAccountId32]>>], {
986
986
  poolId: u32;
987
- current: Option<ITuple<[Perbill, AccountId32]>>;
987
+ current: Option<ITuple<[u32, PezspCoreCryptoAccountId32]>>;
988
988
  }>;
989
989
  /**
990
990
  * A pool's maximum commission setting has been changed.
991
991
  **/
992
- PoolMaxCommissionUpdated: AugmentedEvent<ApiType, [poolId: u32, maxCommission: Perbill], {
992
+ PoolMaxCommissionUpdated: AugmentedEvent<ApiType, [poolId: u32, maxCommission: u32], {
993
993
  poolId: u32;
994
- maxCommission: Perbill;
994
+ maxCommission: u32;
995
995
  }>;
996
996
  /**
997
997
  * A pool's nominating account (or the pool's root account) has nominated a validator set
998
998
  * on behalf of the pool.
999
999
  **/
1000
- PoolNominationMade: AugmentedEvent<ApiType, [poolId: u32, caller: AccountId32], {
1000
+ PoolNominationMade: AugmentedEvent<ApiType, [poolId: u32, caller: PezspCoreCryptoAccountId32], {
1001
1001
  poolId: u32;
1002
- caller: AccountId32;
1002
+ caller: PezspCoreCryptoAccountId32;
1003
1003
  }>;
1004
1004
  /**
1005
1005
  * The pool is chilled i.e. no longer nominating.
1006
1006
  **/
1007
- PoolNominatorChilled: AugmentedEvent<ApiType, [poolId: u32, caller: AccountId32], {
1007
+ PoolNominatorChilled: AugmentedEvent<ApiType, [poolId: u32, caller: PezspCoreCryptoAccountId32], {
1008
1008
  poolId: u32;
1009
- caller: AccountId32;
1009
+ caller: PezspCoreCryptoAccountId32;
1010
1010
  }>;
1011
1011
  /**
1012
1012
  * The active balance of pool `pool_id` has been slashed to `balance`.
@@ -1019,10 +1019,10 @@ declare module '@pezkuwi/api-base/types/events' {
1019
1019
  * The roles of a pool have been updated to the given new roles. Note that the depositor
1020
1020
  * can never change.
1021
1021
  **/
1022
- RolesUpdated: AugmentedEvent<ApiType, [root: Option<AccountId32>, bouncer: Option<AccountId32>, nominator: Option<AccountId32>], {
1023
- root: Option<AccountId32>;
1024
- bouncer: Option<AccountId32>;
1025
- nominator: Option<AccountId32>;
1022
+ RolesUpdated: AugmentedEvent<ApiType, [root: Option<PezspCoreCryptoAccountId32>, bouncer: Option<PezspCoreCryptoAccountId32>, nominator: Option<PezspCoreCryptoAccountId32>], {
1023
+ root: Option<PezspCoreCryptoAccountId32>;
1024
+ bouncer: Option<PezspCoreCryptoAccountId32>;
1025
+ nominator: Option<PezspCoreCryptoAccountId32>;
1026
1026
  }>;
1027
1027
  /**
1028
1028
  * The state of a pool has changed
@@ -1044,8 +1044,8 @@ declare module '@pezkuwi/api-base/types/events' {
1044
1044
  * number of points that are issued in the unbonding pool will be less than the amount
1045
1045
  * requested to be unbonded.
1046
1046
  **/
1047
- Unbonded: AugmentedEvent<ApiType, [member: AccountId32, poolId: u32, balance: u128, points: u128, era: u32], {
1048
- member: AccountId32;
1047
+ Unbonded: AugmentedEvent<ApiType, [member: PezspCoreCryptoAccountId32, poolId: u32, balance: u128, points: u128, era: u32], {
1048
+ member: PezspCoreCryptoAccountId32;
1049
1049
  poolId: u32;
1050
1050
  balance: u128;
1051
1051
  points: u128;
@@ -1067,8 +1067,8 @@ declare module '@pezkuwi/api-base/types/events' {
1067
1067
  * Similar to `Unbonded` event, in the absence of slashing, the ratio of point to balance
1068
1068
  * will be 1.
1069
1069
  **/
1070
- Withdrawn: AugmentedEvent<ApiType, [member: AccountId32, poolId: u32, balance: u128, points: u128], {
1071
- member: AccountId32;
1070
+ Withdrawn: AugmentedEvent<ApiType, [member: PezspCoreCryptoAccountId32, poolId: u32, balance: u128, points: u128], {
1071
+ member: PezspCoreCryptoAccountId32;
1072
1072
  poolId: u32;
1073
1073
  balance: u128;
1074
1074
  points: u128;
@@ -1097,17 +1097,17 @@ declare module '@pezkuwi/api-base/types/events' {
1097
1097
  /**
1098
1098
  * An account was given credits.
1099
1099
  **/
1100
- AccountCredited: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1101
- who: AccountId32;
1100
+ AccountCredited: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], {
1101
+ who: PezspCoreCryptoAccountId32;
1102
1102
  amount: u128;
1103
1103
  }>;
1104
1104
  /**
1105
1105
  * An order was placed at some spot price amount by orderer ordered_by
1106
1106
  **/
1107
- OnDemandOrderPlaced: AugmentedEvent<ApiType, [paraId: u32, spotPrice: u128, orderedBy: AccountId32], {
1107
+ OnDemandOrderPlaced: AugmentedEvent<ApiType, [paraId: u32, spotPrice: u128, orderedBy: PezspCoreCryptoAccountId32], {
1108
1108
  paraId: u32;
1109
1109
  spotPrice: u128;
1110
- orderedBy: AccountId32;
1110
+ orderedBy: PezspCoreCryptoAccountId32;
1111
1111
  }>;
1112
1112
  /**
1113
1113
  * The value of the spot price has likely changed
@@ -1250,16 +1250,16 @@ declare module '@pezkuwi/api-base/types/events' {
1250
1250
  /**
1251
1251
  * An announcement was placed to make a call in the future.
1252
1252
  **/
1253
- Announced: AugmentedEvent<ApiType, [real: AccountId32, proxy: AccountId32, callHash: H256], {
1254
- real: AccountId32;
1255
- proxy: AccountId32;
1253
+ Announced: AugmentedEvent<ApiType, [real: PezspCoreCryptoAccountId32, proxy: PezspCoreCryptoAccountId32, callHash: H256], {
1254
+ real: PezspCoreCryptoAccountId32;
1255
+ proxy: PezspCoreCryptoAccountId32;
1256
1256
  callHash: H256;
1257
1257
  }>;
1258
1258
  /**
1259
1259
  * A deposit stored for proxies or announcements was poked / updated.
1260
1260
  **/
1261
- DepositPoked: AugmentedEvent<ApiType, [who: AccountId32, kind: PezpalletProxyDepositKind, oldDeposit: u128, newDeposit: u128], {
1262
- who: AccountId32;
1261
+ DepositPoked: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, kind: PezpalletProxyDepositKind, oldDeposit: u128, newDeposit: u128], {
1262
+ who: PezspCoreCryptoAccountId32;
1263
1263
  kind: PezpalletProxyDepositKind;
1264
1264
  oldDeposit: u128;
1265
1265
  newDeposit: u128;
@@ -1267,9 +1267,9 @@ declare module '@pezkuwi/api-base/types/events' {
1267
1267
  /**
1268
1268
  * A proxy was added.
1269
1269
  **/
1270
- ProxyAdded: AugmentedEvent<ApiType, [delegator: AccountId32, delegatee: AccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, delay: u32], {
1271
- delegator: AccountId32;
1272
- delegatee: AccountId32;
1270
+ ProxyAdded: AugmentedEvent<ApiType, [delegator: PezspCoreCryptoAccountId32, delegatee: PezspCoreCryptoAccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, delay: u32], {
1271
+ delegator: PezspCoreCryptoAccountId32;
1272
+ delegatee: PezspCoreCryptoAccountId32;
1273
1273
  proxyType: PezkuwiRuntimeConstantsProxyProxyType;
1274
1274
  delay: u32;
1275
1275
  }>;
@@ -1282,9 +1282,9 @@ declare module '@pezkuwi/api-base/types/events' {
1282
1282
  /**
1283
1283
  * A proxy was removed.
1284
1284
  **/
1285
- ProxyRemoved: AugmentedEvent<ApiType, [delegator: AccountId32, delegatee: AccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, delay: u32], {
1286
- delegator: AccountId32;
1287
- delegatee: AccountId32;
1285
+ ProxyRemoved: AugmentedEvent<ApiType, [delegator: PezspCoreCryptoAccountId32, delegatee: PezspCoreCryptoAccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, delay: u32], {
1286
+ delegator: PezspCoreCryptoAccountId32;
1287
+ delegatee: PezspCoreCryptoAccountId32;
1288
1288
  proxyType: PezkuwiRuntimeConstantsProxyProxyType;
1289
1289
  delay: u32;
1290
1290
  }>;
@@ -1292,18 +1292,18 @@ declare module '@pezkuwi/api-base/types/events' {
1292
1292
  * A pure account has been created by new proxy with given
1293
1293
  * disambiguation index and proxy type.
1294
1294
  **/
1295
- PureCreated: AugmentedEvent<ApiType, [pure: AccountId32, who: AccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, disambiguationIndex: u16], {
1296
- pure: AccountId32;
1297
- who: AccountId32;
1295
+ PureCreated: AugmentedEvent<ApiType, [pure: PezspCoreCryptoAccountId32, who: PezspCoreCryptoAccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, disambiguationIndex: u16], {
1296
+ pure: PezspCoreCryptoAccountId32;
1297
+ who: PezspCoreCryptoAccountId32;
1298
1298
  proxyType: PezkuwiRuntimeConstantsProxyProxyType;
1299
1299
  disambiguationIndex: u16;
1300
1300
  }>;
1301
1301
  /**
1302
1302
  * A pure proxy was killed by its spawner.
1303
1303
  **/
1304
- PureKilled: AugmentedEvent<ApiType, [pure: AccountId32, spawner: AccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, disambiguationIndex: u16], {
1305
- pure: AccountId32;
1306
- spawner: AccountId32;
1304
+ PureKilled: AugmentedEvent<ApiType, [pure: PezspCoreCryptoAccountId32, spawner: PezspCoreCryptoAccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, disambiguationIndex: u16], {
1305
+ pure: PezspCoreCryptoAccountId32;
1306
+ spawner: PezspCoreCryptoAccountId32;
1307
1307
  proxyType: PezkuwiRuntimeConstantsProxyProxyType;
1308
1308
  disambiguationIndex: u16;
1309
1309
  }>;
@@ -1316,8 +1316,8 @@ declare module '@pezkuwi/api-base/types/events' {
1316
1316
  /**
1317
1317
  * The accounts to be preserved on Relay Chain were set.
1318
1318
  **/
1319
- AccountsPreserved: AugmentedEvent<ApiType, [accounts: Vec<AccountId32>], {
1320
- accounts: Vec<AccountId32>;
1319
+ AccountsPreserved: AugmentedEvent<ApiType, [accounts: Vec<PezspCoreCryptoAccountId32>], {
1320
+ accounts: Vec<PezspCoreCryptoAccountId32>;
1321
1321
  }>;
1322
1322
  /**
1323
1323
  * The AH UMP queue priority config was set.
@@ -1354,9 +1354,9 @@ declare module '@pezkuwi/api-base/types/events' {
1354
1354
  /**
1355
1355
  * The canceller account id was set.
1356
1356
  **/
1357
- CancellerSet: AugmentedEvent<ApiType, [old: Option<AccountId32>, new_: Option<AccountId32>], {
1358
- old: Option<AccountId32>;
1359
- new_: Option<AccountId32>;
1357
+ CancellerSet: AugmentedEvent<ApiType, [old: Option<PezspCoreCryptoAccountId32>, new_: Option<PezspCoreCryptoAccountId32>], {
1358
+ old: Option<PezspCoreCryptoAccountId32>;
1359
+ new_: Option<PezspCoreCryptoAccountId32>;
1360
1360
  }>;
1361
1361
  /**
1362
1362
  * The manager multisig dispatched something.
@@ -1373,9 +1373,9 @@ declare module '@pezkuwi/api-base/types/events' {
1373
1373
  /**
1374
1374
  * The manager account id was set.
1375
1375
  **/
1376
- ManagerSet: AugmentedEvent<ApiType, [old: Option<AccountId32>, new_: Option<AccountId32>], {
1377
- old: Option<AccountId32>;
1378
- new_: Option<AccountId32>;
1376
+ ManagerSet: AugmentedEvent<ApiType, [old: Option<PezspCoreCryptoAccountId32>, new_: Option<PezspCoreCryptoAccountId32>], {
1377
+ old: Option<PezspCoreCryptoAccountId32>;
1378
+ new_: Option<PezspCoreCryptoAccountId32>;
1379
1379
  }>;
1380
1380
  /**
1381
1381
  * The RC kept balance was consumed.
@@ -1490,17 +1490,17 @@ declare module '@pezkuwi/api-base/types/events' {
1490
1490
  /**
1491
1491
  * The decision deposit has been placed.
1492
1492
  **/
1493
- DecisionDepositPlaced: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], {
1493
+ DecisionDepositPlaced: AugmentedEvent<ApiType, [index: u32, who: PezspCoreCryptoAccountId32, amount: u128], {
1494
1494
  index: u32;
1495
- who: AccountId32;
1495
+ who: PezspCoreCryptoAccountId32;
1496
1496
  amount: u128;
1497
1497
  }>;
1498
1498
  /**
1499
1499
  * The decision deposit has been refunded.
1500
1500
  **/
1501
- DecisionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], {
1501
+ DecisionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: PezspCoreCryptoAccountId32, amount: u128], {
1502
1502
  index: u32;
1503
- who: AccountId32;
1503
+ who: PezspCoreCryptoAccountId32;
1504
1504
  amount: u128;
1505
1505
  }>;
1506
1506
  /**
@@ -1515,8 +1515,8 @@ declare module '@pezkuwi/api-base/types/events' {
1515
1515
  /**
1516
1516
  * A deposit has been slashed.
1517
1517
  **/
1518
- DepositSlashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1519
- who: AccountId32;
1518
+ DepositSlashed: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], {
1519
+ who: PezspCoreCryptoAccountId32;
1520
1520
  amount: u128;
1521
1521
  }>;
1522
1522
  /**
@@ -1550,9 +1550,9 @@ declare module '@pezkuwi/api-base/types/events' {
1550
1550
  /**
1551
1551
  * The submission deposit has been refunded.
1552
1552
  **/
1553
- SubmissionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], {
1553
+ SubmissionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: PezspCoreCryptoAccountId32, amount: u128], {
1554
1554
  index: u32;
1555
- who: AccountId32;
1555
+ who: PezspCoreCryptoAccountId32;
1556
1556
  amount: u128;
1557
1557
  }>;
1558
1558
  /**
@@ -1579,13 +1579,13 @@ declare module '@pezkuwi/api-base/types/events' {
1579
1579
  Deregistered: AugmentedEvent<ApiType, [paraId: u32], {
1580
1580
  paraId: u32;
1581
1581
  }>;
1582
- Registered: AugmentedEvent<ApiType, [paraId: u32, manager: AccountId32], {
1582
+ Registered: AugmentedEvent<ApiType, [paraId: u32, manager: PezspCoreCryptoAccountId32], {
1583
1583
  paraId: u32;
1584
- manager: AccountId32;
1584
+ manager: PezspCoreCryptoAccountId32;
1585
1585
  }>;
1586
- Reserved: AugmentedEvent<ApiType, [paraId: u32, who: AccountId32], {
1586
+ Reserved: AugmentedEvent<ApiType, [paraId: u32, who: PezspCoreCryptoAccountId32], {
1587
1587
  paraId: u32;
1588
- who: AccountId32;
1588
+ who: PezspCoreCryptoAccountId32;
1589
1589
  }>;
1590
1590
  Swapped: AugmentedEvent<ApiType, [paraId: u32, otherId: u32], {
1591
1591
  paraId: u32;
@@ -1691,14 +1691,14 @@ declare module '@pezkuwi/api-base/types/events' {
1691
1691
  /**
1692
1692
  * Validator has been disabled.
1693
1693
  **/
1694
- ValidatorDisabled: AugmentedEvent<ApiType, [validator: AccountId32], {
1695
- validator: AccountId32;
1694
+ ValidatorDisabled: AugmentedEvent<ApiType, [validator: PezspCoreCryptoAccountId32], {
1695
+ validator: PezspCoreCryptoAccountId32;
1696
1696
  }>;
1697
1697
  /**
1698
1698
  * Validator has been re-enabled.
1699
1699
  **/
1700
- ValidatorReenabled: AugmentedEvent<ApiType, [validator: AccountId32], {
1701
- validator: AccountId32;
1700
+ ValidatorReenabled: AugmentedEvent<ApiType, [validator: PezspCoreCryptoAccountId32], {
1701
+ validator: PezspCoreCryptoAccountId32;
1702
1702
  }>;
1703
1703
  /**
1704
1704
  * Generic event
@@ -1711,9 +1711,9 @@ declare module '@pezkuwi/api-base/types/events' {
1711
1711
  * First balance is any extra amount reserved on top of the para's existing deposit.
1712
1712
  * Second balance is the total amount reserved.
1713
1713
  **/
1714
- Leased: AugmentedEvent<ApiType, [paraId: u32, leaser: AccountId32, periodBegin: u32, periodCount: u32, extraReserved: u128, totalAmount: u128], {
1714
+ Leased: AugmentedEvent<ApiType, [paraId: u32, leaser: PezspCoreCryptoAccountId32, periodBegin: u32, periodCount: u32, extraReserved: u128, totalAmount: u128], {
1715
1715
  paraId: u32;
1716
- leaser: AccountId32;
1716
+ leaser: PezspCoreCryptoAccountId32;
1717
1717
  periodBegin: u32;
1718
1718
  periodCount: u32;
1719
1719
  extraReserved: u128;
@@ -1737,15 +1737,15 @@ declare module '@pezkuwi/api-base/types/events' {
1737
1737
  * NOTE: This event is only emitted when funds are bonded via a dispatchable. Notably,
1738
1738
  * it will not be emitted for staking rewards when they are added to stake.
1739
1739
  **/
1740
- Bonded: AugmentedEvent<ApiType, [stash: AccountId32, amount: u128], {
1741
- stash: AccountId32;
1740
+ Bonded: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, amount: u128], {
1741
+ stash: PezspCoreCryptoAccountId32;
1742
1742
  amount: u128;
1743
1743
  }>;
1744
1744
  /**
1745
1745
  * An account has stopped participating as either a validator or nominator.
1746
1746
  **/
1747
- Chilled: AugmentedEvent<ApiType, [stash: AccountId32], {
1748
- stash: AccountId32;
1747
+ Chilled: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32], {
1748
+ stash: PezspCoreCryptoAccountId32;
1749
1749
  }>;
1750
1750
  /**
1751
1751
  * Report of a controller batch deprecation.
@@ -1757,8 +1757,8 @@ declare module '@pezkuwi/api-base/types/events' {
1757
1757
  * Staking balance migrated from locks to holds, with any balance that could not be held
1758
1758
  * is force withdrawn.
1759
1759
  **/
1760
- CurrencyMigrated: AugmentedEvent<ApiType, [stash: AccountId32, forceWithdraw: u128], {
1761
- stash: AccountId32;
1760
+ CurrencyMigrated: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, forceWithdraw: u128], {
1761
+ stash: PezspCoreCryptoAccountId32;
1762
1762
  forceWithdraw: u128;
1763
1763
  }>;
1764
1764
  /**
@@ -1779,9 +1779,9 @@ declare module '@pezkuwi/api-base/types/events' {
1779
1779
  /**
1780
1780
  * A nominator has been kicked from a validator.
1781
1781
  **/
1782
- Kicked: AugmentedEvent<ApiType, [nominator: AccountId32, stash: AccountId32], {
1783
- nominator: AccountId32;
1784
- stash: AccountId32;
1782
+ Kicked: AugmentedEvent<ApiType, [nominator: PezspCoreCryptoAccountId32, stash: PezspCoreCryptoAccountId32], {
1783
+ nominator: PezspCoreCryptoAccountId32;
1784
+ stash: PezspCoreCryptoAccountId32;
1785
1785
  }>;
1786
1786
  /**
1787
1787
  * An old slashing report from a prior era was discarded because it could
@@ -1793,34 +1793,34 @@ declare module '@pezkuwi/api-base/types/events' {
1793
1793
  /**
1794
1794
  * A Page of stakers rewards are getting paid. `next` is `None` if all pages are claimed.
1795
1795
  **/
1796
- PayoutStarted: AugmentedEvent<ApiType, [eraIndex: u32, validatorStash: AccountId32, page: u32, next: Option<u32>], {
1796
+ PayoutStarted: AugmentedEvent<ApiType, [eraIndex: u32, validatorStash: PezspCoreCryptoAccountId32, page: u32, next: Option<u32>], {
1797
1797
  eraIndex: u32;
1798
- validatorStash: AccountId32;
1798
+ validatorStash: PezspCoreCryptoAccountId32;
1799
1799
  page: u32;
1800
1800
  next: Option<u32>;
1801
1801
  }>;
1802
1802
  /**
1803
1803
  * The nominator has been rewarded by this amount to this destination.
1804
1804
  **/
1805
- Rewarded: AugmentedEvent<ApiType, [stash: AccountId32, dest: PezpalletStakingRewardDestination, amount: u128], {
1806
- stash: AccountId32;
1805
+ Rewarded: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, dest: PezpalletStakingRewardDestination, amount: u128], {
1806
+ stash: PezspCoreCryptoAccountId32;
1807
1807
  dest: PezpalletStakingRewardDestination;
1808
1808
  amount: u128;
1809
1809
  }>;
1810
1810
  /**
1811
1811
  * A staker (validator or nominator) has been slashed by the given amount.
1812
1812
  **/
1813
- Slashed: AugmentedEvent<ApiType, [staker: AccountId32, amount: u128], {
1814
- staker: AccountId32;
1813
+ Slashed: AugmentedEvent<ApiType, [staker: PezspCoreCryptoAccountId32, amount: u128], {
1814
+ staker: PezspCoreCryptoAccountId32;
1815
1815
  amount: u128;
1816
1816
  }>;
1817
1817
  /**
1818
1818
  * A slash for the given validator, for the given percentage of their stake, at the given
1819
1819
  * era as been reported.
1820
1820
  **/
1821
- SlashReported: AugmentedEvent<ApiType, [validator: AccountId32, fraction: Perbill, slashEra: u32], {
1822
- validator: AccountId32;
1823
- fraction: Perbill;
1821
+ SlashReported: AugmentedEvent<ApiType, [validator: PezspCoreCryptoAccountId32, fraction: u32, slashEra: u32], {
1822
+ validator: PezspCoreCryptoAccountId32;
1823
+ fraction: u32;
1824
1824
  slashEra: u32;
1825
1825
  }>;
1826
1826
  /**
@@ -1846,23 +1846,23 @@ declare module '@pezkuwi/api-base/types/events' {
1846
1846
  /**
1847
1847
  * An account has unbonded this amount.
1848
1848
  **/
1849
- Unbonded: AugmentedEvent<ApiType, [stash: AccountId32, amount: u128], {
1850
- stash: AccountId32;
1849
+ Unbonded: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, amount: u128], {
1850
+ stash: PezspCoreCryptoAccountId32;
1851
1851
  amount: u128;
1852
1852
  }>;
1853
1853
  /**
1854
1854
  * A validator has set their preferences.
1855
1855
  **/
1856
- ValidatorPrefsSet: AugmentedEvent<ApiType, [stash: AccountId32, prefs: PezpalletStakingValidatorPrefs], {
1857
- stash: AccountId32;
1856
+ ValidatorPrefsSet: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, prefs: PezpalletStakingValidatorPrefs], {
1857
+ stash: PezspCoreCryptoAccountId32;
1858
1858
  prefs: PezpalletStakingValidatorPrefs;
1859
1859
  }>;
1860
1860
  /**
1861
1861
  * An account has called `withdraw_unbonded` and removed unbonding chunks worth `Balance`
1862
1862
  * from the unlocking queue.
1863
1863
  **/
1864
- Withdrawn: AugmentedEvent<ApiType, [stash: AccountId32, amount: u128], {
1865
- stash: AccountId32;
1864
+ Withdrawn: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, amount: u128], {
1865
+ stash: PezspCoreCryptoAccountId32;
1866
1866
  amount: u128;
1867
1867
  }>;
1868
1868
  /**
@@ -1925,8 +1925,8 @@ declare module '@pezkuwi/api-base/types/events' {
1925
1925
  /**
1926
1926
  * Some account got slashed by the given amount.
1927
1927
  **/
1928
- Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
1929
- who: AccountId32;
1928
+ Slashed: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], {
1929
+ who: PezspCoreCryptoAccountId32;
1930
1930
  amount: u128;
1931
1931
  }>;
1932
1932
  /**
@@ -1955,14 +1955,14 @@ declare module '@pezkuwi/api-base/types/events' {
1955
1955
  /**
1956
1956
  * An account was reaped.
1957
1957
  **/
1958
- KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], {
1959
- account: AccountId32;
1958
+ KilledAccount: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32], {
1959
+ account: PezspCoreCryptoAccountId32;
1960
1960
  }>;
1961
1961
  /**
1962
1962
  * A new account was created.
1963
1963
  **/
1964
- NewAccount: AugmentedEvent<ApiType, [account: AccountId32], {
1965
- account: AccountId32;
1964
+ NewAccount: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32], {
1965
+ account: PezspCoreCryptoAccountId32;
1966
1966
  }>;
1967
1967
  /**
1968
1968
  * An invalid authorized upgrade was rejected while trying to apply it.
@@ -1974,8 +1974,8 @@ declare module '@pezkuwi/api-base/types/events' {
1974
1974
  /**
1975
1975
  * On on-chain remark happened.
1976
1976
  **/
1977
- Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], {
1978
- sender: AccountId32;
1977
+ Remarked: AugmentedEvent<ApiType, [sender: PezspCoreCryptoAccountId32, hash_: H256], {
1978
+ sender: PezspCoreCryptoAccountId32;
1979
1979
  hash_: H256;
1980
1980
  }>;
1981
1981
  /**
@@ -1995,8 +1995,8 @@ declare module '@pezkuwi/api-base/types/events' {
1995
1995
  * A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,
1996
1996
  * has been paid by `who`.
1997
1997
  **/
1998
- TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], {
1999
- who: AccountId32;
1998
+ TransactionFeePaid: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, actualFee: u128, tip: u128], {
1999
+ who: PezspCoreCryptoAccountId32;
2000
2000
  actualFee: u128;
2001
2001
  tip: u128;
2002
2002
  }>;
@@ -2026,10 +2026,10 @@ declare module '@pezkuwi/api-base/types/events' {
2026
2026
  /**
2027
2027
  * Some funds have been allocated.
2028
2028
  **/
2029
- Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], {
2029
+ Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: PezspCoreCryptoAccountId32], {
2030
2030
  proposalIndex: u32;
2031
2031
  award: u128;
2032
- account: AccountId32;
2032
+ account: PezspCoreCryptoAccountId32;
2033
2033
  }>;
2034
2034
  /**
2035
2035
  * Some of our funds have been burnt.
@@ -2066,10 +2066,10 @@ declare module '@pezkuwi/api-base/types/events' {
2066
2066
  /**
2067
2067
  * A new spend proposal has been approved.
2068
2068
  **/
2069
- SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], {
2069
+ SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: PezspCoreCryptoAccountId32], {
2070
2070
  proposalIndex: u32;
2071
2071
  amount: u128;
2072
- beneficiary: AccountId32;
2072
+ beneficiary: PezspCoreCryptoAccountId32;
2073
2073
  }>;
2074
2074
  /**
2075
2075
  * We have ended a spend period and will now allocate funds.
@@ -2148,22 +2148,22 @@ declare module '@pezkuwi/api-base/types/events' {
2148
2148
  /**
2149
2149
  * An \[account\] has become fully vested.
2150
2150
  **/
2151
- VestingCompleted: AugmentedEvent<ApiType, [account: AccountId32], {
2152
- account: AccountId32;
2151
+ VestingCompleted: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32], {
2152
+ account: PezspCoreCryptoAccountId32;
2153
2153
  }>;
2154
2154
  /**
2155
2155
  * A vesting schedule has been created.
2156
2156
  **/
2157
- VestingCreated: AugmentedEvent<ApiType, [account: AccountId32, scheduleIndex: u32], {
2158
- account: AccountId32;
2157
+ VestingCreated: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32, scheduleIndex: u32], {
2158
+ account: PezspCoreCryptoAccountId32;
2159
2159
  scheduleIndex: u32;
2160
2160
  }>;
2161
2161
  /**
2162
2162
  * The amount vested has been updated. This could indicate a change in funds available.
2163
2163
  * The balance given is the amount which is left unvested (and thus locked).
2164
2164
  **/
2165
- VestingUpdated: AugmentedEvent<ApiType, [account: AccountId32, unvested: u128], {
2166
- account: AccountId32;
2165
+ VestingUpdated: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32, unvested: u128], {
2166
+ account: PezspCoreCryptoAccountId32;
2167
2167
  unvested: u128;
2168
2168
  }>;
2169
2169
  /**
@@ -2175,16 +2175,16 @@ declare module '@pezkuwi/api-base/types/events' {
2175
2175
  /**
2176
2176
  * Moved an account from one bag to another.
2177
2177
  **/
2178
- Rebagged: AugmentedEvent<ApiType, [who: AccountId32, from: u64, to: u64], {
2179
- who: AccountId32;
2178
+ Rebagged: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, from: u64, to: u64], {
2179
+ who: PezspCoreCryptoAccountId32;
2180
2180
  from: u64;
2181
2181
  to: u64;
2182
2182
  }>;
2183
2183
  /**
2184
2184
  * Updated the score of some account to the given amount.
2185
2185
  **/
2186
- ScoreUpdated: AugmentedEvent<ApiType, [who: AccountId32, newScore: u64], {
2187
- who: AccountId32;
2186
+ ScoreUpdated: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, newScore: u64], {
2187
+ who: PezspCoreCryptoAccountId32;
2188
2188
  newScore: u64;
2189
2189
  }>;
2190
2190
  /**