@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.
Files changed (58) hide show
  1. package/README.md +18 -15
  2. package/lib/cjs/WageProtector.d.ts +1 -1
  3. package/lib/cjs/WageProtector.js +3 -2
  4. package/lib/cjs/WageProtector.js.map +1 -1
  5. package/lib/cjs/__test__/WageProtector.test.js +2 -2
  6. package/lib/cjs/__test__/WageProtector.test.js.map +1 -1
  7. package/lib/cjs/examples/decodePkcs.js +3 -3
  8. package/lib/cjs/examples/decodePkcs.js.map +1 -1
  9. package/lib/cjs/examples/findSs58Formats.js +6 -1
  10. package/lib/cjs/examples/findSs58Formats.js.map +1 -1
  11. package/lib/cjs/index.d.ts +9 -9
  12. package/lib/cjs/index.js.map +1 -1
  13. package/lib/cjs/interfaces/augment-api-consts.d.ts +0 -6
  14. package/lib/cjs/interfaces/augment-api-errors.d.ts +8 -0
  15. package/lib/cjs/interfaces/augment-api-events.d.ts +678 -149
  16. package/lib/cjs/interfaces/augment-api-query.d.ts +334 -129
  17. package/lib/cjs/interfaces/augment-api-rpc.d.ts +1 -1
  18. package/lib/cjs/interfaces/augment-api-tx.d.ts +362 -96
  19. package/lib/cjs/interfaces/lookup.d.ts +63 -54
  20. package/lib/cjs/interfaces/lookup.js +653 -411
  21. package/lib/cjs/interfaces/lookup.js.map +1 -1
  22. package/lib/cjs/interfaces/types-lookup.d.ts +87 -61
  23. package/lib/esm/WageProtector.d.ts +1 -1
  24. package/lib/esm/WageProtector.js +3 -2
  25. package/lib/esm/WageProtector.js.map +1 -1
  26. package/lib/esm/__test__/WageProtector.test.js +3 -3
  27. package/lib/esm/__test__/WageProtector.test.js.map +1 -1
  28. package/lib/esm/examples/decodePkcs.js +8 -8
  29. package/lib/esm/examples/decodePkcs.js.map +1 -1
  30. package/lib/esm/examples/findSs58Formats.js +6 -1
  31. package/lib/esm/examples/findSs58Formats.js.map +1 -1
  32. package/lib/esm/index.d.ts +9 -9
  33. package/lib/esm/index.js +7 -7
  34. package/lib/esm/index.js.map +1 -1
  35. package/lib/esm/interfaces/augment-api-consts.d.ts +0 -6
  36. package/lib/esm/interfaces/augment-api-errors.d.ts +8 -0
  37. package/lib/esm/interfaces/augment-api-events.d.ts +678 -149
  38. package/lib/esm/interfaces/augment-api-query.d.ts +334 -129
  39. package/lib/esm/interfaces/augment-api-rpc.d.ts +1 -1
  40. package/lib/esm/interfaces/augment-api-tx.d.ts +362 -96
  41. package/lib/esm/interfaces/lookup.d.ts +63 -54
  42. package/lib/esm/interfaces/lookup.js +653 -411
  43. package/lib/esm/interfaces/lookup.js.map +1 -1
  44. package/lib/esm/interfaces/types-lookup.d.ts +87 -61
  45. package/lib/tsconfig-cjs.tsbuildinfo +1 -1
  46. package/lib/tsconfig-types.tsbuildinfo +1 -1
  47. package/lib/tsconfig.tsbuildinfo +1 -1
  48. package/lib/types/WageProtector.d.ts +1 -1
  49. package/lib/types/index.d.ts +9 -9
  50. package/lib/types/interfaces/augment-api-consts.d.ts +0 -6
  51. package/lib/types/interfaces/augment-api-errors.d.ts +8 -0
  52. package/lib/types/interfaces/augment-api-events.d.ts +678 -149
  53. package/lib/types/interfaces/augment-api-query.d.ts +334 -129
  54. package/lib/types/interfaces/augment-api-rpc.d.ts +1 -1
  55. package/lib/types/interfaces/augment-api-tx.d.ts +362 -96
  56. package/lib/types/interfaces/lookup.d.ts +63 -54
  57. package/lib/types/interfaces/types-lookup.d.ts +87 -61
  58. package/package.json +1 -1
