@argonprotocol/mainchain 1.0.12 → 1.0.13
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/README.md +18 -15
- package/lib/cjs/WageProtector.d.ts +1 -1
- package/lib/cjs/WageProtector.js +3 -2
- package/lib/cjs/WageProtector.js.map +1 -1
- package/lib/cjs/__test__/WageProtector.test.js +2 -2
- package/lib/cjs/__test__/WageProtector.test.js.map +1 -1
- package/lib/cjs/examples/decodePkcs.js +3 -3
- package/lib/cjs/examples/decodePkcs.js.map +1 -1
- package/lib/cjs/examples/findSs58Formats.js +6 -1
- package/lib/cjs/examples/findSs58Formats.js.map +1 -1
- package/lib/cjs/index.d.ts +9 -9
- package/lib/cjs/index.js.map +1 -1
- package/lib/cjs/interfaces/augment-api-consts.d.ts +0 -6
- package/lib/cjs/interfaces/augment-api-errors.d.ts +8 -0
- package/lib/cjs/interfaces/augment-api-events.d.ts +678 -149
- package/lib/cjs/interfaces/augment-api-query.d.ts +334 -129
- package/lib/cjs/interfaces/augment-api-rpc.d.ts +1 -1
- package/lib/cjs/interfaces/augment-api-tx.d.ts +362 -96
- package/lib/cjs/interfaces/lookup.d.ts +63 -54
- package/lib/cjs/interfaces/lookup.js +653 -411
- package/lib/cjs/interfaces/lookup.js.map +1 -1
- package/lib/cjs/interfaces/types-lookup.d.ts +87 -61
- package/lib/esm/WageProtector.d.ts +1 -1
- package/lib/esm/WageProtector.js +3 -2
- package/lib/esm/WageProtector.js.map +1 -1
- package/lib/esm/__test__/WageProtector.test.js +3 -3
- package/lib/esm/__test__/WageProtector.test.js.map +1 -1
- package/lib/esm/examples/decodePkcs.js +8 -8
- package/lib/esm/examples/decodePkcs.js.map +1 -1
- package/lib/esm/examples/findSs58Formats.js +6 -1
- package/lib/esm/examples/findSs58Formats.js.map +1 -1
- package/lib/esm/index.d.ts +9 -9
- package/lib/esm/index.js +7 -7
- package/lib/esm/index.js.map +1 -1
- package/lib/esm/interfaces/augment-api-consts.d.ts +0 -6
- package/lib/esm/interfaces/augment-api-errors.d.ts +8 -0
- package/lib/esm/interfaces/augment-api-events.d.ts +678 -149
- package/lib/esm/interfaces/augment-api-query.d.ts +334 -129
- package/lib/esm/interfaces/augment-api-rpc.d.ts +1 -1
- package/lib/esm/interfaces/augment-api-tx.d.ts +362 -96
- package/lib/esm/interfaces/lookup.d.ts +63 -54
- package/lib/esm/interfaces/lookup.js +653 -411
- package/lib/esm/interfaces/lookup.js.map +1 -1
- package/lib/esm/interfaces/types-lookup.d.ts +87 -61
- package/lib/tsconfig-cjs.tsbuildinfo +1 -1
- package/lib/tsconfig-types.tsbuildinfo +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/types/WageProtector.d.ts +1 -1
- package/lib/types/index.d.ts +9 -9
- package/lib/types/interfaces/augment-api-consts.d.ts +0 -6
- package/lib/types/interfaces/augment-api-errors.d.ts +8 -0
- package/lib/types/interfaces/augment-api-events.d.ts +678 -149
- package/lib/types/interfaces/augment-api-query.d.ts +334 -129
- package/lib/types/interfaces/augment-api-rpc.d.ts +1 -1
- package/lib/types/interfaces/augment-api-tx.d.ts +362 -96
- package/lib/types/interfaces/lookup.d.ts +63 -54
- package/lib/types/interfaces/types-lookup.d.ts +87 -61
- package/package.json +1 -1
|
@@ -11,21 +11,30 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
11
11
|
/**
|
|
12
12
|
* A balance was set by root.
|
|
13
13
|
**/
|
|
14
|
-
BalanceSet: AugmentedEvent<ApiType, [
|
|
14
|
+
BalanceSet: AugmentedEvent<ApiType, [
|
|
15
|
+
who: AccountId32,
|
|
16
|
+
free: u128
|
|
17
|
+
], {
|
|
15
18
|
who: AccountId32;
|
|
16
19
|
free: u128;
|
|
17
20
|
}>;
|
|
18
21
|
/**
|
|
19
22
|
* Some amount was burned from an account.
|
|
20
23
|
**/
|
|
21
|
-
Burned: AugmentedEvent<ApiType, [
|
|
24
|
+
Burned: AugmentedEvent<ApiType, [
|
|
25
|
+
who: AccountId32,
|
|
26
|
+
amount: u128
|
|
27
|
+
], {
|
|
22
28
|
who: AccountId32;
|
|
23
29
|
amount: u128;
|
|
24
30
|
}>;
|
|
25
31
|
/**
|
|
26
32
|
* Some amount was deposited (e.g. for transaction fees).
|
|
27
33
|
**/
|
|
28
|
-
Deposit: AugmentedEvent<ApiType, [
|
|
34
|
+
Deposit: AugmentedEvent<ApiType, [
|
|
35
|
+
who: AccountId32,
|
|
36
|
+
amount: u128
|
|
37
|
+
], {
|
|
29
38
|
who: AccountId32;
|
|
30
39
|
amount: u128;
|
|
31
40
|
}>;
|
|
@@ -33,21 +42,30 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
33
42
|
* An account was removed whose balance was non-zero but below ExistentialDeposit,
|
|
34
43
|
* resulting in an outright loss.
|
|
35
44
|
**/
|
|
36
|
-
DustLost: AugmentedEvent<ApiType, [
|
|
45
|
+
DustLost: AugmentedEvent<ApiType, [
|
|
46
|
+
account: AccountId32,
|
|
47
|
+
amount: u128
|
|
48
|
+
], {
|
|
37
49
|
account: AccountId32;
|
|
38
50
|
amount: u128;
|
|
39
51
|
}>;
|
|
40
52
|
/**
|
|
41
53
|
* An account was created with some free balance.
|
|
42
54
|
**/
|
|
43
|
-
Endowed: AugmentedEvent<ApiType, [
|
|
55
|
+
Endowed: AugmentedEvent<ApiType, [
|
|
56
|
+
account: AccountId32,
|
|
57
|
+
freeBalance: u128
|
|
58
|
+
], {
|
|
44
59
|
account: AccountId32;
|
|
45
60
|
freeBalance: u128;
|
|
46
61
|
}>;
|
|
47
62
|
/**
|
|
48
63
|
* Some balance was frozen.
|
|
49
64
|
**/
|
|
50
|
-
Frozen: AugmentedEvent<ApiType, [
|
|
65
|
+
Frozen: AugmentedEvent<ApiType, [
|
|
66
|
+
who: AccountId32,
|
|
67
|
+
amount: u128
|
|
68
|
+
], {
|
|
51
69
|
who: AccountId32;
|
|
52
70
|
amount: u128;
|
|
53
71
|
}>;
|
|
@@ -60,14 +78,20 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
60
78
|
/**
|
|
61
79
|
* Some balance was locked.
|
|
62
80
|
**/
|
|
63
|
-
Locked: AugmentedEvent<ApiType, [
|
|
81
|
+
Locked: AugmentedEvent<ApiType, [
|
|
82
|
+
who: AccountId32,
|
|
83
|
+
amount: u128
|
|
84
|
+
], {
|
|
64
85
|
who: AccountId32;
|
|
65
86
|
amount: u128;
|
|
66
87
|
}>;
|
|
67
88
|
/**
|
|
68
89
|
* Some amount was minted into an account.
|
|
69
90
|
**/
|
|
70
|
-
Minted: AugmentedEvent<ApiType, [
|
|
91
|
+
Minted: AugmentedEvent<ApiType, [
|
|
92
|
+
who: AccountId32,
|
|
93
|
+
amount: u128
|
|
94
|
+
], {
|
|
71
95
|
who: AccountId32;
|
|
72
96
|
amount: u128;
|
|
73
97
|
}>;
|
|
@@ -80,7 +104,10 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
80
104
|
/**
|
|
81
105
|
* Some balance was reserved (moved from free to reserved).
|
|
82
106
|
**/
|
|
83
|
-
Reserved: AugmentedEvent<ApiType, [
|
|
107
|
+
Reserved: AugmentedEvent<ApiType, [
|
|
108
|
+
who: AccountId32,
|
|
109
|
+
amount: u128
|
|
110
|
+
], {
|
|
84
111
|
who: AccountId32;
|
|
85
112
|
amount: u128;
|
|
86
113
|
}>;
|
|
@@ -88,7 +115,12 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
88
115
|
* Some balance was moved from the reserve of the first account to the second account.
|
|
89
116
|
* Final argument indicates the destination balance type.
|
|
90
117
|
**/
|
|
91
|
-
ReserveRepatriated: AugmentedEvent<ApiType, [
|
|
118
|
+
ReserveRepatriated: AugmentedEvent<ApiType, [
|
|
119
|
+
from: AccountId32,
|
|
120
|
+
to: AccountId32,
|
|
121
|
+
amount: u128,
|
|
122
|
+
destinationStatus: FrameSupportTokensMiscBalanceStatus
|
|
123
|
+
], {
|
|
92
124
|
from: AccountId32;
|
|
93
125
|
to: AccountId32;
|
|
94
126
|
amount: u128;
|
|
@@ -97,42 +129,61 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
97
129
|
/**
|
|
98
130
|
* Some amount was restored into an account.
|
|
99
131
|
**/
|
|
100
|
-
Restored: AugmentedEvent<ApiType, [
|
|
132
|
+
Restored: AugmentedEvent<ApiType, [
|
|
133
|
+
who: AccountId32,
|
|
134
|
+
amount: u128
|
|
135
|
+
], {
|
|
101
136
|
who: AccountId32;
|
|
102
137
|
amount: u128;
|
|
103
138
|
}>;
|
|
104
139
|
/**
|
|
105
140
|
* Some amount was removed from the account (e.g. for misbehavior).
|
|
106
141
|
**/
|
|
107
|
-
Slashed: AugmentedEvent<ApiType, [
|
|
142
|
+
Slashed: AugmentedEvent<ApiType, [
|
|
143
|
+
who: AccountId32,
|
|
144
|
+
amount: u128
|
|
145
|
+
], {
|
|
108
146
|
who: AccountId32;
|
|
109
147
|
amount: u128;
|
|
110
148
|
}>;
|
|
111
149
|
/**
|
|
112
150
|
* Some amount was suspended from an account (it can be restored later).
|
|
113
151
|
**/
|
|
114
|
-
Suspended: AugmentedEvent<ApiType, [
|
|
152
|
+
Suspended: AugmentedEvent<ApiType, [
|
|
153
|
+
who: AccountId32,
|
|
154
|
+
amount: u128
|
|
155
|
+
], {
|
|
115
156
|
who: AccountId32;
|
|
116
157
|
amount: u128;
|
|
117
158
|
}>;
|
|
118
159
|
/**
|
|
119
160
|
* Some balance was thawed.
|
|
120
161
|
**/
|
|
121
|
-
Thawed: AugmentedEvent<ApiType, [
|
|
162
|
+
Thawed: AugmentedEvent<ApiType, [
|
|
163
|
+
who: AccountId32,
|
|
164
|
+
amount: u128
|
|
165
|
+
], {
|
|
122
166
|
who: AccountId32;
|
|
123
167
|
amount: u128;
|
|
124
168
|
}>;
|
|
125
169
|
/**
|
|
126
170
|
* The `TotalIssuance` was forcefully changed.
|
|
127
171
|
**/
|
|
128
|
-
TotalIssuanceForced: AugmentedEvent<ApiType, [
|
|
172
|
+
TotalIssuanceForced: AugmentedEvent<ApiType, [
|
|
173
|
+
old: u128,
|
|
174
|
+
new_: u128
|
|
175
|
+
], {
|
|
129
176
|
old: u128;
|
|
130
177
|
new_: u128;
|
|
131
178
|
}>;
|
|
132
179
|
/**
|
|
133
180
|
* Transfer succeeded.
|
|
134
181
|
**/
|
|
135
|
-
Transfer: AugmentedEvent<ApiType, [
|
|
182
|
+
Transfer: AugmentedEvent<ApiType, [
|
|
183
|
+
from: AccountId32,
|
|
184
|
+
to: AccountId32,
|
|
185
|
+
amount: u128
|
|
186
|
+
], {
|
|
136
187
|
from: AccountId32;
|
|
137
188
|
to: AccountId32;
|
|
138
189
|
amount: u128;
|
|
@@ -140,33 +191,51 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
140
191
|
/**
|
|
141
192
|
* Some balance was unlocked.
|
|
142
193
|
**/
|
|
143
|
-
Unlocked: AugmentedEvent<ApiType, [
|
|
194
|
+
Unlocked: AugmentedEvent<ApiType, [
|
|
195
|
+
who: AccountId32,
|
|
196
|
+
amount: u128
|
|
197
|
+
], {
|
|
144
198
|
who: AccountId32;
|
|
145
199
|
amount: u128;
|
|
146
200
|
}>;
|
|
147
201
|
/**
|
|
148
202
|
* Some balance was unreserved (moved from reserved to free).
|
|
149
203
|
**/
|
|
150
|
-
Unreserved: AugmentedEvent<ApiType, [
|
|
204
|
+
Unreserved: AugmentedEvent<ApiType, [
|
|
205
|
+
who: AccountId32,
|
|
206
|
+
amount: u128
|
|
207
|
+
], {
|
|
151
208
|
who: AccountId32;
|
|
152
209
|
amount: u128;
|
|
153
210
|
}>;
|
|
154
211
|
/**
|
|
155
212
|
* An account was upgraded.
|
|
156
213
|
**/
|
|
157
|
-
Upgraded: AugmentedEvent<ApiType, [
|
|
214
|
+
Upgraded: AugmentedEvent<ApiType, [
|
|
215
|
+
who: AccountId32
|
|
216
|
+
], {
|
|
158
217
|
who: AccountId32;
|
|
159
218
|
}>;
|
|
160
219
|
/**
|
|
161
220
|
* Some amount was withdrawn from the account (e.g. for transaction fees).
|
|
162
221
|
**/
|
|
163
|
-
Withdraw: AugmentedEvent<ApiType, [
|
|
222
|
+
Withdraw: AugmentedEvent<ApiType, [
|
|
223
|
+
who: AccountId32,
|
|
224
|
+
amount: u128
|
|
225
|
+
], {
|
|
164
226
|
who: AccountId32;
|
|
165
227
|
amount: u128;
|
|
166
228
|
}>;
|
|
167
229
|
};
|
|
168
230
|
bitcoinLocks: {
|
|
169
|
-
BitcoinCosignPastDue: AugmentedEvent<ApiType, [
|
|
231
|
+
BitcoinCosignPastDue: AugmentedEvent<ApiType, [
|
|
232
|
+
utxoId: u64,
|
|
233
|
+
obligationId: u64,
|
|
234
|
+
vaultId: u32,
|
|
235
|
+
compensationAmount: u128,
|
|
236
|
+
compensationStillOwed: u128,
|
|
237
|
+
compensatedAccountId: AccountId32
|
|
238
|
+
], {
|
|
170
239
|
utxoId: u64;
|
|
171
240
|
obligationId: u64;
|
|
172
241
|
vaultId: u32;
|
|
@@ -174,7 +243,14 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
174
243
|
compensationStillOwed: u128;
|
|
175
244
|
compensatedAccountId: AccountId32;
|
|
176
245
|
}>;
|
|
177
|
-
BitcoinLockBurned: AugmentedEvent<ApiType, [
|
|
246
|
+
BitcoinLockBurned: AugmentedEvent<ApiType, [
|
|
247
|
+
utxoId: u64,
|
|
248
|
+
vaultId: u32,
|
|
249
|
+
obligationId: u64,
|
|
250
|
+
amountBurned: u128,
|
|
251
|
+
amountHeld: u128,
|
|
252
|
+
wasUtxoSpent: bool
|
|
253
|
+
], {
|
|
178
254
|
utxoId: u64;
|
|
179
255
|
vaultId: u32;
|
|
180
256
|
obligationId: u64;
|
|
@@ -182,20 +258,35 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
182
258
|
amountHeld: u128;
|
|
183
259
|
wasUtxoSpent: bool;
|
|
184
260
|
}>;
|
|
185
|
-
BitcoinLockCreated: AugmentedEvent<ApiType, [
|
|
261
|
+
BitcoinLockCreated: AugmentedEvent<ApiType, [
|
|
262
|
+
utxoId: u64,
|
|
263
|
+
vaultId: u32,
|
|
264
|
+
obligationId: u64,
|
|
265
|
+
lockPrice: u128,
|
|
266
|
+
accountId: AccountId32
|
|
267
|
+
], {
|
|
186
268
|
utxoId: u64;
|
|
187
269
|
vaultId: u32;
|
|
188
270
|
obligationId: u64;
|
|
189
271
|
lockPrice: u128;
|
|
190
272
|
accountId: AccountId32;
|
|
191
273
|
}>;
|
|
192
|
-
BitcoinUtxoCosigned: AugmentedEvent<ApiType, [
|
|
274
|
+
BitcoinUtxoCosigned: AugmentedEvent<ApiType, [
|
|
275
|
+
utxoId: u64,
|
|
276
|
+
obligationId: u64,
|
|
277
|
+
vaultId: u32,
|
|
278
|
+
signature: Bytes
|
|
279
|
+
], {
|
|
193
280
|
utxoId: u64;
|
|
194
281
|
obligationId: u64;
|
|
195
282
|
vaultId: u32;
|
|
196
283
|
signature: Bytes;
|
|
197
284
|
}>;
|
|
198
|
-
BitcoinUtxoCosignRequested: AugmentedEvent<ApiType, [
|
|
285
|
+
BitcoinUtxoCosignRequested: AugmentedEvent<ApiType, [
|
|
286
|
+
utxoId: u64,
|
|
287
|
+
obligationId: u64,
|
|
288
|
+
vaultId: u32
|
|
289
|
+
], {
|
|
199
290
|
utxoId: u64;
|
|
200
291
|
obligationId: u64;
|
|
201
292
|
vaultId: u32;
|
|
@@ -203,29 +294,47 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
203
294
|
/**
|
|
204
295
|
* An error occurred while refunding an overdue cosigned bitcoin lock
|
|
205
296
|
**/
|
|
206
|
-
CosignOverdueError: AugmentedEvent<ApiType, [
|
|
297
|
+
CosignOverdueError: AugmentedEvent<ApiType, [
|
|
298
|
+
utxoId: u64,
|
|
299
|
+
error: SpRuntimeDispatchError
|
|
300
|
+
], {
|
|
207
301
|
utxoId: u64;
|
|
208
302
|
error: SpRuntimeDispatchError;
|
|
209
303
|
}>;
|
|
210
304
|
};
|
|
211
305
|
bitcoinUtxos: {
|
|
212
|
-
UtxoExpiredError: AugmentedEvent<ApiType, [
|
|
306
|
+
UtxoExpiredError: AugmentedEvent<ApiType, [
|
|
307
|
+
utxoRef: ArgonPrimitivesBitcoinUtxoRef,
|
|
308
|
+
error: SpRuntimeDispatchError
|
|
309
|
+
], {
|
|
213
310
|
utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
214
311
|
error: SpRuntimeDispatchError;
|
|
215
312
|
}>;
|
|
216
|
-
UtxoRejected: AugmentedEvent<ApiType, [
|
|
313
|
+
UtxoRejected: AugmentedEvent<ApiType, [
|
|
314
|
+
utxoId: u64,
|
|
315
|
+
rejectedReason: ArgonPrimitivesBitcoinBitcoinRejectedReason
|
|
316
|
+
], {
|
|
217
317
|
utxoId: u64;
|
|
218
318
|
rejectedReason: ArgonPrimitivesBitcoinBitcoinRejectedReason;
|
|
219
319
|
}>;
|
|
220
|
-
UtxoRejectedError: AugmentedEvent<ApiType, [
|
|
320
|
+
UtxoRejectedError: AugmentedEvent<ApiType, [
|
|
321
|
+
utxoId: u64,
|
|
322
|
+
error: SpRuntimeDispatchError
|
|
323
|
+
], {
|
|
221
324
|
utxoId: u64;
|
|
222
325
|
error: SpRuntimeDispatchError;
|
|
223
326
|
}>;
|
|
224
|
-
UtxoSpent: AugmentedEvent<ApiType, [
|
|
327
|
+
UtxoSpent: AugmentedEvent<ApiType, [
|
|
328
|
+
utxoId: u64,
|
|
329
|
+
blockHeight: u64
|
|
330
|
+
], {
|
|
225
331
|
utxoId: u64;
|
|
226
332
|
blockHeight: u64;
|
|
227
333
|
}>;
|
|
228
|
-
UtxoSpentError: AugmentedEvent<ApiType, [
|
|
334
|
+
UtxoSpentError: AugmentedEvent<ApiType, [
|
|
335
|
+
utxoId: u64,
|
|
336
|
+
error: SpRuntimeDispatchError
|
|
337
|
+
], {
|
|
229
338
|
utxoId: u64;
|
|
230
339
|
error: SpRuntimeDispatchError;
|
|
231
340
|
}>;
|
|
@@ -235,26 +344,44 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
235
344
|
UtxoVerified: AugmentedEvent<ApiType, [utxoId: u64], {
|
|
236
345
|
utxoId: u64;
|
|
237
346
|
}>;
|
|
238
|
-
UtxoVerifiedError: AugmentedEvent<ApiType, [
|
|
347
|
+
UtxoVerifiedError: AugmentedEvent<ApiType, [
|
|
348
|
+
utxoId: u64,
|
|
349
|
+
error: SpRuntimeDispatchError
|
|
350
|
+
], {
|
|
239
351
|
utxoId: u64;
|
|
240
352
|
error: SpRuntimeDispatchError;
|
|
241
353
|
}>;
|
|
242
354
|
};
|
|
243
355
|
blockRewards: {
|
|
244
|
-
RewardCreated: AugmentedEvent<ApiType, [
|
|
356
|
+
RewardCreated: AugmentedEvent<ApiType, [
|
|
357
|
+
maturationBlock: u32,
|
|
358
|
+
rewards: Vec<ArgonPrimitivesBlockSealBlockPayout>
|
|
359
|
+
], {
|
|
245
360
|
maturationBlock: u32;
|
|
246
361
|
rewards: Vec<ArgonPrimitivesBlockSealBlockPayout>;
|
|
247
362
|
}>;
|
|
248
|
-
RewardCreateError: AugmentedEvent<ApiType, [
|
|
363
|
+
RewardCreateError: AugmentedEvent<ApiType, [
|
|
364
|
+
accountId: AccountId32,
|
|
365
|
+
argons: Option<u128>,
|
|
366
|
+
ownership: Option<u128>,
|
|
367
|
+
error: SpRuntimeDispatchError
|
|
368
|
+
], {
|
|
249
369
|
accountId: AccountId32;
|
|
250
370
|
argons: Option<u128>;
|
|
251
371
|
ownership: Option<u128>;
|
|
252
372
|
error: SpRuntimeDispatchError;
|
|
253
373
|
}>;
|
|
254
|
-
RewardUnlocked: AugmentedEvent<ApiType, [
|
|
374
|
+
RewardUnlocked: AugmentedEvent<ApiType, [
|
|
375
|
+
rewards: Vec<ArgonPrimitivesBlockSealBlockPayout>
|
|
376
|
+
], {
|
|
255
377
|
rewards: Vec<ArgonPrimitivesBlockSealBlockPayout>;
|
|
256
378
|
}>;
|
|
257
|
-
RewardUnlockError: AugmentedEvent<ApiType, [
|
|
379
|
+
RewardUnlockError: AugmentedEvent<ApiType, [
|
|
380
|
+
accountId: AccountId32,
|
|
381
|
+
argons: Option<u128>,
|
|
382
|
+
ownership: Option<u128>,
|
|
383
|
+
error: SpRuntimeDispatchError
|
|
384
|
+
], {
|
|
258
385
|
accountId: AccountId32;
|
|
259
386
|
argons: Option<u128>;
|
|
260
387
|
ownership: Option<u128>;
|
|
@@ -262,13 +389,23 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
262
389
|
}>;
|
|
263
390
|
};
|
|
264
391
|
blockSealSpec: {
|
|
265
|
-
ComputeDifficultyAdjusted: AugmentedEvent<ApiType, [
|
|
392
|
+
ComputeDifficultyAdjusted: AugmentedEvent<ApiType, [
|
|
393
|
+
expectedBlockTime: u64,
|
|
394
|
+
actualBlockTime: u64,
|
|
395
|
+
startDifficulty: u128,
|
|
396
|
+
newDifficulty: u128
|
|
397
|
+
], {
|
|
266
398
|
expectedBlockTime: u64;
|
|
267
399
|
actualBlockTime: u64;
|
|
268
400
|
startDifficulty: u128;
|
|
269
401
|
newDifficulty: u128;
|
|
270
402
|
}>;
|
|
271
|
-
VoteMinimumAdjusted: AugmentedEvent<ApiType, [
|
|
403
|
+
VoteMinimumAdjusted: AugmentedEvent<ApiType, [
|
|
404
|
+
expectedBlockVotes: u128,
|
|
405
|
+
actualBlockVotes: u128,
|
|
406
|
+
startVoteMinimum: u128,
|
|
407
|
+
newVoteMinimum: u128
|
|
408
|
+
], {
|
|
272
409
|
expectedBlockVotes: u128;
|
|
273
410
|
actualBlockVotes: u128;
|
|
274
411
|
startVoteMinimum: u128;
|
|
@@ -280,7 +417,11 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
280
417
|
* A localchain transfer could not be cleaned up properly. Possible invalid transfer
|
|
281
418
|
* needing investigation.
|
|
282
419
|
**/
|
|
283
|
-
PossibleInvalidLocalchainTransferAllowed: AugmentedEvent<ApiType, [
|
|
420
|
+
PossibleInvalidLocalchainTransferAllowed: AugmentedEvent<ApiType, [
|
|
421
|
+
transferId: u32,
|
|
422
|
+
notaryId: u32,
|
|
423
|
+
notebookNumber: u32
|
|
424
|
+
], {
|
|
284
425
|
transferId: u32;
|
|
285
426
|
notaryId: u32;
|
|
286
427
|
notebookNumber: u32;
|
|
@@ -288,7 +429,12 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
288
429
|
/**
|
|
289
430
|
* Taxation failed
|
|
290
431
|
**/
|
|
291
|
-
TaxationError: AugmentedEvent<ApiType, [
|
|
432
|
+
TaxationError: AugmentedEvent<ApiType, [
|
|
433
|
+
notaryId: u32,
|
|
434
|
+
notebookNumber: u32,
|
|
435
|
+
tax: u128,
|
|
436
|
+
error: SpRuntimeDispatchError
|
|
437
|
+
], {
|
|
292
438
|
notaryId: u32;
|
|
293
439
|
notebookNumber: u32;
|
|
294
440
|
tax: u128;
|
|
@@ -297,7 +443,11 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
297
443
|
/**
|
|
298
444
|
* Transfer from Localchain to Mainchain
|
|
299
445
|
**/
|
|
300
|
-
TransferFromLocalchain: AugmentedEvent<ApiType, [
|
|
446
|
+
TransferFromLocalchain: AugmentedEvent<ApiType, [
|
|
447
|
+
accountId: AccountId32,
|
|
448
|
+
amount: u128,
|
|
449
|
+
notaryId: u32
|
|
450
|
+
], {
|
|
301
451
|
accountId: AccountId32;
|
|
302
452
|
amount: u128;
|
|
303
453
|
notaryId: u32;
|
|
@@ -305,7 +455,13 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
305
455
|
/**
|
|
306
456
|
* A transfer into the mainchain failed
|
|
307
457
|
**/
|
|
308
|
-
TransferFromLocalchainError: AugmentedEvent<ApiType, [
|
|
458
|
+
TransferFromLocalchainError: AugmentedEvent<ApiType, [
|
|
459
|
+
accountId: AccountId32,
|
|
460
|
+
amount: u128,
|
|
461
|
+
notaryId: u32,
|
|
462
|
+
notebookNumber: u32,
|
|
463
|
+
error: SpRuntimeDispatchError
|
|
464
|
+
], {
|
|
309
465
|
accountId: AccountId32;
|
|
310
466
|
amount: u128;
|
|
311
467
|
notaryId: u32;
|
|
@@ -315,7 +471,13 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
315
471
|
/**
|
|
316
472
|
* Funds sent to a localchain
|
|
317
473
|
**/
|
|
318
|
-
TransferToLocalchain: AugmentedEvent<ApiType, [
|
|
474
|
+
TransferToLocalchain: AugmentedEvent<ApiType, [
|
|
475
|
+
accountId: AccountId32,
|
|
476
|
+
amount: u128,
|
|
477
|
+
transferId: u32,
|
|
478
|
+
notaryId: u32,
|
|
479
|
+
expirationTick: u64
|
|
480
|
+
], {
|
|
319
481
|
accountId: AccountId32;
|
|
320
482
|
amount: u128;
|
|
321
483
|
transferId: u32;
|
|
@@ -325,7 +487,11 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
325
487
|
/**
|
|
326
488
|
* Transfer to localchain expired and rolled back
|
|
327
489
|
**/
|
|
328
|
-
TransferToLocalchainExpired: AugmentedEvent<ApiType, [
|
|
490
|
+
TransferToLocalchainExpired: AugmentedEvent<ApiType, [
|
|
491
|
+
accountId: AccountId32,
|
|
492
|
+
transferId: u32,
|
|
493
|
+
notaryId: u32
|
|
494
|
+
], {
|
|
329
495
|
accountId: AccountId32;
|
|
330
496
|
transferId: u32;
|
|
331
497
|
notaryId: u32;
|
|
@@ -333,7 +499,13 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
333
499
|
/**
|
|
334
500
|
* An expired transfer to localchain failed to be refunded
|
|
335
501
|
**/
|
|
336
|
-
TransferToLocalchainRefundError: AugmentedEvent<ApiType, [
|
|
502
|
+
TransferToLocalchainRefundError: AugmentedEvent<ApiType, [
|
|
503
|
+
accountId: AccountId32,
|
|
504
|
+
transferId: u32,
|
|
505
|
+
notaryId: u32,
|
|
506
|
+
notebookNumber: u32,
|
|
507
|
+
error: SpRuntimeDispatchError
|
|
508
|
+
], {
|
|
337
509
|
accountId: AccountId32;
|
|
338
510
|
transferId: u32;
|
|
339
511
|
notaryId: u32;
|
|
@@ -346,13 +518,18 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
346
518
|
/**
|
|
347
519
|
* A domain was expired
|
|
348
520
|
**/
|
|
349
|
-
DomainExpired: AugmentedEvent<ApiType, [
|
|
521
|
+
DomainExpired: AugmentedEvent<ApiType, [
|
|
522
|
+
domainHash: H256
|
|
523
|
+
], {
|
|
350
524
|
domainHash: H256;
|
|
351
525
|
}>;
|
|
352
526
|
/**
|
|
353
527
|
* A domain was registered
|
|
354
528
|
**/
|
|
355
|
-
DomainRegistered: AugmentedEvent<ApiType, [
|
|
529
|
+
DomainRegistered: AugmentedEvent<ApiType, [
|
|
530
|
+
domainHash: H256,
|
|
531
|
+
registration: PalletDomainsDomainRegistration
|
|
532
|
+
], {
|
|
356
533
|
domainHash: H256;
|
|
357
534
|
registration: PalletDomainsDomainRegistration;
|
|
358
535
|
}>;
|
|
@@ -360,14 +537,21 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
360
537
|
* A domain registration was canceled due to a conflicting registration in the same
|
|
361
538
|
* tick
|
|
362
539
|
**/
|
|
363
|
-
DomainRegistrationCanceled: AugmentedEvent<ApiType, [
|
|
540
|
+
DomainRegistrationCanceled: AugmentedEvent<ApiType, [
|
|
541
|
+
domainHash: H256,
|
|
542
|
+
registration: PalletDomainsDomainRegistration
|
|
543
|
+
], {
|
|
364
544
|
domainHash: H256;
|
|
365
545
|
registration: PalletDomainsDomainRegistration;
|
|
366
546
|
}>;
|
|
367
547
|
/**
|
|
368
548
|
* A domain registration failed due to an error
|
|
369
549
|
**/
|
|
370
|
-
DomainRegistrationError: AugmentedEvent<ApiType, [
|
|
550
|
+
DomainRegistrationError: AugmentedEvent<ApiType, [
|
|
551
|
+
domainHash: H256,
|
|
552
|
+
accountId: AccountId32,
|
|
553
|
+
error: SpRuntimeDispatchError
|
|
554
|
+
], {
|
|
371
555
|
domainHash: H256;
|
|
372
556
|
accountId: AccountId32;
|
|
373
557
|
error: SpRuntimeDispatchError;
|
|
@@ -375,13 +559,18 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
375
559
|
/**
|
|
376
560
|
* A domain was registered
|
|
377
561
|
**/
|
|
378
|
-
DomainRenewed: AugmentedEvent<ApiType, [
|
|
562
|
+
DomainRenewed: AugmentedEvent<ApiType, [
|
|
563
|
+
domainHash: H256
|
|
564
|
+
], {
|
|
379
565
|
domainHash: H256;
|
|
380
566
|
}>;
|
|
381
567
|
/**
|
|
382
568
|
* A domain zone record was updated
|
|
383
569
|
**/
|
|
384
|
-
ZoneRecordUpdated: AugmentedEvent<ApiType, [
|
|
570
|
+
ZoneRecordUpdated: AugmentedEvent<ApiType, [
|
|
571
|
+
domainHash: H256,
|
|
572
|
+
zoneRecord: ArgonPrimitivesDomainZoneRecord
|
|
573
|
+
], {
|
|
385
574
|
domainHash: H256;
|
|
386
575
|
zoneRecord: ArgonPrimitivesDomainZoneRecord;
|
|
387
576
|
}>;
|
|
@@ -390,7 +579,9 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
390
579
|
/**
|
|
391
580
|
* New authority set has been applied.
|
|
392
581
|
**/
|
|
393
|
-
NewAuthorities: AugmentedEvent<ApiType, [
|
|
582
|
+
NewAuthorities: AugmentedEvent<ApiType, [
|
|
583
|
+
authoritySet: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>
|
|
584
|
+
], {
|
|
394
585
|
authoritySet: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
|
|
395
586
|
}>;
|
|
396
587
|
/**
|
|
@@ -406,21 +597,30 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
406
597
|
/**
|
|
407
598
|
* Hyperbridge governance has now updated it's host params on this chain.
|
|
408
599
|
**/
|
|
409
|
-
HostParamsUpdated: AugmentedEvent<ApiType, [
|
|
600
|
+
HostParamsUpdated: AugmentedEvent<ApiType, [
|
|
601
|
+
old: PalletHyperbridgeVersionedHostParams,
|
|
602
|
+
new_: PalletHyperbridgeVersionedHostParams
|
|
603
|
+
], {
|
|
410
604
|
old: PalletHyperbridgeVersionedHostParams;
|
|
411
605
|
new_: PalletHyperbridgeVersionedHostParams;
|
|
412
606
|
}>;
|
|
413
607
|
/**
|
|
414
608
|
* Hyperbridge has withdrawn it's protocol revenue
|
|
415
609
|
**/
|
|
416
|
-
ProtocolRevenueWithdrawn: AugmentedEvent<ApiType, [
|
|
610
|
+
ProtocolRevenueWithdrawn: AugmentedEvent<ApiType, [
|
|
611
|
+
amount: u128,
|
|
612
|
+
account: AccountId32
|
|
613
|
+
], {
|
|
417
614
|
amount: u128;
|
|
418
615
|
account: AccountId32;
|
|
419
616
|
}>;
|
|
420
617
|
/**
|
|
421
618
|
* A relayer has withdrawn some fees
|
|
422
619
|
**/
|
|
423
|
-
RelayerFeeWithdrawn: AugmentedEvent<ApiType, [
|
|
620
|
+
RelayerFeeWithdrawn: AugmentedEvent<ApiType, [
|
|
621
|
+
amount: u128,
|
|
622
|
+
account: AccountId32
|
|
623
|
+
], {
|
|
424
624
|
amount: u128;
|
|
425
625
|
account: AccountId32;
|
|
426
626
|
}>;
|
|
@@ -429,49 +629,72 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
429
629
|
/**
|
|
430
630
|
* Indicates that a consensus client has been created
|
|
431
631
|
**/
|
|
432
|
-
ConsensusClientCreated: AugmentedEvent<ApiType, [
|
|
632
|
+
ConsensusClientCreated: AugmentedEvent<ApiType, [
|
|
633
|
+
consensusClientId: U8aFixed
|
|
634
|
+
], {
|
|
433
635
|
consensusClientId: U8aFixed;
|
|
434
636
|
}>;
|
|
435
637
|
/**
|
|
436
638
|
* Indicates that a consensus client has been created
|
|
437
639
|
**/
|
|
438
|
-
ConsensusClientFrozen: AugmentedEvent<ApiType, [
|
|
640
|
+
ConsensusClientFrozen: AugmentedEvent<ApiType, [
|
|
641
|
+
consensusClientId: U8aFixed
|
|
642
|
+
], {
|
|
439
643
|
consensusClientId: U8aFixed;
|
|
440
644
|
}>;
|
|
441
645
|
/**
|
|
442
646
|
* Some errors handling some ismp messages
|
|
443
647
|
**/
|
|
444
|
-
Errors: AugmentedEvent<ApiType, [
|
|
648
|
+
Errors: AugmentedEvent<ApiType, [
|
|
649
|
+
errors: Vec<PalletIsmpErrorsHandlingError>
|
|
650
|
+
], {
|
|
445
651
|
errors: Vec<PalletIsmpErrorsHandlingError>;
|
|
446
652
|
}>;
|
|
447
653
|
/**
|
|
448
654
|
* Get Response Handled
|
|
449
655
|
**/
|
|
450
|
-
GetRequestHandled: AugmentedEvent<ApiType, [
|
|
656
|
+
GetRequestHandled: AugmentedEvent<ApiType, [
|
|
657
|
+
IsmpEventsRequestResponseHandled
|
|
658
|
+
]>;
|
|
451
659
|
/**
|
|
452
660
|
* Get request timeout handled
|
|
453
661
|
**/
|
|
454
|
-
GetRequestTimeoutHandled: AugmentedEvent<ApiType, [
|
|
662
|
+
GetRequestTimeoutHandled: AugmentedEvent<ApiType, [
|
|
663
|
+
IsmpEventsTimeoutHandled
|
|
664
|
+
]>;
|
|
455
665
|
/**
|
|
456
666
|
* Post Request Handled
|
|
457
667
|
**/
|
|
458
|
-
PostRequestHandled: AugmentedEvent<ApiType, [
|
|
668
|
+
PostRequestHandled: AugmentedEvent<ApiType, [
|
|
669
|
+
IsmpEventsRequestResponseHandled
|
|
670
|
+
]>;
|
|
459
671
|
/**
|
|
460
672
|
* Post request timeout handled
|
|
461
673
|
**/
|
|
462
|
-
PostRequestTimeoutHandled: AugmentedEvent<ApiType, [
|
|
674
|
+
PostRequestTimeoutHandled: AugmentedEvent<ApiType, [
|
|
675
|
+
IsmpEventsTimeoutHandled
|
|
676
|
+
]>;
|
|
463
677
|
/**
|
|
464
678
|
* Post Response Handled
|
|
465
679
|
**/
|
|
466
|
-
PostResponseHandled: AugmentedEvent<ApiType, [
|
|
680
|
+
PostResponseHandled: AugmentedEvent<ApiType, [
|
|
681
|
+
IsmpEventsRequestResponseHandled
|
|
682
|
+
]>;
|
|
467
683
|
/**
|
|
468
684
|
* Post response timeout handled
|
|
469
685
|
**/
|
|
470
|
-
PostResponseTimeoutHandled: AugmentedEvent<ApiType, [
|
|
686
|
+
PostResponseTimeoutHandled: AugmentedEvent<ApiType, [
|
|
687
|
+
IsmpEventsTimeoutHandled
|
|
688
|
+
]>;
|
|
471
689
|
/**
|
|
472
690
|
* An Outgoing Request has been deposited
|
|
473
691
|
**/
|
|
474
|
-
Request: AugmentedEvent<ApiType, [
|
|
692
|
+
Request: AugmentedEvent<ApiType, [
|
|
693
|
+
destChain: IsmpHostStateMachine,
|
|
694
|
+
sourceChain: IsmpHostStateMachine,
|
|
695
|
+
requestNonce: u64,
|
|
696
|
+
commitment: H256
|
|
697
|
+
], {
|
|
475
698
|
destChain: IsmpHostStateMachine;
|
|
476
699
|
sourceChain: IsmpHostStateMachine;
|
|
477
700
|
requestNonce: u64;
|
|
@@ -480,7 +703,13 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
480
703
|
/**
|
|
481
704
|
* An Outgoing Response has been deposited
|
|
482
705
|
**/
|
|
483
|
-
Response: AugmentedEvent<ApiType, [
|
|
706
|
+
Response: AugmentedEvent<ApiType, [
|
|
707
|
+
destChain: IsmpHostStateMachine,
|
|
708
|
+
sourceChain: IsmpHostStateMachine,
|
|
709
|
+
requestNonce: u64,
|
|
710
|
+
commitment: H256,
|
|
711
|
+
reqCommitment: H256
|
|
712
|
+
], {
|
|
484
713
|
destChain: IsmpHostStateMachine;
|
|
485
714
|
sourceChain: IsmpHostStateMachine;
|
|
486
715
|
requestNonce: u64;
|
|
@@ -490,14 +719,20 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
490
719
|
/**
|
|
491
720
|
* Emitted when a state commitment is vetoed by a fisherman
|
|
492
721
|
**/
|
|
493
|
-
StateCommitmentVetoed: AugmentedEvent<ApiType, [
|
|
722
|
+
StateCommitmentVetoed: AugmentedEvent<ApiType, [
|
|
723
|
+
height: IsmpConsensusStateMachineHeight,
|
|
724
|
+
fisherman: Bytes
|
|
725
|
+
], {
|
|
494
726
|
height: IsmpConsensusStateMachineHeight;
|
|
495
727
|
fisherman: Bytes;
|
|
496
728
|
}>;
|
|
497
729
|
/**
|
|
498
730
|
* Emitted when a state machine is successfully updated to a new height
|
|
499
731
|
**/
|
|
500
|
-
StateMachineUpdated: AugmentedEvent<ApiType, [
|
|
732
|
+
StateMachineUpdated: AugmentedEvent<ApiType, [
|
|
733
|
+
stateMachineId: IsmpConsensusStateMachineId,
|
|
734
|
+
latestHeight: u64
|
|
735
|
+
], {
|
|
501
736
|
stateMachineId: IsmpConsensusStateMachineId;
|
|
502
737
|
latestHeight: u64;
|
|
503
738
|
}>;
|
|
@@ -506,55 +741,95 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
506
741
|
/**
|
|
507
742
|
* State machines have been added to whitelist
|
|
508
743
|
**/
|
|
509
|
-
StateMachineAdded: AugmentedEvent<ApiType, [
|
|
744
|
+
StateMachineAdded: AugmentedEvent<ApiType, [
|
|
745
|
+
stateMachines: Vec<IsmpHostStateMachine>
|
|
746
|
+
], {
|
|
510
747
|
stateMachines: Vec<IsmpHostStateMachine>;
|
|
511
748
|
}>;
|
|
512
749
|
/**
|
|
513
750
|
* State machines have been removed from the whitelist
|
|
514
751
|
**/
|
|
515
|
-
StateMachineRemoved: AugmentedEvent<ApiType, [
|
|
752
|
+
StateMachineRemoved: AugmentedEvent<ApiType, [
|
|
753
|
+
stateMachines: Vec<IsmpHostStateMachine>
|
|
754
|
+
], {
|
|
516
755
|
stateMachines: Vec<IsmpHostStateMachine>;
|
|
517
756
|
}>;
|
|
518
757
|
};
|
|
519
758
|
miningSlot: {
|
|
520
|
-
MiningConfigurationUpdated: AugmentedEvent<ApiType, [
|
|
759
|
+
MiningConfigurationUpdated: AugmentedEvent<ApiType, [
|
|
760
|
+
ticksBeforeBidEndForVrfClose: u64,
|
|
761
|
+
ticksBetweenSlots: u64,
|
|
762
|
+
slotBiddingStartAfterTicks: u64
|
|
763
|
+
], {
|
|
521
764
|
ticksBeforeBidEndForVrfClose: u64;
|
|
522
765
|
ticksBetweenSlots: u64;
|
|
523
766
|
slotBiddingStartAfterTicks: u64;
|
|
524
767
|
}>;
|
|
525
|
-
NewMiners: AugmentedEvent<ApiType, [
|
|
768
|
+
NewMiners: AugmentedEvent<ApiType, [
|
|
769
|
+
startIndex: u32,
|
|
770
|
+
newMiners: Vec<ArgonPrimitivesBlockSealMiningRegistration>,
|
|
771
|
+
cohortId: u64
|
|
772
|
+
], {
|
|
526
773
|
startIndex: u32;
|
|
527
774
|
newMiners: Vec<ArgonPrimitivesBlockSealMiningRegistration>;
|
|
775
|
+
cohortId: u64;
|
|
528
776
|
}>;
|
|
529
|
-
ReleasedMinerSeat: AugmentedEvent<ApiType, [
|
|
777
|
+
ReleasedMinerSeat: AugmentedEvent<ApiType, [
|
|
778
|
+
accountId: AccountId32,
|
|
779
|
+
obligationId: Option<u64>,
|
|
780
|
+
preservedArgonotHold: bool
|
|
781
|
+
], {
|
|
530
782
|
accountId: AccountId32;
|
|
531
783
|
obligationId: Option<u64>;
|
|
532
784
|
preservedArgonotHold: bool;
|
|
533
785
|
}>;
|
|
534
|
-
ReleaseMinerSeatError: AugmentedEvent<ApiType, [
|
|
786
|
+
ReleaseMinerSeatError: AugmentedEvent<ApiType, [
|
|
787
|
+
accountId: AccountId32,
|
|
788
|
+
obligationId: Option<u64>,
|
|
789
|
+
error: SpRuntimeDispatchError
|
|
790
|
+
], {
|
|
535
791
|
accountId: AccountId32;
|
|
536
792
|
obligationId: Option<u64>;
|
|
537
793
|
error: SpRuntimeDispatchError;
|
|
538
794
|
}>;
|
|
539
|
-
SlotBidderAdded: AugmentedEvent<ApiType, [
|
|
795
|
+
SlotBidderAdded: AugmentedEvent<ApiType, [
|
|
796
|
+
accountId: AccountId32,
|
|
797
|
+
bidAmount: u128,
|
|
798
|
+
index: u32
|
|
799
|
+
], {
|
|
540
800
|
accountId: AccountId32;
|
|
541
801
|
bidAmount: u128;
|
|
542
802
|
index: u32;
|
|
543
803
|
}>;
|
|
544
|
-
SlotBidderReplaced: AugmentedEvent<ApiType, [
|
|
804
|
+
SlotBidderReplaced: AugmentedEvent<ApiType, [
|
|
805
|
+
accountId: AccountId32,
|
|
806
|
+
obligationId: Option<u64>,
|
|
807
|
+
preservedArgonotHold: bool
|
|
808
|
+
], {
|
|
545
809
|
accountId: AccountId32;
|
|
546
810
|
obligationId: Option<u64>;
|
|
547
811
|
preservedArgonotHold: bool;
|
|
548
812
|
}>;
|
|
549
813
|
};
|
|
550
814
|
mint: {
|
|
551
|
-
ArgonsMinted: AugmentedEvent<ApiType, [
|
|
815
|
+
ArgonsMinted: AugmentedEvent<ApiType, [
|
|
816
|
+
mintType: PalletMintMintType,
|
|
817
|
+
accountId: AccountId32,
|
|
818
|
+
utxoId: Option<u64>,
|
|
819
|
+
amount: u128
|
|
820
|
+
], {
|
|
552
821
|
mintType: PalletMintMintType;
|
|
553
822
|
accountId: AccountId32;
|
|
554
823
|
utxoId: Option<u64>;
|
|
555
824
|
amount: u128;
|
|
556
825
|
}>;
|
|
557
|
-
MintError: AugmentedEvent<ApiType, [
|
|
826
|
+
MintError: AugmentedEvent<ApiType, [
|
|
827
|
+
mintType: PalletMintMintType,
|
|
828
|
+
accountId: AccountId32,
|
|
829
|
+
utxoId: Option<u64>,
|
|
830
|
+
amount: u128,
|
|
831
|
+
error: SpRuntimeDispatchError
|
|
832
|
+
], {
|
|
558
833
|
mintType: PalletMintMintType;
|
|
559
834
|
accountId: AccountId32;
|
|
560
835
|
utxoId: Option<u64>;
|
|
@@ -566,7 +841,12 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
566
841
|
/**
|
|
567
842
|
* A multisig operation has been approved by someone.
|
|
568
843
|
**/
|
|
569
|
-
MultisigApproval: AugmentedEvent<ApiType, [
|
|
844
|
+
MultisigApproval: AugmentedEvent<ApiType, [
|
|
845
|
+
approving: AccountId32,
|
|
846
|
+
timepoint: PalletMultisigTimepoint,
|
|
847
|
+
multisig: AccountId32,
|
|
848
|
+
callHash: U8aFixed
|
|
849
|
+
], {
|
|
570
850
|
approving: AccountId32;
|
|
571
851
|
timepoint: PalletMultisigTimepoint;
|
|
572
852
|
multisig: AccountId32;
|
|
@@ -575,7 +855,12 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
575
855
|
/**
|
|
576
856
|
* A multisig operation has been cancelled.
|
|
577
857
|
**/
|
|
578
|
-
MultisigCancelled: AugmentedEvent<ApiType, [
|
|
858
|
+
MultisigCancelled: AugmentedEvent<ApiType, [
|
|
859
|
+
cancelling: AccountId32,
|
|
860
|
+
timepoint: PalletMultisigTimepoint,
|
|
861
|
+
multisig: AccountId32,
|
|
862
|
+
callHash: U8aFixed
|
|
863
|
+
], {
|
|
579
864
|
cancelling: AccountId32;
|
|
580
865
|
timepoint: PalletMultisigTimepoint;
|
|
581
866
|
multisig: AccountId32;
|
|
@@ -584,7 +869,13 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
584
869
|
/**
|
|
585
870
|
* A multisig operation has been executed.
|
|
586
871
|
**/
|
|
587
|
-
MultisigExecuted: AugmentedEvent<ApiType, [
|
|
872
|
+
MultisigExecuted: AugmentedEvent<ApiType, [
|
|
873
|
+
approving: AccountId32,
|
|
874
|
+
timepoint: PalletMultisigTimepoint,
|
|
875
|
+
multisig: AccountId32,
|
|
876
|
+
callHash: U8aFixed,
|
|
877
|
+
result: Result<Null, SpRuntimeDispatchError>
|
|
878
|
+
], {
|
|
588
879
|
approving: AccountId32;
|
|
589
880
|
timepoint: PalletMultisigTimepoint;
|
|
590
881
|
multisig: AccountId32;
|
|
@@ -594,7 +885,11 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
594
885
|
/**
|
|
595
886
|
* A new multisig operation has begun.
|
|
596
887
|
**/
|
|
597
|
-
NewMultisig: AugmentedEvent<ApiType, [
|
|
888
|
+
NewMultisig: AugmentedEvent<ApiType, [
|
|
889
|
+
approving: AccountId32,
|
|
890
|
+
multisig: AccountId32,
|
|
891
|
+
callHash: U8aFixed
|
|
892
|
+
], {
|
|
598
893
|
approving: AccountId32;
|
|
599
894
|
multisig: AccountId32;
|
|
600
895
|
callHash: U8aFixed;
|
|
@@ -604,20 +899,29 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
604
899
|
/**
|
|
605
900
|
* A notary proposal has been accepted
|
|
606
901
|
**/
|
|
607
|
-
NotaryActivated: AugmentedEvent<ApiType, [
|
|
902
|
+
NotaryActivated: AugmentedEvent<ApiType, [
|
|
903
|
+
notary: ArgonPrimitivesNotaryNotaryRecord
|
|
904
|
+
], {
|
|
608
905
|
notary: ArgonPrimitivesNotaryNotaryRecord;
|
|
609
906
|
}>;
|
|
610
907
|
/**
|
|
611
908
|
* Notary metadata updated
|
|
612
909
|
**/
|
|
613
|
-
NotaryMetaUpdated: AugmentedEvent<ApiType, [
|
|
910
|
+
NotaryMetaUpdated: AugmentedEvent<ApiType, [
|
|
911
|
+
notaryId: u32,
|
|
912
|
+
meta: ArgonPrimitivesNotaryNotaryMeta
|
|
913
|
+
], {
|
|
614
914
|
notaryId: u32;
|
|
615
915
|
meta: ArgonPrimitivesNotaryNotaryMeta;
|
|
616
916
|
}>;
|
|
617
917
|
/**
|
|
618
918
|
* Error updating queued notary info
|
|
619
919
|
**/
|
|
620
|
-
NotaryMetaUpdateError: AugmentedEvent<ApiType, [
|
|
920
|
+
NotaryMetaUpdateError: AugmentedEvent<ApiType, [
|
|
921
|
+
notaryId: u32,
|
|
922
|
+
error: SpRuntimeDispatchError,
|
|
923
|
+
meta: ArgonPrimitivesNotaryNotaryMeta
|
|
924
|
+
], {
|
|
621
925
|
notaryId: u32;
|
|
622
926
|
error: SpRuntimeDispatchError;
|
|
623
927
|
meta: ArgonPrimitivesNotaryNotaryMeta;
|
|
@@ -625,7 +929,11 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
625
929
|
/**
|
|
626
930
|
* Notary metadata queued for update
|
|
627
931
|
**/
|
|
628
|
-
NotaryMetaUpdateQueued: AugmentedEvent<ApiType, [
|
|
932
|
+
NotaryMetaUpdateQueued: AugmentedEvent<ApiType, [
|
|
933
|
+
notaryId: u32,
|
|
934
|
+
meta: ArgonPrimitivesNotaryNotaryMeta,
|
|
935
|
+
effectiveTick: u64
|
|
936
|
+
], {
|
|
629
937
|
notaryId: u32;
|
|
630
938
|
meta: ArgonPrimitivesNotaryNotaryMeta;
|
|
631
939
|
effectiveTick: u64;
|
|
@@ -633,24 +941,39 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
633
941
|
/**
|
|
634
942
|
* A user has proposed operating as a notary
|
|
635
943
|
**/
|
|
636
|
-
NotaryProposed: AugmentedEvent<ApiType, [
|
|
944
|
+
NotaryProposed: AugmentedEvent<ApiType, [
|
|
945
|
+
operatorAccount: AccountId32,
|
|
946
|
+
meta: ArgonPrimitivesNotaryNotaryMeta,
|
|
947
|
+
expires: u32
|
|
948
|
+
], {
|
|
637
949
|
operatorAccount: AccountId32;
|
|
638
950
|
meta: ArgonPrimitivesNotaryNotaryMeta;
|
|
639
951
|
expires: u32;
|
|
640
952
|
}>;
|
|
641
953
|
};
|
|
642
954
|
notebook: {
|
|
643
|
-
NotebookAuditFailure: AugmentedEvent<ApiType, [
|
|
955
|
+
NotebookAuditFailure: AugmentedEvent<ApiType, [
|
|
956
|
+
notaryId: u32,
|
|
957
|
+
notebookNumber: u32,
|
|
958
|
+
notebookHash: H256,
|
|
959
|
+
firstFailureReason: ArgonNotaryAuditErrorVerifyError
|
|
960
|
+
], {
|
|
644
961
|
notaryId: u32;
|
|
645
962
|
notebookNumber: u32;
|
|
646
963
|
notebookHash: H256;
|
|
647
964
|
firstFailureReason: ArgonNotaryAuditErrorVerifyError;
|
|
648
965
|
}>;
|
|
649
|
-
NotebookReadyForReprocess: AugmentedEvent<ApiType, [
|
|
966
|
+
NotebookReadyForReprocess: AugmentedEvent<ApiType, [
|
|
967
|
+
notaryId: u32,
|
|
968
|
+
notebookNumber: u32
|
|
969
|
+
], {
|
|
650
970
|
notaryId: u32;
|
|
651
971
|
notebookNumber: u32;
|
|
652
972
|
}>;
|
|
653
|
-
NotebookSubmitted: AugmentedEvent<ApiType, [
|
|
973
|
+
NotebookSubmitted: AugmentedEvent<ApiType, [
|
|
974
|
+
notaryId: u32,
|
|
975
|
+
notebookNumber: u32
|
|
976
|
+
], {
|
|
654
977
|
notaryId: u32;
|
|
655
978
|
notebookNumber: u32;
|
|
656
979
|
}>;
|
|
@@ -659,21 +982,30 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
659
982
|
/**
|
|
660
983
|
* A balance was set by root.
|
|
661
984
|
**/
|
|
662
|
-
BalanceSet: AugmentedEvent<ApiType, [
|
|
985
|
+
BalanceSet: AugmentedEvent<ApiType, [
|
|
986
|
+
who: AccountId32,
|
|
987
|
+
free: u128
|
|
988
|
+
], {
|
|
663
989
|
who: AccountId32;
|
|
664
990
|
free: u128;
|
|
665
991
|
}>;
|
|
666
992
|
/**
|
|
667
993
|
* Some amount was burned from an account.
|
|
668
994
|
**/
|
|
669
|
-
Burned: AugmentedEvent<ApiType, [
|
|
995
|
+
Burned: AugmentedEvent<ApiType, [
|
|
996
|
+
who: AccountId32,
|
|
997
|
+
amount: u128
|
|
998
|
+
], {
|
|
670
999
|
who: AccountId32;
|
|
671
1000
|
amount: u128;
|
|
672
1001
|
}>;
|
|
673
1002
|
/**
|
|
674
1003
|
* Some amount was deposited (e.g. for transaction fees).
|
|
675
1004
|
**/
|
|
676
|
-
Deposit: AugmentedEvent<ApiType, [
|
|
1005
|
+
Deposit: AugmentedEvent<ApiType, [
|
|
1006
|
+
who: AccountId32,
|
|
1007
|
+
amount: u128
|
|
1008
|
+
], {
|
|
677
1009
|
who: AccountId32;
|
|
678
1010
|
amount: u128;
|
|
679
1011
|
}>;
|
|
@@ -681,21 +1013,30 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
681
1013
|
* An account was removed whose balance was non-zero but below ExistentialDeposit,
|
|
682
1014
|
* resulting in an outright loss.
|
|
683
1015
|
**/
|
|
684
|
-
DustLost: AugmentedEvent<ApiType, [
|
|
1016
|
+
DustLost: AugmentedEvent<ApiType, [
|
|
1017
|
+
account: AccountId32,
|
|
1018
|
+
amount: u128
|
|
1019
|
+
], {
|
|
685
1020
|
account: AccountId32;
|
|
686
1021
|
amount: u128;
|
|
687
1022
|
}>;
|
|
688
1023
|
/**
|
|
689
1024
|
* An account was created with some free balance.
|
|
690
1025
|
**/
|
|
691
|
-
Endowed: AugmentedEvent<ApiType, [
|
|
1026
|
+
Endowed: AugmentedEvent<ApiType, [
|
|
1027
|
+
account: AccountId32,
|
|
1028
|
+
freeBalance: u128
|
|
1029
|
+
], {
|
|
692
1030
|
account: AccountId32;
|
|
693
1031
|
freeBalance: u128;
|
|
694
1032
|
}>;
|
|
695
1033
|
/**
|
|
696
1034
|
* Some balance was frozen.
|
|
697
1035
|
**/
|
|
698
|
-
Frozen: AugmentedEvent<ApiType, [
|
|
1036
|
+
Frozen: AugmentedEvent<ApiType, [
|
|
1037
|
+
who: AccountId32,
|
|
1038
|
+
amount: u128
|
|
1039
|
+
], {
|
|
699
1040
|
who: AccountId32;
|
|
700
1041
|
amount: u128;
|
|
701
1042
|
}>;
|
|
@@ -708,14 +1049,20 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
708
1049
|
/**
|
|
709
1050
|
* Some balance was locked.
|
|
710
1051
|
**/
|
|
711
|
-
Locked: AugmentedEvent<ApiType, [
|
|
1052
|
+
Locked: AugmentedEvent<ApiType, [
|
|
1053
|
+
who: AccountId32,
|
|
1054
|
+
amount: u128
|
|
1055
|
+
], {
|
|
712
1056
|
who: AccountId32;
|
|
713
1057
|
amount: u128;
|
|
714
1058
|
}>;
|
|
715
1059
|
/**
|
|
716
1060
|
* Some amount was minted into an account.
|
|
717
1061
|
**/
|
|
718
|
-
Minted: AugmentedEvent<ApiType, [
|
|
1062
|
+
Minted: AugmentedEvent<ApiType, [
|
|
1063
|
+
who: AccountId32,
|
|
1064
|
+
amount: u128
|
|
1065
|
+
], {
|
|
719
1066
|
who: AccountId32;
|
|
720
1067
|
amount: u128;
|
|
721
1068
|
}>;
|
|
@@ -728,7 +1075,10 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
728
1075
|
/**
|
|
729
1076
|
* Some balance was reserved (moved from free to reserved).
|
|
730
1077
|
**/
|
|
731
|
-
Reserved: AugmentedEvent<ApiType, [
|
|
1078
|
+
Reserved: AugmentedEvent<ApiType, [
|
|
1079
|
+
who: AccountId32,
|
|
1080
|
+
amount: u128
|
|
1081
|
+
], {
|
|
732
1082
|
who: AccountId32;
|
|
733
1083
|
amount: u128;
|
|
734
1084
|
}>;
|
|
@@ -736,7 +1086,12 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
736
1086
|
* Some balance was moved from the reserve of the first account to the second account.
|
|
737
1087
|
* Final argument indicates the destination balance type.
|
|
738
1088
|
**/
|
|
739
|
-
ReserveRepatriated: AugmentedEvent<ApiType, [
|
|
1089
|
+
ReserveRepatriated: AugmentedEvent<ApiType, [
|
|
1090
|
+
from: AccountId32,
|
|
1091
|
+
to: AccountId32,
|
|
1092
|
+
amount: u128,
|
|
1093
|
+
destinationStatus: FrameSupportTokensMiscBalanceStatus
|
|
1094
|
+
], {
|
|
740
1095
|
from: AccountId32;
|
|
741
1096
|
to: AccountId32;
|
|
742
1097
|
amount: u128;
|
|
@@ -745,42 +1100,61 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
745
1100
|
/**
|
|
746
1101
|
* Some amount was restored into an account.
|
|
747
1102
|
**/
|
|
748
|
-
Restored: AugmentedEvent<ApiType, [
|
|
1103
|
+
Restored: AugmentedEvent<ApiType, [
|
|
1104
|
+
who: AccountId32,
|
|
1105
|
+
amount: u128
|
|
1106
|
+
], {
|
|
749
1107
|
who: AccountId32;
|
|
750
1108
|
amount: u128;
|
|
751
1109
|
}>;
|
|
752
1110
|
/**
|
|
753
1111
|
* Some amount was removed from the account (e.g. for misbehavior).
|
|
754
1112
|
**/
|
|
755
|
-
Slashed: AugmentedEvent<ApiType, [
|
|
1113
|
+
Slashed: AugmentedEvent<ApiType, [
|
|
1114
|
+
who: AccountId32,
|
|
1115
|
+
amount: u128
|
|
1116
|
+
], {
|
|
756
1117
|
who: AccountId32;
|
|
757
1118
|
amount: u128;
|
|
758
1119
|
}>;
|
|
759
1120
|
/**
|
|
760
1121
|
* Some amount was suspended from an account (it can be restored later).
|
|
761
1122
|
**/
|
|
762
|
-
Suspended: AugmentedEvent<ApiType, [
|
|
1123
|
+
Suspended: AugmentedEvent<ApiType, [
|
|
1124
|
+
who: AccountId32,
|
|
1125
|
+
amount: u128
|
|
1126
|
+
], {
|
|
763
1127
|
who: AccountId32;
|
|
764
1128
|
amount: u128;
|
|
765
1129
|
}>;
|
|
766
1130
|
/**
|
|
767
1131
|
* Some balance was thawed.
|
|
768
1132
|
**/
|
|
769
|
-
Thawed: AugmentedEvent<ApiType, [
|
|
1133
|
+
Thawed: AugmentedEvent<ApiType, [
|
|
1134
|
+
who: AccountId32,
|
|
1135
|
+
amount: u128
|
|
1136
|
+
], {
|
|
770
1137
|
who: AccountId32;
|
|
771
1138
|
amount: u128;
|
|
772
1139
|
}>;
|
|
773
1140
|
/**
|
|
774
1141
|
* The `TotalIssuance` was forcefully changed.
|
|
775
1142
|
**/
|
|
776
|
-
TotalIssuanceForced: AugmentedEvent<ApiType, [
|
|
1143
|
+
TotalIssuanceForced: AugmentedEvent<ApiType, [
|
|
1144
|
+
old: u128,
|
|
1145
|
+
new_: u128
|
|
1146
|
+
], {
|
|
777
1147
|
old: u128;
|
|
778
1148
|
new_: u128;
|
|
779
1149
|
}>;
|
|
780
1150
|
/**
|
|
781
1151
|
* Transfer succeeded.
|
|
782
1152
|
**/
|
|
783
|
-
Transfer: AugmentedEvent<ApiType, [
|
|
1153
|
+
Transfer: AugmentedEvent<ApiType, [
|
|
1154
|
+
from: AccountId32,
|
|
1155
|
+
to: AccountId32,
|
|
1156
|
+
amount: u128
|
|
1157
|
+
], {
|
|
784
1158
|
from: AccountId32;
|
|
785
1159
|
to: AccountId32;
|
|
786
1160
|
amount: u128;
|
|
@@ -788,27 +1162,38 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
788
1162
|
/**
|
|
789
1163
|
* Some balance was unlocked.
|
|
790
1164
|
**/
|
|
791
|
-
Unlocked: AugmentedEvent<ApiType, [
|
|
1165
|
+
Unlocked: AugmentedEvent<ApiType, [
|
|
1166
|
+
who: AccountId32,
|
|
1167
|
+
amount: u128
|
|
1168
|
+
], {
|
|
792
1169
|
who: AccountId32;
|
|
793
1170
|
amount: u128;
|
|
794
1171
|
}>;
|
|
795
1172
|
/**
|
|
796
1173
|
* Some balance was unreserved (moved from reserved to free).
|
|
797
1174
|
**/
|
|
798
|
-
Unreserved: AugmentedEvent<ApiType, [
|
|
1175
|
+
Unreserved: AugmentedEvent<ApiType, [
|
|
1176
|
+
who: AccountId32,
|
|
1177
|
+
amount: u128
|
|
1178
|
+
], {
|
|
799
1179
|
who: AccountId32;
|
|
800
1180
|
amount: u128;
|
|
801
1181
|
}>;
|
|
802
1182
|
/**
|
|
803
1183
|
* An account was upgraded.
|
|
804
1184
|
**/
|
|
805
|
-
Upgraded: AugmentedEvent<ApiType, [
|
|
1185
|
+
Upgraded: AugmentedEvent<ApiType, [
|
|
1186
|
+
who: AccountId32
|
|
1187
|
+
], {
|
|
806
1188
|
who: AccountId32;
|
|
807
1189
|
}>;
|
|
808
1190
|
/**
|
|
809
1191
|
* Some amount was withdrawn from the account (e.g. for transaction fees).
|
|
810
1192
|
**/
|
|
811
|
-
Withdraw: AugmentedEvent<ApiType, [
|
|
1193
|
+
Withdraw: AugmentedEvent<ApiType, [
|
|
1194
|
+
who: AccountId32,
|
|
1195
|
+
amount: u128
|
|
1196
|
+
], {
|
|
812
1197
|
who: AccountId32;
|
|
813
1198
|
amount: u128;
|
|
814
1199
|
}>;
|
|
@@ -818,7 +1203,9 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
818
1203
|
* Event emitted when a new price index is submitted
|
|
819
1204
|
**/
|
|
820
1205
|
NewIndex: AugmentedEvent<ApiType, []>;
|
|
821
|
-
OperatorChanged: AugmentedEvent<ApiType, [
|
|
1206
|
+
OperatorChanged: AugmentedEvent<ApiType, [
|
|
1207
|
+
operatorId: AccountId32
|
|
1208
|
+
], {
|
|
822
1209
|
operatorId: AccountId32;
|
|
823
1210
|
}>;
|
|
824
1211
|
};
|
|
@@ -826,7 +1213,11 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
826
1213
|
/**
|
|
827
1214
|
* An announcement was placed to make a call in the future.
|
|
828
1215
|
**/
|
|
829
|
-
Announced: AugmentedEvent<ApiType, [
|
|
1216
|
+
Announced: AugmentedEvent<ApiType, [
|
|
1217
|
+
real: AccountId32,
|
|
1218
|
+
proxy: AccountId32,
|
|
1219
|
+
callHash: H256
|
|
1220
|
+
], {
|
|
830
1221
|
real: AccountId32;
|
|
831
1222
|
proxy: AccountId32;
|
|
832
1223
|
callHash: H256;
|
|
@@ -834,7 +1225,12 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
834
1225
|
/**
|
|
835
1226
|
* A proxy was added.
|
|
836
1227
|
**/
|
|
837
|
-
ProxyAdded: AugmentedEvent<ApiType, [
|
|
1228
|
+
ProxyAdded: AugmentedEvent<ApiType, [
|
|
1229
|
+
delegator: AccountId32,
|
|
1230
|
+
delegatee: AccountId32,
|
|
1231
|
+
proxyType: ArgonRuntimeProxyType,
|
|
1232
|
+
delay: u32
|
|
1233
|
+
], {
|
|
838
1234
|
delegator: AccountId32;
|
|
839
1235
|
delegatee: AccountId32;
|
|
840
1236
|
proxyType: ArgonRuntimeProxyType;
|
|
@@ -843,13 +1239,20 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
843
1239
|
/**
|
|
844
1240
|
* A proxy was executed correctly, with the given.
|
|
845
1241
|
**/
|
|
846
|
-
ProxyExecuted: AugmentedEvent<ApiType, [
|
|
1242
|
+
ProxyExecuted: AugmentedEvent<ApiType, [
|
|
1243
|
+
result: Result<Null, SpRuntimeDispatchError>
|
|
1244
|
+
], {
|
|
847
1245
|
result: Result<Null, SpRuntimeDispatchError>;
|
|
848
1246
|
}>;
|
|
849
1247
|
/**
|
|
850
1248
|
* A proxy was removed.
|
|
851
1249
|
**/
|
|
852
|
-
ProxyRemoved: AugmentedEvent<ApiType, [
|
|
1250
|
+
ProxyRemoved: AugmentedEvent<ApiType, [
|
|
1251
|
+
delegator: AccountId32,
|
|
1252
|
+
delegatee: AccountId32,
|
|
1253
|
+
proxyType: ArgonRuntimeProxyType,
|
|
1254
|
+
delay: u32
|
|
1255
|
+
], {
|
|
853
1256
|
delegator: AccountId32;
|
|
854
1257
|
delegatee: AccountId32;
|
|
855
1258
|
proxyType: ArgonRuntimeProxyType;
|
|
@@ -859,7 +1262,12 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
859
1262
|
* A pure account has been created by new proxy with given
|
|
860
1263
|
* disambiguation index and proxy type.
|
|
861
1264
|
**/
|
|
862
|
-
PureCreated: AugmentedEvent<ApiType, [
|
|
1265
|
+
PureCreated: AugmentedEvent<ApiType, [
|
|
1266
|
+
pure: AccountId32,
|
|
1267
|
+
who: AccountId32,
|
|
1268
|
+
proxyType: ArgonRuntimeProxyType,
|
|
1269
|
+
disambiguationIndex: u16
|
|
1270
|
+
], {
|
|
863
1271
|
pure: AccountId32;
|
|
864
1272
|
who: AccountId32;
|
|
865
1273
|
proxyType: ArgonRuntimeProxyType;
|
|
@@ -870,7 +1278,10 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
870
1278
|
/**
|
|
871
1279
|
* The sudo key has been updated.
|
|
872
1280
|
**/
|
|
873
|
-
KeyChanged: AugmentedEvent<ApiType, [
|
|
1281
|
+
KeyChanged: AugmentedEvent<ApiType, [
|
|
1282
|
+
old: Option<AccountId32>,
|
|
1283
|
+
new_: AccountId32
|
|
1284
|
+
], {
|
|
874
1285
|
old: Option<AccountId32>;
|
|
875
1286
|
new_: AccountId32;
|
|
876
1287
|
}>;
|
|
@@ -881,13 +1292,17 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
881
1292
|
/**
|
|
882
1293
|
* A sudo call just took place.
|
|
883
1294
|
**/
|
|
884
|
-
Sudid: AugmentedEvent<ApiType, [
|
|
1295
|
+
Sudid: AugmentedEvent<ApiType, [
|
|
1296
|
+
sudoResult: Result<Null, SpRuntimeDispatchError>
|
|
1297
|
+
], {
|
|
885
1298
|
sudoResult: Result<Null, SpRuntimeDispatchError>;
|
|
886
1299
|
}>;
|
|
887
1300
|
/**
|
|
888
1301
|
* A [sudo_as](Pallet::sudo_as) call just took place.
|
|
889
1302
|
**/
|
|
890
|
-
SudoAsDone: AugmentedEvent<ApiType, [
|
|
1303
|
+
SudoAsDone: AugmentedEvent<ApiType, [
|
|
1304
|
+
sudoResult: Result<Null, SpRuntimeDispatchError>
|
|
1305
|
+
], {
|
|
891
1306
|
sudoResult: Result<Null, SpRuntimeDispatchError>;
|
|
892
1307
|
}>;
|
|
893
1308
|
};
|
|
@@ -899,39 +1314,54 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
899
1314
|
/**
|
|
900
1315
|
* An extrinsic failed.
|
|
901
1316
|
**/
|
|
902
|
-
ExtrinsicFailed: AugmentedEvent<ApiType, [
|
|
1317
|
+
ExtrinsicFailed: AugmentedEvent<ApiType, [
|
|
1318
|
+
dispatchError: SpRuntimeDispatchError,
|
|
1319
|
+
dispatchInfo: FrameSupportDispatchDispatchInfo
|
|
1320
|
+
], {
|
|
903
1321
|
dispatchError: SpRuntimeDispatchError;
|
|
904
1322
|
dispatchInfo: FrameSupportDispatchDispatchInfo;
|
|
905
1323
|
}>;
|
|
906
1324
|
/**
|
|
907
1325
|
* An extrinsic completed successfully.
|
|
908
1326
|
**/
|
|
909
|
-
ExtrinsicSuccess: AugmentedEvent<ApiType, [
|
|
1327
|
+
ExtrinsicSuccess: AugmentedEvent<ApiType, [
|
|
1328
|
+
dispatchInfo: FrameSupportDispatchDispatchInfo
|
|
1329
|
+
], {
|
|
910
1330
|
dispatchInfo: FrameSupportDispatchDispatchInfo;
|
|
911
1331
|
}>;
|
|
912
1332
|
/**
|
|
913
1333
|
* An account was reaped.
|
|
914
1334
|
**/
|
|
915
|
-
KilledAccount: AugmentedEvent<ApiType, [
|
|
1335
|
+
KilledAccount: AugmentedEvent<ApiType, [
|
|
1336
|
+
account: AccountId32
|
|
1337
|
+
], {
|
|
916
1338
|
account: AccountId32;
|
|
917
1339
|
}>;
|
|
918
1340
|
/**
|
|
919
1341
|
* A new account was created.
|
|
920
1342
|
**/
|
|
921
|
-
NewAccount: AugmentedEvent<ApiType, [
|
|
1343
|
+
NewAccount: AugmentedEvent<ApiType, [
|
|
1344
|
+
account: AccountId32
|
|
1345
|
+
], {
|
|
922
1346
|
account: AccountId32;
|
|
923
1347
|
}>;
|
|
924
1348
|
/**
|
|
925
1349
|
* On on-chain remark happened.
|
|
926
1350
|
**/
|
|
927
|
-
Remarked: AugmentedEvent<ApiType, [
|
|
1351
|
+
Remarked: AugmentedEvent<ApiType, [
|
|
1352
|
+
sender: AccountId32,
|
|
1353
|
+
hash_: H256
|
|
1354
|
+
], {
|
|
928
1355
|
sender: AccountId32;
|
|
929
1356
|
hash_: H256;
|
|
930
1357
|
}>;
|
|
931
1358
|
/**
|
|
932
1359
|
* An upgrade was authorized.
|
|
933
1360
|
**/
|
|
934
|
-
UpgradeAuthorized: AugmentedEvent<ApiType, [
|
|
1361
|
+
UpgradeAuthorized: AugmentedEvent<ApiType, [
|
|
1362
|
+
codeHash: H256,
|
|
1363
|
+
checkVersion: bool
|
|
1364
|
+
], {
|
|
935
1365
|
codeHash: H256;
|
|
936
1366
|
checkVersion: bool;
|
|
937
1367
|
}>;
|
|
@@ -940,7 +1370,11 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
940
1370
|
/**
|
|
941
1371
|
* An asset has been received and transferred to the beneficiary's account
|
|
942
1372
|
**/
|
|
943
|
-
AssetReceived: AugmentedEvent<ApiType, [
|
|
1373
|
+
AssetReceived: AugmentedEvent<ApiType, [
|
|
1374
|
+
beneficiary: AccountId32,
|
|
1375
|
+
amount: u128,
|
|
1376
|
+
source: IsmpHostStateMachine
|
|
1377
|
+
], {
|
|
944
1378
|
beneficiary: AccountId32;
|
|
945
1379
|
amount: u128;
|
|
946
1380
|
source: IsmpHostStateMachine;
|
|
@@ -948,7 +1382,11 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
948
1382
|
/**
|
|
949
1383
|
* An asset has been refunded and transferred to the beneficiary's account
|
|
950
1384
|
**/
|
|
951
|
-
AssetRefunded: AugmentedEvent<ApiType, [
|
|
1385
|
+
AssetRefunded: AugmentedEvent<ApiType, [
|
|
1386
|
+
beneficiary: AccountId32,
|
|
1387
|
+
amount: u128,
|
|
1388
|
+
source: IsmpHostStateMachine
|
|
1389
|
+
], {
|
|
952
1390
|
beneficiary: AccountId32;
|
|
953
1391
|
amount: u128;
|
|
954
1392
|
source: IsmpHostStateMachine;
|
|
@@ -956,7 +1394,13 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
956
1394
|
/**
|
|
957
1395
|
* An asset has been teleported
|
|
958
1396
|
**/
|
|
959
|
-
AssetTeleported: AugmentedEvent<ApiType, [
|
|
1397
|
+
AssetTeleported: AugmentedEvent<ApiType, [
|
|
1398
|
+
from: AccountId32,
|
|
1399
|
+
to: H256,
|
|
1400
|
+
amount: u128,
|
|
1401
|
+
dest: IsmpHostStateMachine,
|
|
1402
|
+
commitment: H256
|
|
1403
|
+
], {
|
|
960
1404
|
from: AccountId32;
|
|
961
1405
|
to: H256;
|
|
962
1406
|
amount: u128;
|
|
@@ -966,7 +1410,9 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
966
1410
|
/**
|
|
967
1411
|
* ERC6160 asset creation request dispatched to hyperbridge
|
|
968
1412
|
**/
|
|
969
|
-
ERC6160AssetRegistrationDispatched: AugmentedEvent<ApiType, [
|
|
1413
|
+
ERC6160AssetRegistrationDispatched: AugmentedEvent<ApiType, [
|
|
1414
|
+
commitment: H256
|
|
1415
|
+
], {
|
|
970
1416
|
commitment: H256;
|
|
971
1417
|
}>;
|
|
972
1418
|
};
|
|
@@ -975,7 +1421,11 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
975
1421
|
* A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,
|
|
976
1422
|
* has been paid by `who`.
|
|
977
1423
|
**/
|
|
978
|
-
TransactionFeePaid: AugmentedEvent<ApiType, [
|
|
1424
|
+
TransactionFeePaid: AugmentedEvent<ApiType, [
|
|
1425
|
+
who: AccountId32,
|
|
1426
|
+
actualFee: u128,
|
|
1427
|
+
tip: u128
|
|
1428
|
+
], {
|
|
979
1429
|
who: AccountId32;
|
|
980
1430
|
actualFee: u128;
|
|
981
1431
|
tip: u128;
|
|
@@ -985,13 +1435,17 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
985
1435
|
/**
|
|
986
1436
|
* This pallet, or a specific call is now paused.
|
|
987
1437
|
**/
|
|
988
|
-
CallPaused: AugmentedEvent<ApiType, [
|
|
1438
|
+
CallPaused: AugmentedEvent<ApiType, [
|
|
1439
|
+
fullName: ITuple<[Bytes, Bytes]>
|
|
1440
|
+
], {
|
|
989
1441
|
fullName: ITuple<[Bytes, Bytes]>;
|
|
990
1442
|
}>;
|
|
991
1443
|
/**
|
|
992
1444
|
* This pallet, or a specific call is now unpaused.
|
|
993
1445
|
**/
|
|
994
|
-
CallUnpaused: AugmentedEvent<ApiType, [
|
|
1446
|
+
CallUnpaused: AugmentedEvent<ApiType, [
|
|
1447
|
+
fullName: ITuple<[Bytes, Bytes]>
|
|
1448
|
+
], {
|
|
995
1449
|
fullName: ITuple<[Bytes, Bytes]>;
|
|
996
1450
|
}>;
|
|
997
1451
|
};
|
|
@@ -1008,14 +1462,19 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
1008
1462
|
* Batch of dispatches did not complete fully. Index of first failing dispatch given, as
|
|
1009
1463
|
* well as the error.
|
|
1010
1464
|
**/
|
|
1011
|
-
BatchInterrupted: AugmentedEvent<ApiType, [
|
|
1465
|
+
BatchInterrupted: AugmentedEvent<ApiType, [
|
|
1466
|
+
index: u32,
|
|
1467
|
+
error: SpRuntimeDispatchError
|
|
1468
|
+
], {
|
|
1012
1469
|
index: u32;
|
|
1013
1470
|
error: SpRuntimeDispatchError;
|
|
1014
1471
|
}>;
|
|
1015
1472
|
/**
|
|
1016
1473
|
* A call was dispatched.
|
|
1017
1474
|
**/
|
|
1018
|
-
DispatchedAs: AugmentedEvent<ApiType, [
|
|
1475
|
+
DispatchedAs: AugmentedEvent<ApiType, [
|
|
1476
|
+
result: Result<Null, SpRuntimeDispatchError>
|
|
1477
|
+
], {
|
|
1019
1478
|
result: Result<Null, SpRuntimeDispatchError>;
|
|
1020
1479
|
}>;
|
|
1021
1480
|
/**
|
|
@@ -1025,30 +1484,65 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
1025
1484
|
/**
|
|
1026
1485
|
* A single item within a Batch of dispatches has completed with error.
|
|
1027
1486
|
**/
|
|
1028
|
-
ItemFailed: AugmentedEvent<ApiType, [
|
|
1487
|
+
ItemFailed: AugmentedEvent<ApiType, [
|
|
1488
|
+
error: SpRuntimeDispatchError
|
|
1489
|
+
], {
|
|
1029
1490
|
error: SpRuntimeDispatchError;
|
|
1030
1491
|
}>;
|
|
1031
1492
|
};
|
|
1032
1493
|
vaults: {
|
|
1033
|
-
|
|
1494
|
+
/**
|
|
1495
|
+
* An error occurred releasing a base fee hold
|
|
1496
|
+
**/
|
|
1497
|
+
ObligationBaseFeeMaturationError: AugmentedEvent<ApiType, [
|
|
1498
|
+
obligationId: u64,
|
|
1499
|
+
baseFee: u128,
|
|
1500
|
+
vaultId: u32,
|
|
1501
|
+
error: SpRuntimeDispatchError
|
|
1502
|
+
], {
|
|
1503
|
+
obligationId: u64;
|
|
1504
|
+
baseFee: u128;
|
|
1505
|
+
vaultId: u32;
|
|
1506
|
+
error: SpRuntimeDispatchError;
|
|
1507
|
+
}>;
|
|
1508
|
+
ObligationCanceled: AugmentedEvent<ApiType, [
|
|
1509
|
+
vaultId: u32,
|
|
1510
|
+
obligationId: u64,
|
|
1511
|
+
beneficiary: AccountId32,
|
|
1512
|
+
fundType: ArgonPrimitivesVaultFundType,
|
|
1513
|
+
returnedFee: u128
|
|
1514
|
+
], {
|
|
1034
1515
|
vaultId: u32;
|
|
1035
1516
|
obligationId: u64;
|
|
1036
1517
|
beneficiary: AccountId32;
|
|
1037
1518
|
fundType: ArgonPrimitivesVaultFundType;
|
|
1038
1519
|
returnedFee: u128;
|
|
1039
1520
|
}>;
|
|
1040
|
-
ObligationCompleted: AugmentedEvent<ApiType, [
|
|
1521
|
+
ObligationCompleted: AugmentedEvent<ApiType, [
|
|
1522
|
+
vaultId: u32,
|
|
1523
|
+
obligationId: u64
|
|
1524
|
+
], {
|
|
1041
1525
|
vaultId: u32;
|
|
1042
1526
|
obligationId: u64;
|
|
1043
1527
|
}>;
|
|
1044
1528
|
/**
|
|
1045
1529
|
* An error occurred while completing an obligation
|
|
1046
1530
|
**/
|
|
1047
|
-
ObligationCompletionError: AugmentedEvent<ApiType, [
|
|
1531
|
+
ObligationCompletionError: AugmentedEvent<ApiType, [
|
|
1532
|
+
obligationId: u64,
|
|
1533
|
+
error: SpRuntimeDispatchError
|
|
1534
|
+
], {
|
|
1048
1535
|
obligationId: u64;
|
|
1049
1536
|
error: SpRuntimeDispatchError;
|
|
1050
1537
|
}>;
|
|
1051
|
-
ObligationCreated: AugmentedEvent<ApiType, [
|
|
1538
|
+
ObligationCreated: AugmentedEvent<ApiType, [
|
|
1539
|
+
vaultId: u32,
|
|
1540
|
+
obligationId: u64,
|
|
1541
|
+
fundType: ArgonPrimitivesVaultFundType,
|
|
1542
|
+
beneficiary: AccountId32,
|
|
1543
|
+
amount: u128,
|
|
1544
|
+
expiration: ArgonPrimitivesVaultObligationExpiration
|
|
1545
|
+
], {
|
|
1052
1546
|
vaultId: u32;
|
|
1053
1547
|
obligationId: u64;
|
|
1054
1548
|
fundType: ArgonPrimitivesVaultFundType;
|
|
@@ -1056,45 +1550,80 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
1056
1550
|
amount: u128;
|
|
1057
1551
|
expiration: ArgonPrimitivesVaultObligationExpiration;
|
|
1058
1552
|
}>;
|
|
1059
|
-
ObligationModified: AugmentedEvent<ApiType, [
|
|
1553
|
+
ObligationModified: AugmentedEvent<ApiType, [
|
|
1554
|
+
vaultId: u32,
|
|
1555
|
+
obligationId: u64,
|
|
1556
|
+
amount: u128
|
|
1557
|
+
], {
|
|
1060
1558
|
vaultId: u32;
|
|
1061
1559
|
obligationId: u64;
|
|
1062
1560
|
amount: u128;
|
|
1063
1561
|
}>;
|
|
1064
|
-
VaultBitcoinXpubChange: AugmentedEvent<ApiType, [
|
|
1562
|
+
VaultBitcoinXpubChange: AugmentedEvent<ApiType, [
|
|
1563
|
+
vaultId: u32
|
|
1564
|
+
], {
|
|
1065
1565
|
vaultId: u32;
|
|
1066
1566
|
}>;
|
|
1067
|
-
VaultBondedArgonsChangeScheduled: AugmentedEvent<ApiType, [
|
|
1567
|
+
VaultBondedArgonsChangeScheduled: AugmentedEvent<ApiType, [
|
|
1568
|
+
vaultId: u32,
|
|
1569
|
+
changeTick: u64
|
|
1570
|
+
], {
|
|
1068
1571
|
vaultId: u32;
|
|
1069
1572
|
changeTick: u64;
|
|
1070
1573
|
}>;
|
|
1071
|
-
VaultBondedArgonsIncreased: AugmentedEvent<ApiType, [
|
|
1574
|
+
VaultBondedArgonsIncreased: AugmentedEvent<ApiType, [
|
|
1575
|
+
vaultId: u32,
|
|
1576
|
+
bondedArgons: u128
|
|
1577
|
+
], {
|
|
1072
1578
|
vaultId: u32;
|
|
1073
1579
|
bondedArgons: u128;
|
|
1074
1580
|
}>;
|
|
1075
|
-
VaultClosed: AugmentedEvent<ApiType, [
|
|
1581
|
+
VaultClosed: AugmentedEvent<ApiType, [
|
|
1582
|
+
vaultId: u32,
|
|
1583
|
+
bitcoinAmountStillReserved: u128,
|
|
1584
|
+
miningAmountStillReserved: u128,
|
|
1585
|
+
securitizationStillReserved: u128
|
|
1586
|
+
], {
|
|
1076
1587
|
vaultId: u32;
|
|
1077
1588
|
bitcoinAmountStillReserved: u128;
|
|
1078
1589
|
miningAmountStillReserved: u128;
|
|
1079
1590
|
securitizationStillReserved: u128;
|
|
1080
1591
|
}>;
|
|
1081
|
-
VaultCreated: AugmentedEvent<ApiType, [
|
|
1592
|
+
VaultCreated: AugmentedEvent<ApiType, [
|
|
1593
|
+
vaultId: u32,
|
|
1594
|
+
bitcoinArgons: u128,
|
|
1595
|
+
bondedArgons: u128,
|
|
1596
|
+
addedSecuritizationPercent: u128,
|
|
1597
|
+
operatorAccountId: AccountId32,
|
|
1598
|
+
activationTick: u64
|
|
1599
|
+
], {
|
|
1082
1600
|
vaultId: u32;
|
|
1083
1601
|
bitcoinArgons: u128;
|
|
1084
1602
|
bondedArgons: u128;
|
|
1085
1603
|
addedSecuritizationPercent: u128;
|
|
1086
1604
|
operatorAccountId: AccountId32;
|
|
1087
|
-
|
|
1088
|
-
|
|
1605
|
+
activationTick: u64;
|
|
1606
|
+
}>;
|
|
1607
|
+
VaultModified: AugmentedEvent<ApiType, [
|
|
1608
|
+
vaultId: u32,
|
|
1609
|
+
bitcoinArgons: u128,
|
|
1610
|
+
bondedArgons: u128,
|
|
1611
|
+
addedSecuritizationPercent: u128
|
|
1612
|
+
], {
|
|
1089
1613
|
vaultId: u32;
|
|
1090
1614
|
bitcoinArgons: u128;
|
|
1091
1615
|
bondedArgons: u128;
|
|
1092
1616
|
addedSecuritizationPercent: u128;
|
|
1093
1617
|
}>;
|
|
1094
|
-
VaultTermsChanged: AugmentedEvent<ApiType, [
|
|
1618
|
+
VaultTermsChanged: AugmentedEvent<ApiType, [
|
|
1619
|
+
vaultId: u32
|
|
1620
|
+
], {
|
|
1095
1621
|
vaultId: u32;
|
|
1096
1622
|
}>;
|
|
1097
|
-
VaultTermsChangeScheduled: AugmentedEvent<ApiType, [
|
|
1623
|
+
VaultTermsChangeScheduled: AugmentedEvent<ApiType, [
|
|
1624
|
+
vaultId: u32,
|
|
1625
|
+
changeTick: u64
|
|
1626
|
+
], {
|
|
1098
1627
|
vaultId: u32;
|
|
1099
1628
|
changeTick: u64;
|
|
1100
1629
|
}>;
|