@polkadot/api-augment 15.10.2 → 16.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assetHubKusama/consts.d.ts +583 -0
- package/assetHubKusama/consts.js +2 -0
- package/assetHubKusama/errors.d.ts +1228 -0
- package/assetHubKusama/errors.js +2 -0
- package/assetHubKusama/events.d.ts +2076 -0
- package/assetHubKusama/events.js +2 -0
- package/assetHubKusama/index.d.ts +8 -0
- package/assetHubKusama/index.js +8 -0
- package/assetHubKusama/query.d.ts +1016 -0
- package/assetHubKusama/query.js +2 -0
- package/assetHubKusama/registry.d.ts +1 -0
- package/assetHubKusama/registry.js +1 -0
- package/assetHubKusama/runtime.d.ts +408 -0
- package/assetHubKusama/runtime.js +2 -0
- package/assetHubKusama/tx.d.ts +5812 -0
- package/assetHubKusama/tx.js +2 -0
- package/assetHubPolkadot/consts.js +2 -0
- package/assetHubPolkadot/errors.js +2 -0
- package/assetHubPolkadot/events.js +2 -0
- package/assetHubPolkadot/index.js +8 -0
- package/assetHubPolkadot/query.js +2 -0
- package/assetHubPolkadot/registry.js +1 -0
- package/assetHubPolkadot/runtime.js +2 -0
- package/assetHubPolkadot/tx.js +2 -0
- package/cjs/assetHubKusama/consts.d.ts +583 -0
- package/cjs/assetHubKusama/consts.js +4 -0
- package/cjs/assetHubKusama/errors.d.ts +1228 -0
- package/cjs/assetHubKusama/errors.js +4 -0
- package/cjs/assetHubKusama/events.d.ts +2076 -0
- package/cjs/assetHubKusama/events.js +4 -0
- package/cjs/assetHubKusama/index.d.ts +8 -0
- package/cjs/assetHubKusama/index.js +10 -0
- package/cjs/assetHubKusama/query.d.ts +1016 -0
- package/cjs/assetHubKusama/query.js +4 -0
- package/cjs/assetHubKusama/registry.d.ts +1 -0
- package/cjs/assetHubKusama/registry.js +3 -0
- package/cjs/assetHubKusama/runtime.d.ts +408 -0
- package/cjs/assetHubKusama/runtime.js +4 -0
- package/cjs/assetHubKusama/tx.d.ts +5812 -0
- package/cjs/assetHubKusama/tx.js +4 -0
- package/cjs/assetHubPolkadot/consts.js +4 -0
- package/cjs/assetHubPolkadot/errors.js +4 -0
- package/cjs/assetHubPolkadot/events.js +4 -0
- package/cjs/assetHubPolkadot/index.js +10 -0
- package/cjs/assetHubPolkadot/query.js +4 -0
- package/cjs/assetHubPolkadot/registry.js +3 -0
- package/cjs/assetHubPolkadot/runtime.js +4 -0
- package/cjs/assetHubPolkadot/tx.js +4 -0
- package/cjs/packageInfo.js +1 -1
- package/package.json +159 -7
- package/packageInfo.js +1 -1
|
@@ -0,0 +1,2076 @@
|
|
|
1
|
+
import '@polkadot/api-base/types/events';
|
|
2
|
+
import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';
|
|
3
|
+
import type { Bytes, Null, Option, Result, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
|
|
4
|
+
import type { ITuple } from '@polkadot/types-codec/types';
|
|
5
|
+
import type { AccountId32, H256, Permill } from '@polkadot/types/interfaces/runtime';
|
|
6
|
+
import type { AssetHubKusamaRuntimeProxyType, CumulusPrimitivesCoreAggregateMessageOrigin, FrameSupportDispatchDispatchInfo, FrameSupportMessagesProcessMessageError, FrameSupportTokensMiscBalanceStatus, PalletMultisigTimepoint, PalletNftsAttributeNamespace, PalletNftsPalletAttributes, PalletNftsPriceWithDirection, SpRuntimeDispatchError, SpWeightsWeightV2Weight, StagingXcmV4AssetAssets, StagingXcmV4Location, StagingXcmV4Response, StagingXcmV4TraitsOutcome, StagingXcmV4Xcm, XcmV3TraitsError, XcmVersionedAssets, XcmVersionedLocation } from '@polkadot/types/lookup';
|
|
7
|
+
export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;
|
|
8
|
+
declare module '@polkadot/api-base/types/events' {
|
|
9
|
+
interface AugmentedEvents<ApiType extends ApiTypes> {
|
|
10
|
+
assetConversion: {
|
|
11
|
+
/**
|
|
12
|
+
* A successful call of the `AddLiquidity` extrinsic will create this event.
|
|
13
|
+
**/
|
|
14
|
+
LiquidityAdded: AugmentedEvent<ApiType, [who: AccountId32, mintTo: AccountId32, poolId: ITuple<[StagingXcmV4Location, StagingXcmV4Location]>, amount1Provided: u128, amount2Provided: u128, lpToken: u32, lpTokenMinted: u128], {
|
|
15
|
+
who: AccountId32;
|
|
16
|
+
mintTo: AccountId32;
|
|
17
|
+
poolId: ITuple<[StagingXcmV4Location, StagingXcmV4Location]>;
|
|
18
|
+
amount1Provided: u128;
|
|
19
|
+
amount2Provided: u128;
|
|
20
|
+
lpToken: u32;
|
|
21
|
+
lpTokenMinted: u128;
|
|
22
|
+
}>;
|
|
23
|
+
/**
|
|
24
|
+
* A successful call of the `RemoveLiquidity` extrinsic will create this event.
|
|
25
|
+
**/
|
|
26
|
+
LiquidityRemoved: AugmentedEvent<ApiType, [who: AccountId32, withdrawTo: AccountId32, poolId: ITuple<[StagingXcmV4Location, StagingXcmV4Location]>, amount1: u128, amount2: u128, lpToken: u32, lpTokenBurned: u128, withdrawalFee: Permill], {
|
|
27
|
+
who: AccountId32;
|
|
28
|
+
withdrawTo: AccountId32;
|
|
29
|
+
poolId: ITuple<[StagingXcmV4Location, StagingXcmV4Location]>;
|
|
30
|
+
amount1: u128;
|
|
31
|
+
amount2: u128;
|
|
32
|
+
lpToken: u32;
|
|
33
|
+
lpTokenBurned: u128;
|
|
34
|
+
withdrawalFee: Permill;
|
|
35
|
+
}>;
|
|
36
|
+
/**
|
|
37
|
+
* A successful call of the `CreatePool` extrinsic will create this event.
|
|
38
|
+
**/
|
|
39
|
+
PoolCreated: AugmentedEvent<ApiType, [creator: AccountId32, poolId: ITuple<[StagingXcmV4Location, StagingXcmV4Location]>, poolAccount: AccountId32, lpToken: u32], {
|
|
40
|
+
creator: AccountId32;
|
|
41
|
+
poolId: ITuple<[StagingXcmV4Location, StagingXcmV4Location]>;
|
|
42
|
+
poolAccount: AccountId32;
|
|
43
|
+
lpToken: u32;
|
|
44
|
+
}>;
|
|
45
|
+
/**
|
|
46
|
+
* Assets have been converted from one to another.
|
|
47
|
+
**/
|
|
48
|
+
SwapCreditExecuted: AugmentedEvent<ApiType, [amountIn: u128, amountOut: u128, path: Vec<ITuple<[StagingXcmV4Location, u128]>>], {
|
|
49
|
+
amountIn: u128;
|
|
50
|
+
amountOut: u128;
|
|
51
|
+
path: Vec<ITuple<[StagingXcmV4Location, u128]>>;
|
|
52
|
+
}>;
|
|
53
|
+
/**
|
|
54
|
+
* Assets have been converted from one to another. Both `SwapExactTokenForToken`
|
|
55
|
+
* and `SwapTokenForExactToken` will generate this event.
|
|
56
|
+
**/
|
|
57
|
+
SwapExecuted: AugmentedEvent<ApiType, [who: AccountId32, sendTo: AccountId32, amountIn: u128, amountOut: u128, path: Vec<ITuple<[StagingXcmV4Location, u128]>>], {
|
|
58
|
+
who: AccountId32;
|
|
59
|
+
sendTo: AccountId32;
|
|
60
|
+
amountIn: u128;
|
|
61
|
+
amountOut: u128;
|
|
62
|
+
path: Vec<ITuple<[StagingXcmV4Location, u128]>>;
|
|
63
|
+
}>;
|
|
64
|
+
/**
|
|
65
|
+
* Pool has been touched in order to fulfill operational requirements.
|
|
66
|
+
**/
|
|
67
|
+
Touched: AugmentedEvent<ApiType, [poolId: ITuple<[StagingXcmV4Location, StagingXcmV4Location]>, who: AccountId32], {
|
|
68
|
+
poolId: ITuple<[StagingXcmV4Location, StagingXcmV4Location]>;
|
|
69
|
+
who: AccountId32;
|
|
70
|
+
}>;
|
|
71
|
+
/**
|
|
72
|
+
* Generic event
|
|
73
|
+
**/
|
|
74
|
+
[key: string]: AugmentedEvent<ApiType>;
|
|
75
|
+
};
|
|
76
|
+
assets: {
|
|
77
|
+
/**
|
|
78
|
+
* Accounts were destroyed for given asset.
|
|
79
|
+
**/
|
|
80
|
+
AccountsDestroyed: AugmentedEvent<ApiType, [assetId: u32, accountsDestroyed: u32, accountsRemaining: u32], {
|
|
81
|
+
assetId: u32;
|
|
82
|
+
accountsDestroyed: u32;
|
|
83
|
+
accountsRemaining: u32;
|
|
84
|
+
}>;
|
|
85
|
+
/**
|
|
86
|
+
* An approval for account `delegate` was cancelled by `owner`.
|
|
87
|
+
**/
|
|
88
|
+
ApprovalCancelled: AugmentedEvent<ApiType, [assetId: u32, owner: AccountId32, delegate: AccountId32], {
|
|
89
|
+
assetId: u32;
|
|
90
|
+
owner: AccountId32;
|
|
91
|
+
delegate: AccountId32;
|
|
92
|
+
}>;
|
|
93
|
+
/**
|
|
94
|
+
* Approvals were destroyed for given asset.
|
|
95
|
+
**/
|
|
96
|
+
ApprovalsDestroyed: AugmentedEvent<ApiType, [assetId: u32, approvalsDestroyed: u32, approvalsRemaining: u32], {
|
|
97
|
+
assetId: u32;
|
|
98
|
+
approvalsDestroyed: u32;
|
|
99
|
+
approvalsRemaining: u32;
|
|
100
|
+
}>;
|
|
101
|
+
/**
|
|
102
|
+
* (Additional) funds have been approved for transfer to a destination account.
|
|
103
|
+
**/
|
|
104
|
+
ApprovedTransfer: AugmentedEvent<ApiType, [assetId: u32, source: AccountId32, delegate: AccountId32, amount: u128], {
|
|
105
|
+
assetId: u32;
|
|
106
|
+
source: AccountId32;
|
|
107
|
+
delegate: AccountId32;
|
|
108
|
+
amount: u128;
|
|
109
|
+
}>;
|
|
110
|
+
/**
|
|
111
|
+
* Some asset `asset_id` was frozen.
|
|
112
|
+
**/
|
|
113
|
+
AssetFrozen: AugmentedEvent<ApiType, [assetId: u32], {
|
|
114
|
+
assetId: u32;
|
|
115
|
+
}>;
|
|
116
|
+
/**
|
|
117
|
+
* The min_balance of an asset has been updated by the asset owner.
|
|
118
|
+
**/
|
|
119
|
+
AssetMinBalanceChanged: AugmentedEvent<ApiType, [assetId: u32, newMinBalance: u128], {
|
|
120
|
+
assetId: u32;
|
|
121
|
+
newMinBalance: u128;
|
|
122
|
+
}>;
|
|
123
|
+
/**
|
|
124
|
+
* An asset has had its attributes changed by the `Force` origin.
|
|
125
|
+
**/
|
|
126
|
+
AssetStatusChanged: AugmentedEvent<ApiType, [assetId: u32], {
|
|
127
|
+
assetId: u32;
|
|
128
|
+
}>;
|
|
129
|
+
/**
|
|
130
|
+
* Some asset `asset_id` was thawed.
|
|
131
|
+
**/
|
|
132
|
+
AssetThawed: AugmentedEvent<ApiType, [assetId: u32], {
|
|
133
|
+
assetId: u32;
|
|
134
|
+
}>;
|
|
135
|
+
/**
|
|
136
|
+
* Some account `who` was blocked.
|
|
137
|
+
**/
|
|
138
|
+
Blocked: AugmentedEvent<ApiType, [assetId: u32, who: AccountId32], {
|
|
139
|
+
assetId: u32;
|
|
140
|
+
who: AccountId32;
|
|
141
|
+
}>;
|
|
142
|
+
/**
|
|
143
|
+
* Some assets were destroyed.
|
|
144
|
+
**/
|
|
145
|
+
Burned: AugmentedEvent<ApiType, [assetId: u32, owner: AccountId32, balance: u128], {
|
|
146
|
+
assetId: u32;
|
|
147
|
+
owner: AccountId32;
|
|
148
|
+
balance: u128;
|
|
149
|
+
}>;
|
|
150
|
+
/**
|
|
151
|
+
* Some asset class was created.
|
|
152
|
+
**/
|
|
153
|
+
Created: AugmentedEvent<ApiType, [assetId: u32, creator: AccountId32, owner: AccountId32], {
|
|
154
|
+
assetId: u32;
|
|
155
|
+
creator: AccountId32;
|
|
156
|
+
owner: AccountId32;
|
|
157
|
+
}>;
|
|
158
|
+
/**
|
|
159
|
+
* Some assets were deposited (e.g. for transaction fees).
|
|
160
|
+
**/
|
|
161
|
+
Deposited: AugmentedEvent<ApiType, [assetId: u32, who: AccountId32, amount: u128], {
|
|
162
|
+
assetId: u32;
|
|
163
|
+
who: AccountId32;
|
|
164
|
+
amount: u128;
|
|
165
|
+
}>;
|
|
166
|
+
/**
|
|
167
|
+
* An asset class was destroyed.
|
|
168
|
+
**/
|
|
169
|
+
Destroyed: AugmentedEvent<ApiType, [assetId: u32], {
|
|
170
|
+
assetId: u32;
|
|
171
|
+
}>;
|
|
172
|
+
/**
|
|
173
|
+
* An asset class is in the process of being destroyed.
|
|
174
|
+
**/
|
|
175
|
+
DestructionStarted: AugmentedEvent<ApiType, [assetId: u32], {
|
|
176
|
+
assetId: u32;
|
|
177
|
+
}>;
|
|
178
|
+
/**
|
|
179
|
+
* Some asset class was force-created.
|
|
180
|
+
**/
|
|
181
|
+
ForceCreated: AugmentedEvent<ApiType, [assetId: u32, owner: AccountId32], {
|
|
182
|
+
assetId: u32;
|
|
183
|
+
owner: AccountId32;
|
|
184
|
+
}>;
|
|
185
|
+
/**
|
|
186
|
+
* Some account `who` was frozen.
|
|
187
|
+
**/
|
|
188
|
+
Frozen: AugmentedEvent<ApiType, [assetId: u32, who: AccountId32], {
|
|
189
|
+
assetId: u32;
|
|
190
|
+
who: AccountId32;
|
|
191
|
+
}>;
|
|
192
|
+
/**
|
|
193
|
+
* Some assets were issued.
|
|
194
|
+
**/
|
|
195
|
+
Issued: AugmentedEvent<ApiType, [assetId: u32, owner: AccountId32, amount: u128], {
|
|
196
|
+
assetId: u32;
|
|
197
|
+
owner: AccountId32;
|
|
198
|
+
amount: u128;
|
|
199
|
+
}>;
|
|
200
|
+
/**
|
|
201
|
+
* Metadata has been cleared for an asset.
|
|
202
|
+
**/
|
|
203
|
+
MetadataCleared: AugmentedEvent<ApiType, [assetId: u32], {
|
|
204
|
+
assetId: u32;
|
|
205
|
+
}>;
|
|
206
|
+
/**
|
|
207
|
+
* New metadata has been set for an asset.
|
|
208
|
+
**/
|
|
209
|
+
MetadataSet: AugmentedEvent<ApiType, [assetId: u32, name: Bytes, symbol_: Bytes, decimals: u8, isFrozen: bool], {
|
|
210
|
+
assetId: u32;
|
|
211
|
+
name: Bytes;
|
|
212
|
+
symbol: Bytes;
|
|
213
|
+
decimals: u8;
|
|
214
|
+
isFrozen: bool;
|
|
215
|
+
}>;
|
|
216
|
+
/**
|
|
217
|
+
* The owner changed.
|
|
218
|
+
**/
|
|
219
|
+
OwnerChanged: AugmentedEvent<ApiType, [assetId: u32, owner: AccountId32], {
|
|
220
|
+
assetId: u32;
|
|
221
|
+
owner: AccountId32;
|
|
222
|
+
}>;
|
|
223
|
+
/**
|
|
224
|
+
* The management team changed.
|
|
225
|
+
**/
|
|
226
|
+
TeamChanged: AugmentedEvent<ApiType, [assetId: u32, issuer: AccountId32, admin: AccountId32, freezer: AccountId32], {
|
|
227
|
+
assetId: u32;
|
|
228
|
+
issuer: AccountId32;
|
|
229
|
+
admin: AccountId32;
|
|
230
|
+
freezer: AccountId32;
|
|
231
|
+
}>;
|
|
232
|
+
/**
|
|
233
|
+
* Some account `who` was thawed.
|
|
234
|
+
**/
|
|
235
|
+
Thawed: AugmentedEvent<ApiType, [assetId: u32, who: AccountId32], {
|
|
236
|
+
assetId: u32;
|
|
237
|
+
who: AccountId32;
|
|
238
|
+
}>;
|
|
239
|
+
/**
|
|
240
|
+
* Some account `who` was created with a deposit from `depositor`.
|
|
241
|
+
**/
|
|
242
|
+
Touched: AugmentedEvent<ApiType, [assetId: u32, who: AccountId32, depositor: AccountId32], {
|
|
243
|
+
assetId: u32;
|
|
244
|
+
who: AccountId32;
|
|
245
|
+
depositor: AccountId32;
|
|
246
|
+
}>;
|
|
247
|
+
/**
|
|
248
|
+
* Some assets were transferred.
|
|
249
|
+
**/
|
|
250
|
+
Transferred: AugmentedEvent<ApiType, [assetId: u32, from: AccountId32, to: AccountId32, amount: u128], {
|
|
251
|
+
assetId: u32;
|
|
252
|
+
from: AccountId32;
|
|
253
|
+
to: AccountId32;
|
|
254
|
+
amount: u128;
|
|
255
|
+
}>;
|
|
256
|
+
/**
|
|
257
|
+
* An `amount` was transferred in its entirety from `owner` to `destination` by
|
|
258
|
+
* the approved `delegate`.
|
|
259
|
+
**/
|
|
260
|
+
TransferredApproved: AugmentedEvent<ApiType, [assetId: u32, owner: AccountId32, delegate: AccountId32, destination: AccountId32, amount: u128], {
|
|
261
|
+
assetId: u32;
|
|
262
|
+
owner: AccountId32;
|
|
263
|
+
delegate: AccountId32;
|
|
264
|
+
destination: AccountId32;
|
|
265
|
+
amount: u128;
|
|
266
|
+
}>;
|
|
267
|
+
/**
|
|
268
|
+
* Some assets were withdrawn from the account (e.g. for transaction fees).
|
|
269
|
+
**/
|
|
270
|
+
Withdrawn: AugmentedEvent<ApiType, [assetId: u32, who: AccountId32, amount: u128], {
|
|
271
|
+
assetId: u32;
|
|
272
|
+
who: AccountId32;
|
|
273
|
+
amount: u128;
|
|
274
|
+
}>;
|
|
275
|
+
/**
|
|
276
|
+
* Generic event
|
|
277
|
+
**/
|
|
278
|
+
[key: string]: AugmentedEvent<ApiType>;
|
|
279
|
+
};
|
|
280
|
+
assetTxPayment: {
|
|
281
|
+
/**
|
|
282
|
+
* A swap of the refund in native currency back to asset failed.
|
|
283
|
+
**/
|
|
284
|
+
AssetRefundFailed: AugmentedEvent<ApiType, [nativeAmountKept: u128], {
|
|
285
|
+
nativeAmountKept: u128;
|
|
286
|
+
}>;
|
|
287
|
+
/**
|
|
288
|
+
* A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,
|
|
289
|
+
* has been paid by `who` in an asset `asset_id`.
|
|
290
|
+
**/
|
|
291
|
+
AssetTxFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128, assetId: StagingXcmV4Location], {
|
|
292
|
+
who: AccountId32;
|
|
293
|
+
actualFee: u128;
|
|
294
|
+
tip: u128;
|
|
295
|
+
assetId: StagingXcmV4Location;
|
|
296
|
+
}>;
|
|
297
|
+
/**
|
|
298
|
+
* Generic event
|
|
299
|
+
**/
|
|
300
|
+
[key: string]: AugmentedEvent<ApiType>;
|
|
301
|
+
};
|
|
302
|
+
balances: {
|
|
303
|
+
/**
|
|
304
|
+
* A balance was set by root.
|
|
305
|
+
**/
|
|
306
|
+
BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128], {
|
|
307
|
+
who: AccountId32;
|
|
308
|
+
free: u128;
|
|
309
|
+
}>;
|
|
310
|
+
/**
|
|
311
|
+
* Some amount was burned from an account.
|
|
312
|
+
**/
|
|
313
|
+
Burned: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
314
|
+
who: AccountId32;
|
|
315
|
+
amount: u128;
|
|
316
|
+
}>;
|
|
317
|
+
/**
|
|
318
|
+
* Some amount was deposited (e.g. for transaction fees).
|
|
319
|
+
**/
|
|
320
|
+
Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
321
|
+
who: AccountId32;
|
|
322
|
+
amount: u128;
|
|
323
|
+
}>;
|
|
324
|
+
/**
|
|
325
|
+
* An account was removed whose balance was non-zero but below ExistentialDeposit,
|
|
326
|
+
* resulting in an outright loss.
|
|
327
|
+
**/
|
|
328
|
+
DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], {
|
|
329
|
+
account: AccountId32;
|
|
330
|
+
amount: u128;
|
|
331
|
+
}>;
|
|
332
|
+
/**
|
|
333
|
+
* An account was created with some free balance.
|
|
334
|
+
**/
|
|
335
|
+
Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], {
|
|
336
|
+
account: AccountId32;
|
|
337
|
+
freeBalance: u128;
|
|
338
|
+
}>;
|
|
339
|
+
/**
|
|
340
|
+
* Some balance was frozen.
|
|
341
|
+
**/
|
|
342
|
+
Frozen: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
343
|
+
who: AccountId32;
|
|
344
|
+
amount: u128;
|
|
345
|
+
}>;
|
|
346
|
+
/**
|
|
347
|
+
* Total issuance was increased by `amount`, creating a credit to be balanced.
|
|
348
|
+
**/
|
|
349
|
+
Issued: AugmentedEvent<ApiType, [amount: u128], {
|
|
350
|
+
amount: u128;
|
|
351
|
+
}>;
|
|
352
|
+
/**
|
|
353
|
+
* Some balance was locked.
|
|
354
|
+
**/
|
|
355
|
+
Locked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
356
|
+
who: AccountId32;
|
|
357
|
+
amount: u128;
|
|
358
|
+
}>;
|
|
359
|
+
/**
|
|
360
|
+
* Some amount was minted into an account.
|
|
361
|
+
**/
|
|
362
|
+
Minted: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
363
|
+
who: AccountId32;
|
|
364
|
+
amount: u128;
|
|
365
|
+
}>;
|
|
366
|
+
/**
|
|
367
|
+
* Total issuance was decreased by `amount`, creating a debt to be balanced.
|
|
368
|
+
**/
|
|
369
|
+
Rescinded: AugmentedEvent<ApiType, [amount: u128], {
|
|
370
|
+
amount: u128;
|
|
371
|
+
}>;
|
|
372
|
+
/**
|
|
373
|
+
* Some balance was reserved (moved from free to reserved).
|
|
374
|
+
**/
|
|
375
|
+
Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
376
|
+
who: AccountId32;
|
|
377
|
+
amount: u128;
|
|
378
|
+
}>;
|
|
379
|
+
/**
|
|
380
|
+
* Some balance was moved from the reserve of the first account to the second account.
|
|
381
|
+
* Final argument indicates the destination balance type.
|
|
382
|
+
**/
|
|
383
|
+
ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], {
|
|
384
|
+
from: AccountId32;
|
|
385
|
+
to: AccountId32;
|
|
386
|
+
amount: u128;
|
|
387
|
+
destinationStatus: FrameSupportTokensMiscBalanceStatus;
|
|
388
|
+
}>;
|
|
389
|
+
/**
|
|
390
|
+
* Some amount was restored into an account.
|
|
391
|
+
**/
|
|
392
|
+
Restored: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
393
|
+
who: AccountId32;
|
|
394
|
+
amount: u128;
|
|
395
|
+
}>;
|
|
396
|
+
/**
|
|
397
|
+
* Some amount was removed from the account (e.g. for misbehavior).
|
|
398
|
+
**/
|
|
399
|
+
Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
400
|
+
who: AccountId32;
|
|
401
|
+
amount: u128;
|
|
402
|
+
}>;
|
|
403
|
+
/**
|
|
404
|
+
* Some amount was suspended from an account (it can be restored later).
|
|
405
|
+
**/
|
|
406
|
+
Suspended: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
407
|
+
who: AccountId32;
|
|
408
|
+
amount: u128;
|
|
409
|
+
}>;
|
|
410
|
+
/**
|
|
411
|
+
* Some balance was thawed.
|
|
412
|
+
**/
|
|
413
|
+
Thawed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
414
|
+
who: AccountId32;
|
|
415
|
+
amount: u128;
|
|
416
|
+
}>;
|
|
417
|
+
/**
|
|
418
|
+
* The `TotalIssuance` was forcefully changed.
|
|
419
|
+
**/
|
|
420
|
+
TotalIssuanceForced: AugmentedEvent<ApiType, [old: u128, new_: u128], {
|
|
421
|
+
old: u128;
|
|
422
|
+
new_: u128;
|
|
423
|
+
}>;
|
|
424
|
+
/**
|
|
425
|
+
* Transfer succeeded.
|
|
426
|
+
**/
|
|
427
|
+
Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], {
|
|
428
|
+
from: AccountId32;
|
|
429
|
+
to: AccountId32;
|
|
430
|
+
amount: u128;
|
|
431
|
+
}>;
|
|
432
|
+
/**
|
|
433
|
+
* Some balance was unlocked.
|
|
434
|
+
**/
|
|
435
|
+
Unlocked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
436
|
+
who: AccountId32;
|
|
437
|
+
amount: u128;
|
|
438
|
+
}>;
|
|
439
|
+
/**
|
|
440
|
+
* Some balance was unreserved (moved from reserved to free).
|
|
441
|
+
**/
|
|
442
|
+
Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
443
|
+
who: AccountId32;
|
|
444
|
+
amount: u128;
|
|
445
|
+
}>;
|
|
446
|
+
/**
|
|
447
|
+
* An account was upgraded.
|
|
448
|
+
**/
|
|
449
|
+
Upgraded: AugmentedEvent<ApiType, [who: AccountId32], {
|
|
450
|
+
who: AccountId32;
|
|
451
|
+
}>;
|
|
452
|
+
/**
|
|
453
|
+
* Some amount was withdrawn from the account (e.g. for transaction fees).
|
|
454
|
+
**/
|
|
455
|
+
Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
456
|
+
who: AccountId32;
|
|
457
|
+
amount: u128;
|
|
458
|
+
}>;
|
|
459
|
+
/**
|
|
460
|
+
* Generic event
|
|
461
|
+
**/
|
|
462
|
+
[key: string]: AugmentedEvent<ApiType>;
|
|
463
|
+
};
|
|
464
|
+
collatorSelection: {
|
|
465
|
+
/**
|
|
466
|
+
* A new candidate joined.
|
|
467
|
+
**/
|
|
468
|
+
CandidateAdded: AugmentedEvent<ApiType, [accountId: AccountId32, deposit: u128], {
|
|
469
|
+
accountId: AccountId32;
|
|
470
|
+
deposit: u128;
|
|
471
|
+
}>;
|
|
472
|
+
/**
|
|
473
|
+
* Bond of a candidate updated.
|
|
474
|
+
**/
|
|
475
|
+
CandidateBondUpdated: AugmentedEvent<ApiType, [accountId: AccountId32, deposit: u128], {
|
|
476
|
+
accountId: AccountId32;
|
|
477
|
+
deposit: u128;
|
|
478
|
+
}>;
|
|
479
|
+
/**
|
|
480
|
+
* A candidate was removed.
|
|
481
|
+
**/
|
|
482
|
+
CandidateRemoved: AugmentedEvent<ApiType, [accountId: AccountId32], {
|
|
483
|
+
accountId: AccountId32;
|
|
484
|
+
}>;
|
|
485
|
+
/**
|
|
486
|
+
* An account was replaced in the candidate list by another one.
|
|
487
|
+
**/
|
|
488
|
+
CandidateReplaced: AugmentedEvent<ApiType, [old: AccountId32, new_: AccountId32, deposit: u128], {
|
|
489
|
+
old: AccountId32;
|
|
490
|
+
new_: AccountId32;
|
|
491
|
+
deposit: u128;
|
|
492
|
+
}>;
|
|
493
|
+
/**
|
|
494
|
+
* An account was unable to be added to the Invulnerables because they did not have keys
|
|
495
|
+
* registered. Other Invulnerables may have been set.
|
|
496
|
+
**/
|
|
497
|
+
InvalidInvulnerableSkipped: AugmentedEvent<ApiType, [accountId: AccountId32], {
|
|
498
|
+
accountId: AccountId32;
|
|
499
|
+
}>;
|
|
500
|
+
/**
|
|
501
|
+
* A new Invulnerable was added.
|
|
502
|
+
**/
|
|
503
|
+
InvulnerableAdded: AugmentedEvent<ApiType, [accountId: AccountId32], {
|
|
504
|
+
accountId: AccountId32;
|
|
505
|
+
}>;
|
|
506
|
+
/**
|
|
507
|
+
* An Invulnerable was removed.
|
|
508
|
+
**/
|
|
509
|
+
InvulnerableRemoved: AugmentedEvent<ApiType, [accountId: AccountId32], {
|
|
510
|
+
accountId: AccountId32;
|
|
511
|
+
}>;
|
|
512
|
+
/**
|
|
513
|
+
* The candidacy bond was set.
|
|
514
|
+
**/
|
|
515
|
+
NewCandidacyBond: AugmentedEvent<ApiType, [bondAmount: u128], {
|
|
516
|
+
bondAmount: u128;
|
|
517
|
+
}>;
|
|
518
|
+
/**
|
|
519
|
+
* The number of desired candidates was set.
|
|
520
|
+
**/
|
|
521
|
+
NewDesiredCandidates: AugmentedEvent<ApiType, [desiredCandidates: u32], {
|
|
522
|
+
desiredCandidates: u32;
|
|
523
|
+
}>;
|
|
524
|
+
/**
|
|
525
|
+
* New Invulnerables were set.
|
|
526
|
+
**/
|
|
527
|
+
NewInvulnerables: AugmentedEvent<ApiType, [invulnerables: Vec<AccountId32>], {
|
|
528
|
+
invulnerables: Vec<AccountId32>;
|
|
529
|
+
}>;
|
|
530
|
+
/**
|
|
531
|
+
* Generic event
|
|
532
|
+
**/
|
|
533
|
+
[key: string]: AugmentedEvent<ApiType>;
|
|
534
|
+
};
|
|
535
|
+
cumulusXcm: {
|
|
536
|
+
/**
|
|
537
|
+
* Downward message executed with the given outcome.
|
|
538
|
+
* \[ id, outcome \]
|
|
539
|
+
**/
|
|
540
|
+
ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, StagingXcmV4TraitsOutcome]>;
|
|
541
|
+
/**
|
|
542
|
+
* Downward message is invalid XCM.
|
|
543
|
+
* \[ id \]
|
|
544
|
+
**/
|
|
545
|
+
InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;
|
|
546
|
+
/**
|
|
547
|
+
* Downward message is unsupported version of XCM.
|
|
548
|
+
* \[ id \]
|
|
549
|
+
**/
|
|
550
|
+
UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;
|
|
551
|
+
/**
|
|
552
|
+
* Generic event
|
|
553
|
+
**/
|
|
554
|
+
[key: string]: AugmentedEvent<ApiType>;
|
|
555
|
+
};
|
|
556
|
+
foreignAssets: {
|
|
557
|
+
/**
|
|
558
|
+
* Accounts were destroyed for given asset.
|
|
559
|
+
**/
|
|
560
|
+
AccountsDestroyed: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location, accountsDestroyed: u32, accountsRemaining: u32], {
|
|
561
|
+
assetId: StagingXcmV4Location;
|
|
562
|
+
accountsDestroyed: u32;
|
|
563
|
+
accountsRemaining: u32;
|
|
564
|
+
}>;
|
|
565
|
+
/**
|
|
566
|
+
* An approval for account `delegate` was cancelled by `owner`.
|
|
567
|
+
**/
|
|
568
|
+
ApprovalCancelled: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location, owner: AccountId32, delegate: AccountId32], {
|
|
569
|
+
assetId: StagingXcmV4Location;
|
|
570
|
+
owner: AccountId32;
|
|
571
|
+
delegate: AccountId32;
|
|
572
|
+
}>;
|
|
573
|
+
/**
|
|
574
|
+
* Approvals were destroyed for given asset.
|
|
575
|
+
**/
|
|
576
|
+
ApprovalsDestroyed: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location, approvalsDestroyed: u32, approvalsRemaining: u32], {
|
|
577
|
+
assetId: StagingXcmV4Location;
|
|
578
|
+
approvalsDestroyed: u32;
|
|
579
|
+
approvalsRemaining: u32;
|
|
580
|
+
}>;
|
|
581
|
+
/**
|
|
582
|
+
* (Additional) funds have been approved for transfer to a destination account.
|
|
583
|
+
**/
|
|
584
|
+
ApprovedTransfer: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location, source: AccountId32, delegate: AccountId32, amount: u128], {
|
|
585
|
+
assetId: StagingXcmV4Location;
|
|
586
|
+
source: AccountId32;
|
|
587
|
+
delegate: AccountId32;
|
|
588
|
+
amount: u128;
|
|
589
|
+
}>;
|
|
590
|
+
/**
|
|
591
|
+
* Some asset `asset_id` was frozen.
|
|
592
|
+
**/
|
|
593
|
+
AssetFrozen: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location], {
|
|
594
|
+
assetId: StagingXcmV4Location;
|
|
595
|
+
}>;
|
|
596
|
+
/**
|
|
597
|
+
* The min_balance of an asset has been updated by the asset owner.
|
|
598
|
+
**/
|
|
599
|
+
AssetMinBalanceChanged: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location, newMinBalance: u128], {
|
|
600
|
+
assetId: StagingXcmV4Location;
|
|
601
|
+
newMinBalance: u128;
|
|
602
|
+
}>;
|
|
603
|
+
/**
|
|
604
|
+
* An asset has had its attributes changed by the `Force` origin.
|
|
605
|
+
**/
|
|
606
|
+
AssetStatusChanged: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location], {
|
|
607
|
+
assetId: StagingXcmV4Location;
|
|
608
|
+
}>;
|
|
609
|
+
/**
|
|
610
|
+
* Some asset `asset_id` was thawed.
|
|
611
|
+
**/
|
|
612
|
+
AssetThawed: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location], {
|
|
613
|
+
assetId: StagingXcmV4Location;
|
|
614
|
+
}>;
|
|
615
|
+
/**
|
|
616
|
+
* Some account `who` was blocked.
|
|
617
|
+
**/
|
|
618
|
+
Blocked: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location, who: AccountId32], {
|
|
619
|
+
assetId: StagingXcmV4Location;
|
|
620
|
+
who: AccountId32;
|
|
621
|
+
}>;
|
|
622
|
+
/**
|
|
623
|
+
* Some assets were destroyed.
|
|
624
|
+
**/
|
|
625
|
+
Burned: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location, owner: AccountId32, balance: u128], {
|
|
626
|
+
assetId: StagingXcmV4Location;
|
|
627
|
+
owner: AccountId32;
|
|
628
|
+
balance: u128;
|
|
629
|
+
}>;
|
|
630
|
+
/**
|
|
631
|
+
* Some asset class was created.
|
|
632
|
+
**/
|
|
633
|
+
Created: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location, creator: AccountId32, owner: AccountId32], {
|
|
634
|
+
assetId: StagingXcmV4Location;
|
|
635
|
+
creator: AccountId32;
|
|
636
|
+
owner: AccountId32;
|
|
637
|
+
}>;
|
|
638
|
+
/**
|
|
639
|
+
* Some assets were deposited (e.g. for transaction fees).
|
|
640
|
+
**/
|
|
641
|
+
Deposited: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location, who: AccountId32, amount: u128], {
|
|
642
|
+
assetId: StagingXcmV4Location;
|
|
643
|
+
who: AccountId32;
|
|
644
|
+
amount: u128;
|
|
645
|
+
}>;
|
|
646
|
+
/**
|
|
647
|
+
* An asset class was destroyed.
|
|
648
|
+
**/
|
|
649
|
+
Destroyed: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location], {
|
|
650
|
+
assetId: StagingXcmV4Location;
|
|
651
|
+
}>;
|
|
652
|
+
/**
|
|
653
|
+
* An asset class is in the process of being destroyed.
|
|
654
|
+
**/
|
|
655
|
+
DestructionStarted: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location], {
|
|
656
|
+
assetId: StagingXcmV4Location;
|
|
657
|
+
}>;
|
|
658
|
+
/**
|
|
659
|
+
* Some asset class was force-created.
|
|
660
|
+
**/
|
|
661
|
+
ForceCreated: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location, owner: AccountId32], {
|
|
662
|
+
assetId: StagingXcmV4Location;
|
|
663
|
+
owner: AccountId32;
|
|
664
|
+
}>;
|
|
665
|
+
/**
|
|
666
|
+
* Some account `who` was frozen.
|
|
667
|
+
**/
|
|
668
|
+
Frozen: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location, who: AccountId32], {
|
|
669
|
+
assetId: StagingXcmV4Location;
|
|
670
|
+
who: AccountId32;
|
|
671
|
+
}>;
|
|
672
|
+
/**
|
|
673
|
+
* Some assets were issued.
|
|
674
|
+
**/
|
|
675
|
+
Issued: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location, owner: AccountId32, amount: u128], {
|
|
676
|
+
assetId: StagingXcmV4Location;
|
|
677
|
+
owner: AccountId32;
|
|
678
|
+
amount: u128;
|
|
679
|
+
}>;
|
|
680
|
+
/**
|
|
681
|
+
* Metadata has been cleared for an asset.
|
|
682
|
+
**/
|
|
683
|
+
MetadataCleared: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location], {
|
|
684
|
+
assetId: StagingXcmV4Location;
|
|
685
|
+
}>;
|
|
686
|
+
/**
|
|
687
|
+
* New metadata has been set for an asset.
|
|
688
|
+
**/
|
|
689
|
+
MetadataSet: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location, name: Bytes, symbol_: Bytes, decimals: u8, isFrozen: bool], {
|
|
690
|
+
assetId: StagingXcmV4Location;
|
|
691
|
+
name: Bytes;
|
|
692
|
+
symbol: Bytes;
|
|
693
|
+
decimals: u8;
|
|
694
|
+
isFrozen: bool;
|
|
695
|
+
}>;
|
|
696
|
+
/**
|
|
697
|
+
* The owner changed.
|
|
698
|
+
**/
|
|
699
|
+
OwnerChanged: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location, owner: AccountId32], {
|
|
700
|
+
assetId: StagingXcmV4Location;
|
|
701
|
+
owner: AccountId32;
|
|
702
|
+
}>;
|
|
703
|
+
/**
|
|
704
|
+
* The management team changed.
|
|
705
|
+
**/
|
|
706
|
+
TeamChanged: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location, issuer: AccountId32, admin: AccountId32, freezer: AccountId32], {
|
|
707
|
+
assetId: StagingXcmV4Location;
|
|
708
|
+
issuer: AccountId32;
|
|
709
|
+
admin: AccountId32;
|
|
710
|
+
freezer: AccountId32;
|
|
711
|
+
}>;
|
|
712
|
+
/**
|
|
713
|
+
* Some account `who` was thawed.
|
|
714
|
+
**/
|
|
715
|
+
Thawed: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location, who: AccountId32], {
|
|
716
|
+
assetId: StagingXcmV4Location;
|
|
717
|
+
who: AccountId32;
|
|
718
|
+
}>;
|
|
719
|
+
/**
|
|
720
|
+
* Some account `who` was created with a deposit from `depositor`.
|
|
721
|
+
**/
|
|
722
|
+
Touched: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location, who: AccountId32, depositor: AccountId32], {
|
|
723
|
+
assetId: StagingXcmV4Location;
|
|
724
|
+
who: AccountId32;
|
|
725
|
+
depositor: AccountId32;
|
|
726
|
+
}>;
|
|
727
|
+
/**
|
|
728
|
+
* Some assets were transferred.
|
|
729
|
+
**/
|
|
730
|
+
Transferred: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location, from: AccountId32, to: AccountId32, amount: u128], {
|
|
731
|
+
assetId: StagingXcmV4Location;
|
|
732
|
+
from: AccountId32;
|
|
733
|
+
to: AccountId32;
|
|
734
|
+
amount: u128;
|
|
735
|
+
}>;
|
|
736
|
+
/**
|
|
737
|
+
* An `amount` was transferred in its entirety from `owner` to `destination` by
|
|
738
|
+
* the approved `delegate`.
|
|
739
|
+
**/
|
|
740
|
+
TransferredApproved: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location, owner: AccountId32, delegate: AccountId32, destination: AccountId32, amount: u128], {
|
|
741
|
+
assetId: StagingXcmV4Location;
|
|
742
|
+
owner: AccountId32;
|
|
743
|
+
delegate: AccountId32;
|
|
744
|
+
destination: AccountId32;
|
|
745
|
+
amount: u128;
|
|
746
|
+
}>;
|
|
747
|
+
/**
|
|
748
|
+
* Some assets were withdrawn from the account (e.g. for transaction fees).
|
|
749
|
+
**/
|
|
750
|
+
Withdrawn: AugmentedEvent<ApiType, [assetId: StagingXcmV4Location, who: AccountId32, amount: u128], {
|
|
751
|
+
assetId: StagingXcmV4Location;
|
|
752
|
+
who: AccountId32;
|
|
753
|
+
amount: u128;
|
|
754
|
+
}>;
|
|
755
|
+
/**
|
|
756
|
+
* Generic event
|
|
757
|
+
**/
|
|
758
|
+
[key: string]: AugmentedEvent<ApiType>;
|
|
759
|
+
};
|
|
760
|
+
messageQueue: {
|
|
761
|
+
/**
|
|
762
|
+
* Message placed in overweight queue.
|
|
763
|
+
**/
|
|
764
|
+
OverweightEnqueued: AugmentedEvent<ApiType, [id: U8aFixed, origin: CumulusPrimitivesCoreAggregateMessageOrigin, pageIndex: u32, messageIndex: u32], {
|
|
765
|
+
id: U8aFixed;
|
|
766
|
+
origin: CumulusPrimitivesCoreAggregateMessageOrigin;
|
|
767
|
+
pageIndex: u32;
|
|
768
|
+
messageIndex: u32;
|
|
769
|
+
}>;
|
|
770
|
+
/**
|
|
771
|
+
* This page was reaped.
|
|
772
|
+
**/
|
|
773
|
+
PageReaped: AugmentedEvent<ApiType, [origin: CumulusPrimitivesCoreAggregateMessageOrigin, index: u32], {
|
|
774
|
+
origin: CumulusPrimitivesCoreAggregateMessageOrigin;
|
|
775
|
+
index: u32;
|
|
776
|
+
}>;
|
|
777
|
+
/**
|
|
778
|
+
* Message is processed.
|
|
779
|
+
**/
|
|
780
|
+
Processed: AugmentedEvent<ApiType, [id: H256, origin: CumulusPrimitivesCoreAggregateMessageOrigin, weightUsed: SpWeightsWeightV2Weight, success: bool], {
|
|
781
|
+
id: H256;
|
|
782
|
+
origin: CumulusPrimitivesCoreAggregateMessageOrigin;
|
|
783
|
+
weightUsed: SpWeightsWeightV2Weight;
|
|
784
|
+
success: bool;
|
|
785
|
+
}>;
|
|
786
|
+
/**
|
|
787
|
+
* Message discarded due to an error in the `MessageProcessor` (usually a format error).
|
|
788
|
+
**/
|
|
789
|
+
ProcessingFailed: AugmentedEvent<ApiType, [id: H256, origin: CumulusPrimitivesCoreAggregateMessageOrigin, error: FrameSupportMessagesProcessMessageError], {
|
|
790
|
+
id: H256;
|
|
791
|
+
origin: CumulusPrimitivesCoreAggregateMessageOrigin;
|
|
792
|
+
error: FrameSupportMessagesProcessMessageError;
|
|
793
|
+
}>;
|
|
794
|
+
/**
|
|
795
|
+
* Generic event
|
|
796
|
+
**/
|
|
797
|
+
[key: string]: AugmentedEvent<ApiType>;
|
|
798
|
+
};
|
|
799
|
+
multisig: {
|
|
800
|
+
/**
|
|
801
|
+
* A multisig operation has been approved by someone.
|
|
802
|
+
**/
|
|
803
|
+
MultisigApproval: AugmentedEvent<ApiType, [approving: AccountId32, timepoint: PalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed], {
|
|
804
|
+
approving: AccountId32;
|
|
805
|
+
timepoint: PalletMultisigTimepoint;
|
|
806
|
+
multisig: AccountId32;
|
|
807
|
+
callHash: U8aFixed;
|
|
808
|
+
}>;
|
|
809
|
+
/**
|
|
810
|
+
* A multisig operation has been cancelled.
|
|
811
|
+
**/
|
|
812
|
+
MultisigCancelled: AugmentedEvent<ApiType, [cancelling: AccountId32, timepoint: PalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed], {
|
|
813
|
+
cancelling: AccountId32;
|
|
814
|
+
timepoint: PalletMultisigTimepoint;
|
|
815
|
+
multisig: AccountId32;
|
|
816
|
+
callHash: U8aFixed;
|
|
817
|
+
}>;
|
|
818
|
+
/**
|
|
819
|
+
* A multisig operation has been executed.
|
|
820
|
+
**/
|
|
821
|
+
MultisigExecuted: AugmentedEvent<ApiType, [approving: AccountId32, timepoint: PalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed, result: Result<Null, SpRuntimeDispatchError>], {
|
|
822
|
+
approving: AccountId32;
|
|
823
|
+
timepoint: PalletMultisigTimepoint;
|
|
824
|
+
multisig: AccountId32;
|
|
825
|
+
callHash: U8aFixed;
|
|
826
|
+
result: Result<Null, SpRuntimeDispatchError>;
|
|
827
|
+
}>;
|
|
828
|
+
/**
|
|
829
|
+
* A new multisig operation has begun.
|
|
830
|
+
**/
|
|
831
|
+
NewMultisig: AugmentedEvent<ApiType, [approving: AccountId32, multisig: AccountId32, callHash: U8aFixed], {
|
|
832
|
+
approving: AccountId32;
|
|
833
|
+
multisig: AccountId32;
|
|
834
|
+
callHash: U8aFixed;
|
|
835
|
+
}>;
|
|
836
|
+
/**
|
|
837
|
+
* Generic event
|
|
838
|
+
**/
|
|
839
|
+
[key: string]: AugmentedEvent<ApiType>;
|
|
840
|
+
};
|
|
841
|
+
nftFractionalization: {
|
|
842
|
+
/**
|
|
843
|
+
* An NFT was successfully fractionalized.
|
|
844
|
+
**/
|
|
845
|
+
NftFractionalized: AugmentedEvent<ApiType, [nftCollection: u32, nft: u32, fractions: u128, asset: u32, beneficiary: AccountId32], {
|
|
846
|
+
nftCollection: u32;
|
|
847
|
+
nft: u32;
|
|
848
|
+
fractions: u128;
|
|
849
|
+
asset: u32;
|
|
850
|
+
beneficiary: AccountId32;
|
|
851
|
+
}>;
|
|
852
|
+
/**
|
|
853
|
+
* An NFT was successfully returned back.
|
|
854
|
+
**/
|
|
855
|
+
NftUnified: AugmentedEvent<ApiType, [nftCollection: u32, nft: u32, asset: u32, beneficiary: AccountId32], {
|
|
856
|
+
nftCollection: u32;
|
|
857
|
+
nft: u32;
|
|
858
|
+
asset: u32;
|
|
859
|
+
beneficiary: AccountId32;
|
|
860
|
+
}>;
|
|
861
|
+
/**
|
|
862
|
+
* Generic event
|
|
863
|
+
**/
|
|
864
|
+
[key: string]: AugmentedEvent<ApiType>;
|
|
865
|
+
};
|
|
866
|
+
nfts: {
|
|
867
|
+
/**
|
|
868
|
+
* All approvals of an item got cancelled.
|
|
869
|
+
**/
|
|
870
|
+
AllApprovalsCancelled: AugmentedEvent<ApiType, [collection: u32, item: u32, owner: AccountId32], {
|
|
871
|
+
collection: u32;
|
|
872
|
+
item: u32;
|
|
873
|
+
owner: AccountId32;
|
|
874
|
+
}>;
|
|
875
|
+
/**
|
|
876
|
+
* An approval for a `delegate` account to transfer the `item` of an item
|
|
877
|
+
* `collection` was cancelled by its `owner`.
|
|
878
|
+
**/
|
|
879
|
+
ApprovalCancelled: AugmentedEvent<ApiType, [collection: u32, item: u32, owner: AccountId32, delegate: AccountId32], {
|
|
880
|
+
collection: u32;
|
|
881
|
+
item: u32;
|
|
882
|
+
owner: AccountId32;
|
|
883
|
+
delegate: AccountId32;
|
|
884
|
+
}>;
|
|
885
|
+
/**
|
|
886
|
+
* Attribute metadata has been cleared for a `collection` or `item`.
|
|
887
|
+
**/
|
|
888
|
+
AttributeCleared: AugmentedEvent<ApiType, [collection: u32, maybeItem: Option<u32>, key: Bytes, namespace: PalletNftsAttributeNamespace], {
|
|
889
|
+
collection: u32;
|
|
890
|
+
maybeItem: Option<u32>;
|
|
891
|
+
key: Bytes;
|
|
892
|
+
namespace: PalletNftsAttributeNamespace;
|
|
893
|
+
}>;
|
|
894
|
+
/**
|
|
895
|
+
* New attribute metadata has been set for a `collection` or `item`.
|
|
896
|
+
**/
|
|
897
|
+
AttributeSet: AugmentedEvent<ApiType, [collection: u32, maybeItem: Option<u32>, key: Bytes, value: Bytes, namespace: PalletNftsAttributeNamespace], {
|
|
898
|
+
collection: u32;
|
|
899
|
+
maybeItem: Option<u32>;
|
|
900
|
+
key: Bytes;
|
|
901
|
+
value: Bytes;
|
|
902
|
+
namespace: PalletNftsAttributeNamespace;
|
|
903
|
+
}>;
|
|
904
|
+
/**
|
|
905
|
+
* An `item` was destroyed.
|
|
906
|
+
**/
|
|
907
|
+
Burned: AugmentedEvent<ApiType, [collection: u32, item: u32, owner: AccountId32], {
|
|
908
|
+
collection: u32;
|
|
909
|
+
item: u32;
|
|
910
|
+
owner: AccountId32;
|
|
911
|
+
}>;
|
|
912
|
+
/**
|
|
913
|
+
* A `collection` has had its config changed by the `Force` origin.
|
|
914
|
+
**/
|
|
915
|
+
CollectionConfigChanged: AugmentedEvent<ApiType, [collection: u32], {
|
|
916
|
+
collection: u32;
|
|
917
|
+
}>;
|
|
918
|
+
/**
|
|
919
|
+
* Some `collection` was locked.
|
|
920
|
+
**/
|
|
921
|
+
CollectionLocked: AugmentedEvent<ApiType, [collection: u32], {
|
|
922
|
+
collection: u32;
|
|
923
|
+
}>;
|
|
924
|
+
/**
|
|
925
|
+
* Max supply has been set for a collection.
|
|
926
|
+
**/
|
|
927
|
+
CollectionMaxSupplySet: AugmentedEvent<ApiType, [collection: u32, maxSupply: u32], {
|
|
928
|
+
collection: u32;
|
|
929
|
+
maxSupply: u32;
|
|
930
|
+
}>;
|
|
931
|
+
/**
|
|
932
|
+
* Metadata has been cleared for a `collection`.
|
|
933
|
+
**/
|
|
934
|
+
CollectionMetadataCleared: AugmentedEvent<ApiType, [collection: u32], {
|
|
935
|
+
collection: u32;
|
|
936
|
+
}>;
|
|
937
|
+
/**
|
|
938
|
+
* New metadata has been set for a `collection`.
|
|
939
|
+
**/
|
|
940
|
+
CollectionMetadataSet: AugmentedEvent<ApiType, [collection: u32, data: Bytes], {
|
|
941
|
+
collection: u32;
|
|
942
|
+
data: Bytes;
|
|
943
|
+
}>;
|
|
944
|
+
/**
|
|
945
|
+
* Mint settings for a collection had changed.
|
|
946
|
+
**/
|
|
947
|
+
CollectionMintSettingsUpdated: AugmentedEvent<ApiType, [collection: u32], {
|
|
948
|
+
collection: u32;
|
|
949
|
+
}>;
|
|
950
|
+
/**
|
|
951
|
+
* A `collection` was created.
|
|
952
|
+
**/
|
|
953
|
+
Created: AugmentedEvent<ApiType, [collection: u32, creator: AccountId32, owner: AccountId32], {
|
|
954
|
+
collection: u32;
|
|
955
|
+
creator: AccountId32;
|
|
956
|
+
owner: AccountId32;
|
|
957
|
+
}>;
|
|
958
|
+
/**
|
|
959
|
+
* A `collection` was destroyed.
|
|
960
|
+
**/
|
|
961
|
+
Destroyed: AugmentedEvent<ApiType, [collection: u32], {
|
|
962
|
+
collection: u32;
|
|
963
|
+
}>;
|
|
964
|
+
/**
|
|
965
|
+
* A `collection` was force-created.
|
|
966
|
+
**/
|
|
967
|
+
ForceCreated: AugmentedEvent<ApiType, [collection: u32, owner: AccountId32], {
|
|
968
|
+
collection: u32;
|
|
969
|
+
owner: AccountId32;
|
|
970
|
+
}>;
|
|
971
|
+
/**
|
|
972
|
+
* An `item` was issued.
|
|
973
|
+
**/
|
|
974
|
+
Issued: AugmentedEvent<ApiType, [collection: u32, item: u32, owner: AccountId32], {
|
|
975
|
+
collection: u32;
|
|
976
|
+
item: u32;
|
|
977
|
+
owner: AccountId32;
|
|
978
|
+
}>;
|
|
979
|
+
/**
|
|
980
|
+
* A new approval to modify item attributes was added.
|
|
981
|
+
**/
|
|
982
|
+
ItemAttributesApprovalAdded: AugmentedEvent<ApiType, [collection: u32, item: u32, delegate: AccountId32], {
|
|
983
|
+
collection: u32;
|
|
984
|
+
item: u32;
|
|
985
|
+
delegate: AccountId32;
|
|
986
|
+
}>;
|
|
987
|
+
/**
|
|
988
|
+
* A new approval to modify item attributes was removed.
|
|
989
|
+
**/
|
|
990
|
+
ItemAttributesApprovalRemoved: AugmentedEvent<ApiType, [collection: u32, item: u32, delegate: AccountId32], {
|
|
991
|
+
collection: u32;
|
|
992
|
+
item: u32;
|
|
993
|
+
delegate: AccountId32;
|
|
994
|
+
}>;
|
|
995
|
+
/**
|
|
996
|
+
* An item was bought.
|
|
997
|
+
**/
|
|
998
|
+
ItemBought: AugmentedEvent<ApiType, [collection: u32, item: u32, price: u128, seller: AccountId32, buyer: AccountId32], {
|
|
999
|
+
collection: u32;
|
|
1000
|
+
item: u32;
|
|
1001
|
+
price: u128;
|
|
1002
|
+
seller: AccountId32;
|
|
1003
|
+
buyer: AccountId32;
|
|
1004
|
+
}>;
|
|
1005
|
+
/**
|
|
1006
|
+
* Metadata has been cleared for an item.
|
|
1007
|
+
**/
|
|
1008
|
+
ItemMetadataCleared: AugmentedEvent<ApiType, [collection: u32, item: u32], {
|
|
1009
|
+
collection: u32;
|
|
1010
|
+
item: u32;
|
|
1011
|
+
}>;
|
|
1012
|
+
/**
|
|
1013
|
+
* New metadata has been set for an item.
|
|
1014
|
+
**/
|
|
1015
|
+
ItemMetadataSet: AugmentedEvent<ApiType, [collection: u32, item: u32, data: Bytes], {
|
|
1016
|
+
collection: u32;
|
|
1017
|
+
item: u32;
|
|
1018
|
+
data: Bytes;
|
|
1019
|
+
}>;
|
|
1020
|
+
/**
|
|
1021
|
+
* The price for the item was removed.
|
|
1022
|
+
**/
|
|
1023
|
+
ItemPriceRemoved: AugmentedEvent<ApiType, [collection: u32, item: u32], {
|
|
1024
|
+
collection: u32;
|
|
1025
|
+
item: u32;
|
|
1026
|
+
}>;
|
|
1027
|
+
/**
|
|
1028
|
+
* The price was set for the item.
|
|
1029
|
+
**/
|
|
1030
|
+
ItemPriceSet: AugmentedEvent<ApiType, [collection: u32, item: u32, price: u128, whitelistedBuyer: Option<AccountId32>], {
|
|
1031
|
+
collection: u32;
|
|
1032
|
+
item: u32;
|
|
1033
|
+
price: u128;
|
|
1034
|
+
whitelistedBuyer: Option<AccountId32>;
|
|
1035
|
+
}>;
|
|
1036
|
+
/**
|
|
1037
|
+
* `item` metadata or attributes were locked.
|
|
1038
|
+
**/
|
|
1039
|
+
ItemPropertiesLocked: AugmentedEvent<ApiType, [collection: u32, item: u32, lockMetadata: bool, lockAttributes: bool], {
|
|
1040
|
+
collection: u32;
|
|
1041
|
+
item: u32;
|
|
1042
|
+
lockMetadata: bool;
|
|
1043
|
+
lockAttributes: bool;
|
|
1044
|
+
}>;
|
|
1045
|
+
/**
|
|
1046
|
+
* An `item` became non-transferable.
|
|
1047
|
+
**/
|
|
1048
|
+
ItemTransferLocked: AugmentedEvent<ApiType, [collection: u32, item: u32], {
|
|
1049
|
+
collection: u32;
|
|
1050
|
+
item: u32;
|
|
1051
|
+
}>;
|
|
1052
|
+
/**
|
|
1053
|
+
* An `item` became transferable.
|
|
1054
|
+
**/
|
|
1055
|
+
ItemTransferUnlocked: AugmentedEvent<ApiType, [collection: u32, item: u32], {
|
|
1056
|
+
collection: u32;
|
|
1057
|
+
item: u32;
|
|
1058
|
+
}>;
|
|
1059
|
+
/**
|
|
1060
|
+
* Event gets emitted when the `NextCollectionId` gets incremented.
|
|
1061
|
+
**/
|
|
1062
|
+
NextCollectionIdIncremented: AugmentedEvent<ApiType, [nextId: Option<u32>], {
|
|
1063
|
+
nextId: Option<u32>;
|
|
1064
|
+
}>;
|
|
1065
|
+
/**
|
|
1066
|
+
* The owner changed.
|
|
1067
|
+
**/
|
|
1068
|
+
OwnerChanged: AugmentedEvent<ApiType, [collection: u32, newOwner: AccountId32], {
|
|
1069
|
+
collection: u32;
|
|
1070
|
+
newOwner: AccountId32;
|
|
1071
|
+
}>;
|
|
1072
|
+
/**
|
|
1073
|
+
* Ownership acceptance has changed for an account.
|
|
1074
|
+
**/
|
|
1075
|
+
OwnershipAcceptanceChanged: AugmentedEvent<ApiType, [who: AccountId32, maybeCollection: Option<u32>], {
|
|
1076
|
+
who: AccountId32;
|
|
1077
|
+
maybeCollection: Option<u32>;
|
|
1078
|
+
}>;
|
|
1079
|
+
/**
|
|
1080
|
+
* A new attribute in the `Pallet` namespace was set for the `collection` or an `item`
|
|
1081
|
+
* within that `collection`.
|
|
1082
|
+
**/
|
|
1083
|
+
PalletAttributeSet: AugmentedEvent<ApiType, [collection: u32, item: Option<u32>, attribute: PalletNftsPalletAttributes, value: Bytes], {
|
|
1084
|
+
collection: u32;
|
|
1085
|
+
item: Option<u32>;
|
|
1086
|
+
attribute: PalletNftsPalletAttributes;
|
|
1087
|
+
value: Bytes;
|
|
1088
|
+
}>;
|
|
1089
|
+
/**
|
|
1090
|
+
* New attributes have been set for an `item` of the `collection`.
|
|
1091
|
+
**/
|
|
1092
|
+
PreSignedAttributesSet: AugmentedEvent<ApiType, [collection: u32, item: u32, namespace: PalletNftsAttributeNamespace], {
|
|
1093
|
+
collection: u32;
|
|
1094
|
+
item: u32;
|
|
1095
|
+
namespace: PalletNftsAttributeNamespace;
|
|
1096
|
+
}>;
|
|
1097
|
+
/**
|
|
1098
|
+
* The deposit for a set of `item`s within a `collection` has been updated.
|
|
1099
|
+
**/
|
|
1100
|
+
Redeposited: AugmentedEvent<ApiType, [collection: u32, successfulItems: Vec<u32>], {
|
|
1101
|
+
collection: u32;
|
|
1102
|
+
successfulItems: Vec<u32>;
|
|
1103
|
+
}>;
|
|
1104
|
+
/**
|
|
1105
|
+
* The swap was cancelled.
|
|
1106
|
+
**/
|
|
1107
|
+
SwapCancelled: AugmentedEvent<ApiType, [offeredCollection: u32, offeredItem: u32, desiredCollection: u32, desiredItem: Option<u32>, price: Option<PalletNftsPriceWithDirection>, deadline: u32], {
|
|
1108
|
+
offeredCollection: u32;
|
|
1109
|
+
offeredItem: u32;
|
|
1110
|
+
desiredCollection: u32;
|
|
1111
|
+
desiredItem: Option<u32>;
|
|
1112
|
+
price: Option<PalletNftsPriceWithDirection>;
|
|
1113
|
+
deadline: u32;
|
|
1114
|
+
}>;
|
|
1115
|
+
/**
|
|
1116
|
+
* The swap has been claimed.
|
|
1117
|
+
**/
|
|
1118
|
+
SwapClaimed: AugmentedEvent<ApiType, [sentCollection: u32, sentItem: u32, sentItemOwner: AccountId32, receivedCollection: u32, receivedItem: u32, receivedItemOwner: AccountId32, price: Option<PalletNftsPriceWithDirection>, deadline: u32], {
|
|
1119
|
+
sentCollection: u32;
|
|
1120
|
+
sentItem: u32;
|
|
1121
|
+
sentItemOwner: AccountId32;
|
|
1122
|
+
receivedCollection: u32;
|
|
1123
|
+
receivedItem: u32;
|
|
1124
|
+
receivedItemOwner: AccountId32;
|
|
1125
|
+
price: Option<PalletNftsPriceWithDirection>;
|
|
1126
|
+
deadline: u32;
|
|
1127
|
+
}>;
|
|
1128
|
+
/**
|
|
1129
|
+
* An `item` swap intent was created.
|
|
1130
|
+
**/
|
|
1131
|
+
SwapCreated: AugmentedEvent<ApiType, [offeredCollection: u32, offeredItem: u32, desiredCollection: u32, desiredItem: Option<u32>, price: Option<PalletNftsPriceWithDirection>, deadline: u32], {
|
|
1132
|
+
offeredCollection: u32;
|
|
1133
|
+
offeredItem: u32;
|
|
1134
|
+
desiredCollection: u32;
|
|
1135
|
+
desiredItem: Option<u32>;
|
|
1136
|
+
price: Option<PalletNftsPriceWithDirection>;
|
|
1137
|
+
deadline: u32;
|
|
1138
|
+
}>;
|
|
1139
|
+
/**
|
|
1140
|
+
* The management team changed.
|
|
1141
|
+
**/
|
|
1142
|
+
TeamChanged: AugmentedEvent<ApiType, [collection: u32, issuer: Option<AccountId32>, admin: Option<AccountId32>, freezer: Option<AccountId32>], {
|
|
1143
|
+
collection: u32;
|
|
1144
|
+
issuer: Option<AccountId32>;
|
|
1145
|
+
admin: Option<AccountId32>;
|
|
1146
|
+
freezer: Option<AccountId32>;
|
|
1147
|
+
}>;
|
|
1148
|
+
/**
|
|
1149
|
+
* A tip was sent.
|
|
1150
|
+
**/
|
|
1151
|
+
TipSent: AugmentedEvent<ApiType, [collection: u32, item: u32, sender: AccountId32, receiver: AccountId32, amount: u128], {
|
|
1152
|
+
collection: u32;
|
|
1153
|
+
item: u32;
|
|
1154
|
+
sender: AccountId32;
|
|
1155
|
+
receiver: AccountId32;
|
|
1156
|
+
amount: u128;
|
|
1157
|
+
}>;
|
|
1158
|
+
/**
|
|
1159
|
+
* An `item` of a `collection` has been approved by the `owner` for transfer by
|
|
1160
|
+
* a `delegate`.
|
|
1161
|
+
**/
|
|
1162
|
+
TransferApproved: AugmentedEvent<ApiType, [collection: u32, item: u32, owner: AccountId32, delegate: AccountId32, deadline: Option<u32>], {
|
|
1163
|
+
collection: u32;
|
|
1164
|
+
item: u32;
|
|
1165
|
+
owner: AccountId32;
|
|
1166
|
+
delegate: AccountId32;
|
|
1167
|
+
deadline: Option<u32>;
|
|
1168
|
+
}>;
|
|
1169
|
+
/**
|
|
1170
|
+
* An `item` was transferred.
|
|
1171
|
+
**/
|
|
1172
|
+
Transferred: AugmentedEvent<ApiType, [collection: u32, item: u32, from: AccountId32, to: AccountId32], {
|
|
1173
|
+
collection: u32;
|
|
1174
|
+
item: u32;
|
|
1175
|
+
from: AccountId32;
|
|
1176
|
+
to: AccountId32;
|
|
1177
|
+
}>;
|
|
1178
|
+
/**
|
|
1179
|
+
* Generic event
|
|
1180
|
+
**/
|
|
1181
|
+
[key: string]: AugmentedEvent<ApiType>;
|
|
1182
|
+
};
|
|
1183
|
+
parachainSystem: {
|
|
1184
|
+
/**
|
|
1185
|
+
* Downward messages were processed using the given weight.
|
|
1186
|
+
**/
|
|
1187
|
+
DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: SpWeightsWeightV2Weight, dmqHead: H256], {
|
|
1188
|
+
weightUsed: SpWeightsWeightV2Weight;
|
|
1189
|
+
dmqHead: H256;
|
|
1190
|
+
}>;
|
|
1191
|
+
/**
|
|
1192
|
+
* Some downward messages have been received and will be processed.
|
|
1193
|
+
**/
|
|
1194
|
+
DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], {
|
|
1195
|
+
count: u32;
|
|
1196
|
+
}>;
|
|
1197
|
+
/**
|
|
1198
|
+
* An upward message was sent to the relay chain.
|
|
1199
|
+
**/
|
|
1200
|
+
UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], {
|
|
1201
|
+
messageHash: Option<U8aFixed>;
|
|
1202
|
+
}>;
|
|
1203
|
+
/**
|
|
1204
|
+
* The validation function was applied as of the contained relay chain block number.
|
|
1205
|
+
**/
|
|
1206
|
+
ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], {
|
|
1207
|
+
relayChainBlockNum: u32;
|
|
1208
|
+
}>;
|
|
1209
|
+
/**
|
|
1210
|
+
* The relay-chain aborted the upgrade process.
|
|
1211
|
+
**/
|
|
1212
|
+
ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;
|
|
1213
|
+
/**
|
|
1214
|
+
* The validation function has been scheduled to apply.
|
|
1215
|
+
**/
|
|
1216
|
+
ValidationFunctionStored: AugmentedEvent<ApiType, []>;
|
|
1217
|
+
/**
|
|
1218
|
+
* Generic event
|
|
1219
|
+
**/
|
|
1220
|
+
[key: string]: AugmentedEvent<ApiType>;
|
|
1221
|
+
};
|
|
1222
|
+
polkadotXcm: {
|
|
1223
|
+
/**
|
|
1224
|
+
* Some assets have been claimed from an asset trap
|
|
1225
|
+
**/
|
|
1226
|
+
AssetsClaimed: AugmentedEvent<ApiType, [hash_: H256, origin: StagingXcmV4Location, assets: XcmVersionedAssets], {
|
|
1227
|
+
hash_: H256;
|
|
1228
|
+
origin: StagingXcmV4Location;
|
|
1229
|
+
assets: XcmVersionedAssets;
|
|
1230
|
+
}>;
|
|
1231
|
+
/**
|
|
1232
|
+
* Some assets have been placed in an asset trap.
|
|
1233
|
+
**/
|
|
1234
|
+
AssetsTrapped: AugmentedEvent<ApiType, [hash_: H256, origin: StagingXcmV4Location, assets: XcmVersionedAssets], {
|
|
1235
|
+
hash_: H256;
|
|
1236
|
+
origin: StagingXcmV4Location;
|
|
1237
|
+
assets: XcmVersionedAssets;
|
|
1238
|
+
}>;
|
|
1239
|
+
/**
|
|
1240
|
+
* Execution of an XCM message was attempted.
|
|
1241
|
+
**/
|
|
1242
|
+
Attempted: AugmentedEvent<ApiType, [outcome: StagingXcmV4TraitsOutcome], {
|
|
1243
|
+
outcome: StagingXcmV4TraitsOutcome;
|
|
1244
|
+
}>;
|
|
1245
|
+
/**
|
|
1246
|
+
* Fees were paid from a location for an operation (often for using `SendXcm`).
|
|
1247
|
+
**/
|
|
1248
|
+
FeesPaid: AugmentedEvent<ApiType, [paying: StagingXcmV4Location, fees: StagingXcmV4AssetAssets], {
|
|
1249
|
+
paying: StagingXcmV4Location;
|
|
1250
|
+
fees: StagingXcmV4AssetAssets;
|
|
1251
|
+
}>;
|
|
1252
|
+
/**
|
|
1253
|
+
* Expected query response has been received but the querier location of the response does
|
|
1254
|
+
* not match the expected. The query remains registered for a later, valid, response to
|
|
1255
|
+
* be received and acted upon.
|
|
1256
|
+
**/
|
|
1257
|
+
InvalidQuerier: AugmentedEvent<ApiType, [origin: StagingXcmV4Location, queryId: u64, expectedQuerier: StagingXcmV4Location, maybeActualQuerier: Option<StagingXcmV4Location>], {
|
|
1258
|
+
origin: StagingXcmV4Location;
|
|
1259
|
+
queryId: u64;
|
|
1260
|
+
expectedQuerier: StagingXcmV4Location;
|
|
1261
|
+
maybeActualQuerier: Option<StagingXcmV4Location>;
|
|
1262
|
+
}>;
|
|
1263
|
+
/**
|
|
1264
|
+
* Expected query response has been received but the expected querier location placed in
|
|
1265
|
+
* storage by this runtime previously cannot be decoded. The query remains registered.
|
|
1266
|
+
*
|
|
1267
|
+
* This is unexpected (since a location placed in storage in a previously executing
|
|
1268
|
+
* runtime should be readable prior to query timeout) and dangerous since the possibly
|
|
1269
|
+
* valid response will be dropped. Manual governance intervention is probably going to be
|
|
1270
|
+
* needed.
|
|
1271
|
+
**/
|
|
1272
|
+
InvalidQuerierVersion: AugmentedEvent<ApiType, [origin: StagingXcmV4Location, queryId: u64], {
|
|
1273
|
+
origin: StagingXcmV4Location;
|
|
1274
|
+
queryId: u64;
|
|
1275
|
+
}>;
|
|
1276
|
+
/**
|
|
1277
|
+
* Expected query response has been received but the origin location of the response does
|
|
1278
|
+
* not match that expected. The query remains registered for a later, valid, response to
|
|
1279
|
+
* be received and acted upon.
|
|
1280
|
+
**/
|
|
1281
|
+
InvalidResponder: AugmentedEvent<ApiType, [origin: StagingXcmV4Location, queryId: u64, expectedLocation: Option<StagingXcmV4Location>], {
|
|
1282
|
+
origin: StagingXcmV4Location;
|
|
1283
|
+
queryId: u64;
|
|
1284
|
+
expectedLocation: Option<StagingXcmV4Location>;
|
|
1285
|
+
}>;
|
|
1286
|
+
/**
|
|
1287
|
+
* Expected query response has been received but the expected origin location placed in
|
|
1288
|
+
* storage by this runtime previously cannot be decoded. The query remains registered.
|
|
1289
|
+
*
|
|
1290
|
+
* This is unexpected (since a location placed in storage in a previously executing
|
|
1291
|
+
* runtime should be readable prior to query timeout) and dangerous since the possibly
|
|
1292
|
+
* valid response will be dropped. Manual governance intervention is probably going to be
|
|
1293
|
+
* needed.
|
|
1294
|
+
**/
|
|
1295
|
+
InvalidResponderVersion: AugmentedEvent<ApiType, [origin: StagingXcmV4Location, queryId: u64], {
|
|
1296
|
+
origin: StagingXcmV4Location;
|
|
1297
|
+
queryId: u64;
|
|
1298
|
+
}>;
|
|
1299
|
+
/**
|
|
1300
|
+
* Query response has been received and query is removed. The registered notification has
|
|
1301
|
+
* been dispatched and executed successfully.
|
|
1302
|
+
**/
|
|
1303
|
+
Notified: AugmentedEvent<ApiType, [queryId: u64, palletIndex: u8, callIndex: u8], {
|
|
1304
|
+
queryId: u64;
|
|
1305
|
+
palletIndex: u8;
|
|
1306
|
+
callIndex: u8;
|
|
1307
|
+
}>;
|
|
1308
|
+
/**
|
|
1309
|
+
* Query response has been received and query is removed. The dispatch was unable to be
|
|
1310
|
+
* decoded into a `Call`; this might be due to dispatch function having a signature which
|
|
1311
|
+
* is not `(origin, QueryId, Response)`.
|
|
1312
|
+
**/
|
|
1313
|
+
NotifyDecodeFailed: AugmentedEvent<ApiType, [queryId: u64, palletIndex: u8, callIndex: u8], {
|
|
1314
|
+
queryId: u64;
|
|
1315
|
+
palletIndex: u8;
|
|
1316
|
+
callIndex: u8;
|
|
1317
|
+
}>;
|
|
1318
|
+
/**
|
|
1319
|
+
* Query response has been received and query is removed. There was a general error with
|
|
1320
|
+
* dispatching the notification call.
|
|
1321
|
+
**/
|
|
1322
|
+
NotifyDispatchError: AugmentedEvent<ApiType, [queryId: u64, palletIndex: u8, callIndex: u8], {
|
|
1323
|
+
queryId: u64;
|
|
1324
|
+
palletIndex: u8;
|
|
1325
|
+
callIndex: u8;
|
|
1326
|
+
}>;
|
|
1327
|
+
/**
|
|
1328
|
+
* Query response has been received and query is removed. The registered notification
|
|
1329
|
+
* could not be dispatched because the dispatch weight is greater than the maximum weight
|
|
1330
|
+
* originally budgeted by this runtime for the query result.
|
|
1331
|
+
**/
|
|
1332
|
+
NotifyOverweight: AugmentedEvent<ApiType, [queryId: u64, palletIndex: u8, callIndex: u8, actualWeight: SpWeightsWeightV2Weight, maxBudgetedWeight: SpWeightsWeightV2Weight], {
|
|
1333
|
+
queryId: u64;
|
|
1334
|
+
palletIndex: u8;
|
|
1335
|
+
callIndex: u8;
|
|
1336
|
+
actualWeight: SpWeightsWeightV2Weight;
|
|
1337
|
+
maxBudgetedWeight: SpWeightsWeightV2Weight;
|
|
1338
|
+
}>;
|
|
1339
|
+
/**
|
|
1340
|
+
* A given location which had a version change subscription was dropped owing to an error
|
|
1341
|
+
* migrating the location to our new XCM format.
|
|
1342
|
+
**/
|
|
1343
|
+
NotifyTargetMigrationFail: AugmentedEvent<ApiType, [location: XcmVersionedLocation, queryId: u64], {
|
|
1344
|
+
location: XcmVersionedLocation;
|
|
1345
|
+
queryId: u64;
|
|
1346
|
+
}>;
|
|
1347
|
+
/**
|
|
1348
|
+
* A given location which had a version change subscription was dropped owing to an error
|
|
1349
|
+
* sending the notification to it.
|
|
1350
|
+
**/
|
|
1351
|
+
NotifyTargetSendFail: AugmentedEvent<ApiType, [location: StagingXcmV4Location, queryId: u64, error: XcmV3TraitsError], {
|
|
1352
|
+
location: StagingXcmV4Location;
|
|
1353
|
+
queryId: u64;
|
|
1354
|
+
error: XcmV3TraitsError;
|
|
1355
|
+
}>;
|
|
1356
|
+
/**
|
|
1357
|
+
* Query response has been received and is ready for taking with `take_response`. There is
|
|
1358
|
+
* no registered notification call.
|
|
1359
|
+
**/
|
|
1360
|
+
ResponseReady: AugmentedEvent<ApiType, [queryId: u64, response: StagingXcmV4Response], {
|
|
1361
|
+
queryId: u64;
|
|
1362
|
+
response: StagingXcmV4Response;
|
|
1363
|
+
}>;
|
|
1364
|
+
/**
|
|
1365
|
+
* Received query response has been read and removed.
|
|
1366
|
+
**/
|
|
1367
|
+
ResponseTaken: AugmentedEvent<ApiType, [queryId: u64], {
|
|
1368
|
+
queryId: u64;
|
|
1369
|
+
}>;
|
|
1370
|
+
/**
|
|
1371
|
+
* A XCM message was sent.
|
|
1372
|
+
**/
|
|
1373
|
+
Sent: AugmentedEvent<ApiType, [origin: StagingXcmV4Location, destination: StagingXcmV4Location, message: StagingXcmV4Xcm, messageId: U8aFixed], {
|
|
1374
|
+
origin: StagingXcmV4Location;
|
|
1375
|
+
destination: StagingXcmV4Location;
|
|
1376
|
+
message: StagingXcmV4Xcm;
|
|
1377
|
+
messageId: U8aFixed;
|
|
1378
|
+
}>;
|
|
1379
|
+
/**
|
|
1380
|
+
* The supported version of a location has been changed. This might be through an
|
|
1381
|
+
* automatic notification or a manual intervention.
|
|
1382
|
+
**/
|
|
1383
|
+
SupportedVersionChanged: AugmentedEvent<ApiType, [location: StagingXcmV4Location, version: u32], {
|
|
1384
|
+
location: StagingXcmV4Location;
|
|
1385
|
+
version: u32;
|
|
1386
|
+
}>;
|
|
1387
|
+
/**
|
|
1388
|
+
* Query response received which does not match a registered query. This may be because a
|
|
1389
|
+
* matching query was never registered, it may be because it is a duplicate response, or
|
|
1390
|
+
* because the query timed out.
|
|
1391
|
+
**/
|
|
1392
|
+
UnexpectedResponse: AugmentedEvent<ApiType, [origin: StagingXcmV4Location, queryId: u64], {
|
|
1393
|
+
origin: StagingXcmV4Location;
|
|
1394
|
+
queryId: u64;
|
|
1395
|
+
}>;
|
|
1396
|
+
/**
|
|
1397
|
+
* An XCM version change notification message has been attempted to be sent.
|
|
1398
|
+
*
|
|
1399
|
+
* The cost of sending it (borne by the chain) is included.
|
|
1400
|
+
**/
|
|
1401
|
+
VersionChangeNotified: AugmentedEvent<ApiType, [destination: StagingXcmV4Location, result: u32, cost: StagingXcmV4AssetAssets, messageId: U8aFixed], {
|
|
1402
|
+
destination: StagingXcmV4Location;
|
|
1403
|
+
result: u32;
|
|
1404
|
+
cost: StagingXcmV4AssetAssets;
|
|
1405
|
+
messageId: U8aFixed;
|
|
1406
|
+
}>;
|
|
1407
|
+
/**
|
|
1408
|
+
* A XCM version migration finished.
|
|
1409
|
+
**/
|
|
1410
|
+
VersionMigrationFinished: AugmentedEvent<ApiType, [version: u32], {
|
|
1411
|
+
version: u32;
|
|
1412
|
+
}>;
|
|
1413
|
+
/**
|
|
1414
|
+
* We have requested that a remote chain send us XCM version change notifications.
|
|
1415
|
+
**/
|
|
1416
|
+
VersionNotifyRequested: AugmentedEvent<ApiType, [destination: StagingXcmV4Location, cost: StagingXcmV4AssetAssets, messageId: U8aFixed], {
|
|
1417
|
+
destination: StagingXcmV4Location;
|
|
1418
|
+
cost: StagingXcmV4AssetAssets;
|
|
1419
|
+
messageId: U8aFixed;
|
|
1420
|
+
}>;
|
|
1421
|
+
/**
|
|
1422
|
+
* A remote has requested XCM version change notification from us and we have honored it.
|
|
1423
|
+
* A version information message is sent to them and its cost is included.
|
|
1424
|
+
**/
|
|
1425
|
+
VersionNotifyStarted: AugmentedEvent<ApiType, [destination: StagingXcmV4Location, cost: StagingXcmV4AssetAssets, messageId: U8aFixed], {
|
|
1426
|
+
destination: StagingXcmV4Location;
|
|
1427
|
+
cost: StagingXcmV4AssetAssets;
|
|
1428
|
+
messageId: U8aFixed;
|
|
1429
|
+
}>;
|
|
1430
|
+
/**
|
|
1431
|
+
* We have requested that a remote chain stops sending us XCM version change
|
|
1432
|
+
* notifications.
|
|
1433
|
+
**/
|
|
1434
|
+
VersionNotifyUnrequested: AugmentedEvent<ApiType, [destination: StagingXcmV4Location, cost: StagingXcmV4AssetAssets, messageId: U8aFixed], {
|
|
1435
|
+
destination: StagingXcmV4Location;
|
|
1436
|
+
cost: StagingXcmV4AssetAssets;
|
|
1437
|
+
messageId: U8aFixed;
|
|
1438
|
+
}>;
|
|
1439
|
+
/**
|
|
1440
|
+
* Generic event
|
|
1441
|
+
**/
|
|
1442
|
+
[key: string]: AugmentedEvent<ApiType>;
|
|
1443
|
+
};
|
|
1444
|
+
poolAssets: {
|
|
1445
|
+
/**
|
|
1446
|
+
* Accounts were destroyed for given asset.
|
|
1447
|
+
**/
|
|
1448
|
+
AccountsDestroyed: AugmentedEvent<ApiType, [assetId: u32, accountsDestroyed: u32, accountsRemaining: u32], {
|
|
1449
|
+
assetId: u32;
|
|
1450
|
+
accountsDestroyed: u32;
|
|
1451
|
+
accountsRemaining: u32;
|
|
1452
|
+
}>;
|
|
1453
|
+
/**
|
|
1454
|
+
* An approval for account `delegate` was cancelled by `owner`.
|
|
1455
|
+
**/
|
|
1456
|
+
ApprovalCancelled: AugmentedEvent<ApiType, [assetId: u32, owner: AccountId32, delegate: AccountId32], {
|
|
1457
|
+
assetId: u32;
|
|
1458
|
+
owner: AccountId32;
|
|
1459
|
+
delegate: AccountId32;
|
|
1460
|
+
}>;
|
|
1461
|
+
/**
|
|
1462
|
+
* Approvals were destroyed for given asset.
|
|
1463
|
+
**/
|
|
1464
|
+
ApprovalsDestroyed: AugmentedEvent<ApiType, [assetId: u32, approvalsDestroyed: u32, approvalsRemaining: u32], {
|
|
1465
|
+
assetId: u32;
|
|
1466
|
+
approvalsDestroyed: u32;
|
|
1467
|
+
approvalsRemaining: u32;
|
|
1468
|
+
}>;
|
|
1469
|
+
/**
|
|
1470
|
+
* (Additional) funds have been approved for transfer to a destination account.
|
|
1471
|
+
**/
|
|
1472
|
+
ApprovedTransfer: AugmentedEvent<ApiType, [assetId: u32, source: AccountId32, delegate: AccountId32, amount: u128], {
|
|
1473
|
+
assetId: u32;
|
|
1474
|
+
source: AccountId32;
|
|
1475
|
+
delegate: AccountId32;
|
|
1476
|
+
amount: u128;
|
|
1477
|
+
}>;
|
|
1478
|
+
/**
|
|
1479
|
+
* Some asset `asset_id` was frozen.
|
|
1480
|
+
**/
|
|
1481
|
+
AssetFrozen: AugmentedEvent<ApiType, [assetId: u32], {
|
|
1482
|
+
assetId: u32;
|
|
1483
|
+
}>;
|
|
1484
|
+
/**
|
|
1485
|
+
* The min_balance of an asset has been updated by the asset owner.
|
|
1486
|
+
**/
|
|
1487
|
+
AssetMinBalanceChanged: AugmentedEvent<ApiType, [assetId: u32, newMinBalance: u128], {
|
|
1488
|
+
assetId: u32;
|
|
1489
|
+
newMinBalance: u128;
|
|
1490
|
+
}>;
|
|
1491
|
+
/**
|
|
1492
|
+
* An asset has had its attributes changed by the `Force` origin.
|
|
1493
|
+
**/
|
|
1494
|
+
AssetStatusChanged: AugmentedEvent<ApiType, [assetId: u32], {
|
|
1495
|
+
assetId: u32;
|
|
1496
|
+
}>;
|
|
1497
|
+
/**
|
|
1498
|
+
* Some asset `asset_id` was thawed.
|
|
1499
|
+
**/
|
|
1500
|
+
AssetThawed: AugmentedEvent<ApiType, [assetId: u32], {
|
|
1501
|
+
assetId: u32;
|
|
1502
|
+
}>;
|
|
1503
|
+
/**
|
|
1504
|
+
* Some account `who` was blocked.
|
|
1505
|
+
**/
|
|
1506
|
+
Blocked: AugmentedEvent<ApiType, [assetId: u32, who: AccountId32], {
|
|
1507
|
+
assetId: u32;
|
|
1508
|
+
who: AccountId32;
|
|
1509
|
+
}>;
|
|
1510
|
+
/**
|
|
1511
|
+
* Some assets were destroyed.
|
|
1512
|
+
**/
|
|
1513
|
+
Burned: AugmentedEvent<ApiType, [assetId: u32, owner: AccountId32, balance: u128], {
|
|
1514
|
+
assetId: u32;
|
|
1515
|
+
owner: AccountId32;
|
|
1516
|
+
balance: u128;
|
|
1517
|
+
}>;
|
|
1518
|
+
/**
|
|
1519
|
+
* Some asset class was created.
|
|
1520
|
+
**/
|
|
1521
|
+
Created: AugmentedEvent<ApiType, [assetId: u32, creator: AccountId32, owner: AccountId32], {
|
|
1522
|
+
assetId: u32;
|
|
1523
|
+
creator: AccountId32;
|
|
1524
|
+
owner: AccountId32;
|
|
1525
|
+
}>;
|
|
1526
|
+
/**
|
|
1527
|
+
* Some assets were deposited (e.g. for transaction fees).
|
|
1528
|
+
**/
|
|
1529
|
+
Deposited: AugmentedEvent<ApiType, [assetId: u32, who: AccountId32, amount: u128], {
|
|
1530
|
+
assetId: u32;
|
|
1531
|
+
who: AccountId32;
|
|
1532
|
+
amount: u128;
|
|
1533
|
+
}>;
|
|
1534
|
+
/**
|
|
1535
|
+
* An asset class was destroyed.
|
|
1536
|
+
**/
|
|
1537
|
+
Destroyed: AugmentedEvent<ApiType, [assetId: u32], {
|
|
1538
|
+
assetId: u32;
|
|
1539
|
+
}>;
|
|
1540
|
+
/**
|
|
1541
|
+
* An asset class is in the process of being destroyed.
|
|
1542
|
+
**/
|
|
1543
|
+
DestructionStarted: AugmentedEvent<ApiType, [assetId: u32], {
|
|
1544
|
+
assetId: u32;
|
|
1545
|
+
}>;
|
|
1546
|
+
/**
|
|
1547
|
+
* Some asset class was force-created.
|
|
1548
|
+
**/
|
|
1549
|
+
ForceCreated: AugmentedEvent<ApiType, [assetId: u32, owner: AccountId32], {
|
|
1550
|
+
assetId: u32;
|
|
1551
|
+
owner: AccountId32;
|
|
1552
|
+
}>;
|
|
1553
|
+
/**
|
|
1554
|
+
* Some account `who` was frozen.
|
|
1555
|
+
**/
|
|
1556
|
+
Frozen: AugmentedEvent<ApiType, [assetId: u32, who: AccountId32], {
|
|
1557
|
+
assetId: u32;
|
|
1558
|
+
who: AccountId32;
|
|
1559
|
+
}>;
|
|
1560
|
+
/**
|
|
1561
|
+
* Some assets were issued.
|
|
1562
|
+
**/
|
|
1563
|
+
Issued: AugmentedEvent<ApiType, [assetId: u32, owner: AccountId32, amount: u128], {
|
|
1564
|
+
assetId: u32;
|
|
1565
|
+
owner: AccountId32;
|
|
1566
|
+
amount: u128;
|
|
1567
|
+
}>;
|
|
1568
|
+
/**
|
|
1569
|
+
* Metadata has been cleared for an asset.
|
|
1570
|
+
**/
|
|
1571
|
+
MetadataCleared: AugmentedEvent<ApiType, [assetId: u32], {
|
|
1572
|
+
assetId: u32;
|
|
1573
|
+
}>;
|
|
1574
|
+
/**
|
|
1575
|
+
* New metadata has been set for an asset.
|
|
1576
|
+
**/
|
|
1577
|
+
MetadataSet: AugmentedEvent<ApiType, [assetId: u32, name: Bytes, symbol_: Bytes, decimals: u8, isFrozen: bool], {
|
|
1578
|
+
assetId: u32;
|
|
1579
|
+
name: Bytes;
|
|
1580
|
+
symbol: Bytes;
|
|
1581
|
+
decimals: u8;
|
|
1582
|
+
isFrozen: bool;
|
|
1583
|
+
}>;
|
|
1584
|
+
/**
|
|
1585
|
+
* The owner changed.
|
|
1586
|
+
**/
|
|
1587
|
+
OwnerChanged: AugmentedEvent<ApiType, [assetId: u32, owner: AccountId32], {
|
|
1588
|
+
assetId: u32;
|
|
1589
|
+
owner: AccountId32;
|
|
1590
|
+
}>;
|
|
1591
|
+
/**
|
|
1592
|
+
* The management team changed.
|
|
1593
|
+
**/
|
|
1594
|
+
TeamChanged: AugmentedEvent<ApiType, [assetId: u32, issuer: AccountId32, admin: AccountId32, freezer: AccountId32], {
|
|
1595
|
+
assetId: u32;
|
|
1596
|
+
issuer: AccountId32;
|
|
1597
|
+
admin: AccountId32;
|
|
1598
|
+
freezer: AccountId32;
|
|
1599
|
+
}>;
|
|
1600
|
+
/**
|
|
1601
|
+
* Some account `who` was thawed.
|
|
1602
|
+
**/
|
|
1603
|
+
Thawed: AugmentedEvent<ApiType, [assetId: u32, who: AccountId32], {
|
|
1604
|
+
assetId: u32;
|
|
1605
|
+
who: AccountId32;
|
|
1606
|
+
}>;
|
|
1607
|
+
/**
|
|
1608
|
+
* Some account `who` was created with a deposit from `depositor`.
|
|
1609
|
+
**/
|
|
1610
|
+
Touched: AugmentedEvent<ApiType, [assetId: u32, who: AccountId32, depositor: AccountId32], {
|
|
1611
|
+
assetId: u32;
|
|
1612
|
+
who: AccountId32;
|
|
1613
|
+
depositor: AccountId32;
|
|
1614
|
+
}>;
|
|
1615
|
+
/**
|
|
1616
|
+
* Some assets were transferred.
|
|
1617
|
+
**/
|
|
1618
|
+
Transferred: AugmentedEvent<ApiType, [assetId: u32, from: AccountId32, to: AccountId32, amount: u128], {
|
|
1619
|
+
assetId: u32;
|
|
1620
|
+
from: AccountId32;
|
|
1621
|
+
to: AccountId32;
|
|
1622
|
+
amount: u128;
|
|
1623
|
+
}>;
|
|
1624
|
+
/**
|
|
1625
|
+
* An `amount` was transferred in its entirety from `owner` to `destination` by
|
|
1626
|
+
* the approved `delegate`.
|
|
1627
|
+
**/
|
|
1628
|
+
TransferredApproved: AugmentedEvent<ApiType, [assetId: u32, owner: AccountId32, delegate: AccountId32, destination: AccountId32, amount: u128], {
|
|
1629
|
+
assetId: u32;
|
|
1630
|
+
owner: AccountId32;
|
|
1631
|
+
delegate: AccountId32;
|
|
1632
|
+
destination: AccountId32;
|
|
1633
|
+
amount: u128;
|
|
1634
|
+
}>;
|
|
1635
|
+
/**
|
|
1636
|
+
* Some assets were withdrawn from the account (e.g. for transaction fees).
|
|
1637
|
+
**/
|
|
1638
|
+
Withdrawn: AugmentedEvent<ApiType, [assetId: u32, who: AccountId32, amount: u128], {
|
|
1639
|
+
assetId: u32;
|
|
1640
|
+
who: AccountId32;
|
|
1641
|
+
amount: u128;
|
|
1642
|
+
}>;
|
|
1643
|
+
/**
|
|
1644
|
+
* Generic event
|
|
1645
|
+
**/
|
|
1646
|
+
[key: string]: AugmentedEvent<ApiType>;
|
|
1647
|
+
};
|
|
1648
|
+
proxy: {
|
|
1649
|
+
/**
|
|
1650
|
+
* An announcement was placed to make a call in the future.
|
|
1651
|
+
**/
|
|
1652
|
+
Announced: AugmentedEvent<ApiType, [real: AccountId32, proxy: AccountId32, callHash: H256], {
|
|
1653
|
+
real: AccountId32;
|
|
1654
|
+
proxy: AccountId32;
|
|
1655
|
+
callHash: H256;
|
|
1656
|
+
}>;
|
|
1657
|
+
/**
|
|
1658
|
+
* A proxy was added.
|
|
1659
|
+
**/
|
|
1660
|
+
ProxyAdded: AugmentedEvent<ApiType, [delegator: AccountId32, delegatee: AccountId32, proxyType: AssetHubKusamaRuntimeProxyType, delay: u32], {
|
|
1661
|
+
delegator: AccountId32;
|
|
1662
|
+
delegatee: AccountId32;
|
|
1663
|
+
proxyType: AssetHubKusamaRuntimeProxyType;
|
|
1664
|
+
delay: u32;
|
|
1665
|
+
}>;
|
|
1666
|
+
/**
|
|
1667
|
+
* A proxy was executed correctly, with the given.
|
|
1668
|
+
**/
|
|
1669
|
+
ProxyExecuted: AugmentedEvent<ApiType, [result: Result<Null, SpRuntimeDispatchError>], {
|
|
1670
|
+
result: Result<Null, SpRuntimeDispatchError>;
|
|
1671
|
+
}>;
|
|
1672
|
+
/**
|
|
1673
|
+
* A proxy was removed.
|
|
1674
|
+
**/
|
|
1675
|
+
ProxyRemoved: AugmentedEvent<ApiType, [delegator: AccountId32, delegatee: AccountId32, proxyType: AssetHubKusamaRuntimeProxyType, delay: u32], {
|
|
1676
|
+
delegator: AccountId32;
|
|
1677
|
+
delegatee: AccountId32;
|
|
1678
|
+
proxyType: AssetHubKusamaRuntimeProxyType;
|
|
1679
|
+
delay: u32;
|
|
1680
|
+
}>;
|
|
1681
|
+
/**
|
|
1682
|
+
* A pure account has been created by new proxy with given
|
|
1683
|
+
* disambiguation index and proxy type.
|
|
1684
|
+
**/
|
|
1685
|
+
PureCreated: AugmentedEvent<ApiType, [pure: AccountId32, who: AccountId32, proxyType: AssetHubKusamaRuntimeProxyType, disambiguationIndex: u16], {
|
|
1686
|
+
pure: AccountId32;
|
|
1687
|
+
who: AccountId32;
|
|
1688
|
+
proxyType: AssetHubKusamaRuntimeProxyType;
|
|
1689
|
+
disambiguationIndex: u16;
|
|
1690
|
+
}>;
|
|
1691
|
+
/**
|
|
1692
|
+
* Generic event
|
|
1693
|
+
**/
|
|
1694
|
+
[key: string]: AugmentedEvent<ApiType>;
|
|
1695
|
+
};
|
|
1696
|
+
session: {
|
|
1697
|
+
/**
|
|
1698
|
+
* New session has happened. Note that the argument is the session index, not the
|
|
1699
|
+
* block number as the type might suggest.
|
|
1700
|
+
**/
|
|
1701
|
+
NewSession: AugmentedEvent<ApiType, [sessionIndex: u32], {
|
|
1702
|
+
sessionIndex: u32;
|
|
1703
|
+
}>;
|
|
1704
|
+
/**
|
|
1705
|
+
* Generic event
|
|
1706
|
+
**/
|
|
1707
|
+
[key: string]: AugmentedEvent<ApiType>;
|
|
1708
|
+
};
|
|
1709
|
+
system: {
|
|
1710
|
+
/**
|
|
1711
|
+
* `:code` was updated.
|
|
1712
|
+
**/
|
|
1713
|
+
CodeUpdated: AugmentedEvent<ApiType, []>;
|
|
1714
|
+
/**
|
|
1715
|
+
* An extrinsic failed.
|
|
1716
|
+
**/
|
|
1717
|
+
ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo], {
|
|
1718
|
+
dispatchError: SpRuntimeDispatchError;
|
|
1719
|
+
dispatchInfo: FrameSupportDispatchDispatchInfo;
|
|
1720
|
+
}>;
|
|
1721
|
+
/**
|
|
1722
|
+
* An extrinsic completed successfully.
|
|
1723
|
+
**/
|
|
1724
|
+
ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportDispatchDispatchInfo], {
|
|
1725
|
+
dispatchInfo: FrameSupportDispatchDispatchInfo;
|
|
1726
|
+
}>;
|
|
1727
|
+
/**
|
|
1728
|
+
* An account was reaped.
|
|
1729
|
+
**/
|
|
1730
|
+
KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], {
|
|
1731
|
+
account: AccountId32;
|
|
1732
|
+
}>;
|
|
1733
|
+
/**
|
|
1734
|
+
* A new account was created.
|
|
1735
|
+
**/
|
|
1736
|
+
NewAccount: AugmentedEvent<ApiType, [account: AccountId32], {
|
|
1737
|
+
account: AccountId32;
|
|
1738
|
+
}>;
|
|
1739
|
+
/**
|
|
1740
|
+
* On on-chain remark happened.
|
|
1741
|
+
**/
|
|
1742
|
+
Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], {
|
|
1743
|
+
sender: AccountId32;
|
|
1744
|
+
hash_: H256;
|
|
1745
|
+
}>;
|
|
1746
|
+
/**
|
|
1747
|
+
* An upgrade was authorized.
|
|
1748
|
+
**/
|
|
1749
|
+
UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256, checkVersion: bool], {
|
|
1750
|
+
codeHash: H256;
|
|
1751
|
+
checkVersion: bool;
|
|
1752
|
+
}>;
|
|
1753
|
+
/**
|
|
1754
|
+
* Generic event
|
|
1755
|
+
**/
|
|
1756
|
+
[key: string]: AugmentedEvent<ApiType>;
|
|
1757
|
+
};
|
|
1758
|
+
toPolkadotXcmRouter: {
|
|
1759
|
+
/**
|
|
1760
|
+
* Delivery fee factor has been decreased.
|
|
1761
|
+
**/
|
|
1762
|
+
DeliveryFeeFactorDecreased: AugmentedEvent<ApiType, [newValue: u128], {
|
|
1763
|
+
newValue: u128;
|
|
1764
|
+
}>;
|
|
1765
|
+
/**
|
|
1766
|
+
* Delivery fee factor has been increased.
|
|
1767
|
+
**/
|
|
1768
|
+
DeliveryFeeFactorIncreased: AugmentedEvent<ApiType, [newValue: u128], {
|
|
1769
|
+
newValue: u128;
|
|
1770
|
+
}>;
|
|
1771
|
+
/**
|
|
1772
|
+
* Generic event
|
|
1773
|
+
**/
|
|
1774
|
+
[key: string]: AugmentedEvent<ApiType>;
|
|
1775
|
+
};
|
|
1776
|
+
transactionPayment: {
|
|
1777
|
+
/**
|
|
1778
|
+
* A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,
|
|
1779
|
+
* has been paid by `who`.
|
|
1780
|
+
**/
|
|
1781
|
+
TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], {
|
|
1782
|
+
who: AccountId32;
|
|
1783
|
+
actualFee: u128;
|
|
1784
|
+
tip: u128;
|
|
1785
|
+
}>;
|
|
1786
|
+
/**
|
|
1787
|
+
* Generic event
|
|
1788
|
+
**/
|
|
1789
|
+
[key: string]: AugmentedEvent<ApiType>;
|
|
1790
|
+
};
|
|
1791
|
+
uniques: {
|
|
1792
|
+
/**
|
|
1793
|
+
* An approval for a `delegate` account to transfer the `item` of an item
|
|
1794
|
+
* `collection` was cancelled by its `owner`.
|
|
1795
|
+
**/
|
|
1796
|
+
ApprovalCancelled: AugmentedEvent<ApiType, [collection: u32, item: u32, owner: AccountId32, delegate: AccountId32], {
|
|
1797
|
+
collection: u32;
|
|
1798
|
+
item: u32;
|
|
1799
|
+
owner: AccountId32;
|
|
1800
|
+
delegate: AccountId32;
|
|
1801
|
+
}>;
|
|
1802
|
+
/**
|
|
1803
|
+
* An `item` of a `collection` has been approved by the `owner` for transfer by
|
|
1804
|
+
* a `delegate`.
|
|
1805
|
+
**/
|
|
1806
|
+
ApprovedTransfer: AugmentedEvent<ApiType, [collection: u32, item: u32, owner: AccountId32, delegate: AccountId32], {
|
|
1807
|
+
collection: u32;
|
|
1808
|
+
item: u32;
|
|
1809
|
+
owner: AccountId32;
|
|
1810
|
+
delegate: AccountId32;
|
|
1811
|
+
}>;
|
|
1812
|
+
/**
|
|
1813
|
+
* Attribute metadata has been cleared for a `collection` or `item`.
|
|
1814
|
+
**/
|
|
1815
|
+
AttributeCleared: AugmentedEvent<ApiType, [collection: u32, maybeItem: Option<u32>, key: Bytes], {
|
|
1816
|
+
collection: u32;
|
|
1817
|
+
maybeItem: Option<u32>;
|
|
1818
|
+
key: Bytes;
|
|
1819
|
+
}>;
|
|
1820
|
+
/**
|
|
1821
|
+
* New attribute metadata has been set for a `collection` or `item`.
|
|
1822
|
+
**/
|
|
1823
|
+
AttributeSet: AugmentedEvent<ApiType, [collection: u32, maybeItem: Option<u32>, key: Bytes, value: Bytes], {
|
|
1824
|
+
collection: u32;
|
|
1825
|
+
maybeItem: Option<u32>;
|
|
1826
|
+
key: Bytes;
|
|
1827
|
+
value: Bytes;
|
|
1828
|
+
}>;
|
|
1829
|
+
/**
|
|
1830
|
+
* An `item` was destroyed.
|
|
1831
|
+
**/
|
|
1832
|
+
Burned: AugmentedEvent<ApiType, [collection: u32, item: u32, owner: AccountId32], {
|
|
1833
|
+
collection: u32;
|
|
1834
|
+
item: u32;
|
|
1835
|
+
owner: AccountId32;
|
|
1836
|
+
}>;
|
|
1837
|
+
/**
|
|
1838
|
+
* Some `collection` was frozen.
|
|
1839
|
+
**/
|
|
1840
|
+
CollectionFrozen: AugmentedEvent<ApiType, [collection: u32], {
|
|
1841
|
+
collection: u32;
|
|
1842
|
+
}>;
|
|
1843
|
+
/**
|
|
1844
|
+
* Max supply has been set for a collection.
|
|
1845
|
+
**/
|
|
1846
|
+
CollectionMaxSupplySet: AugmentedEvent<ApiType, [collection: u32, maxSupply: u32], {
|
|
1847
|
+
collection: u32;
|
|
1848
|
+
maxSupply: u32;
|
|
1849
|
+
}>;
|
|
1850
|
+
/**
|
|
1851
|
+
* Metadata has been cleared for a `collection`.
|
|
1852
|
+
**/
|
|
1853
|
+
CollectionMetadataCleared: AugmentedEvent<ApiType, [collection: u32], {
|
|
1854
|
+
collection: u32;
|
|
1855
|
+
}>;
|
|
1856
|
+
/**
|
|
1857
|
+
* New metadata has been set for a `collection`.
|
|
1858
|
+
**/
|
|
1859
|
+
CollectionMetadataSet: AugmentedEvent<ApiType, [collection: u32, data: Bytes, isFrozen: bool], {
|
|
1860
|
+
collection: u32;
|
|
1861
|
+
data: Bytes;
|
|
1862
|
+
isFrozen: bool;
|
|
1863
|
+
}>;
|
|
1864
|
+
/**
|
|
1865
|
+
* Some `collection` was thawed.
|
|
1866
|
+
**/
|
|
1867
|
+
CollectionThawed: AugmentedEvent<ApiType, [collection: u32], {
|
|
1868
|
+
collection: u32;
|
|
1869
|
+
}>;
|
|
1870
|
+
/**
|
|
1871
|
+
* A `collection` was created.
|
|
1872
|
+
**/
|
|
1873
|
+
Created: AugmentedEvent<ApiType, [collection: u32, creator: AccountId32, owner: AccountId32], {
|
|
1874
|
+
collection: u32;
|
|
1875
|
+
creator: AccountId32;
|
|
1876
|
+
owner: AccountId32;
|
|
1877
|
+
}>;
|
|
1878
|
+
/**
|
|
1879
|
+
* A `collection` was destroyed.
|
|
1880
|
+
**/
|
|
1881
|
+
Destroyed: AugmentedEvent<ApiType, [collection: u32], {
|
|
1882
|
+
collection: u32;
|
|
1883
|
+
}>;
|
|
1884
|
+
/**
|
|
1885
|
+
* A `collection` was force-created.
|
|
1886
|
+
**/
|
|
1887
|
+
ForceCreated: AugmentedEvent<ApiType, [collection: u32, owner: AccountId32], {
|
|
1888
|
+
collection: u32;
|
|
1889
|
+
owner: AccountId32;
|
|
1890
|
+
}>;
|
|
1891
|
+
/**
|
|
1892
|
+
* Some `item` was frozen.
|
|
1893
|
+
**/
|
|
1894
|
+
Frozen: AugmentedEvent<ApiType, [collection: u32, item: u32], {
|
|
1895
|
+
collection: u32;
|
|
1896
|
+
item: u32;
|
|
1897
|
+
}>;
|
|
1898
|
+
/**
|
|
1899
|
+
* An `item` was issued.
|
|
1900
|
+
**/
|
|
1901
|
+
Issued: AugmentedEvent<ApiType, [collection: u32, item: u32, owner: AccountId32], {
|
|
1902
|
+
collection: u32;
|
|
1903
|
+
item: u32;
|
|
1904
|
+
owner: AccountId32;
|
|
1905
|
+
}>;
|
|
1906
|
+
/**
|
|
1907
|
+
* An item was bought.
|
|
1908
|
+
**/
|
|
1909
|
+
ItemBought: AugmentedEvent<ApiType, [collection: u32, item: u32, price: u128, seller: AccountId32, buyer: AccountId32], {
|
|
1910
|
+
collection: u32;
|
|
1911
|
+
item: u32;
|
|
1912
|
+
price: u128;
|
|
1913
|
+
seller: AccountId32;
|
|
1914
|
+
buyer: AccountId32;
|
|
1915
|
+
}>;
|
|
1916
|
+
/**
|
|
1917
|
+
* The price for the instance was removed.
|
|
1918
|
+
**/
|
|
1919
|
+
ItemPriceRemoved: AugmentedEvent<ApiType, [collection: u32, item: u32], {
|
|
1920
|
+
collection: u32;
|
|
1921
|
+
item: u32;
|
|
1922
|
+
}>;
|
|
1923
|
+
/**
|
|
1924
|
+
* The price was set for the instance.
|
|
1925
|
+
**/
|
|
1926
|
+
ItemPriceSet: AugmentedEvent<ApiType, [collection: u32, item: u32, price: u128, whitelistedBuyer: Option<AccountId32>], {
|
|
1927
|
+
collection: u32;
|
|
1928
|
+
item: u32;
|
|
1929
|
+
price: u128;
|
|
1930
|
+
whitelistedBuyer: Option<AccountId32>;
|
|
1931
|
+
}>;
|
|
1932
|
+
/**
|
|
1933
|
+
* A `collection` has had its attributes changed by the `Force` origin.
|
|
1934
|
+
**/
|
|
1935
|
+
ItemStatusChanged: AugmentedEvent<ApiType, [collection: u32], {
|
|
1936
|
+
collection: u32;
|
|
1937
|
+
}>;
|
|
1938
|
+
/**
|
|
1939
|
+
* Metadata has been cleared for an item.
|
|
1940
|
+
**/
|
|
1941
|
+
MetadataCleared: AugmentedEvent<ApiType, [collection: u32, item: u32], {
|
|
1942
|
+
collection: u32;
|
|
1943
|
+
item: u32;
|
|
1944
|
+
}>;
|
|
1945
|
+
/**
|
|
1946
|
+
* New metadata has been set for an item.
|
|
1947
|
+
**/
|
|
1948
|
+
MetadataSet: AugmentedEvent<ApiType, [collection: u32, item: u32, data: Bytes, isFrozen: bool], {
|
|
1949
|
+
collection: u32;
|
|
1950
|
+
item: u32;
|
|
1951
|
+
data: Bytes;
|
|
1952
|
+
isFrozen: bool;
|
|
1953
|
+
}>;
|
|
1954
|
+
/**
|
|
1955
|
+
* The owner changed.
|
|
1956
|
+
**/
|
|
1957
|
+
OwnerChanged: AugmentedEvent<ApiType, [collection: u32, newOwner: AccountId32], {
|
|
1958
|
+
collection: u32;
|
|
1959
|
+
newOwner: AccountId32;
|
|
1960
|
+
}>;
|
|
1961
|
+
/**
|
|
1962
|
+
* Ownership acceptance has changed for an account.
|
|
1963
|
+
**/
|
|
1964
|
+
OwnershipAcceptanceChanged: AugmentedEvent<ApiType, [who: AccountId32, maybeCollection: Option<u32>], {
|
|
1965
|
+
who: AccountId32;
|
|
1966
|
+
maybeCollection: Option<u32>;
|
|
1967
|
+
}>;
|
|
1968
|
+
/**
|
|
1969
|
+
* Metadata has been cleared for an item.
|
|
1970
|
+
**/
|
|
1971
|
+
Redeposited: AugmentedEvent<ApiType, [collection: u32, successfulItems: Vec<u32>], {
|
|
1972
|
+
collection: u32;
|
|
1973
|
+
successfulItems: Vec<u32>;
|
|
1974
|
+
}>;
|
|
1975
|
+
/**
|
|
1976
|
+
* The management team changed.
|
|
1977
|
+
**/
|
|
1978
|
+
TeamChanged: AugmentedEvent<ApiType, [collection: u32, issuer: AccountId32, admin: AccountId32, freezer: AccountId32], {
|
|
1979
|
+
collection: u32;
|
|
1980
|
+
issuer: AccountId32;
|
|
1981
|
+
admin: AccountId32;
|
|
1982
|
+
freezer: AccountId32;
|
|
1983
|
+
}>;
|
|
1984
|
+
/**
|
|
1985
|
+
* Some `item` was thawed.
|
|
1986
|
+
**/
|
|
1987
|
+
Thawed: AugmentedEvent<ApiType, [collection: u32, item: u32], {
|
|
1988
|
+
collection: u32;
|
|
1989
|
+
item: u32;
|
|
1990
|
+
}>;
|
|
1991
|
+
/**
|
|
1992
|
+
* An `item` was transferred.
|
|
1993
|
+
**/
|
|
1994
|
+
Transferred: AugmentedEvent<ApiType, [collection: u32, item: u32, from: AccountId32, to: AccountId32], {
|
|
1995
|
+
collection: u32;
|
|
1996
|
+
item: u32;
|
|
1997
|
+
from: AccountId32;
|
|
1998
|
+
to: AccountId32;
|
|
1999
|
+
}>;
|
|
2000
|
+
/**
|
|
2001
|
+
* Generic event
|
|
2002
|
+
**/
|
|
2003
|
+
[key: string]: AugmentedEvent<ApiType>;
|
|
2004
|
+
};
|
|
2005
|
+
utility: {
|
|
2006
|
+
/**
|
|
2007
|
+
* Batch of dispatches completed fully with no error.
|
|
2008
|
+
**/
|
|
2009
|
+
BatchCompleted: AugmentedEvent<ApiType, []>;
|
|
2010
|
+
/**
|
|
2011
|
+
* Batch of dispatches completed but has errors.
|
|
2012
|
+
**/
|
|
2013
|
+
BatchCompletedWithErrors: AugmentedEvent<ApiType, []>;
|
|
2014
|
+
/**
|
|
2015
|
+
* Batch of dispatches did not complete fully. Index of first failing dispatch given, as
|
|
2016
|
+
* well as the error.
|
|
2017
|
+
**/
|
|
2018
|
+
BatchInterrupted: AugmentedEvent<ApiType, [index: u32, error: SpRuntimeDispatchError], {
|
|
2019
|
+
index: u32;
|
|
2020
|
+
error: SpRuntimeDispatchError;
|
|
2021
|
+
}>;
|
|
2022
|
+
/**
|
|
2023
|
+
* A call was dispatched.
|
|
2024
|
+
**/
|
|
2025
|
+
DispatchedAs: AugmentedEvent<ApiType, [result: Result<Null, SpRuntimeDispatchError>], {
|
|
2026
|
+
result: Result<Null, SpRuntimeDispatchError>;
|
|
2027
|
+
}>;
|
|
2028
|
+
/**
|
|
2029
|
+
* A single item within a Batch of dispatches has completed with no error.
|
|
2030
|
+
**/
|
|
2031
|
+
ItemCompleted: AugmentedEvent<ApiType, []>;
|
|
2032
|
+
/**
|
|
2033
|
+
* A single item within a Batch of dispatches has completed with error.
|
|
2034
|
+
**/
|
|
2035
|
+
ItemFailed: AugmentedEvent<ApiType, [error: SpRuntimeDispatchError], {
|
|
2036
|
+
error: SpRuntimeDispatchError;
|
|
2037
|
+
}>;
|
|
2038
|
+
/**
|
|
2039
|
+
* Generic event
|
|
2040
|
+
**/
|
|
2041
|
+
[key: string]: AugmentedEvent<ApiType>;
|
|
2042
|
+
};
|
|
2043
|
+
vesting: {
|
|
2044
|
+
/**
|
|
2045
|
+
* An \[account\] has become fully vested.
|
|
2046
|
+
**/
|
|
2047
|
+
VestingCompleted: AugmentedEvent<ApiType, [account: AccountId32], {
|
|
2048
|
+
account: AccountId32;
|
|
2049
|
+
}>;
|
|
2050
|
+
/**
|
|
2051
|
+
* The amount vested has been updated. This could indicate a change in funds available.
|
|
2052
|
+
* The balance given is the amount which is left unvested (and thus locked).
|
|
2053
|
+
**/
|
|
2054
|
+
VestingUpdated: AugmentedEvent<ApiType, [account: AccountId32, unvested: u128], {
|
|
2055
|
+
account: AccountId32;
|
|
2056
|
+
unvested: u128;
|
|
2057
|
+
}>;
|
|
2058
|
+
/**
|
|
2059
|
+
* Generic event
|
|
2060
|
+
**/
|
|
2061
|
+
[key: string]: AugmentedEvent<ApiType>;
|
|
2062
|
+
};
|
|
2063
|
+
xcmpQueue: {
|
|
2064
|
+
/**
|
|
2065
|
+
* An HRMP message was sent to a sibling parachain.
|
|
2066
|
+
**/
|
|
2067
|
+
XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: U8aFixed], {
|
|
2068
|
+
messageHash: U8aFixed;
|
|
2069
|
+
}>;
|
|
2070
|
+
/**
|
|
2071
|
+
* Generic event
|
|
2072
|
+
**/
|
|
2073
|
+
[key: string]: AugmentedEvent<ApiType>;
|
|
2074
|
+
};
|
|
2075
|
+
}
|
|
2076
|
+
}
|