@@ -19,7 +19,10 @@ declare module '@polkadot/api-base/types/submittable' {
19
19
  * Unlike sending funds to a _burn_ address, which merely makes the funds inaccessible,
20
20
  * this `burn` operation will reduce total issuance by the amount _burned_.
21
21
  **/
22
- burn: AugmentedSubmittable<(value: Compact<u128> | AnyNumber | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, bool]>;
22
+ burn: AugmentedSubmittable<(value: Compact<u128> | AnyNumber | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [
23
+ Compact<u128>,
24
+ bool
25
+ ]>;
23
26
  /**
24
27
  * Adjust the total issuance in a saturating way.
25
28
  *
@@ -27,7 +30,10 @@ declare module '@polkadot/api-base/types/submittable' {
27
30
  *
28
31
  * # Example
29
32
  **/
30
- forceAdjustTotalIssuance: AugmentedSubmittable<(direction: PalletBalancesAdjustmentDirection | 'Increase' | 'Decrease' | number | Uint8Array, delta: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletBalancesAdjustmentDirection, Compact<u128>]>;
33
+ forceAdjustTotalIssuance: AugmentedSubmittable<(direction: PalletBalancesAdjustmentDirection | 'Increase' | 'Decrease' | number | Uint8Array, delta: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
34
+ PalletBalancesAdjustmentDirection,
35
+ Compact<u128>
36
+ ]>;
31
37
  /**
32
38
  * Set the regular balance of a given account.
33
39
  *
@@ -43,7 +49,10 @@ declare module '@polkadot/api-base/types/submittable' {
43
49
  Address32: any;
44
50
  } | {
45
51
  Address20: any;
46
- } | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
52
+ } | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
53
+ MultiAddress,
54
+ Compact<u128>
55
+ ]>;
47
56
  /**
48
57
  * Exactly as `transfer_allow_death`, except the origin must be root and the source account
49
58
  * may be specified.
@@ -68,7 +77,11 @@ declare module '@polkadot/api-base/types/submittable' {
68
77
  Address32: any;
69
78
  } | {
70
79
  Address20: any;
71
- } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Compact<u128>]>;
80
+ } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
81
+ MultiAddress,
82
+ MultiAddress,
83
+ Compact<u128>
84
+ ]>;
72
85
  /**
73
86
  * Unreserve some balance from a user by force.
74
87
  *
@@ -84,7 +97,10 @@ declare module '@polkadot/api-base/types/submittable' {
84
97
  Address32: any;
85
98
  } | {
86
99
  Address20: any;
87
- } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u128]>;
100
+ } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
101
+ MultiAddress,
102
+ u128
103
+ ]>;
88
104
  /**
89
105
  * Transfer the entire transferable balance from the caller account.
90
106
  *
@@ -112,7 +128,10 @@ declare module '@polkadot/api-base/types/submittable' {
112
128
  Address32: any;
113
129
  } | {
114
130
  Address20: any;
115
- } | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, bool]>;
131
+ } | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [
132
+ MultiAddress,
133
+ bool
134
+ ]>;
116
135
  /**
117
136
  * Transfer some liquid free balance to another account.
118
137
  *
@@ -132,7 +151,10 @@ declare module '@polkadot/api-base/types/submittable' {
132
151
  Address32: any;
133
152
  } | {
134
153
  Address20: any;
135
- } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
154
+ } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
155
+ MultiAddress,
156
+ Compact<u128>
157
+ ]>;
136
158
  /**
137
159
  * Same as the [`transfer_allow_death`] call, but with a check that the transfer will not
138
160
  * kill the origin account.
@@ -151,7 +173,10 @@ declare module '@polkadot/api-base/types/submittable' {
151
173
  Address32: any;
152
174
  } | {
153
175
  Address20: any;
154
- } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
176
+ } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
177
+ MultiAddress,
178
+ Compact<u128>
179
+ ]>;
155
180
  /**
156
181
  * Upgrade a specified account.
157
182
  *
@@ -162,10 +187,14 @@ declare module '@polkadot/api-base/types/submittable' {
162
187
  * be upgraded. (We let some not have to be upgraded just in order to allow for the
163
188
  * possibility of churn).
164
189
  **/
165
- upgradeAccounts: AugmentedSubmittable<(who: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>]>;
190
+ upgradeAccounts: AugmentedSubmittable<(who: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
191
+ Vec<AccountId32>
192
+ ]>;
166
193
  };
167
194
  bitcoinLocks: {
168
- adminModifyMinimumLockedSats: AugmentedSubmittable<(satoshis: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
195
+ adminModifyMinimumLockedSats: AugmentedSubmittable<(satoshis: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
196
+ u64
197
+ ]>;
169
198
  /**
170
199
  * Submitted by a Vault operator to cosign the release of a bitcoin utxo. The Bitcoin owner
171
200
  * release fee will be burned, and the obligation will be allowed to expire without
@@ -174,7 +203,10 @@ declare module '@polkadot/api-base/types/submittable' {
174
203
  * This is submitted as a no-fee transaction off chain to allow keys to remain in cold
175
204
  * wallets.
176
205
  **/
177
- cosignRelease: AugmentedSubmittable<(utxoId: u64 | AnyNumber | Uint8Array, signature: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, Bytes]>;
206
+ cosignRelease: AugmentedSubmittable<(utxoId: u64 | AnyNumber | Uint8Array, signature: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
207
+ u64,
208
+ Bytes
209
+ ]>;
178
210
  /**
179
211
  * Initialize a bitcoin lock. This will create a LockedBitcoin for the submitting account
180
212
  * and log the Bitcoin Script hash to Events.
@@ -185,7 +217,11 @@ declare module '@polkadot/api-base/types/submittable' {
185
217
  * NOTE: A "lock-er" must sends btc to the cosign UTXO address in order to "complete" the
186
218
  * LockedBitcoin and be added to the Bitcoin Mint line.
187
219
  **/
188
- initialize: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, satoshis: Compact<u64> | AnyNumber | Uint8Array, bitcoinPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Compact<u64>, ArgonPrimitivesBitcoinCompressedBitcoinPubkey]>;
220
+ initialize: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, satoshis: Compact<u64> | AnyNumber | Uint8Array, bitcoinPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
221
+ u32,
222
+ Compact<u64>,
223
+ ArgonPrimitivesBitcoinCompressedBitcoinPubkey
224
+ ]>;
189
225
  /**
190
226
  * Submitted by a Bitcoin holder to trigger the release of their Utxo out of the cosign
191
227
  * script. A transaction spending the UTXO should be pre-created so that the sighash
@@ -194,7 +230,11 @@ declare module '@polkadot/api-base/types/submittable' {
194
230
  *
195
231
  * Owner must submit a script pubkey and also a fee to pay to the bitcoin network.
196
232
  **/
197
- requestRelease: AugmentedSubmittable<(utxoId: u64 | AnyNumber | Uint8Array, toScriptPubkey: Bytes | string | Uint8Array, bitcoinNetworkFee: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, Bytes, u64]>;
233
+ requestRelease: AugmentedSubmittable<(utxoId: u64 | AnyNumber | Uint8Array, toScriptPubkey: Bytes | string | Uint8Array, bitcoinNetworkFee: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
234
+ u64,
235
+ Bytes,
236
+ u64
237
+ ]>;
198
238
  };
199
239
  bitcoinUtxos: {
200
240
  /**
@@ -204,14 +244,19 @@ declare module '@polkadot/api-base/types/submittable' {
204
244
  * # Arguments
205
245
  * * `bitcoin_height` - the latest bitcoin block height to be confirmed
206
246
  **/
207
- setConfirmedBlock: AugmentedSubmittable<(bitcoinHeight: u64 | AnyNumber | Uint8Array, bitcoinBlockHash: ArgonPrimitivesBitcoinH256Le | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, ArgonPrimitivesBitcoinH256Le]>;
247
+ setConfirmedBlock: AugmentedSubmittable<(bitcoinHeight: u64 | AnyNumber | Uint8Array, bitcoinBlockHash: ArgonPrimitivesBitcoinH256Le | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
248
+ u64,
249
+ ArgonPrimitivesBitcoinH256Le
250
+ ]>;
208
251
  /**
209
252
  * Sets the oracle operator account id (only executable by the Root account)
210
253
  *
211
254
  * # Arguments
212
255
  * * `account_id` - the account id of the operator
213
256
  **/
214
- setOperator: AugmentedSubmittable<(accountId: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
257
+ setOperator: AugmentedSubmittable<(accountId: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
258
+ AccountId32
259
+ ]>;
215
260
  /**
216
261
  * Submitted when a bitcoin UTXO has been moved or confirmed
217
262
  **/
@@ -220,30 +265,45 @@ declare module '@polkadot/api-base/types/submittable' {
220
265
  verified?: any;
221
266
  invalid?: any;
222
267
  syncToBlock?: any;
223
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [ArgonPrimitivesInherentsBitcoinUtxoSync]>;
268
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
269
+ ArgonPrimitivesInherentsBitcoinUtxoSync
270
+ ]>;
224
271
  };
225
272
  blockRewards: {
226
- setBlockRewardsPaused: AugmentedSubmittable<(paused: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [bool]>;
273
+ setBlockRewardsPaused: AugmentedSubmittable<(paused: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [
274
+ bool
275
+ ]>;
227
276
  };
228
277
  blockSeal: {
229
278
  apply: AugmentedSubmittable<(seal: ArgonPrimitivesInherentsBlockSealInherent | {
230
279
  Vote: any;
231
280
  } | {
232
281
  Compute: any;
233
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [ArgonPrimitivesInherentsBlockSealInherent]>;
282
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
283
+ ArgonPrimitivesInherentsBlockSealInherent
284
+ ]>;
234
285
  };
235
286
  blockSealSpec: {
236
- configure: AugmentedSubmittable<(voteMinimum: Option<u128> | null | Uint8Array | u128 | AnyNumber, computeDifficulty: Option<u128> | null | Uint8Array | u128 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u128>, Option<u128>]>;
287
+ configure: AugmentedSubmittable<(voteMinimum: Option<u128> | null | Uint8Array | u128 | AnyNumber, computeDifficulty: Option<u128> | null | Uint8Array | u128 | AnyNumber) => SubmittableExtrinsic<ApiType>, [
288
+ Option<u128>,
289
+ Option<u128>
290
+ ]>;
237
291
  };
238
292
  chainTransfer: {
239
- sendToLocalchain: AugmentedSubmittable<(amount: Compact<u128> | AnyNumber | Uint8Array, notaryId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, u32]>;
293
+ sendToLocalchain: AugmentedSubmittable<(amount: Compact<u128> | AnyNumber | Uint8Array, notaryId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
294
+ Compact<u128>,
295
+ u32
296
+ ]>;
240
297
  };
241
298
  domains: {
242
299
  setZoneRecord: AugmentedSubmittable<(domainHash: H256 | string | Uint8Array, zoneRecord: ArgonPrimitivesDomainZoneRecord | {
243
300
  paymentAccount?: any;
244
301
  notaryId?: any;
245
302
  versions?: any;
246
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256, ArgonPrimitivesDomainZoneRecord]>;
303
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
304
+ H256,
305
+ ArgonPrimitivesDomainZoneRecord
306
+ ]>;
247
307
  };
248
308
  grandpa: {
249
309
  /**
@@ -260,7 +320,10 @@ declare module '@polkadot/api-base/types/submittable' {
260
320
  *
261
321
  * Only callable by root.
262
322
  **/
263
- noteStalled: AugmentedSubmittable<(delay: u32 | AnyNumber | Uint8Array, bestFinalizedBlockNumber: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
323
+ noteStalled: AugmentedSubmittable<(delay: u32 | AnyNumber | Uint8Array, bestFinalizedBlockNumber: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
324
+ u32,
325
+ u32
326
+ ]>;
264
327
  /**
265
328
  * Report voter equivocation/misbehavior. This method will verify the
266
329
  * equivocation proof and validate the given key ownership proof
@@ -270,7 +333,10 @@ declare module '@polkadot/api-base/types/submittable' {
270
333
  reportEquivocation: AugmentedSubmittable<(equivocationProof: SpConsensusGrandpaEquivocationProof | {
271
334
  setId?: any;
272
335
  equivocation?: any;
273
- } | string | Uint8Array, keyOwnerProof: SpCoreVoid | null) => SubmittableExtrinsic<ApiType>, [SpConsensusGrandpaEquivocationProof, SpCoreVoid]>;
336
+ } | string | Uint8Array, keyOwnerProof: SpCoreVoid | null) => SubmittableExtrinsic<ApiType>, [
337
+ SpConsensusGrandpaEquivocationProof,
338
+ SpCoreVoid
339
+ ]>;
274
340
  /**
275
341
  * Report voter equivocation/misbehavior. This method will verify the
276
342
  * equivocation proof and validate the given key ownership proof
@@ -285,7 +351,10 @@ declare module '@polkadot/api-base/types/submittable' {
285
351
  reportEquivocationUnsigned: AugmentedSubmittable<(equivocationProof: SpConsensusGrandpaEquivocationProof | {
286
352
  setId?: any;
287
353
  equivocation?: any;
288
- } | string | Uint8Array, keyOwnerProof: SpCoreVoid | null) => SubmittableExtrinsic<ApiType>, [SpConsensusGrandpaEquivocationProof, SpCoreVoid]>;
354
+ } | string | Uint8Array, keyOwnerProof: SpCoreVoid | null) => SubmittableExtrinsic<ApiType>, [
355
+ SpConsensusGrandpaEquivocationProof,
356
+ SpCoreVoid
357
+ ]>;
289
358
  };
290
359
  ismp: {
291
360
  /**
@@ -304,7 +373,9 @@ declare module '@polkadot/api-base/types/submittable' {
304
373
  unbondingPeriod?: any;
305
374
  challengePeriods?: any;
306
375
  stateMachineCommitments?: any;
307
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [IsmpMessagingCreateConsensusState]>;
376
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
377
+ IsmpMessagingCreateConsensusState
378
+ ]>;
308
379
  /**
309
380
  * Add more funds to a message (request or response) to be used for delivery and execution.
310
381
  *
@@ -314,7 +385,9 @@ declare module '@polkadot/api-base/types/submittable' {
314
385
  fundMessage: AugmentedSubmittable<(message: PalletIsmpUtilsFundMessageParams | {
315
386
  commitment?: any;
316
387
  amount?: any;
317
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletIsmpUtilsFundMessageParams]>;
388
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
389
+ PalletIsmpUtilsFundMessageParams
390
+ ]>;
318
391
  /**
319
392
  * Execute the provided batch of ISMP messages, this will short-circuit and revert if any
320
393
  * of the provided messages are invalid. This is an unsigned extrinsic that permits anyone
@@ -337,7 +410,9 @@ declare module '@polkadot/api-base/types/submittable' {
337
410
  Response: any;
338
411
  } | {
339
412
  Timeout: any;
340
- } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<IsmpMessagingMessage>]>;
413
+ } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
414
+ Vec<IsmpMessagingMessage>
415
+ ]>;
341
416
  /**
342
417
  * Modify the unbonding period and challenge period for a consensus state.
343
418
  * The dispatch origin for this call must be `T::AdminOrigin`.
@@ -348,7 +423,9 @@ declare module '@polkadot/api-base/types/submittable' {
348
423
  consensusStateId?: any;
349
424
  unbondingPeriod?: any;
350
425
  challengePeriods?: any;
351
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletIsmpUtilsUpdateConsensusState]>;
426
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
427
+ PalletIsmpUtilsUpdateConsensusState
428
+ ]>;
352
429
  };
353
430
  ismpGrandpa: {
354
431
  /**
@@ -357,7 +434,9 @@ declare module '@polkadot/api-base/types/submittable' {
357
434
  addStateMachines: AugmentedSubmittable<(newStateMachines: Vec<IsmpGrandpaAddStateMachine> | (IsmpGrandpaAddStateMachine | {
358
435
  stateMachine?: any;
359
436
  slotDuration?: any;
360
- } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<IsmpGrandpaAddStateMachine>]>;
437
+ } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
438
+ Vec<IsmpGrandpaAddStateMachine>
439
+ ]>;
361
440
  /**
362
441
  * Remove a state machine from the list of supported state machines
363
442
  **/
@@ -371,7 +450,9 @@ declare module '@polkadot/api-base/types/submittable' {
371
450
  Substrate: any;
372
451
  } | {
373
452
  Tendermint: any;
374
- } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<IsmpHostStateMachine>]>;
453
+ } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
454
+ Vec<IsmpHostStateMachine>
455
+ ]>;
375
456
  };
376
457
  miningSlot: {
377
458
  /**
@@ -414,11 +495,17 @@ declare module '@polkadot/api-base/types/submittable' {
414
495
  } | string | Uint8Array, keys: ArgonRuntimeSessionKeys | {
415
496
  grandpa?: any;
416
497
  blockSealAuthority?: any;
417
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Option<PalletMiningSlotMiningSlotBid>, ArgonPrimitivesBlockSealRewardDestination, ArgonRuntimeSessionKeys]>;
498
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
499
+ Option<PalletMiningSlotMiningSlotBid>,
500
+ ArgonPrimitivesBlockSealRewardDestination,
501
+ ArgonRuntimeSessionKeys
502
+ ]>;
418
503
  /**
419
504
  * Admin function to update the mining slot delay.
420
505
  **/
421
- configureMiningSlotDelay: AugmentedSubmittable<(miningSlotDelay: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
506
+ configureMiningSlotDelay: AugmentedSubmittable<(miningSlotDelay: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
507
+ u64
508
+ ]>;
422
509
  };
423
510
  mint: {};
424
511
  multisig: {
@@ -460,7 +547,13 @@ declare module '@polkadot/api-base/types/submittable' {
460
547
  } | string, callHash: U8aFixed | string | Uint8Array, maxWeight: SpWeightsWeightV2Weight | {
461
548
  refTime?: any;
462
549
  proofSize?: any;
463
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, Vec<AccountId32>, Option<PalletMultisigTimepoint>, U8aFixed, SpWeightsWeightV2Weight]>;
550
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
551
+ u16,
552
+ Vec<AccountId32>,
553
+ Option<PalletMultisigTimepoint>,
554
+ U8aFixed,
555
+ SpWeightsWeightV2Weight
556
+ ]>;
464
557
  /**
465
558
  * Register approval for a dispatch to be made from a deterministic composite account if
466
559
  * approved by a total of `threshold - 1` of `other_signatories`.
@@ -508,7 +601,13 @@ declare module '@polkadot/api-base/types/submittable' {
508
601
  } | string, call: Call | IMethod | string | Uint8Array, maxWeight: SpWeightsWeightV2Weight | {
509
602
  refTime?: any;
510
603
  proofSize?: any;
511
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, Vec<AccountId32>, Option<PalletMultisigTimepoint>, Call, SpWeightsWeightV2Weight]>;
604
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
605
+ u16,
606
+ Vec<AccountId32>,
607
+ Option<PalletMultisigTimepoint>,
608
+ Call,
609
+ SpWeightsWeightV2Weight
610
+ ]>;
512
611
  /**
513
612
  * Immediately dispatch a multi-signature call using a single approval from the caller.
514
613
  *
@@ -523,7 +622,10 @@ declare module '@polkadot/api-base/types/submittable' {
523
622
  * ## Complexity
524
623
  * O(Z + C) where Z is the length of the call and C its execution weight.
525
624
  **/
526
- asMultiThreshold1: AugmentedSubmittable<(otherSignatories: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>, Call]>;
625
+ asMultiThreshold1: AugmentedSubmittable<(otherSignatories: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
626
+ Vec<AccountId32>,
627
+ Call
628
+ ]>;
527
629
  /**
528
630
  * Cancel a pre-existing, on-going multisig transaction. Any deposit reserved previously
529
631
  * for this operation will be unreserved on success.
@@ -550,15 +652,24 @@ declare module '@polkadot/api-base/types/submittable' {
550
652
  cancelAsMulti: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], timepoint: PalletMultisigTimepoint | {
551
653
  height?: any;
552
654
  index?: any;
553
- } | string | Uint8Array, callHash: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, Vec<AccountId32>, PalletMultisigTimepoint, U8aFixed]>;
655
+ } | string | Uint8Array, callHash: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
656
+ u16,
657
+ Vec<AccountId32>,
658
+ PalletMultisigTimepoint,
659
+ U8aFixed
660
+ ]>;
554
661
  };
555
662
  notaries: {
556
- activate: AugmentedSubmittable<(operatorAccount: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
663
+ activate: AugmentedSubmittable<(operatorAccount: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
664
+ AccountId32
665
+ ]>;
557
666
  propose: AugmentedSubmittable<(meta: ArgonPrimitivesNotaryNotaryMeta | {
558
667
  name?: any;
559
668
  public?: any;
560
669
  hosts?: any;
561
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [ArgonPrimitivesNotaryNotaryMeta]>;
670
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
671
+ ArgonPrimitivesNotaryNotaryMeta
672
+ ]>;
562
673
  /**
563
674
  * Update the metadata of a notary, to be effective at the given tick height, which must be
564
675
  * >= MetaChangesTickDelay ticks in the future.
@@ -567,14 +678,22 @@ declare module '@polkadot/api-base/types/submittable' {
567
678
  name?: any;
568
679
  public?: any;
569
680
  hosts?: any;
570
- } | string | Uint8Array, effectiveTick: Compact<u64> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, ArgonPrimitivesNotaryNotaryMeta, Compact<u64>]>;
681
+ } | string | Uint8Array, effectiveTick: Compact<u64> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
682
+ Compact<u32>,
683
+ ArgonPrimitivesNotaryNotaryMeta,
684
+ Compact<u64>
685
+ ]>;
571
686
  };
572
687
  notebook: {
573
688
  submit: AugmentedSubmittable<(notebooks: Vec<ArgonPrimitivesNotebookSignedNotebookHeader> | (ArgonPrimitivesNotebookSignedNotebookHeader | {
574
689
  header?: any;
575
690
  signature?: any;
576
- } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<ArgonPrimitivesNotebookSignedNotebookHeader>]>;
577
- unlock: AugmentedSubmittable<(notaryId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
691
+ } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
692
+ Vec<ArgonPrimitivesNotebookSignedNotebookHeader>
693
+ ]>;
694
+ unlock: AugmentedSubmittable<(notaryId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
695
+ u32
696
+ ]>;
578
697
  };
579
698
  ownership: {
580
699
  /**
@@ -586,7 +705,10 @@ declare module '@polkadot/api-base/types/submittable' {
586
705
  * Unlike sending funds to a _burn_ address, which merely makes the funds inaccessible,
587
706
  * this `burn` operation will reduce total issuance by the amount _burned_.
588
707
  **/
589
- burn: AugmentedSubmittable<(value: Compact<u128> | AnyNumber | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, bool]>;
708
+ burn: AugmentedSubmittable<(value: Compact<u128> | AnyNumber | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [
709
+ Compact<u128>,
710
+ bool
711
+ ]>;
590
712
  /**
591
713
  * Adjust the total issuance in a saturating way.
592
714
  *
@@ -594,7 +716,10 @@ declare module '@polkadot/api-base/types/submittable' {
594
716
  *
595
717
  * # Example
596
718
  **/
597
- forceAdjustTotalIssuance: AugmentedSubmittable<(direction: PalletBalancesAdjustmentDirection | 'Increase' | 'Decrease' | number | Uint8Array, delta: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletBalancesAdjustmentDirection, Compact<u128>]>;
719
+ forceAdjustTotalIssuance: AugmentedSubmittable<(direction: PalletBalancesAdjustmentDirection | 'Increase' | 'Decrease' | number | Uint8Array, delta: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
720
+ PalletBalancesAdjustmentDirection,
721
+ Compact<u128>
722
+ ]>;
598
723
  /**
599
724
  * Set the regular balance of a given account.
600
725
  *
@@ -610,7 +735,10 @@ declare module '@polkadot/api-base/types/submittable' {
610
735
  Address32: any;
611
736
  } | {
612
737
  Address20: any;
613
- } | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
738
+ } | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
739
+ MultiAddress,
740
+ Compact<u128>
741
+ ]>;
614
742
  /**
615
743
  * Exactly as `transfer_allow_death`, except the origin must be root and the source account
616
744
  * may be specified.
@@ -635,7 +763,11 @@ declare module '@polkadot/api-base/types/submittable' {
635
763
  Address32: any;
636
764
  } | {
637
765
  Address20: any;
638
- } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Compact<u128>]>;
766
+ } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
767
+ MultiAddress,
768
+ MultiAddress,
769
+ Compact<u128>
770
+ ]>;
639
771
  /**
640
772
  * Unreserve some balance from a user by force.
641
773
  *
@@ -651,7 +783,10 @@ declare module '@polkadot/api-base/types/submittable' {
651
783
  Address32: any;
652
784
  } | {
653
785
  Address20: any;
654
- } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u128]>;
786
+ } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
787
+ MultiAddress,
788
+ u128
789
+ ]>;
655
790
  /**
656
791
  * Transfer the entire transferable balance from the caller account.
657
792
  *
@@ -679,7 +814,10 @@ declare module '@polkadot/api-base/types/submittable' {
679
814
  Address32: any;
680
815
  } | {
681
816
  Address20: any;
682
- } | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, bool]>;
817
+ } | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [
818
+ MultiAddress,
819
+ bool
820
+ ]>;
683
821
  /**
684
822
  * Transfer some liquid free balance to another account.
685
823
  *
@@ -699,7 +837,10 @@ declare module '@polkadot/api-base/types/submittable' {
699
837
  Address32: any;
700
838
  } | {
701
839
  Address20: any;
702
- } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
840
+ } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
841
+ MultiAddress,
842
+ Compact<u128>
843
+ ]>;
703
844
  /**
704
845
  * Same as the [`transfer_allow_death`] call, but with a check that the transfer will not
705
846
  * kill the origin account.
@@ -718,7 +859,10 @@ declare module '@polkadot/api-base/types/submittable' {
718
859
  Address32: any;
719
860
  } | {
720
861
  Address20: any;
721
- } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
862
+ } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
863
+ MultiAddress,
864
+ Compact<u128>
865
+ ]>;
722
866
  /**
723
867
  * Upgrade a specified account.
724
868
  *
@@ -729,7 +873,9 @@ declare module '@polkadot/api-base/types/submittable' {
729
873
  * be upgraded. (We let some not have to be upgraded just in order to allow for the
730
874
  * possibility of churn).
731
875
  **/
732
- upgradeAccounts: AugmentedSubmittable<(who: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>]>;
876
+ upgradeAccounts: AugmentedSubmittable<(who: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
877
+ Vec<AccountId32>
878
+ ]>;
733
879
  };
734
880
  priceIndex: {
735
881
  /**
@@ -738,7 +884,9 @@ declare module '@polkadot/api-base/types/submittable' {
738
884
  * # Arguments
739
885
  * * `account_id` - the account id of the operator
740
886
  **/
741
- setOperator: AugmentedSubmittable<(accountId: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
887
+ setOperator: AugmentedSubmittable<(accountId: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
888
+ AccountId32
889
+ ]>;
742
890
  /**
743
891
  * Submit the latest price index. Only valid for the configured operator account
744
892
  **/
@@ -747,7 +895,9 @@ declare module '@polkadot/api-base/types/submittable' {
747
895
  argonUsdPrice?: any;
748
896
  argonUsdTargetPrice?: any;
749
897
  tick?: any;
750
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletPriceIndexPriceIndex]>;
898
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
899
+ PalletPriceIndexPriceIndex
900
+ ]>;
751
901
  };
752
902
  proxy: {
753
903
  /**
@@ -771,7 +921,11 @@ declare module '@polkadot/api-base/types/submittable' {
771
921
  Address32: any;
772
922
  } | {
773
923
  Address20: any;
774
- } | string | Uint8Array, proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, ArgonRuntimeProxyType, u32]>;
924
+ } | string | Uint8Array, proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
925
+ MultiAddress,
926
+ ArgonRuntimeProxyType,
927
+ u32
928
+ ]>;
775
929
  /**
776
930
  * Publish the hash of a proxy-call that will be made in the future.
777
931
  *
@@ -799,7 +953,10 @@ declare module '@polkadot/api-base/types/submittable' {
799
953
  Address32: any;
800
954
  } | {
801
955
  Address20: any;
802
- } | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, H256]>;
956
+ } | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
957
+ MultiAddress,
958
+ H256
959
+ ]>;
803
960
  /**
804
961
  * Spawn a fresh new account that is guaranteed to be otherwise inaccessible, and
805
962
  * initialize it with a proxy of `proxy_type` for `origin` sender.
@@ -820,7 +977,11 @@ declare module '@polkadot/api-base/types/submittable' {
820
977
  *
821
978
  * Fails if there are insufficient funds to pay for deposit.
822
979
  **/
823
- createPure: AugmentedSubmittable<(proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array, index: u16 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [ArgonRuntimeProxyType, u32, u16]>;
980
+ createPure: AugmentedSubmittable<(proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array, index: u16 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
981
+ ArgonRuntimeProxyType,
982
+ u32,
983
+ u16
984
+ ]>;
824
985
  /**
825
986
  * Removes a previously spawned pure proxy.
826
987
  *
@@ -849,7 +1010,13 @@ declare module '@polkadot/api-base/types/submittable' {
849
1010
  Address32: any;
850
1011
  } | {
851
1012
  Address20: any;
852
- } | string | Uint8Array, proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | number | Uint8Array, index: u16 | AnyNumber | Uint8Array, height: Compact<u32> | AnyNumber | Uint8Array, extIndex: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, ArgonRuntimeProxyType, u16, Compact<u32>, Compact<u32>]>;
1013
+ } | string | Uint8Array, proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | number | Uint8Array, index: u16 | AnyNumber | Uint8Array, height: Compact<u32> | AnyNumber | Uint8Array, extIndex: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1014
+ MultiAddress,
1015
+ ArgonRuntimeProxyType,
1016
+ u16,
1017
+ Compact<u32>,
1018
+ Compact<u32>
1019
+ ]>;
853
1020
  /**
854
1021
  * Dispatch the given `call` from an account that the sender is authorised for through
855
1022
  * `add_proxy`.
@@ -871,7 +1038,11 @@ declare module '@polkadot/api-base/types/submittable' {
871
1038
  Address32: any;
872
1039
  } | {
873
1040
  Address20: any;
874
- } | string | Uint8Array, forceProxyType: Option<ArgonRuntimeProxyType> | null | Uint8Array | ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | number, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Option<ArgonRuntimeProxyType>, Call]>;
1041
+ } | string | Uint8Array, forceProxyType: Option<ArgonRuntimeProxyType> | null | Uint8Array | ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | number, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1042
+ MultiAddress,
1043
+ Option<ArgonRuntimeProxyType>,
1044
+ Call
1045
+ ]>;
875
1046
  /**
876
1047
  * Dispatch the given `call` from an account that the sender is authorized for through
877
1048
  * `add_proxy`.
@@ -905,7 +1076,12 @@ declare module '@polkadot/api-base/types/submittable' {
905
1076
  Address32: any;
906
1077
  } | {
907
1078
  Address20: any;
908
- } | string | Uint8Array, forceProxyType: Option<ArgonRuntimeProxyType> | null | Uint8Array | ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | number, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Option<ArgonRuntimeProxyType>, Call]>;
1079
+ } | string | Uint8Array, forceProxyType: Option<ArgonRuntimeProxyType> | null | Uint8Array | ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | number, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1080
+ MultiAddress,
1081
+ MultiAddress,
1082
+ Option<ArgonRuntimeProxyType>,
1083
+ Call
1084
+ ]>;
909
1085
  /**
910
1086
  * Remove the given announcement of a delegate.
911
1087
  *
@@ -928,7 +1104,10 @@ declare module '@polkadot/api-base/types/submittable' {
928
1104
  Address32: any;
929
1105
  } | {
930
1106
  Address20: any;
931
- } | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, H256]>;
1107
+ } | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1108
+ MultiAddress,
1109
+ H256
1110
+ ]>;
932
1111
  /**
933
1112
  * Remove a given announcement.
934
1113
  *
@@ -951,7 +1130,10 @@ declare module '@polkadot/api-base/types/submittable' {
951
1130
  Address32: any;
952
1131
  } | {
953
1132
  Address20: any;
954
- } | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, H256]>;
1133
+ } | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1134
+ MultiAddress,
1135
+ H256
1136
+ ]>;
955
1137
  /**
956
1138
  * Unregister all proxy accounts for the sender.
957
1139
  *
@@ -960,7 +1142,8 @@ declare module '@polkadot/api-base/types/submittable' {
960
1142
  * WARNING: This may be called on accounts created by `pure`, however if done, then
961
1143
  * the unreserved fees will be inaccessible. **All access to this account will be lost.**
962
1144
  **/
963
- removeProxies: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
1145
+ removeProxies: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, [
1146
+ ]>;
964
1147
  /**
965
1148
  * Unregister a proxy account for the sender.
966
1149
  *
@@ -980,7 +1163,11 @@ declare module '@polkadot/api-base/types/submittable' {
980
1163
  Address32: any;
981
1164
  } | {
982
1165
  Address20: any;
983
- } | string | Uint8Array, proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, ArgonRuntimeProxyType, u32]>;
1166
+ } | string | Uint8Array, proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1167
+ MultiAddress,
1168
+ ArgonRuntimeProxyType,
1169
+ u32
1170
+ ]>;
984
1171
  };
985
1172
  sudo: {
986
1173
  /**
@@ -1003,11 +1190,15 @@ declare module '@polkadot/api-base/types/submittable' {
1003
1190
  Address32: any;
1004
1191
  } | {
1005
1192
  Address20: any;
1006
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
1193
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1194
+ MultiAddress
1195
+ ]>;
1007
1196
  /**
1008
1197
  * Authenticates the sudo key and dispatches a function call with `Root` origin.
1009
1198
  **/
1010
- sudo: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call]>;
1199
+ sudo: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1200
+ Call
1201
+ ]>;
1011
1202
  /**
1012
1203
  * Authenticates the sudo key and dispatches a function call with `Signed` origin from
1013
1204
  * a given account.
@@ -1024,7 +1215,10 @@ declare module '@polkadot/api-base/types/submittable' {
1024
1215
  Address32: any;
1025
1216
  } | {
1026
1217
  Address20: any;
1027
- } | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Call]>;
1218
+ } | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1219
+ MultiAddress,
1220
+ Call
1221
+ ]>;
1028
1222
  /**
1029
1223
  * Authenticates the sudo key and dispatches a function call with `Root` origin.
1030
1224
  * This function does not check the weight of the call, and instead allows the
@@ -1035,7 +1229,10 @@ declare module '@polkadot/api-base/types/submittable' {
1035
1229
  sudoUncheckedWeight: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array, weight: SpWeightsWeightV2Weight | {
1036
1230
  refTime?: any;
1037
1231
  proofSize?: any;
1038
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, SpWeightsWeightV2Weight]>;
1232
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1233
+ Call,
1234
+ SpWeightsWeightV2Weight
1235
+ ]>;
1039
1236
  };
1040
1237
  system: {
1041
1238
  /**
@@ -1049,14 +1246,18 @@ declare module '@polkadot/api-base/types/submittable' {
1049
1246
  *
1050
1247
  * All origins are allowed.
1051
1248
  **/
1052
- applyAuthorizedUpgrade: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
1249
+ applyAuthorizedUpgrade: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1250
+ Bytes
1251
+ ]>;
1053
1252
  /**
1054
1253
  * Authorize an upgrade to a given `code_hash` for the runtime. The runtime can be supplied
1055
1254
  * later.
1056
1255
  *
1057
1256
  * This call requires Root origin.
1058
1257
  **/
1059
- authorizeUpgrade: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256]>;
1258
+ authorizeUpgrade: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1259
+ H256
1260
+ ]>;
1060
1261
  /**
1061
1262
  * Authorize an upgrade to a given `code_hash` for the runtime. The runtime can be supplied
1062
1263
  * later.
@@ -1067,47 +1268,66 @@ declare module '@polkadot/api-base/types/submittable' {
1067
1268
  *
1068
1269
  * This call requires Root origin.
1069
1270
  **/
1070
- authorizeUpgradeWithoutChecks: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256]>;
1271
+ authorizeUpgradeWithoutChecks: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1272
+ H256
1273
+ ]>;
1071
1274
  /**
1072
1275
  * Kill all storage items with a key that starts with the given prefix.
1073
1276
  *
1074
1277
  * **NOTE:** We rely on the Root origin to provide us the number of subkeys under
1075
1278
  * the prefix we are removing to accurately calculate the weight of this function.
1076
1279
  **/
1077
- killPrefix: AugmentedSubmittable<(prefix: Bytes | string | Uint8Array, subkeys: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes, u32]>;
1280
+ killPrefix: AugmentedSubmittable<(prefix: Bytes | string | Uint8Array, subkeys: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1281
+ Bytes,
1282
+ u32
1283
+ ]>;
1078
1284
  /**
1079
1285
  * Kill some items from storage.
1080
1286
  **/
1081
- killStorage: AugmentedSubmittable<(keys: Vec<Bytes> | (Bytes | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Bytes>]>;
1287
+ killStorage: AugmentedSubmittable<(keys: Vec<Bytes> | (Bytes | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
1288
+ Vec<Bytes>
1289
+ ]>;
1082
1290
  /**
1083
1291
  * Make some on-chain remark.
1084
1292
  *
1085
1293
  * Can be executed by every `origin`.
1086
1294
  **/
1087
- remark: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
1295
+ remark: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1296
+ Bytes
1297
+ ]>;
1088
1298
  /**
1089
1299
  * Make some on-chain remark and emit event.
1090
1300
  **/
1091
- remarkWithEvent: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
1301
+ remarkWithEvent: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1302
+ Bytes
1303
+ ]>;
1092
1304
  /**
1093
1305
  * Set the new runtime code.
1094
1306
  **/
1095
- setCode: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
1307
+ setCode: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1308
+ Bytes
1309
+ ]>;
1096
1310
  /**
1097
1311
  * Set the new runtime code without doing any checks of the given `code`.
1098
1312
  *
1099
1313
  * Note that runtime upgrades will not run if this is called with a not-increasing spec
1100
1314
  * version!
1101
1315
  **/
1102
- setCodeWithoutChecks: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
1316
+ setCodeWithoutChecks: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1317
+ Bytes
1318
+ ]>;
1103
1319
  /**
1104
1320
  * Set the number of pages in the WebAssembly environment's heap.
1105
1321
  **/
1106
- setHeapPages: AugmentedSubmittable<(pages: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
1322
+ setHeapPages: AugmentedSubmittable<(pages: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1323
+ u64
1324
+ ]>;
1107
1325
  /**
1108
1326
  * Set some items of storage.
1109
1327
  **/
1110
- setStorage: AugmentedSubmittable<(items: Vec<ITuple<[Bytes, Bytes]>> | ([Bytes | string | Uint8Array, Bytes | string | Uint8Array])[]) => SubmittableExtrinsic<ApiType>, [Vec<ITuple<[Bytes, Bytes]>>]>;
1328
+ setStorage: AugmentedSubmittable<(items: Vec<ITuple<[Bytes, Bytes]>> | [Bytes | string | Uint8Array, Bytes | string | Uint8Array][]) => SubmittableExtrinsic<ApiType>, [
1329
+ Vec<ITuple<[Bytes, Bytes]>>
1330
+ ]>;
1111
1331
  };
1112
1332
  ticks: {};
1113
1333
  timestamp: {
@@ -1132,7 +1352,9 @@ declare module '@polkadot/api-base/types/submittable' {
1132
1352
  * `on_finalize`)
1133
1353
  * - 1 event handler `on_timestamp_set`. Must be `O(1)`.
1134
1354
  **/
1135
- set: AugmentedSubmittable<(now: Compact<u64> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u64>]>;
1355
+ set: AugmentedSubmittable<(now: Compact<u64> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1356
+ Compact<u64>
1357
+ ]>;
1136
1358
  };
1137
1359
  tokenGateway: {
1138
1360
  /**
@@ -1147,11 +1369,15 @@ declare module '@polkadot/api-base/types/submittable' {
1147
1369
  reg?: any;
1148
1370
  native?: any;
1149
1371
  precision?: any;
1150
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletTokenGatewayAssetRegistration]>;
1372
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1373
+ PalletTokenGatewayAssetRegistration
1374
+ ]>;
1151
1375
  /**
1152
1376
  * Set the token gateway address for specified chains
1153
1377
  **/
1154
- setTokenGatewayAddresses: AugmentedSubmittable<(addresses: BTreeMap<IsmpHostStateMachine, Bytes>) => SubmittableExtrinsic<ApiType>, [BTreeMap<IsmpHostStateMachine, Bytes>]>;
1378
+ setTokenGatewayAddresses: AugmentedSubmittable<(addresses: BTreeMap<IsmpHostStateMachine, Bytes>) => SubmittableExtrinsic<ApiType>, [
1379
+ BTreeMap<IsmpHostStateMachine, Bytes>
1380
+ ]>;
1155
1381
  /**
1156
1382
  * Teleports a registered asset
1157
1383
  * locks the asset and dispatches a request to token gateway on the destination
@@ -1166,14 +1392,18 @@ declare module '@polkadot/api-base/types/submittable' {
1166
1392
  relayerFee?: any;
1167
1393
  callData?: any;
1168
1394
  redeem?: any;
1169
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletTokenGatewayTeleportParams]>;
1395
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1396
+ PalletTokenGatewayTeleportParams
1397
+ ]>;
1170
1398
  /**
1171
1399
  * Update the precision for an existing asset
1172
1400
  **/
1173
1401
  updateAssetPrecision: AugmentedSubmittable<(update: PalletTokenGatewayPrecisionUpdate | {
1174
1402
  assetId?: any;
1175
1403
  precisions?: any;
1176
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletTokenGatewayPrecisionUpdate]>;
1404
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1405
+ PalletTokenGatewayPrecisionUpdate
1406
+ ]>;
1177
1407
  /**
1178
1408
  * Registers a multi-chain ERC6160 asset. The asset should not already exist.
1179
1409
  *
@@ -1185,7 +1415,9 @@ declare module '@polkadot/api-base/types/submittable' {
1185
1415
  addChains?: any;
1186
1416
  removeChains?: any;
1187
1417
  newAdmins?: any;
1188
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [TokenGatewayPrimitivesGatewayAssetUpdate]>;
1418
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1419
+ TokenGatewayPrimitivesGatewayAssetUpdate
1420
+ ]>;
1189
1421
  };
1190
1422
  txPause: {
1191
1423
  /**
@@ -1194,14 +1426,18 @@ declare module '@polkadot/api-base/types/submittable' {
1194
1426
  * Can only be called by [`Config::PauseOrigin`].
1195
1427
  * Emits an [`Event::CallPaused`] event on success.
1196
1428
  **/
1197
- pause: AugmentedSubmittable<(fullName: ITuple<[Bytes, Bytes]> | [Bytes | string | Uint8Array, Bytes | string | Uint8Array]) => SubmittableExtrinsic<ApiType>, [ITuple<[Bytes, Bytes]>]>;
1429
+ pause: AugmentedSubmittable<(fullName: ITuple<[Bytes, Bytes]> | [Bytes | string | Uint8Array, Bytes | string | Uint8Array]) => SubmittableExtrinsic<ApiType>, [
1430
+ ITuple<[Bytes, Bytes]>
1431
+ ]>;
1198
1432
  /**
1199
1433
  * Un-pause a call.
1200
1434
  *
1201
1435
  * Can only be called by [`Config::UnpauseOrigin`].
1202
1436
  * Emits an [`Event::CallUnpaused`] event on success.
1203
1437
  **/
1204
- unpause: AugmentedSubmittable<(ident: ITuple<[Bytes, Bytes]> | [Bytes | string | Uint8Array, Bytes | string | Uint8Array]) => SubmittableExtrinsic<ApiType>, [ITuple<[Bytes, Bytes]>]>;
1438
+ unpause: AugmentedSubmittable<(ident: ITuple<[Bytes, Bytes]> | [Bytes | string | Uint8Array, Bytes | string | Uint8Array]) => SubmittableExtrinsic<ApiType>, [
1439
+ ITuple<[Bytes, Bytes]>
1440
+ ]>;
1205
1441
  };
1206
1442
  utility: {
1207
1443
  /**
@@ -1219,7 +1455,10 @@ declare module '@polkadot/api-base/types/submittable' {
1219
1455
  *
1220
1456
  * The dispatch origin for this call must be _Signed_.
1221
1457
  **/
1222
- asDerivative: AugmentedSubmittable<(index: u16 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, Call]>;
1458
+ asDerivative: AugmentedSubmittable<(index: u16 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1459
+ u16,
1460
+ Call
1461
+ ]>;
1223
1462
  /**
1224
1463
  * Send a batch of dispatch calls.
1225
1464
  *
@@ -1240,7 +1479,9 @@ declare module '@polkadot/api-base/types/submittable' {
1240
1479
  * and the error of the failed call. If all were successful, then the `BatchCompleted`
1241
1480
  * event is deposited.
1242
1481
  **/
1243
- batch: AugmentedSubmittable<(calls: Vec<Call> | (Call | IMethod | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Call>]>;
1482
+ batch: AugmentedSubmittable<(calls: Vec<Call> | (Call | IMethod | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
1483
+ Vec<Call>
1484
+ ]>;
1244
1485
  /**
1245
1486
  * Send a batch of dispatch calls and atomically execute them.
1246
1487
  * The whole transaction will rollback and fail if any of the calls failed.
@@ -1256,7 +1497,9 @@ declare module '@polkadot/api-base/types/submittable' {
1256
1497
  * ## Complexity
1257
1498
  * - O(C) where C is the number of calls to be batched.
1258
1499
  **/
1259
- batchAll: AugmentedSubmittable<(calls: Vec<Call> | (Call | IMethod | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Call>]>;
1500
+ batchAll: AugmentedSubmittable<(calls: Vec<Call> | (Call | IMethod | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
1501
+ Vec<Call>
1502
+ ]>;
1260
1503
  /**
1261
1504
  * Dispatches a function call with a provided origin.
1262
1505
  *
@@ -1269,7 +1512,10 @@ declare module '@polkadot/api-base/types/submittable' {
1269
1512
  system: any;
1270
1513
  } | {
1271
1514
  Void: any;
1272
- } | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [ArgonRuntimeOriginCaller, Call]>;
1515
+ } | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1516
+ ArgonRuntimeOriginCaller,
1517
+ Call
1518
+ ]>;
1273
1519
  /**
1274
1520
  * Send a batch of dispatch calls.
1275
1521
  * Unlike `batch`, it allows errors and won't interrupt.
@@ -1285,7 +1531,9 @@ declare module '@polkadot/api-base/types/submittable' {
1285
1531
  * ## Complexity
1286
1532
  * - O(C) where C is the number of calls to be batched.
1287
1533
  **/
1288
- forceBatch: AugmentedSubmittable<(calls: Vec<Call> | (Call | IMethod | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Call>]>;
1534
+ forceBatch: AugmentedSubmittable<(calls: Vec<Call> | (Call | IMethod | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
1535
+ Vec<Call>
1536
+ ]>;
1289
1537
  /**
1290
1538
  * Dispatch a function call with a specified weight.
1291
1539
  *
@@ -1297,21 +1545,28 @@ declare module '@polkadot/api-base/types/submittable' {
1297
1545
  withWeight: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array, weight: SpWeightsWeightV2Weight | {
1298
1546
  refTime?: any;
1299
1547
  proofSize?: any;
1300
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, SpWeightsWeightV2Weight]>;
1548
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1549
+ Call,
1550
+ SpWeightsWeightV2Weight
1551
+ ]>;
1301
1552
  };
1302
1553
  vaults: {
1303
1554
  /**
1304
1555
  * Stop offering additional obligations from this vault. Will not affect existing
1305
1556
  * obligations. As funds are returned, they will be released to the vault owner.
1306
1557
  **/
1307
- close: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
1558
+ close: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1559
+ u32
1560
+ ]>;
1308
1561
  create: AugmentedSubmittable<(vaultConfig: PalletVaultsVaultConfig | {
1309
1562
  terms?: any;
1310
1563
  bitcoinAmountAllocated?: any;
1311
1564
  bitcoinXpubkey?: any;
1312
1565
  bondedArgonsAllocated?: any;
1313
1566
  addedSecuritizationPercent?: any;
1314
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletVaultsVaultConfig]>;
1567
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1568
+ PalletVaultsVaultConfig
1569
+ ]>;
1315
1570
  /**
1316
1571
  * Modify funds offered by the vault. This will not affect issued obligations, but will
1317
1572
  * affect the amount of funds available for new ones.
@@ -1322,7 +1577,12 @@ declare module '@polkadot/api-base/types/submittable' {
1322
1577
  * funds in this vault as obligations are released. To stop issuing any more obligations,
1323
1578
  * use the `close` api.
1324
1579
  **/
1325
- modifyFunding: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, totalMiningAmountOffered: u128 | AnyNumber | Uint8Array, totalBitcoinAmountOffered: u128 | AnyNumber | Uint8Array, addedSecuritizationPercent: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u128, u128, u128]>;
1580
+ modifyFunding: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, totalMiningAmountOffered: u128 | AnyNumber | Uint8Array, totalBitcoinAmountOffered: u128 | AnyNumber | Uint8Array, addedSecuritizationPercent: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1581
+ u32,
1582
+ u128,
1583
+ u128,
1584
+ u128
1585
+ ]>;
1326
1586
  /**
1327
1587
  * Change the terms of this vault. The change will be applied at the next mining slot
1328
1588
  * change that is at least `MinTermsModificationBlockDelay` blocks away.
@@ -1333,13 +1593,19 @@ declare module '@polkadot/api-base/types/submittable' {
1333
1593
  bondedArgonsAnnualPercentRate?: any;
1334
1594
  bondedArgonsBaseFee?: any;
1335
1595
  miningRewardSharingPercentTake?: any;
1336
- } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, ArgonPrimitivesVaultVaultTerms]>;
1596
+ } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1597
+ u32,
1598
+ ArgonPrimitivesVaultVaultTerms
1599
+ ]>;
1337
1600
  /**
1338
1601
  * Replace the bitcoin xpubkey for this vault. This will not affect existing obligations,
1339
1602
  * but will be used for any obligations after this point. Will be rejected if already
1340
1603
  * used.
1341
1604
  **/
1342
- replaceBitcoinXpub: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, bitcoinXpub: ArgonPrimitivesBitcoinOpaqueBitcoinXpub | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, ArgonPrimitivesBitcoinOpaqueBitcoinXpub]>;
1605
+ replaceBitcoinXpub: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, bitcoinXpub: ArgonPrimitivesBitcoinOpaqueBitcoinXpub | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
1606
+ u32,
1607
+ ArgonPrimitivesBitcoinOpaqueBitcoinXpub
1608
+ ]>;
1343
1609
  };
1344
1610
  }
1345
1611
  }