@argonprotocol/mainchain 1.0.17 → 1.0.18

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 (35) hide show
  1. package/lib/cjs/interfaces/augment-api-consts.d.ts +16 -7
  2. package/lib/cjs/interfaces/augment-api-errors.d.ts +7 -19
  3. package/lib/cjs/interfaces/augment-api-events.d.ts +90 -73
  4. package/lib/cjs/interfaces/augment-api-query.d.ts +44 -28
  5. package/lib/cjs/interfaces/augment-api-rpc.d.ts +4 -0
  6. package/lib/cjs/interfaces/augment-api-tx.d.ts +25 -34
  7. package/lib/cjs/interfaces/lookup.d.ts +241 -276
  8. package/lib/cjs/interfaces/lookup.js +280 -292
  9. package/lib/cjs/interfaces/lookup.js.map +1 -1
  10. package/lib/cjs/interfaces/registry.d.ts +2 -3
  11. package/lib/cjs/interfaces/types-lookup.d.ts +278 -293
  12. package/lib/esm/interfaces/augment-api-consts.d.ts +16 -7
  13. package/lib/esm/interfaces/augment-api-errors.d.ts +7 -19
  14. package/lib/esm/interfaces/augment-api-events.d.ts +90 -73
  15. package/lib/esm/interfaces/augment-api-query.d.ts +44 -28
  16. package/lib/esm/interfaces/augment-api-rpc.d.ts +4 -0
  17. package/lib/esm/interfaces/augment-api-tx.d.ts +25 -34
  18. package/lib/esm/interfaces/lookup.d.ts +241 -276
  19. package/lib/esm/interfaces/lookup.js +280 -292
  20. package/lib/esm/interfaces/lookup.js.map +1 -1
  21. package/lib/esm/interfaces/registry.d.ts +2 -3
  22. package/lib/esm/interfaces/types-lookup.d.ts +278 -293
  23. package/lib/tsconfig-cjs.tsbuildinfo +1 -1
  24. package/lib/tsconfig-types.tsbuildinfo +1 -1
  25. package/lib/tsconfig.tsbuildinfo +1 -1
  26. package/lib/types/interfaces/augment-api-consts.d.ts +16 -7
  27. package/lib/types/interfaces/augment-api-errors.d.ts +7 -19
  28. package/lib/types/interfaces/augment-api-events.d.ts +90 -73
  29. package/lib/types/interfaces/augment-api-query.d.ts +44 -28
  30. package/lib/types/interfaces/augment-api-rpc.d.ts +4 -0
  31. package/lib/types/interfaces/augment-api-tx.d.ts +25 -34
  32. package/lib/types/interfaces/lookup.d.ts +241 -276
  33. package/lib/types/interfaces/registry.d.ts +2 -3
  34. package/lib/types/interfaces/types-lookup.d.ts +278 -293
  35. package/package.json +5 -5
@@ -1,7 +1,7 @@
1
1
  import '@polkadot/types/lookup';
2
2
  import type { BTreeMap, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, i128, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
3
3
  import type { ITuple } from '@polkadot/types-codec/types';
4
- import type { AccountId32, Call, H160, H256, MultiAddress } from '@polkadot/types/interfaces/runtime';
4
+ import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';
5
5
  import type { Event } from '@polkadot/types/interfaces/system';
6
6
  declare module '@polkadot/types/lookup' {
7
7
  /** @name FrameSystemAccountInfo (3) */
@@ -237,7 +237,10 @@ declare module '@polkadot/types/lookup' {
237
237
  readonly isAny: boolean;
238
238
  readonly isNonTransfer: boolean;
239
239
  readonly isPriceIndex: boolean;
240
- readonly type: 'Any' | 'NonTransfer' | 'PriceIndex';
240
+ readonly isMiningBid: boolean;
241
+ readonly isBitcoinCosign: boolean;
242
+ readonly isVaultAdmin: boolean;
243
+ readonly type: 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'BitcoinCosign' | 'VaultAdmin';
241
244
  }
242
245
  /** @name PalletMiningSlotEvent (39) */
243
246
  interface PalletMiningSlotEvent extends Enum {
@@ -245,6 +248,7 @@ declare module '@polkadot/types/lookup' {
245
248
  readonly asNewMiners: {
246
249
  readonly startIndex: u32;
247
250
  readonly newMiners: Vec<ArgonPrimitivesBlockSealMiningRegistration>;
251
+ readonly releasedMiners: u32;
248
252
  readonly cohortId: u64;
249
253
  } & Struct;
250
254
  readonly isSlotBidderAdded: boolean;
@@ -253,28 +257,14 @@ declare module '@polkadot/types/lookup' {
253
257
  readonly bidAmount: u128;
254
258
  readonly index: u32;
255
259
  } & Struct;
256
- readonly isSlotBidderOut: boolean;
257
- readonly asSlotBidderOut: {
258
- readonly accountId: AccountId32;
259
- readonly bidAmount: u128;
260
- readonly obligationId: Option<u64>;
261
- } & Struct;
262
260
  readonly isSlotBidderDropped: boolean;
263
261
  readonly asSlotBidderDropped: {
264
262
  readonly accountId: AccountId32;
265
- readonly obligationId: Option<u64>;
266
- readonly preservedArgonotHold: bool;
267
- } & Struct;
268
- readonly isReleasedMinerSeat: boolean;
269
- readonly asReleasedMinerSeat: {
270
- readonly accountId: AccountId32;
271
- readonly obligationId: Option<u64>;
272
263
  readonly preservedArgonotHold: bool;
273
264
  } & Struct;
274
265
  readonly isReleaseMinerSeatError: boolean;
275
266
  readonly asReleaseMinerSeatError: {
276
267
  readonly accountId: AccountId32;
277
- readonly obligationId: Option<u64>;
278
268
  readonly error: SpRuntimeDispatchError;
279
269
  } & Struct;
280
270
  readonly isMiningConfigurationUpdated: boolean;
@@ -290,19 +280,17 @@ declare module '@polkadot/types/lookup' {
290
280
  readonly isReleaseBidError: boolean;
291
281
  readonly asReleaseBidError: {
292
282
  readonly accountId: AccountId32;
293
- readonly obligationId: Option<u64>;
294
283
  readonly error: SpRuntimeDispatchError;
295
284
  } & Struct;
296
- readonly type: 'NewMiners' | 'SlotBidderAdded' | 'SlotBidderOut' | 'SlotBidderDropped' | 'ReleasedMinerSeat' | 'ReleaseMinerSeatError' | 'MiningConfigurationUpdated' | 'MiningBidsClosed' | 'ReleaseBidError';
285
+ readonly type: 'NewMiners' | 'SlotBidderAdded' | 'SlotBidderDropped' | 'ReleaseMinerSeatError' | 'MiningConfigurationUpdated' | 'MiningBidsClosed' | 'ReleaseBidError';
297
286
  }
298
287
  /** @name ArgonPrimitivesBlockSealMiningRegistration (41) */
299
288
  interface ArgonPrimitivesBlockSealMiningRegistration extends Struct {
300
289
  readonly accountId: AccountId32;
290
+ readonly externalFundingAccount: Option<AccountId32>;
301
291
  readonly rewardDestination: ArgonPrimitivesBlockSealRewardDestination;
302
- readonly obligationId: Option<u64>;
303
- readonly bondedArgons: Compact<u128>;
292
+ readonly bid: Compact<u128>;
304
293
  readonly argonots: Compact<u128>;
305
- readonly rewardSharing: Option<ArgonPrimitivesBlockSealRewardSharing>;
306
294
  readonly authorityKeys: ArgonRuntimeSessionKeys;
307
295
  readonly cohortId: Compact<u64>;
308
296
  }
@@ -317,19 +305,14 @@ declare module '@polkadot/types/lookup' {
317
305
  /** @name ArgonPrimitivesBlockSealAppPublic (44) */
318
306
  interface ArgonPrimitivesBlockSealAppPublic extends U8aFixed {
319
307
  }
320
- /** @name ArgonPrimitivesBlockSealRewardDestination (45) */
308
+ /** @name ArgonPrimitivesBlockSealRewardDestination (46) */
321
309
  interface ArgonPrimitivesBlockSealRewardDestination extends Enum {
322
310
  readonly isOwner: boolean;
323
311
  readonly isAccount: boolean;
324
312
  readonly asAccount: AccountId32;
325
313
  readonly type: 'Owner' | 'Account';
326
314
  }
327
- /** @name ArgonPrimitivesBlockSealRewardSharing (49) */
328
- interface ArgonPrimitivesBlockSealRewardSharing extends Struct {
329
- readonly accountId: AccountId32;
330
- readonly percentTake: Compact<u128>;
331
- }
332
- /** @name PalletBitcoinUtxosEvent (53) */
315
+ /** @name PalletBitcoinUtxosEvent (49) */
333
316
  interface PalletBitcoinUtxosEvent extends Enum {
334
317
  readonly isUtxoVerified: boolean;
335
318
  readonly asUtxoVerified: {
@@ -371,7 +354,7 @@ declare module '@polkadot/types/lookup' {
371
354
  } & Struct;
372
355
  readonly type: 'UtxoVerified' | 'UtxoRejected' | 'UtxoSpent' | 'UtxoUnwatched' | 'UtxoSpentError' | 'UtxoVerifiedError' | 'UtxoRejectedError' | 'UtxoExpiredError';
373
356
  }
374
- /** @name ArgonPrimitivesBitcoinBitcoinRejectedReason (54) */
357
+ /** @name ArgonPrimitivesBitcoinBitcoinRejectedReason (50) */
375
358
  interface ArgonPrimitivesBitcoinBitcoinRejectedReason extends Enum {
376
359
  readonly isSatoshisMismatch: boolean;
377
360
  readonly isSpent: boolean;
@@ -379,21 +362,21 @@ declare module '@polkadot/types/lookup' {
379
362
  readonly isDuplicateUtxo: boolean;
380
363
  readonly type: 'SatoshisMismatch' | 'Spent' | 'LookupExpired' | 'DuplicateUtxo';
381
364
  }
382
- /** @name ArgonPrimitivesBitcoinUtxoRef (55) */
365
+ /** @name ArgonPrimitivesBitcoinUtxoRef (51) */
383
366
  interface ArgonPrimitivesBitcoinUtxoRef extends Struct {
384
367
  readonly txid: ArgonPrimitivesBitcoinH256Le;
385
368
  readonly outputIndex: Compact<u32>;
386
369
  }
387
- /** @name ArgonPrimitivesBitcoinH256Le (56) */
370
+ /** @name ArgonPrimitivesBitcoinH256Le (52) */
388
371
  interface ArgonPrimitivesBitcoinH256Le extends U8aFixed {
389
372
  }
390
- /** @name PalletVaultsEvent (58) */
373
+ /** @name PalletVaultsEvent (54) */
391
374
  interface PalletVaultsEvent extends Enum {
392
375
  readonly isVaultCreated: boolean;
393
376
  readonly asVaultCreated: {
394
377
  readonly vaultId: u32;
395
- readonly bitcoinArgons: u128;
396
- readonly bondedArgons: u128;
378
+ readonly lockedBitcoinArgons: u128;
379
+ readonly bondedBitcoinArgons: u128;
397
380
  readonly addedSecuritizationPercent: u128;
398
381
  readonly operatorAccountId: AccountId32;
399
382
  readonly activationTick: u64;
@@ -401,20 +384,10 @@ declare module '@polkadot/types/lookup' {
401
384
  readonly isVaultModified: boolean;
402
385
  readonly asVaultModified: {
403
386
  readonly vaultId: u32;
404
- readonly bitcoinArgons: u128;
405
- readonly bondedArgons: u128;
387
+ readonly lockedBitcoinArgons: u128;
388
+ readonly bondedBitcoinArgons: u128;
406
389
  readonly addedSecuritizationPercent: u128;
407
390
  } & Struct;
408
- readonly isVaultBondedArgonsIncreased: boolean;
409
- readonly asVaultBondedArgonsIncreased: {
410
- readonly vaultId: u32;
411
- readonly bondedArgons: u128;
412
- } & Struct;
413
- readonly isVaultBondedArgonsChangeScheduled: boolean;
414
- readonly asVaultBondedArgonsChangeScheduled: {
415
- readonly vaultId: u32;
416
- readonly changeTick: u64;
417
- } & Struct;
418
391
  readonly isVaultTermsChangeScheduled: boolean;
419
392
  readonly asVaultTermsChangeScheduled: {
420
393
  readonly vaultId: u32;
@@ -427,8 +400,8 @@ declare module '@polkadot/types/lookup' {
427
400
  readonly isVaultClosed: boolean;
428
401
  readonly asVaultClosed: {
429
402
  readonly vaultId: u32;
430
- readonly bitcoinAmountStillReserved: u128;
431
- readonly miningAmountStillReserved: u128;
403
+ readonly lockedBitcoinAmountStillReserved: u128;
404
+ readonly bondedBitcoinAmountStillReserved: u128;
432
405
  readonly securitizationStillReserved: u128;
433
406
  } & Struct;
434
407
  readonly isVaultBitcoinXpubChange: boolean;
@@ -448,6 +421,8 @@ declare module '@polkadot/types/lookup' {
448
421
  readonly asObligationCompleted: {
449
422
  readonly vaultId: u32;
450
423
  readonly obligationId: u64;
424
+ readonly returnedFee: u128;
425
+ readonly releasedFee: u128;
451
426
  } & Struct;
452
427
  readonly isObligationModified: boolean;
453
428
  readonly asObligationModified: {
@@ -475,15 +450,45 @@ declare module '@polkadot/types/lookup' {
475
450
  readonly vaultId: u32;
476
451
  readonly error: SpRuntimeDispatchError;
477
452
  } & Struct;
478
- readonly type: 'VaultCreated' | 'VaultModified' | 'VaultBondedArgonsIncreased' | 'VaultBondedArgonsChangeScheduled' | 'VaultTermsChangeScheduled' | 'VaultTermsChanged' | 'VaultClosed' | 'VaultBitcoinXpubChange' | 'ObligationCreated' | 'ObligationCompleted' | 'ObligationModified' | 'ObligationCanceled' | 'ObligationCompletionError' | 'ObligationBaseFeeMaturationError';
453
+ readonly isCouldNotDistributeBidPool: boolean;
454
+ readonly asCouldNotDistributeBidPool: {
455
+ readonly cohortId: u64;
456
+ readonly vaultId: u32;
457
+ readonly amount: u128;
458
+ readonly dispatchError: SpRuntimeDispatchError;
459
+ } & Struct;
460
+ readonly isCouldNotBurnBidPool: boolean;
461
+ readonly asCouldNotBurnBidPool: {
462
+ readonly cohortId: u64;
463
+ readonly amount: u128;
464
+ readonly dispatchError: SpRuntimeDispatchError;
465
+ } & Struct;
466
+ readonly isCouldNotAllocateNextBidPool: boolean;
467
+ readonly asCouldNotAllocateNextBidPool: {
468
+ readonly cohortId: u64;
469
+ readonly dispatchError: SpRuntimeDispatchError;
470
+ } & Struct;
471
+ readonly isBidPoolDistributed: boolean;
472
+ readonly asBidPoolDistributed: {
473
+ readonly cohortId: u64;
474
+ readonly bidPoolDistributed: u128;
475
+ readonly bidPoolBurned: u128;
476
+ readonly bidPoolEntrants: u32;
477
+ } & Struct;
478
+ readonly isNextBidPoolAllocated: boolean;
479
+ readonly asNextBidPoolAllocated: {
480
+ readonly bondedBitcoinPool: u128;
481
+ readonly bidPoolEntrants: u32;
482
+ } & Struct;
483
+ readonly type: 'VaultCreated' | 'VaultModified' | 'VaultTermsChangeScheduled' | 'VaultTermsChanged' | 'VaultClosed' | 'VaultBitcoinXpubChange' | 'ObligationCreated' | 'ObligationCompleted' | 'ObligationModified' | 'ObligationCanceled' | 'ObligationCompletionError' | 'ObligationBaseFeeMaturationError' | 'CouldNotDistributeBidPool' | 'CouldNotBurnBidPool' | 'CouldNotAllocateNextBidPool' | 'BidPoolDistributed' | 'NextBidPoolAllocated';
479
484
  }
480
- /** @name ArgonPrimitivesVaultFundType (59) */
485
+ /** @name ArgonPrimitivesVaultFundType (56) */
481
486
  interface ArgonPrimitivesVaultFundType extends Enum {
482
- readonly isBondedArgons: boolean;
483
- readonly isBitcoin: boolean;
484
- readonly type: 'BondedArgons' | 'Bitcoin';
487
+ readonly isLockedBitcoin: boolean;
488
+ readonly isBondedBitcoin: boolean;
489
+ readonly type: 'LockedBitcoin' | 'BondedBitcoin';
485
490
  }
486
- /** @name ArgonPrimitivesVaultObligationExpiration (60) */
491
+ /** @name ArgonPrimitivesVaultObligationExpiration (57) */
487
492
  interface ArgonPrimitivesVaultObligationExpiration extends Enum {
488
493
  readonly isAtTick: boolean;
489
494
  readonly asAtTick: Compact<u64>;
@@ -491,7 +496,7 @@ declare module '@polkadot/types/lookup' {
491
496
  readonly asBitcoinBlock: Compact<u64>;
492
497
  readonly type: 'AtTick' | 'BitcoinBlock';
493
498
  }
494
- /** @name PalletBitcoinLocksEvent (61) */
499
+ /** @name PalletBitcoinLocksEvent (58) */
495
500
  interface PalletBitcoinLocksEvent extends Enum {
496
501
  readonly isBitcoinLockCreated: boolean;
497
502
  readonly asBitcoinLockCreated: {
@@ -539,7 +544,7 @@ declare module '@polkadot/types/lookup' {
539
544
  } & Struct;
540
545
  readonly type: 'BitcoinLockCreated' | 'BitcoinLockBurned' | 'BitcoinUtxoCosignRequested' | 'BitcoinUtxoCosigned' | 'BitcoinCosignPastDue' | 'CosignOverdueError';
541
546
  }
542
- /** @name PalletNotariesEvent (64) */
547
+ /** @name PalletNotariesEvent (61) */
543
548
  interface PalletNotariesEvent extends Enum {
544
549
  readonly isNotaryProposed: boolean;
545
550
  readonly asNotaryProposed: {
@@ -570,13 +575,13 @@ declare module '@polkadot/types/lookup' {
570
575
  } & Struct;
571
576
  readonly type: 'NotaryProposed' | 'NotaryActivated' | 'NotaryMetaUpdateQueued' | 'NotaryMetaUpdated' | 'NotaryMetaUpdateError';
572
577
  }
573
- /** @name ArgonPrimitivesNotaryNotaryMeta (65) */
578
+ /** @name ArgonPrimitivesNotaryNotaryMeta (62) */
574
579
  interface ArgonPrimitivesNotaryNotaryMeta extends Struct {
575
580
  readonly name: Bytes;
576
581
  readonly public: U8aFixed;
577
582
  readonly hosts: Vec<Bytes>;
578
583
  }
579
- /** @name ArgonPrimitivesNotaryNotaryRecord (72) */
584
+ /** @name ArgonPrimitivesNotaryNotaryRecord (69) */
580
585
  interface ArgonPrimitivesNotaryNotaryRecord extends Struct {
581
586
  readonly notaryId: Compact<u32>;
582
587
  readonly operatorAccountId: AccountId32;
@@ -585,7 +590,7 @@ declare module '@polkadot/types/lookup' {
585
590
  readonly metaUpdatedTick: Compact<u64>;
586
591
  readonly meta: ArgonPrimitivesNotaryNotaryMeta;
587
592
  }
588
- /** @name PalletNotebookEvent (73) */
593
+ /** @name PalletNotebookEvent (70) */
589
594
  interface PalletNotebookEvent extends Enum {
590
595
  readonly isNotebookSubmitted: boolean;
591
596
  readonly asNotebookSubmitted: {
@@ -606,7 +611,7 @@ declare module '@polkadot/types/lookup' {
606
611
  } & Struct;
607
612
  readonly type: 'NotebookSubmitted' | 'NotebookAuditFailure' | 'NotebookReadyForReprocess';
608
613
  }
609
- /** @name ArgonNotaryAuditErrorVerifyError (74) */
614
+ /** @name ArgonNotaryAuditErrorVerifyError (71) */
610
615
  interface ArgonNotaryAuditErrorVerifyError extends Enum {
611
616
  readonly isMissingAccountOrigin: boolean;
612
617
  readonly asMissingAccountOrigin: {
@@ -725,13 +730,13 @@ declare module '@polkadot/types/lookup' {
725
730
  readonly isNoDefaultBlockVote: boolean;
726
731
  readonly type: 'MissingAccountOrigin' | 'HistoryLookupError' | 'InvalidAccountChangelist' | 'InvalidChainTransfersList' | 'InvalidBalanceChangeRoot' | 'InvalidHeaderTaxRecorded' | 'InvalidPreviousNonce' | 'InvalidPreviousBalance' | 'InvalidPreviousAccountOrigin' | 'InvalidPreviousBalanceChangeNotebook' | 'InvalidBalanceChange' | 'InvalidBalanceChangeSignature' | 'InvalidNoteRecipients' | 'BalanceChangeError' | 'InvalidNetBalanceChangeset' | 'InsufficientBalance' | 'ExceededMaxBalance' | 'BalanceChangeMismatch' | 'BalanceChangeNotNetZero' | 'InvalidDomainLeaseAllocation' | 'TaxBalanceChangeNotNetZero' | 'MissingBalanceProof' | 'InvalidPreviousBalanceProof' | 'InvalidNotebookHash' | 'InvalidNotebookHeaderHash' | 'DuplicateChainTransfer' | 'DuplicatedAccountOriginUid' | 'InvalidNotarySignature' | 'InvalidSecretProvided' | 'NotebookTooOld' | 'CatchupNotebooksMissing' | 'DecodeError' | 'AccountChannelHoldDoesntExist' | 'AccountAlreadyHasChannelHold' | 'ChannelHoldNotReadyForClaim' | 'AccountLocked' | 'MissingChannelHoldNote' | 'InvalidChannelHoldNote' | 'InvalidChannelHoldClaimers' | 'ChannelHoldNoteBelowMinimum' | 'InvalidTaxNoteAccount' | 'InvalidTaxOperation' | 'InsufficientTaxIncluded' | 'InsufficientBlockVoteTax' | 'IneligibleTaxVoter' | 'BlockVoteInvalidSignature' | 'InvalidBlockVoteAllocation' | 'InvalidBlockVoteRoot' | 'InvalidBlockVotesCount' | 'InvalidBlockVotingPower' | 'InvalidBlockVoteList' | 'InvalidComputeProof' | 'InvalidBlockVoteSource' | 'InsufficientBlockVoteMinimum' | 'InvalidBlockVoteTick' | 'InvalidDefaultBlockVote' | 'InvalidDefaultBlockVoteAuthor' | 'NoDefaultBlockVote';
727
732
  }
728
- /** @name ArgonPrimitivesAccountAccountType (75) */
733
+ /** @name ArgonPrimitivesAccountAccountType (72) */
729
734
  interface ArgonPrimitivesAccountAccountType extends Enum {
730
735
  readonly isTax: boolean;
731
736
  readonly isDeposit: boolean;
732
737
  readonly type: 'Tax' | 'Deposit';
733
738
  }
734
- /** @name ArgonNotaryAuditAccountHistoryLookupError (76) */
739
+ /** @name ArgonNotaryAuditAccountHistoryLookupError (73) */
735
740
  interface ArgonNotaryAuditAccountHistoryLookupError extends Enum {
736
741
  readonly isRootNotFound: boolean;
737
742
  readonly isLastChangeNotFound: boolean;
@@ -739,7 +744,7 @@ declare module '@polkadot/types/lookup' {
739
744
  readonly isBlockSpecificationNotFound: boolean;
740
745
  readonly type: 'RootNotFound' | 'LastChangeNotFound' | 'InvalidTransferToLocalchain' | 'BlockSpecificationNotFound';
741
746
  }
742
- /** @name PalletChainTransferEvent (79) */
747
+ /** @name PalletChainTransferEvent (76) */
743
748
  interface PalletChainTransferEvent extends Enum {
744
749
  readonly isTransferToLocalchain: boolean;
745
750
  readonly asTransferToLocalchain: {
@@ -792,7 +797,7 @@ declare module '@polkadot/types/lookup' {
792
797
  } & Struct;
793
798
  readonly type: 'TransferToLocalchain' | 'TransferToLocalchainExpired' | 'TransferFromLocalchain' | 'TransferFromLocalchainError' | 'TransferToLocalchainRefundError' | 'PossibleInvalidLocalchainTransferAllowed' | 'TaxationError';
794
799
  }
795
- /** @name PalletBlockSealSpecEvent (80) */
800
+ /** @name PalletBlockSealSpecEvent (77) */
796
801
  interface PalletBlockSealSpecEvent extends Enum {
797
802
  readonly isVoteMinimumAdjusted: boolean;
798
803
  readonly asVoteMinimumAdjusted: {
@@ -810,7 +815,7 @@ declare module '@polkadot/types/lookup' {
810
815
  } & Struct;
811
816
  readonly type: 'VoteMinimumAdjusted' | 'ComputeDifficultyAdjusted';
812
817
  }
813
- /** @name PalletDomainsEvent (81) */
818
+ /** @name PalletDomainsEvent (78) */
814
819
  interface PalletDomainsEvent extends Enum {
815
820
  readonly isZoneRecordUpdated: boolean;
816
821
  readonly asZoneRecordUpdated: {
@@ -843,29 +848,29 @@ declare module '@polkadot/types/lookup' {
843
848
  } & Struct;
844
849
  readonly type: 'ZoneRecordUpdated' | 'DomainRegistered' | 'DomainRenewed' | 'DomainExpired' | 'DomainRegistrationCanceled' | 'DomainRegistrationError';
845
850
  }
846
- /** @name ArgonPrimitivesDomainZoneRecord (82) */
851
+ /** @name ArgonPrimitivesDomainZoneRecord (79) */
847
852
  interface ArgonPrimitivesDomainZoneRecord extends Struct {
848
853
  readonly paymentAccount: AccountId32;
849
854
  readonly notaryId: u32;
850
855
  readonly versions: BTreeMap<ArgonPrimitivesDomainSemver, ArgonPrimitivesDomainVersionHost>;
851
856
  }
852
- /** @name ArgonPrimitivesDomainSemver (84) */
857
+ /** @name ArgonPrimitivesDomainSemver (81) */
853
858
  interface ArgonPrimitivesDomainSemver extends Struct {
854
859
  readonly major: u32;
855
860
  readonly minor: u32;
856
861
  readonly patch: u32;
857
862
  }
858
- /** @name ArgonPrimitivesDomainVersionHost (85) */
863
+ /** @name ArgonPrimitivesDomainVersionHost (82) */
859
864
  interface ArgonPrimitivesDomainVersionHost extends Struct {
860
865
  readonly datastoreId: Bytes;
861
866
  readonly host: Bytes;
862
867
  }
863
- /** @name PalletDomainsDomainRegistration (89) */
868
+ /** @name PalletDomainsDomainRegistration (86) */
864
869
  interface PalletDomainsDomainRegistration extends Struct {
865
870
  readonly accountId: AccountId32;
866
871
  readonly registeredAtTick: u64;
867
872
  }
868
- /** @name PalletPriceIndexEvent (90) */
873
+ /** @name PalletPriceIndexEvent (87) */
869
874
  interface PalletPriceIndexEvent extends Enum {
870
875
  readonly isNewIndex: boolean;
871
876
  readonly isOperatorChanged: boolean;
@@ -874,7 +879,7 @@ declare module '@polkadot/types/lookup' {
874
879
  } & Struct;
875
880
  readonly type: 'NewIndex' | 'OperatorChanged';
876
881
  }
877
- /** @name PalletGrandpaEvent (91) */
882
+ /** @name PalletGrandpaEvent (88) */
878
883
  interface PalletGrandpaEvent extends Enum {
879
884
  readonly isNewAuthorities: boolean;
880
885
  readonly asNewAuthorities: {
@@ -884,24 +889,12 @@ declare module '@polkadot/types/lookup' {
884
889
  readonly isResumed: boolean;
885
890
  readonly type: 'NewAuthorities' | 'Paused' | 'Resumed';
886
891
  }
887
- /** @name PalletBlockRewardsEvent (94) */
892
+ /** @name PalletBlockRewardsEvent (91) */
888
893
  interface PalletBlockRewardsEvent extends Enum {
889
894
  readonly isRewardCreated: boolean;
890
895
  readonly asRewardCreated: {
891
- readonly maturationBlock: u32;
892
- readonly rewards: Vec<ArgonPrimitivesBlockSealBlockPayout>;
893
- } & Struct;
894
- readonly isRewardUnlocked: boolean;
895
- readonly asRewardUnlocked: {
896
896
  readonly rewards: Vec<ArgonPrimitivesBlockSealBlockPayout>;
897
897
  } & Struct;
898
- readonly isRewardUnlockError: boolean;
899
- readonly asRewardUnlockError: {
900
- readonly accountId: AccountId32;
901
- readonly argons: Option<u128>;
902
- readonly ownership: Option<u128>;
903
- readonly error: SpRuntimeDispatchError;
904
- } & Struct;
905
898
  readonly isRewardCreateError: boolean;
906
899
  readonly asRewardCreateError: {
907
900
  readonly accountId: AccountId32;
@@ -909,9 +902,9 @@ declare module '@polkadot/types/lookup' {
909
902
  readonly ownership: Option<u128>;
910
903
  readonly error: SpRuntimeDispatchError;
911
904
  } & Struct;
912
- readonly type: 'RewardCreated' | 'RewardUnlocked' | 'RewardUnlockError' | 'RewardCreateError';
905
+ readonly type: 'RewardCreated' | 'RewardCreateError';
913
906
  }
914
- /** @name ArgonPrimitivesBlockSealBlockPayout (96) */
907
+ /** @name ArgonPrimitivesBlockSealBlockPayout (93) */
915
908
  interface ArgonPrimitivesBlockSealBlockPayout extends Struct {
916
909
  readonly accountId: AccountId32;
917
910
  readonly ownership: Compact<u128>;
@@ -919,22 +912,27 @@ declare module '@polkadot/types/lookup' {
919
912
  readonly rewardType: ArgonPrimitivesBlockSealBlockRewardType;
920
913
  readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
921
914
  }
922
- /** @name ArgonPrimitivesBlockSealBlockRewardType (97) */
915
+ /** @name ArgonPrimitivesBlockSealBlockRewardType (94) */
923
916
  interface ArgonPrimitivesBlockSealBlockRewardType extends Enum {
924
917
  readonly isMiner: boolean;
925
918
  readonly isVoter: boolean;
926
919
  readonly isProfitShare: boolean;
927
920
  readonly type: 'Miner' | 'Voter' | 'ProfitShare';
928
921
  }
929
- /** @name PalletMintEvent (100) */
922
+ /** @name PalletMintEvent (97) */
930
923
  interface PalletMintEvent extends Enum {
931
- readonly isArgonsMinted: boolean;
932
- readonly asArgonsMinted: {
933
- readonly mintType: PalletMintMintType;
924
+ readonly isBitcoinMint: boolean;
925
+ readonly asBitcoinMint: {
934
926
  readonly accountId: AccountId32;
935
927
  readonly utxoId: Option<u64>;
936
928
  readonly amount: u128;
937
929
  } & Struct;
930
+ readonly isMiningMint: boolean;
931
+ readonly asMiningMint: {
932
+ readonly amount: U256;
933
+ readonly argonCpi: i128;
934
+ readonly liquidity: u128;
935
+ } & Struct;
938
936
  readonly isMintError: boolean;
939
937
  readonly asMintError: {
940
938
  readonly mintType: PalletMintMintType;
@@ -943,15 +941,15 @@ declare module '@polkadot/types/lookup' {
943
941
  readonly amount: u128;
944
942
  readonly error: SpRuntimeDispatchError;
945
943
  } & Struct;
946
- readonly type: 'ArgonsMinted' | 'MintError';
944
+ readonly type: 'BitcoinMint' | 'MiningMint' | 'MintError';
947
945
  }
948
- /** @name PalletMintMintType (101) */
946
+ /** @name PalletMintMintType (102) */
949
947
  interface PalletMintMintType extends Enum {
950
948
  readonly isBitcoin: boolean;
951
949
  readonly isMining: boolean;
952
950
  readonly type: 'Bitcoin' | 'Mining';
953
951
  }
954
- /** @name PalletBalancesEvent (102) */
952
+ /** @name PalletBalancesEvent (103) */
955
953
  interface PalletBalancesEvent extends Enum {
956
954
  readonly isEndowed: boolean;
957
955
  readonly asEndowed: {
@@ -1065,13 +1063,13 @@ declare module '@polkadot/types/lookup' {
1065
1063
  } & Struct;
1066
1064
  readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed' | 'Minted' | 'Burned' | 'Suspended' | 'Restored' | 'Upgraded' | 'Issued' | 'Rescinded' | 'Locked' | 'Unlocked' | 'Frozen' | 'Thawed' | 'TotalIssuanceForced';
1067
1065
  }
1068
- /** @name FrameSupportTokensMiscBalanceStatus (103) */
1066
+ /** @name FrameSupportTokensMiscBalanceStatus (104) */
1069
1067
  interface FrameSupportTokensMiscBalanceStatus extends Enum {
1070
1068
  readonly isFree: boolean;
1071
1069
  readonly isReserved: boolean;
1072
1070
  readonly type: 'Free' | 'Reserved';
1073
1071
  }
1074
- /** @name PalletTxPauseEvent (105) */
1072
+ /** @name PalletTxPauseEvent (106) */
1075
1073
  interface PalletTxPauseEvent extends Enum {
1076
1074
  readonly isCallPaused: boolean;
1077
1075
  readonly asCallPaused: {
@@ -1083,7 +1081,7 @@ declare module '@polkadot/types/lookup' {
1083
1081
  } & Struct;
1084
1082
  readonly type: 'CallPaused' | 'CallUnpaused';
1085
1083
  }
1086
- /** @name PalletTransactionPaymentEvent (108) */
1084
+ /** @name PalletTransactionPaymentEvent (109) */
1087
1085
  interface PalletTransactionPaymentEvent extends Enum {
1088
1086
  readonly isTransactionFeePaid: boolean;
1089
1087
  readonly asTransactionFeePaid: {
@@ -1093,7 +1091,7 @@ declare module '@polkadot/types/lookup' {
1093
1091
  } & Struct;
1094
1092
  readonly type: 'TransactionFeePaid';
1095
1093
  }
1096
- /** @name PalletUtilityEvent (109) */
1094
+ /** @name PalletUtilityEvent (110) */
1097
1095
  interface PalletUtilityEvent extends Enum {
1098
1096
  readonly isBatchInterrupted: boolean;
1099
1097
  readonly asBatchInterrupted: {
@@ -1113,7 +1111,7 @@ declare module '@polkadot/types/lookup' {
1113
1111
  } & Struct;
1114
1112
  readonly type: 'BatchInterrupted' | 'BatchCompleted' | 'BatchCompletedWithErrors' | 'ItemCompleted' | 'ItemFailed' | 'DispatchedAs';
1115
1113
  }
1116
- /** @name PalletSudoEvent (110) */
1114
+ /** @name PalletSudoEvent (111) */
1117
1115
  interface PalletSudoEvent extends Enum {
1118
1116
  readonly isSudid: boolean;
1119
1117
  readonly asSudid: {
@@ -1446,18 +1444,18 @@ declare module '@polkadot/types/lookup' {
1446
1444
  readonly totalComputeDifficulty: U256;
1447
1445
  readonly voteCreatedBlocks: Compact<u128>;
1448
1446
  }
1449
- /** @name ArgonPrimitivesDigestsNotebookDigest (164) */
1447
+ /** @name ArgonPrimitivesDigestsNotebookDigest (162) */
1450
1448
  interface ArgonPrimitivesDigestsNotebookDigest extends Struct {
1451
1449
  readonly notebooks: Vec<ArgonPrimitivesNotebookNotebookAuditResult>;
1452
1450
  }
1453
- /** @name ArgonPrimitivesNotebookNotebookAuditResult (166) */
1451
+ /** @name ArgonPrimitivesNotebookNotebookAuditResult (164) */
1454
1452
  interface ArgonPrimitivesNotebookNotebookAuditResult extends Struct {
1455
1453
  readonly notaryId: Compact<u32>;
1456
1454
  readonly notebookNumber: Compact<u32>;
1457
1455
  readonly tick: Compact<u64>;
1458
1456
  readonly auditFirstFailure: Option<ArgonNotaryAuditErrorVerifyError>;
1459
1457
  }
1460
- /** @name PalletDigestsError (168) */
1458
+ /** @name PalletDigestsError (166) */
1461
1459
  interface PalletDigestsError extends Enum {
1462
1460
  readonly isDuplicateBlockVoteDigest: boolean;
1463
1461
  readonly isDuplicateAuthorDigest: boolean;
@@ -1473,7 +1471,7 @@ declare module '@polkadot/types/lookup' {
1473
1471
  readonly isCouldNotDecodeDigest: boolean;
1474
1472
  readonly type: 'DuplicateBlockVoteDigest' | 'DuplicateAuthorDigest' | 'DuplicateTickDigest' | 'DuplicateParentVotingKeyDigest' | 'DuplicateNotebookDigest' | 'DuplicateForkPowerDigest' | 'MissingBlockVoteDigest' | 'MissingAuthorDigest' | 'MissingTickDigest' | 'MissingParentVotingKeyDigest' | 'MissingNotebookDigest' | 'CouldNotDecodeDigest';
1475
1473
  }
1476
- /** @name PalletTimestampCall (169) */
1474
+ /** @name PalletTimestampCall (167) */
1477
1475
  interface PalletTimestampCall extends Enum {
1478
1476
  readonly isSet: boolean;
1479
1477
  readonly asSet: {
@@ -1481,14 +1479,14 @@ declare module '@polkadot/types/lookup' {
1481
1479
  } & Struct;
1482
1480
  readonly type: 'Set';
1483
1481
  }
1484
- /** @name PalletMultisigMultisig (171) */
1482
+ /** @name PalletMultisigMultisig (169) */
1485
1483
  interface PalletMultisigMultisig extends Struct {
1486
1484
  readonly when: PalletMultisigTimepoint;
1487
1485
  readonly deposit: u128;
1488
1486
  readonly depositor: AccountId32;
1489
1487
  readonly approvals: Vec<AccountId32>;
1490
1488
  }
1491
- /** @name PalletMultisigCall (174) */
1489
+ /** @name PalletMultisigCall (172) */
1492
1490
  interface PalletMultisigCall extends Enum {
1493
1491
  readonly isAsMultiThreshold1: boolean;
1494
1492
  readonly asAsMultiThreshold1: {
@@ -1520,7 +1518,7 @@ declare module '@polkadot/types/lookup' {
1520
1518
  } & Struct;
1521
1519
  readonly type: 'AsMultiThreshold1' | 'AsMulti' | 'ApproveAsMulti' | 'CancelAsMulti';
1522
1520
  }
1523
- /** @name PalletProxyCall (176) */
1521
+ /** @name PalletProxyCall (174) */
1524
1522
  interface PalletProxyCall extends Enum {
1525
1523
  readonly isProxy: boolean;
1526
1524
  readonly asProxy: {
@@ -1579,15 +1577,16 @@ declare module '@polkadot/types/lookup' {
1579
1577
  } & Struct;
1580
1578
  readonly type: 'Proxy' | 'AddProxy' | 'RemoveProxy' | 'RemoveProxies' | 'CreatePure' | 'KillPure' | 'Announce' | 'RemoveAnnouncement' | 'RejectAnnouncement' | 'ProxyAnnounced';
1581
1579
  }
1582
- /** @name PalletTicksCall (181) */
1580
+ /** @name PalletTicksCall (179) */
1583
1581
  type PalletTicksCall = Null;
1584
- /** @name PalletMiningSlotCall (182) */
1582
+ /** @name PalletMiningSlotCall (180) */
1585
1583
  interface PalletMiningSlotCall extends Enum {
1586
1584
  readonly isBid: boolean;
1587
1585
  readonly asBid: {
1588
- readonly bondedArgons: Option<PalletMiningSlotMiningSlotBid>;
1586
+ readonly bid: u128;
1589
1587
  readonly rewardDestination: ArgonPrimitivesBlockSealRewardDestination;
1590
1588
  readonly keys_: ArgonRuntimeSessionKeys;
1589
+ readonly miningAccountId: Option<AccountId32>;
1591
1590
  } & Struct;
1592
1591
  readonly isConfigureMiningSlotDelay: boolean;
1593
1592
  readonly asConfigureMiningSlotDelay: {
@@ -1596,12 +1595,7 @@ declare module '@polkadot/types/lookup' {
1596
1595
  } & Struct;
1597
1596
  readonly type: 'Bid' | 'ConfigureMiningSlotDelay';
1598
1597
  }
1599
- /** @name PalletMiningSlotMiningSlotBid (184) */
1600
- interface PalletMiningSlotMiningSlotBid extends Struct {
1601
- readonly vaultId: u32;
1602
- readonly amount: u128;
1603
- }
1604
- /** @name PalletBitcoinUtxosCall (185) */
1598
+ /** @name PalletBitcoinUtxosCall (181) */
1605
1599
  interface PalletBitcoinUtxosCall extends Enum {
1606
1600
  readonly isSync: boolean;
1607
1601
  readonly asSync: {
@@ -1618,19 +1612,19 @@ declare module '@polkadot/types/lookup' {
1618
1612
  } & Struct;
1619
1613
  readonly type: 'Sync' | 'SetConfirmedBlock' | 'SetOperator';
1620
1614
  }
1621
- /** @name ArgonPrimitivesInherentsBitcoinUtxoSync (186) */
1615
+ /** @name ArgonPrimitivesInherentsBitcoinUtxoSync (182) */
1622
1616
  interface ArgonPrimitivesInherentsBitcoinUtxoSync extends Struct {
1623
1617
  readonly spent: BTreeMap<u64, u64>;
1624
1618
  readonly verified: BTreeMap<u64, ArgonPrimitivesBitcoinUtxoRef>;
1625
1619
  readonly invalid: BTreeMap<u64, ArgonPrimitivesBitcoinBitcoinRejectedReason>;
1626
1620
  readonly syncToBlock: ArgonPrimitivesBitcoinBitcoinBlock;
1627
1621
  }
1628
- /** @name ArgonPrimitivesBitcoinBitcoinBlock (196) */
1622
+ /** @name ArgonPrimitivesBitcoinBitcoinBlock (192) */
1629
1623
  interface ArgonPrimitivesBitcoinBitcoinBlock extends Struct {
1630
1624
  readonly blockHeight: Compact<u64>;
1631
1625
  readonly blockHash: ArgonPrimitivesBitcoinH256Le;
1632
1626
  }
1633
- /** @name PalletVaultsCall (197) */
1627
+ /** @name PalletVaultsCall (193) */
1634
1628
  interface PalletVaultsCall extends Enum {
1635
1629
  readonly isCreate: boolean;
1636
1630
  readonly asCreate: {
@@ -1639,8 +1633,8 @@ declare module '@polkadot/types/lookup' {
1639
1633
  readonly isModifyFunding: boolean;
1640
1634
  readonly asModifyFunding: {
1641
1635
  readonly vaultId: u32;
1642
- readonly totalMiningAmountOffered: u128;
1643
- readonly totalBitcoinAmountOffered: u128;
1636
+ readonly totalBondedBitcoinAmountOffered: u128;
1637
+ readonly totalLockedBitcoinAmountOffered: u128;
1644
1638
  readonly addedSecuritizationPercent: u128;
1645
1639
  } & Struct;
1646
1640
  readonly isModifyTerms: boolean;
@@ -1659,26 +1653,23 @@ declare module '@polkadot/types/lookup' {
1659
1653
  } & Struct;
1660
1654
  readonly type: 'Create' | 'ModifyFunding' | 'ModifyTerms' | 'Close' | 'ReplaceBitcoinXpub';
1661
1655
  }
1662
- /** @name PalletVaultsVaultConfig (198) */
1656
+ /** @name PalletVaultsVaultConfig (194) */
1663
1657
  interface PalletVaultsVaultConfig extends Struct {
1664
1658
  readonly terms: ArgonPrimitivesVaultVaultTerms;
1665
- readonly bitcoinAmountAllocated: Compact<u128>;
1659
+ readonly lockedBitcoinArgonsAllocated: Compact<u128>;
1666
1660
  readonly bitcoinXpubkey: ArgonPrimitivesBitcoinOpaqueBitcoinXpub;
1667
- readonly bondedArgonsAllocated: Compact<u128>;
1661
+ readonly bondedBitcoinArgonsAllocated: Compact<u128>;
1668
1662
  readonly addedSecuritizationPercent: Compact<u128>;
1669
1663
  }
1670
- /** @name ArgonPrimitivesVaultVaultTerms (199) */
1664
+ /** @name ArgonPrimitivesVaultVaultTerms (195) */
1671
1665
  interface ArgonPrimitivesVaultVaultTerms extends Struct {
1672
1666
  readonly bitcoinAnnualPercentRate: Compact<u128>;
1673
1667
  readonly bitcoinBaseFee: Compact<u128>;
1674
- readonly bondedArgonsAnnualPercentRate: Compact<u128>;
1675
- readonly bondedArgonsBaseFee: Compact<u128>;
1676
- readonly miningRewardSharingPercentTake: Compact<u128>;
1677
1668
  }
1678
- /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (200) */
1669
+ /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (197) */
1679
1670
  interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {
1680
1671
  }
1681
- /** @name PalletBitcoinLocksCall (202) */
1672
+ /** @name PalletBitcoinLocksCall (199) */
1682
1673
  interface PalletBitcoinLocksCall extends Enum {
1683
1674
  readonly isInitialize: boolean;
1684
1675
  readonly asInitialize: {
@@ -1703,10 +1694,10 @@ declare module '@polkadot/types/lookup' {
1703
1694
  } & Struct;
1704
1695
  readonly type: 'Initialize' | 'RequestRelease' | 'CosignRelease' | 'AdminModifyMinimumLockedSats';
1705
1696
  }
1706
- /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (203) */
1697
+ /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (200) */
1707
1698
  interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {
1708
1699
  }
1709
- /** @name PalletNotariesCall (207) */
1700
+ /** @name PalletNotariesCall (204) */
1710
1701
  interface PalletNotariesCall extends Enum {
1711
1702
  readonly isPropose: boolean;
1712
1703
  readonly asPropose: {
@@ -1724,7 +1715,7 @@ declare module '@polkadot/types/lookup' {
1724
1715
  } & Struct;
1725
1716
  readonly type: 'Propose' | 'Activate' | 'Update';
1726
1717
  }
1727
- /** @name PalletNotebookCall (208) */
1718
+ /** @name PalletNotebookCall (205) */
1728
1719
  interface PalletNotebookCall extends Enum {
1729
1720
  readonly isSubmit: boolean;
1730
1721
  readonly asSubmit: {
@@ -1736,12 +1727,12 @@ declare module '@polkadot/types/lookup' {
1736
1727
  } & Struct;
1737
1728
  readonly type: 'Submit' | 'Unlock';
1738
1729
  }
1739
- /** @name ArgonPrimitivesNotebookSignedNotebookHeader (210) */
1730
+ /** @name ArgonPrimitivesNotebookSignedNotebookHeader (207) */
1740
1731
  interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
1741
1732
  readonly header: ArgonPrimitivesNotebookNotebookHeader;
1742
1733
  readonly signature: U8aFixed;
1743
1734
  }
1744
- /** @name ArgonPrimitivesNotebookNotebookHeader (211) */
1735
+ /** @name ArgonPrimitivesNotebookNotebookHeader (208) */
1745
1736
  interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
1746
1737
  readonly version: Compact<u16>;
1747
1738
  readonly notebookNumber: Compact<u32>;
@@ -1759,7 +1750,7 @@ declare module '@polkadot/types/lookup' {
1759
1750
  readonly parentSecret: Option<H256>;
1760
1751
  readonly domains: Vec<ITuple<[H256, AccountId32]>>;
1761
1752
  }
1762
- /** @name ArgonPrimitivesNotebookChainTransfer (214) */
1753
+ /** @name ArgonPrimitivesNotebookChainTransfer (211) */
1763
1754
  interface ArgonPrimitivesNotebookChainTransfer extends Enum {
1764
1755
  readonly isToMainchain: boolean;
1765
1756
  readonly asToMainchain: {
@@ -1772,12 +1763,12 @@ declare module '@polkadot/types/lookup' {
1772
1763
  } & Struct;
1773
1764
  readonly type: 'ToMainchain' | 'ToLocalchain';
1774
1765
  }
1775
- /** @name ArgonPrimitivesBalanceChangeAccountOrigin (217) */
1766
+ /** @name ArgonPrimitivesBalanceChangeAccountOrigin (214) */
1776
1767
  interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
1777
1768
  readonly notebookNumber: Compact<u32>;
1778
1769
  readonly accountUid: Compact<u32>;
1779
1770
  }
1780
- /** @name PalletChainTransferCall (224) */
1771
+ /** @name PalletChainTransferCall (221) */
1781
1772
  interface PalletChainTransferCall extends Enum {
1782
1773
  readonly isSendToLocalchain: boolean;
1783
1774
  readonly asSendToLocalchain: {
@@ -1786,7 +1777,7 @@ declare module '@polkadot/types/lookup' {
1786
1777
  } & Struct;
1787
1778
  readonly type: 'SendToLocalchain';
1788
1779
  }
1789
- /** @name PalletBlockSealSpecCall (225) */
1780
+ /** @name PalletBlockSealSpecCall (222) */
1790
1781
  interface PalletBlockSealSpecCall extends Enum {
1791
1782
  readonly isConfigure: boolean;
1792
1783
  readonly asConfigure: {
@@ -1795,7 +1786,7 @@ declare module '@polkadot/types/lookup' {
1795
1786
  } & Struct;
1796
1787
  readonly type: 'Configure';
1797
1788
  }
1798
- /** @name PalletDomainsCall (226) */
1789
+ /** @name PalletDomainsCall (223) */
1799
1790
  interface PalletDomainsCall extends Enum {
1800
1791
  readonly isSetZoneRecord: boolean;
1801
1792
  readonly asSetZoneRecord: {
@@ -1804,7 +1795,7 @@ declare module '@polkadot/types/lookup' {
1804
1795
  } & Struct;
1805
1796
  readonly type: 'SetZoneRecord';
1806
1797
  }
1807
- /** @name PalletPriceIndexCall (227) */
1798
+ /** @name PalletPriceIndexCall (224) */
1808
1799
  interface PalletPriceIndexCall extends Enum {
1809
1800
  readonly isSubmit: boolean;
1810
1801
  readonly asSubmit: {
@@ -1816,7 +1807,7 @@ declare module '@polkadot/types/lookup' {
1816
1807
  } & Struct;
1817
1808
  readonly type: 'Submit' | 'SetOperator';
1818
1809
  }
1819
- /** @name PalletPriceIndexPriceIndex (228) */
1810
+ /** @name PalletPriceIndexPriceIndex (225) */
1820
1811
  interface PalletPriceIndexPriceIndex extends Struct {
1821
1812
  readonly btcUsdPrice: Compact<u128>;
1822
1813
  readonly argonotUsdPrice: u128;
@@ -1825,7 +1816,7 @@ declare module '@polkadot/types/lookup' {
1825
1816
  readonly argonTimeWeightedAverageLiquidity: u128;
1826
1817
  readonly tick: Compact<u64>;
1827
1818
  }
1828
- /** @name PalletGrandpaCall (229) */
1819
+ /** @name PalletGrandpaCall (226) */
1829
1820
  interface PalletGrandpaCall extends Enum {
1830
1821
  readonly isReportEquivocation: boolean;
1831
1822
  readonly asReportEquivocation: {
@@ -1844,12 +1835,12 @@ declare module '@polkadot/types/lookup' {
1844
1835
  } & Struct;
1845
1836
  readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
1846
1837
  }
1847
- /** @name SpConsensusGrandpaEquivocationProof (230) */
1838
+ /** @name SpConsensusGrandpaEquivocationProof (227) */
1848
1839
  interface SpConsensusGrandpaEquivocationProof extends Struct {
1849
1840
  readonly setId: u64;
1850
1841
  readonly equivocation: SpConsensusGrandpaEquivocation;
1851
1842
  }
1852
- /** @name SpConsensusGrandpaEquivocation (231) */
1843
+ /** @name SpConsensusGrandpaEquivocation (228) */
1853
1844
  interface SpConsensusGrandpaEquivocation extends Enum {
1854
1845
  readonly isPrevote: boolean;
1855
1846
  readonly asPrevote: FinalityGrandpaEquivocationPrevote;
@@ -1857,7 +1848,7 @@ declare module '@polkadot/types/lookup' {
1857
1848
  readonly asPrecommit: FinalityGrandpaEquivocationPrecommit;
1858
1849
  readonly type: 'Prevote' | 'Precommit';
1859
1850
  }
1860
- /** @name FinalityGrandpaEquivocationPrevote (232) */
1851
+ /** @name FinalityGrandpaEquivocationPrevote (229) */
1861
1852
  interface FinalityGrandpaEquivocationPrevote extends Struct {
1862
1853
  readonly roundNumber: u64;
1863
1854
  readonly identity: SpConsensusGrandpaAppPublic;
@@ -1870,15 +1861,15 @@ declare module '@polkadot/types/lookup' {
1870
1861
  SpConsensusGrandpaAppSignature
1871
1862
  ]>;
1872
1863
  }
1873
- /** @name FinalityGrandpaPrevote (233) */
1864
+ /** @name FinalityGrandpaPrevote (230) */
1874
1865
  interface FinalityGrandpaPrevote extends Struct {
1875
1866
  readonly targetHash: H256;
1876
1867
  readonly targetNumber: u32;
1877
1868
  }
1878
- /** @name SpConsensusGrandpaAppSignature (234) */
1869
+ /** @name SpConsensusGrandpaAppSignature (231) */
1879
1870
  interface SpConsensusGrandpaAppSignature extends U8aFixed {
1880
1871
  }
1881
- /** @name FinalityGrandpaEquivocationPrecommit (236) */
1872
+ /** @name FinalityGrandpaEquivocationPrecommit (233) */
1882
1873
  interface FinalityGrandpaEquivocationPrecommit extends Struct {
1883
1874
  readonly roundNumber: u64;
1884
1875
  readonly identity: SpConsensusGrandpaAppPublic;
@@ -1891,14 +1882,14 @@ declare module '@polkadot/types/lookup' {
1891
1882
  SpConsensusGrandpaAppSignature
1892
1883
  ]>;
1893
1884
  }
1894
- /** @name FinalityGrandpaPrecommit (237) */
1885
+ /** @name FinalityGrandpaPrecommit (234) */
1895
1886
  interface FinalityGrandpaPrecommit extends Struct {
1896
1887
  readonly targetHash: H256;
1897
1888
  readonly targetNumber: u32;
1898
1889
  }
1899
- /** @name SpCoreVoid (239) */
1890
+ /** @name SpCoreVoid (236) */
1900
1891
  type SpCoreVoid = Null;
1901
- /** @name PalletBlockSealCall (240) */
1892
+ /** @name PalletBlockSealCall (237) */
1902
1893
  interface PalletBlockSealCall extends Enum {
1903
1894
  readonly isApply: boolean;
1904
1895
  readonly asApply: {
@@ -1906,7 +1897,7 @@ declare module '@polkadot/types/lookup' {
1906
1897
  } & Struct;
1907
1898
  readonly type: 'Apply';
1908
1899
  }
1909
- /** @name ArgonPrimitivesInherentsBlockSealInherent (241) */
1900
+ /** @name ArgonPrimitivesInherentsBlockSealInherent (238) */
1910
1901
  interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
1911
1902
  readonly isVote: boolean;
1912
1903
  readonly asVote: {
@@ -1919,13 +1910,13 @@ declare module '@polkadot/types/lookup' {
1919
1910
  readonly isCompute: boolean;
1920
1911
  readonly type: 'Vote' | 'Compute';
1921
1912
  }
1922
- /** @name ArgonPrimitivesBalanceChangeMerkleProof (242) */
1913
+ /** @name ArgonPrimitivesBalanceChangeMerkleProof (239) */
1923
1914
  interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
1924
1915
  readonly proof: Vec<H256>;
1925
1916
  readonly numberOfLeaves: Compact<u32>;
1926
1917
  readonly leafIndex: Compact<u32>;
1927
1918
  }
1928
- /** @name ArgonPrimitivesBlockVoteBlockVoteT (244) */
1919
+ /** @name ArgonPrimitivesBlockVoteBlockVoteT (241) */
1929
1920
  interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
1930
1921
  readonly accountId: AccountId32;
1931
1922
  readonly blockHash: H256;
@@ -1935,7 +1926,7 @@ declare module '@polkadot/types/lookup' {
1935
1926
  readonly blockRewardsAccountId: AccountId32;
1936
1927
  readonly tick: Compact<u64>;
1937
1928
  }
1938
- /** @name SpRuntimeMultiSignature (245) */
1929
+ /** @name SpRuntimeMultiSignature (242) */
1939
1930
  interface SpRuntimeMultiSignature extends Enum {
1940
1931
  readonly isEd25519: boolean;
1941
1932
  readonly asEd25519: U8aFixed;
@@ -1945,7 +1936,7 @@ declare module '@polkadot/types/lookup' {
1945
1936
  readonly asEcdsa: U8aFixed;
1946
1937
  readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
1947
1938
  }
1948
- /** @name PalletBlockRewardsCall (247) */
1939
+ /** @name PalletBlockRewardsCall (244) */
1949
1940
  interface PalletBlockRewardsCall extends Enum {
1950
1941
  readonly isSetBlockRewardsPaused: boolean;
1951
1942
  readonly asSetBlockRewardsPaused: {
@@ -1953,9 +1944,9 @@ declare module '@polkadot/types/lookup' {
1953
1944
  } & Struct;
1954
1945
  readonly type: 'SetBlockRewardsPaused';
1955
1946
  }
1956
- /** @name PalletMintCall (248) */
1947
+ /** @name PalletMintCall (245) */
1957
1948
  type PalletMintCall = Null;
1958
- /** @name PalletBalancesCall (249) */
1949
+ /** @name PalletBalancesCall (246) */
1959
1950
  interface PalletBalancesCall extends Enum {
1960
1951
  readonly isTransferAllowDeath: boolean;
1961
1952
  readonly asTransferAllowDeath: {
@@ -2004,13 +1995,13 @@ declare module '@polkadot/types/lookup' {
2004
1995
  } & Struct;
2005
1996
  readonly type: 'TransferAllowDeath' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'ForceSetBalance' | 'ForceAdjustTotalIssuance' | 'Burn';
2006
1997
  }
2007
- /** @name PalletBalancesAdjustmentDirection (250) */
1998
+ /** @name PalletBalancesAdjustmentDirection (247) */
2008
1999
  interface PalletBalancesAdjustmentDirection extends Enum {
2009
2000
  readonly isIncrease: boolean;
2010
2001
  readonly isDecrease: boolean;
2011
2002
  readonly type: 'Increase' | 'Decrease';
2012
2003
  }
2013
- /** @name PalletTxPauseCall (252) */
2004
+ /** @name PalletTxPauseCall (249) */
2014
2005
  interface PalletTxPauseCall extends Enum {
2015
2006
  readonly isPause: boolean;
2016
2007
  readonly asPause: {
@@ -2022,7 +2013,7 @@ declare module '@polkadot/types/lookup' {
2022
2013
  } & Struct;
2023
2014
  readonly type: 'Pause' | 'Unpause';
2024
2015
  }
2025
- /** @name PalletUtilityCall (253) */
2016
+ /** @name PalletUtilityCall (250) */
2026
2017
  interface PalletUtilityCall extends Enum {
2027
2018
  readonly isBatch: boolean;
2028
2019
  readonly asBatch: {
@@ -2053,14 +2044,14 @@ declare module '@polkadot/types/lookup' {
2053
2044
  } & Struct;
2054
2045
  readonly type: 'Batch' | 'AsDerivative' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight';
2055
2046
  }
2056
- /** @name ArgonRuntimeOriginCaller (255) */
2047
+ /** @name ArgonRuntimeOriginCaller (252) */
2057
2048
  interface ArgonRuntimeOriginCaller extends Enum {
2058
2049
  readonly isSystem: boolean;
2059
2050
  readonly asSystem: FrameSupportDispatchRawOrigin;
2060
2051
  readonly isVoid: boolean;
2061
2052
  readonly type: 'System' | 'Void';
2062
2053
  }
2063
- /** @name FrameSupportDispatchRawOrigin (256) */
2054
+ /** @name FrameSupportDispatchRawOrigin (253) */
2064
2055
  interface FrameSupportDispatchRawOrigin extends Enum {
2065
2056
  readonly isRoot: boolean;
2066
2057
  readonly isSigned: boolean;
@@ -2068,7 +2059,7 @@ declare module '@polkadot/types/lookup' {
2068
2059
  readonly isNone: boolean;
2069
2060
  readonly type: 'Root' | 'Signed' | 'None';
2070
2061
  }
2071
- /** @name PalletSudoCall (257) */
2062
+ /** @name PalletSudoCall (254) */
2072
2063
  interface PalletSudoCall extends Enum {
2073
2064
  readonly isSudo: boolean;
2074
2065
  readonly asSudo: {
@@ -2091,7 +2082,7 @@ declare module '@polkadot/types/lookup' {
2091
2082
  readonly isRemoveKey: boolean;
2092
2083
  readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
2093
2084
  }
2094
- /** @name PalletIsmpCall (258) */
2085
+ /** @name PalletIsmpCall (255) */
2095
2086
  interface PalletIsmpCall extends Enum {
2096
2087
  readonly isHandleUnsigned: boolean;
2097
2088
  readonly asHandleUnsigned: {
@@ -2111,7 +2102,7 @@ declare module '@polkadot/types/lookup' {
2111
2102
  } & Struct;
2112
2103
  readonly type: 'HandleUnsigned' | 'CreateConsensusClient' | 'UpdateConsensusState' | 'FundMessage';
2113
2104
  }
2114
- /** @name IsmpMessagingMessage (260) */
2105
+ /** @name IsmpMessagingMessage (257) */
2115
2106
  interface IsmpMessagingMessage extends Enum {
2116
2107
  readonly isConsensus: boolean;
2117
2108
  readonly asConsensus: IsmpMessagingConsensusMessage;
@@ -2125,25 +2116,25 @@ declare module '@polkadot/types/lookup' {
2125
2116
  readonly asTimeout: IsmpMessagingTimeoutMessage;
2126
2117
  readonly type: 'Consensus' | 'FraudProof' | 'Request' | 'Response' | 'Timeout';
2127
2118
  }
2128
- /** @name IsmpMessagingConsensusMessage (261) */
2119
+ /** @name IsmpMessagingConsensusMessage (258) */
2129
2120
  interface IsmpMessagingConsensusMessage extends Struct {
2130
2121
  readonly consensusProof: Bytes;
2131
2122
  readonly consensusStateId: U8aFixed;
2132
2123
  readonly signer: Bytes;
2133
2124
  }
2134
- /** @name IsmpMessagingFraudProofMessage (262) */
2125
+ /** @name IsmpMessagingFraudProofMessage (259) */
2135
2126
  interface IsmpMessagingFraudProofMessage extends Struct {
2136
2127
  readonly proof1: Bytes;
2137
2128
  readonly proof2: Bytes;
2138
2129
  readonly consensusStateId: U8aFixed;
2139
2130
  }
2140
- /** @name IsmpMessagingRequestMessage (263) */
2131
+ /** @name IsmpMessagingRequestMessage (260) */
2141
2132
  interface IsmpMessagingRequestMessage extends Struct {
2142
2133
  readonly requests: Vec<IsmpRouterPostRequest>;
2143
2134
  readonly proof: IsmpMessagingProof;
2144
2135
  readonly signer: Bytes;
2145
2136
  }
2146
- /** @name IsmpRouterPostRequest (265) */
2137
+ /** @name IsmpRouterPostRequest (262) */
2147
2138
  interface IsmpRouterPostRequest extends Struct {
2148
2139
  readonly source: IsmpHostStateMachine;
2149
2140
  readonly dest: IsmpHostStateMachine;
@@ -2153,18 +2144,18 @@ declare module '@polkadot/types/lookup' {
2153
2144
  readonly timeoutTimestamp: u64;
2154
2145
  readonly body: Bytes;
2155
2146
  }
2156
- /** @name IsmpMessagingProof (266) */
2147
+ /** @name IsmpMessagingProof (263) */
2157
2148
  interface IsmpMessagingProof extends Struct {
2158
2149
  readonly height: IsmpConsensusStateMachineHeight;
2159
2150
  readonly proof: Bytes;
2160
2151
  }
2161
- /** @name IsmpMessagingResponseMessage (267) */
2152
+ /** @name IsmpMessagingResponseMessage (264) */
2162
2153
  interface IsmpMessagingResponseMessage extends Struct {
2163
2154
  readonly datagram: IsmpRouterRequestResponse;
2164
2155
  readonly proof: IsmpMessagingProof;
2165
2156
  readonly signer: Bytes;
2166
2157
  }
2167
- /** @name IsmpRouterRequestResponse (268) */
2158
+ /** @name IsmpRouterRequestResponse (265) */
2168
2159
  interface IsmpRouterRequestResponse extends Enum {
2169
2160
  readonly isRequest: boolean;
2170
2161
  readonly asRequest: Vec<IsmpRouterRequest>;
@@ -2172,7 +2163,7 @@ declare module '@polkadot/types/lookup' {
2172
2163
  readonly asResponse: Vec<IsmpRouterResponse>;
2173
2164
  readonly type: 'Request' | 'Response';
2174
2165
  }
2175
- /** @name IsmpRouterRequest (270) */
2166
+ /** @name IsmpRouterRequest (267) */
2176
2167
  interface IsmpRouterRequest extends Enum {
2177
2168
  readonly isPost: boolean;
2178
2169
  readonly asPost: IsmpRouterPostRequest;
@@ -2180,7 +2171,7 @@ declare module '@polkadot/types/lookup' {
2180
2171
  readonly asGet: IsmpRouterGetRequest;
2181
2172
  readonly type: 'Post' | 'Get';
2182
2173
  }
2183
- /** @name IsmpRouterGetRequest (271) */
2174
+ /** @name IsmpRouterGetRequest (268) */
2184
2175
  interface IsmpRouterGetRequest extends Struct {
2185
2176
  readonly source: IsmpHostStateMachine;
2186
2177
  readonly dest: IsmpHostStateMachine;
@@ -2191,7 +2182,7 @@ declare module '@polkadot/types/lookup' {
2191
2182
  readonly context: Bytes;
2192
2183
  readonly timeoutTimestamp: u64;
2193
2184
  }
2194
- /** @name IsmpRouterResponse (273) */
2185
+ /** @name IsmpRouterResponse (270) */
2195
2186
  interface IsmpRouterResponse extends Enum {
2196
2187
  readonly isPost: boolean;
2197
2188
  readonly asPost: IsmpRouterPostResponse;
@@ -2199,23 +2190,23 @@ declare module '@polkadot/types/lookup' {
2199
2190
  readonly asGet: IsmpRouterGetResponse;
2200
2191
  readonly type: 'Post' | 'Get';
2201
2192
  }
2202
- /** @name IsmpRouterPostResponse (274) */
2193
+ /** @name IsmpRouterPostResponse (271) */
2203
2194
  interface IsmpRouterPostResponse extends Struct {
2204
2195
  readonly post: IsmpRouterPostRequest;
2205
2196
  readonly response: Bytes;
2206
2197
  readonly timeoutTimestamp: u64;
2207
2198
  }
2208
- /** @name IsmpRouterGetResponse (275) */
2199
+ /** @name IsmpRouterGetResponse (272) */
2209
2200
  interface IsmpRouterGetResponse extends Struct {
2210
2201
  readonly get_: IsmpRouterGetRequest;
2211
2202
  readonly values_: Vec<IsmpRouterStorageValue>;
2212
2203
  }
2213
- /** @name IsmpRouterStorageValue (277) */
2204
+ /** @name IsmpRouterStorageValue (274) */
2214
2205
  interface IsmpRouterStorageValue extends Struct {
2215
2206
  readonly key: Bytes;
2216
2207
  readonly value: Option<Bytes>;
2217
2208
  }
2218
- /** @name IsmpMessagingTimeoutMessage (279) */
2209
+ /** @name IsmpMessagingTimeoutMessage (276) */
2219
2210
  interface IsmpMessagingTimeoutMessage extends Enum {
2220
2211
  readonly isPost: boolean;
2221
2212
  readonly asPost: {
@@ -2233,7 +2224,7 @@ declare module '@polkadot/types/lookup' {
2233
2224
  } & Struct;
2234
2225
  readonly type: 'Post' | 'PostResponse' | 'Get';
2235
2226
  }
2236
- /** @name IsmpMessagingCreateConsensusState (281) */
2227
+ /** @name IsmpMessagingCreateConsensusState (278) */
2237
2228
  interface IsmpMessagingCreateConsensusState extends Struct {
2238
2229
  readonly consensusState: Bytes;
2239
2230
  readonly consensusClientId: U8aFixed;
@@ -2242,29 +2233,29 @@ declare module '@polkadot/types/lookup' {
2242
2233
  readonly challengePeriods: BTreeMap<IsmpHostStateMachine, u64>;
2243
2234
  readonly stateMachineCommitments: Vec<ITuple<[IsmpConsensusStateMachineId, IsmpMessagingStateCommitmentHeight]>>;
2244
2235
  }
2245
- /** @name IsmpMessagingStateCommitmentHeight (287) */
2236
+ /** @name IsmpMessagingStateCommitmentHeight (284) */
2246
2237
  interface IsmpMessagingStateCommitmentHeight extends Struct {
2247
2238
  readonly commitment: IsmpConsensusStateCommitment;
2248
2239
  readonly height: u64;
2249
2240
  }
2250
- /** @name IsmpConsensusStateCommitment (288) */
2241
+ /** @name IsmpConsensusStateCommitment (285) */
2251
2242
  interface IsmpConsensusStateCommitment extends Struct {
2252
2243
  readonly timestamp: u64;
2253
2244
  readonly overlayRoot: Option<H256>;
2254
2245
  readonly stateRoot: H256;
2255
2246
  }
2256
- /** @name PalletIsmpUtilsUpdateConsensusState (289) */
2247
+ /** @name PalletIsmpUtilsUpdateConsensusState (286) */
2257
2248
  interface PalletIsmpUtilsUpdateConsensusState extends Struct {
2258
2249
  readonly consensusStateId: U8aFixed;
2259
2250
  readonly unbondingPeriod: Option<u64>;
2260
2251
  readonly challengePeriods: BTreeMap<IsmpHostStateMachine, u64>;
2261
2252
  }
2262
- /** @name PalletIsmpUtilsFundMessageParams (290) */
2253
+ /** @name PalletIsmpUtilsFundMessageParams (287) */
2263
2254
  interface PalletIsmpUtilsFundMessageParams extends Struct {
2264
2255
  readonly commitment: PalletIsmpUtilsMessageCommitment;
2265
2256
  readonly amount: u128;
2266
2257
  }
2267
- /** @name PalletIsmpUtilsMessageCommitment (291) */
2258
+ /** @name PalletIsmpUtilsMessageCommitment (288) */
2268
2259
  interface PalletIsmpUtilsMessageCommitment extends Enum {
2269
2260
  readonly isRequest: boolean;
2270
2261
  readonly asRequest: H256;
@@ -2272,7 +2263,7 @@ declare module '@polkadot/types/lookup' {
2272
2263
  readonly asResponse: H256;
2273
2264
  readonly type: 'Request' | 'Response';
2274
2265
  }
2275
- /** @name IsmpGrandpaCall (292) */
2266
+ /** @name IsmpGrandpaCall (289) */
2276
2267
  interface IsmpGrandpaCall extends Enum {
2277
2268
  readonly isAddStateMachines: boolean;
2278
2269
  readonly asAddStateMachines: {
@@ -2284,12 +2275,12 @@ declare module '@polkadot/types/lookup' {
2284
2275
  } & Struct;
2285
2276
  readonly type: 'AddStateMachines' | 'RemoveStateMachines';
2286
2277
  }
2287
- /** @name IsmpGrandpaAddStateMachine (294) */
2278
+ /** @name IsmpGrandpaAddStateMachine (291) */
2288
2279
  interface IsmpGrandpaAddStateMachine extends Struct {
2289
2280
  readonly stateMachine: IsmpHostStateMachine;
2290
2281
  readonly slotDuration: u64;
2291
2282
  }
2292
- /** @name PalletTokenGatewayCall (295) */
2283
+ /** @name PalletTokenGatewayCall (292) */
2293
2284
  interface PalletTokenGatewayCall extends Enum {
2294
2285
  readonly isTeleport: boolean;
2295
2286
  readonly asTeleport: {
@@ -2313,7 +2304,7 @@ declare module '@polkadot/types/lookup' {
2313
2304
  } & Struct;
2314
2305
  readonly type: 'Teleport' | 'SetTokenGatewayAddresses' | 'CreateErc6160Asset' | 'UpdateErc6160Asset' | 'UpdateAssetPrecision';
2315
2306
  }
2316
- /** @name PalletTokenGatewayTeleportParams (296) */
2307
+ /** @name PalletTokenGatewayTeleportParams (293) */
2317
2308
  interface PalletTokenGatewayTeleportParams extends Struct {
2318
2309
  readonly assetId: u32;
2319
2310
  readonly destination: IsmpHostStateMachine;
@@ -2325,33 +2316,33 @@ declare module '@polkadot/types/lookup' {
2325
2316
  readonly callData: Option<Bytes>;
2326
2317
  readonly redeem: bool;
2327
2318
  }
2328
- /** @name PalletTokenGatewayAssetRegistration (300) */
2319
+ /** @name PalletTokenGatewayAssetRegistration (297) */
2329
2320
  interface PalletTokenGatewayAssetRegistration extends Struct {
2330
2321
  readonly localId: u32;
2331
2322
  readonly reg: TokenGatewayPrimitivesGatewayAssetRegistration;
2332
2323
  readonly native: bool;
2333
2324
  readonly precision: BTreeMap<IsmpHostStateMachine, u8>;
2334
2325
  }
2335
- /** @name TokenGatewayPrimitivesGatewayAssetRegistration (301) */
2326
+ /** @name TokenGatewayPrimitivesGatewayAssetRegistration (298) */
2336
2327
  interface TokenGatewayPrimitivesGatewayAssetRegistration extends Struct {
2337
2328
  readonly name: Bytes;
2338
2329
  readonly symbol: Bytes;
2339
2330
  readonly chains: Vec<IsmpHostStateMachine>;
2340
2331
  readonly minimumBalance: Option<u128>;
2341
2332
  }
2342
- /** @name TokenGatewayPrimitivesGatewayAssetUpdate (306) */
2333
+ /** @name TokenGatewayPrimitivesGatewayAssetUpdate (303) */
2343
2334
  interface TokenGatewayPrimitivesGatewayAssetUpdate extends Struct {
2344
2335
  readonly assetId: H256;
2345
2336
  readonly addChains: Vec<IsmpHostStateMachine>;
2346
2337
  readonly removeChains: Vec<IsmpHostStateMachine>;
2347
2338
  readonly newAdmins: Vec<ITuple<[IsmpHostStateMachine, H160]>>;
2348
2339
  }
2349
- /** @name PalletTokenGatewayPrecisionUpdate (312) */
2340
+ /** @name PalletTokenGatewayPrecisionUpdate (309) */
2350
2341
  interface PalletTokenGatewayPrecisionUpdate extends Struct {
2351
2342
  readonly assetId: u32;
2352
2343
  readonly precisions: BTreeMap<IsmpHostStateMachine, u8>;
2353
2344
  }
2354
- /** @name PalletMultisigError (314) */
2345
+ /** @name PalletMultisigError (311) */
2355
2346
  interface PalletMultisigError extends Enum {
2356
2347
  readonly isMinimumThreshold: boolean;
2357
2348
  readonly isAlreadyApproved: boolean;
@@ -2369,19 +2360,19 @@ declare module '@polkadot/types/lookup' {
2369
2360
  readonly isAlreadyStored: boolean;
2370
2361
  readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored';
2371
2362
  }
2372
- /** @name PalletProxyProxyDefinition (317) */
2363
+ /** @name PalletProxyProxyDefinition (314) */
2373
2364
  interface PalletProxyProxyDefinition extends Struct {
2374
2365
  readonly delegate: AccountId32;
2375
2366
  readonly proxyType: ArgonRuntimeProxyType;
2376
2367
  readonly delay: u32;
2377
2368
  }
2378
- /** @name PalletProxyAnnouncement (321) */
2369
+ /** @name PalletProxyAnnouncement (318) */
2379
2370
  interface PalletProxyAnnouncement extends Struct {
2380
2371
  readonly real: AccountId32;
2381
2372
  readonly callHash: H256;
2382
2373
  readonly height: u32;
2383
2374
  }
2384
- /** @name PalletProxyError (323) */
2375
+ /** @name PalletProxyError (320) */
2385
2376
  interface PalletProxyError extends Enum {
2386
2377
  readonly isTooMany: boolean;
2387
2378
  readonly isNotFound: boolean;
@@ -2393,12 +2384,12 @@ declare module '@polkadot/types/lookup' {
2393
2384
  readonly isNoSelfProxy: boolean;
2394
2385
  readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy';
2395
2386
  }
2396
- /** @name ArgonPrimitivesTickTicker (324) */
2387
+ /** @name ArgonPrimitivesTickTicker (321) */
2397
2388
  interface ArgonPrimitivesTickTicker extends Struct {
2398
2389
  readonly tickDurationMillis: Compact<u64>;
2399
2390
  readonly channelHoldExpirationTicks: Compact<u64>;
2400
2391
  }
2401
- /** @name PalletTicksError (326) */
2392
+ /** @name PalletTicksError (323) */
2402
2393
  type PalletTicksError = Null;
2403
2394
  /** @name ArgonPrimitivesBlockSealMiningBidStats (333) */
2404
2395
  interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
@@ -2427,47 +2418,18 @@ declare module '@polkadot/types/lookup' {
2427
2418
  readonly isExpirationAtBlockOverflow: boolean;
2428
2419
  readonly isInsufficientFunds: boolean;
2429
2420
  readonly isInsufficientVaultFunds: boolean;
2430
- readonly isExpirationTooSoon: boolean;
2431
2421
  readonly isNoPermissions: boolean;
2432
2422
  readonly isHoldUnexpectedlyModified: boolean;
2433
2423
  readonly isUnrecoverableHold: boolean;
2434
2424
  readonly isVaultNotFound: boolean;
2435
2425
  readonly isAccountWouldBeBelowMinimum: boolean;
2436
- readonly isGenericObligationError: boolean;
2437
- readonly asGenericObligationError: ArgonPrimitivesVaultObligationError;
2438
2426
  readonly isCannotRegisterDuplicateKeys: boolean;
2439
2427
  readonly isInvalidKeyFormat: boolean;
2440
- readonly isCannotReduceBondedArgons: boolean;
2441
- readonly isInvalidVaultSwitch: boolean;
2442
- readonly type: 'SlotNotTakingBids' | 'TooManyBlockRegistrants' | 'InsufficientOwnershipTokens' | 'BidTooLow' | 'CannotRegisterOverlappingSessions' | 'ObligationNotFound' | 'NoMoreObligationIds' | 'VaultClosed' | 'MinimumObligationAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'AccountWouldBeBelowMinimum' | 'GenericObligationError' | 'CannotRegisterDuplicateKeys' | 'InvalidKeyFormat' | 'CannotReduceBondedArgons' | 'InvalidVaultSwitch';
2443
- }
2444
- /** @name ArgonPrimitivesVaultObligationError (338) */
2445
- interface ArgonPrimitivesVaultObligationError extends Enum {
2446
- readonly isObligationNotFound: boolean;
2447
- readonly isNoMoreObligationIds: boolean;
2448
- readonly isMinimumObligationAmountNotMet: boolean;
2449
- readonly isVaultClosed: boolean;
2450
- readonly isExpirationAtBlockOverflow: boolean;
2451
- readonly isAccountWouldBeBelowMinimum: boolean;
2452
- readonly isInsufficientFunds: boolean;
2453
- readonly isInsufficientVaultFunds: boolean;
2454
- readonly isInsufficientBondedArgons: boolean;
2455
- readonly isExpirationTooSoon: boolean;
2456
- readonly isNoPermissions: boolean;
2457
- readonly isHoldUnexpectedlyModified: boolean;
2458
- readonly isUnrecoverableHold: boolean;
2459
- readonly isVaultNotFound: boolean;
2460
- readonly isNoVaultBitcoinPubkeysAvailable: boolean;
2461
- readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
2462
- readonly isInvalidBitcoinScript: boolean;
2463
- readonly isInternalError: boolean;
2464
- readonly isObligationCompletionError: boolean;
2465
- readonly isVaultNotYetActive: boolean;
2466
- readonly isBaseFeeOverflow: boolean;
2467
- readonly isInvalidVaultSwitch: boolean;
2468
- readonly type: 'ObligationNotFound' | 'NoMoreObligationIds' | 'MinimumObligationAmountNotMet' | 'VaultClosed' | 'ExpirationAtBlockOverflow' | 'AccountWouldBeBelowMinimum' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'InsufficientBondedArgons' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'InvalidBitcoinScript' | 'InternalError' | 'ObligationCompletionError' | 'VaultNotYetActive' | 'BaseFeeOverflow' | 'InvalidVaultSwitch';
2428
+ readonly isBidCannotBeReduced: boolean;
2429
+ readonly isInvalidBidAmount: boolean;
2430
+ readonly type: 'SlotNotTakingBids' | 'TooManyBlockRegistrants' | 'InsufficientOwnershipTokens' | 'BidTooLow' | 'CannotRegisterOverlappingSessions' | 'ObligationNotFound' | 'NoMoreObligationIds' | 'VaultClosed' | 'MinimumObligationAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'AccountWouldBeBelowMinimum' | 'CannotRegisterDuplicateKeys' | 'InvalidKeyFormat' | 'BidCannotBeReduced' | 'InvalidBidAmount';
2469
2431
  }
2470
- /** @name ArgonPrimitivesBitcoinUtxoValue (339) */
2432
+ /** @name ArgonPrimitivesBitcoinUtxoValue (338) */
2471
2433
  interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
2472
2434
  readonly utxoId: u64;
2473
2435
  readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
@@ -2475,7 +2437,7 @@ declare module '@polkadot/types/lookup' {
2475
2437
  readonly submittedAtHeight: Compact<u64>;
2476
2438
  readonly watchForSpentUntilHeight: Compact<u64>;
2477
2439
  }
2478
- /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (340) */
2440
+ /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (339) */
2479
2441
  interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
2480
2442
  readonly isP2wsh: boolean;
2481
2443
  readonly asP2wsh: {
@@ -2483,7 +2445,7 @@ declare module '@polkadot/types/lookup' {
2483
2445
  } & Struct;
2484
2446
  readonly type: 'P2wsh';
2485
2447
  }
2486
- /** @name ArgonPrimitivesBitcoinBitcoinNetwork (345) */
2448
+ /** @name ArgonPrimitivesBitcoinBitcoinNetwork (344) */
2487
2449
  interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
2488
2450
  readonly isBitcoin: boolean;
2489
2451
  readonly isTestnet: boolean;
@@ -2491,7 +2453,7 @@ declare module '@polkadot/types/lookup' {
2491
2453
  readonly isRegtest: boolean;
2492
2454
  readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
2493
2455
  }
2494
- /** @name PalletBitcoinUtxosError (348) */
2456
+ /** @name PalletBitcoinUtxosError (347) */
2495
2457
  interface PalletBitcoinUtxosError extends Enum {
2496
2458
  readonly isNoPermissions: boolean;
2497
2459
  readonly isNoBitcoinConfirmedBlock: boolean;
@@ -2507,28 +2469,25 @@ declare module '@polkadot/types/lookup' {
2507
2469
  readonly isDuplicateUtxoId: boolean;
2508
2470
  readonly type: 'NoPermissions' | 'NoBitcoinConfirmedBlock' | 'InsufficientBitcoinAmount' | 'NoBitcoinPricesAvailable' | 'ScriptPubkeyConflict' | 'UtxoNotLocked' | 'RedemptionsUnavailable' | 'InvalidBitcoinSyncHeight' | 'BitcoinHeightNotConfirmed' | 'MaxUtxosExceeded' | 'InvalidBitcoinScript' | 'DuplicateUtxoId';
2509
2471
  }
2510
- /** @name ArgonPrimitivesVault (349) */
2472
+ /** @name ArgonPrimitivesVault (348) */
2511
2473
  interface ArgonPrimitivesVault extends Struct {
2512
2474
  readonly operatorAccountId: AccountId32;
2513
- readonly bitcoinArgons: ArgonPrimitivesVaultVaultArgons;
2475
+ readonly lockedBitcoinArgons: ArgonPrimitivesVaultVaultArgons;
2476
+ readonly terms: ArgonPrimitivesVaultVaultTerms;
2514
2477
  readonly addedSecuritizationPercent: Compact<u128>;
2515
2478
  readonly addedSecuritizationArgons: Compact<u128>;
2516
- readonly bondedArgons: ArgonPrimitivesVaultVaultArgons;
2517
- readonly miningRewardSharingPercentTake: Compact<u128>;
2479
+ readonly bondedBitcoinArgons: ArgonPrimitivesVaultVaultArgons;
2518
2480
  readonly isClosed: bool;
2519
2481
  readonly pendingTerms: Option<ITuple<[u64, ArgonPrimitivesVaultVaultTerms]>>;
2520
- readonly pendingBondedArgons: Option<ITuple<[u64, u128]>>;
2521
2482
  readonly pendingBitcoins: u128;
2522
2483
  readonly activationTick: u64;
2523
2484
  }
2524
- /** @name ArgonPrimitivesVaultVaultArgons (350) */
2485
+ /** @name ArgonPrimitivesVaultVaultArgons (349) */
2525
2486
  interface ArgonPrimitivesVaultVaultArgons extends Struct {
2526
- readonly annualPercentRate: Compact<u128>;
2527
2487
  readonly allocated: Compact<u128>;
2528
2488
  readonly reserved: Compact<u128>;
2529
- readonly baseFee: Compact<u128>;
2530
2489
  }
2531
- /** @name ArgonPrimitivesBitcoinBitcoinXPub (356) */
2490
+ /** @name ArgonPrimitivesBitcoinBitcoinXPub (353) */
2532
2491
  interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
2533
2492
  readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
2534
2493
  readonly depth: Compact<u8>;
@@ -2537,13 +2496,13 @@ declare module '@polkadot/types/lookup' {
2537
2496
  readonly chainCode: U8aFixed;
2538
2497
  readonly network: ArgonPrimitivesBitcoinNetworkKind;
2539
2498
  }
2540
- /** @name ArgonPrimitivesBitcoinNetworkKind (358) */
2499
+ /** @name ArgonPrimitivesBitcoinNetworkKind (355) */
2541
2500
  interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
2542
2501
  readonly isMain: boolean;
2543
2502
  readonly isTest: boolean;
2544
2503
  readonly type: 'Main' | 'Test';
2545
2504
  }
2546
- /** @name ArgonPrimitivesVaultObligation (364) */
2505
+ /** @name ArgonPrimitivesVaultObligation (358) */
2547
2506
  interface ArgonPrimitivesVaultObligation extends Struct {
2548
2507
  readonly obligationId: Compact<u64>;
2549
2508
  readonly fundType: ArgonPrimitivesVaultFundType;
@@ -2554,6 +2513,17 @@ declare module '@polkadot/types/lookup' {
2554
2513
  readonly amount: Compact<u128>;
2555
2514
  readonly startTick: Compact<u64>;
2556
2515
  readonly expiration: ArgonPrimitivesVaultObligationExpiration;
2516
+ readonly bitcoinAnnualPercentRate: Option<u128>;
2517
+ }
2518
+ /** @name PalletVaultsBidPoolEntrant (363) */
2519
+ interface PalletVaultsBidPoolEntrant extends Struct {
2520
+ readonly operatorAccountId: AccountId32;
2521
+ readonly vaultId: Compact<u32>;
2522
+ readonly bondedBitcoins: Compact<u128>;
2523
+ readonly prorata: Perbill;
2524
+ }
2525
+ /** @name FrameSupportPalletId (366) */
2526
+ interface FrameSupportPalletId extends U8aFixed {
2557
2527
  }
2558
2528
  /** @name PalletVaultsError (367) */
2559
2529
  interface PalletVaultsError extends Enum {
@@ -2564,7 +2534,6 @@ declare module '@polkadot/types/lookup' {
2564
2534
  readonly isExpirationAtBlockOverflow: boolean;
2565
2535
  readonly isInsufficientFunds: boolean;
2566
2536
  readonly isInsufficientVaultFunds: boolean;
2567
- readonly isInsufficientBondedArgons: boolean;
2568
2537
  readonly isAccountBelowMinimumBalance: boolean;
2569
2538
  readonly isVaultClosed: boolean;
2570
2539
  readonly isInvalidVaultAmount: boolean;
@@ -2577,7 +2546,6 @@ declare module '@polkadot/types/lookup' {
2577
2546
  readonly isUnsafeXpubkey: boolean;
2578
2547
  readonly isUnableToDeriveVaultXpubChild: boolean;
2579
2548
  readonly isBitcoinConversionFailed: boolean;
2580
- readonly isExpirationTooSoon: boolean;
2581
2549
  readonly isNoPermissions: boolean;
2582
2550
  readonly isHoldUnexpectedlyModified: boolean;
2583
2551
  readonly isUnrecoverableHold: boolean;
@@ -2591,7 +2559,7 @@ declare module '@polkadot/types/lookup' {
2591
2559
  readonly isFundingChangeAlreadyScheduled: boolean;
2592
2560
  readonly isObligationCompletionError: boolean;
2593
2561
  readonly isBaseFeeOverflow: boolean;
2594
- readonly type: 'ObligationNotFound' | 'NoMoreVaultIds' | 'NoMoreObligationIds' | 'MinimumObligationAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'InsufficientBondedArgons' | 'AccountBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'VaultReductionBelowAllocatedFunds' | 'InvalidSecuritization' | 'ReusedVaultBitcoinXpub' | 'InvalidBitcoinScript' | 'InvalidXpubkey' | 'WrongXpubNetwork' | 'UnsafeXpubkey' | 'UnableToDeriveVaultXpubChild' | 'BitcoinConversionFailed' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'VaultNotYetActive' | 'NoVaultBitcoinPubkeysAvailable' | 'TermsModificationOverflow' | 'TermsChangeAlreadyScheduled' | 'InternalError' | 'UnableToGenerateVaultBitcoinPubkey' | 'FundingChangeAlreadyScheduled' | 'ObligationCompletionError' | 'BaseFeeOverflow';
2562
+ readonly type: 'ObligationNotFound' | 'NoMoreVaultIds' | 'NoMoreObligationIds' | 'MinimumObligationAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'AccountBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'VaultReductionBelowAllocatedFunds' | 'InvalidSecuritization' | 'ReusedVaultBitcoinXpub' | 'InvalidBitcoinScript' | 'InvalidXpubkey' | 'WrongXpubNetwork' | 'UnsafeXpubkey' | 'UnableToDeriveVaultXpubChild' | 'BitcoinConversionFailed' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'VaultNotYetActive' | 'NoVaultBitcoinPubkeysAvailable' | 'TermsModificationOverflow' | 'TermsChangeAlreadyScheduled' | 'InternalError' | 'UnableToGenerateVaultBitcoinPubkey' | 'FundingChangeAlreadyScheduled' | 'ObligationCompletionError' | 'BaseFeeOverflow';
2595
2563
  }
2596
2564
  /** @name PalletBitcoinLocksLockedBitcoin (368) */
2597
2565
  interface PalletBitcoinLocksLockedBitcoin extends Struct {
@@ -2629,7 +2597,6 @@ declare module '@polkadot/types/lookup' {
2629
2597
  readonly isExpirationAtBlockOverflow: boolean;
2630
2598
  readonly isInsufficientFunds: boolean;
2631
2599
  readonly isInsufficientVaultFunds: boolean;
2632
- readonly isInsufficientBondedArgons: boolean;
2633
2600
  readonly isAccountWouldGoBelowMinimumBalance: boolean;
2634
2601
  readonly isVaultClosed: boolean;
2635
2602
  readonly isInvalidVaultAmount: boolean;
@@ -2644,7 +2611,6 @@ declare module '@polkadot/types/lookup' {
2644
2611
  readonly isInsufficientSatoshisLocked: boolean;
2645
2612
  readonly isNoBitcoinPricesAvailable: boolean;
2646
2613
  readonly isInvalidBitcoinScript: boolean;
2647
- readonly isExpirationTooSoon: boolean;
2648
2614
  readonly isNoPermissions: boolean;
2649
2615
  readonly isHoldUnexpectedlyModified: boolean;
2650
2616
  readonly isUnrecoverableHold: boolean;
@@ -2654,9 +2620,31 @@ declare module '@polkadot/types/lookup' {
2654
2620
  readonly isLockNotFound: boolean;
2655
2621
  readonly isNoVaultBitcoinPubkeysAvailable: boolean;
2656
2622
  readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
2657
- readonly type: 'ObligationNotFound' | 'NoMoreObligationIds' | 'MinimumObligationAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'InsufficientBondedArgons' | 'AccountWouldGoBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'RedemptionNotLocked' | 'BitcoinReleaseInitiationDeadlinePassed' | 'BitcoinFeeTooHigh' | 'BitcoinUtxoNotFound' | 'BitcoinUnableToBeDecodedForRelease' | 'BitcoinSignatureUnableToBeDecoded' | 'BitcoinPubkeyUnableToBeDecoded' | 'BitcoinInvalidCosignature' | 'InsufficientSatoshisLocked' | 'NoBitcoinPricesAvailable' | 'InvalidBitcoinScript' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'GenericObligationError' | 'LockNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey';
2623
+ readonly type: 'ObligationNotFound' | 'NoMoreObligationIds' | 'MinimumObligationAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'AccountWouldGoBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'RedemptionNotLocked' | 'BitcoinReleaseInitiationDeadlinePassed' | 'BitcoinFeeTooHigh' | 'BitcoinUtxoNotFound' | 'BitcoinUnableToBeDecodedForRelease' | 'BitcoinSignatureUnableToBeDecoded' | 'BitcoinPubkeyUnableToBeDecoded' | 'BitcoinInvalidCosignature' | 'InsufficientSatoshisLocked' | 'NoBitcoinPricesAvailable' | 'InvalidBitcoinScript' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'GenericObligationError' | 'LockNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey';
2658
2624
  }
2659
- /** @name PalletNotariesError (388) */
2625
+ /** @name ArgonPrimitivesVaultObligationError (377) */
2626
+ interface ArgonPrimitivesVaultObligationError extends Enum {
2627
+ readonly isObligationNotFound: boolean;
2628
+ readonly isNoMoreObligationIds: boolean;
2629
+ readonly isMinimumObligationAmountNotMet: boolean;
2630
+ readonly isVaultClosed: boolean;
2631
+ readonly isExpirationAtBlockOverflow: boolean;
2632
+ readonly isAccountWouldBeBelowMinimum: boolean;
2633
+ readonly isInsufficientFunds: boolean;
2634
+ readonly isInsufficientVaultFunds: boolean;
2635
+ readonly isHoldUnexpectedlyModified: boolean;
2636
+ readonly isUnrecoverableHold: boolean;
2637
+ readonly isVaultNotFound: boolean;
2638
+ readonly isNoVaultBitcoinPubkeysAvailable: boolean;
2639
+ readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
2640
+ readonly isInvalidBitcoinScript: boolean;
2641
+ readonly isInternalError: boolean;
2642
+ readonly isObligationCompletionError: boolean;
2643
+ readonly isVaultNotYetActive: boolean;
2644
+ readonly isBaseFeeOverflow: boolean;
2645
+ readonly type: 'ObligationNotFound' | 'NoMoreObligationIds' | 'MinimumObligationAmountNotMet' | 'VaultClosed' | 'ExpirationAtBlockOverflow' | 'AccountWouldBeBelowMinimum' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'InvalidBitcoinScript' | 'InternalError' | 'ObligationCompletionError' | 'VaultNotYetActive' | 'BaseFeeOverflow';
2646
+ }
2647
+ /** @name PalletNotariesError (389) */
2660
2648
  interface PalletNotariesError extends Enum {
2661
2649
  readonly isProposalNotFound: boolean;
2662
2650
  readonly isMaxNotariesExceeded: boolean;
@@ -2669,7 +2657,7 @@ declare module '@polkadot/types/lookup' {
2669
2657
  readonly isInvalidNotary: boolean;
2670
2658
  readonly type: 'ProposalNotFound' | 'MaxNotariesExceeded' | 'MaxProposalsPerBlockExceeded' | 'NotAnActiveNotary' | 'InvalidNotaryOperator' | 'NoMoreNotaryIds' | 'EffectiveTickTooSoon' | 'TooManyKeys' | 'InvalidNotary';
2671
2659
  }
2672
- /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (392) */
2660
+ /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (393) */
2673
2661
  interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
2674
2662
  readonly notebookNumber: Compact<u32>;
2675
2663
  readonly tick: Compact<u64>;
@@ -2677,7 +2665,7 @@ declare module '@polkadot/types/lookup' {
2677
2665
  readonly secretHash: H256;
2678
2666
  readonly parentSecret: Option<H256>;
2679
2667
  }
2680
- /** @name PalletNotebookError (395) */
2668
+ /** @name PalletNotebookError (396) */
2681
2669
  interface PalletNotebookError extends Enum {
2682
2670
  readonly isDuplicateNotebookNumber: boolean;
2683
2671
  readonly isMissingNotebookNumber: boolean;
@@ -2696,16 +2684,13 @@ declare module '@polkadot/types/lookup' {
2696
2684
  readonly isInvalidNotebookSubmissionTick: boolean;
2697
2685
  readonly type: 'DuplicateNotebookNumber' | 'MissingNotebookNumber' | 'NotebookTickAlreadyUsed' | 'InvalidNotebookSignature' | 'InvalidSecretProvided' | 'CouldNotDecodeNotebook' | 'DuplicateNotebookDigest' | 'MissingNotebookDigest' | 'InvalidNotebookDigest' | 'MultipleNotebookInherentsProvided' | 'InternalError' | 'NotebookSubmittedForLockedNotary' | 'InvalidReprocessNotebook' | 'InvalidNotaryOperator' | 'InvalidNotebookSubmissionTick';
2698
2686
  }
2699
- /** @name PalletChainTransferQueuedTransferOut (396) */
2687
+ /** @name PalletChainTransferQueuedTransferOut (397) */
2700
2688
  interface PalletChainTransferQueuedTransferOut extends Struct {
2701
2689
  readonly accountId: AccountId32;
2702
2690
  readonly amount: u128;
2703
2691
  readonly expirationTick: u64;
2704
2692
  readonly notaryId: u32;
2705
2693
  }
2706
- /** @name FrameSupportPalletId (402) */
2707
- interface FrameSupportPalletId extends U8aFixed {
2708
- }
2709
2694
  /** @name PalletChainTransferError (403) */
2710
2695
  interface PalletChainTransferError extends Enum {
2711
2696
  readonly isMaxBlockTransfersExceeded: boolean;
@@ -2809,43 +2794,43 @@ declare module '@polkadot/types/lookup' {
2809
2794
  readonly isInvalidComputeBlockTick: boolean;
2810
2795
  readonly type: 'InvalidVoteSealStrength' | 'InvalidSubmitter' | 'UnableToDecodeVoteAccount' | 'UnregisteredBlockAuthor' | 'InvalidBlockVoteProof' | 'NoGrandparentVoteMinimum' | 'DuplicateBlockSealProvided' | 'InsufficientVotingPower' | 'ParentVotingKeyNotFound' | 'InvalidVoteGrandparentHash' | 'IneligibleNotebookUsed' | 'NoEligibleVotingRoot' | 'CouldNotDecodeVote' | 'MaxNotebooksAtTickExceeded' | 'NoClosestMinerFoundForVote' | 'BlockVoteInvalidSignature' | 'InvalidForkPowerParent' | 'BlockSealDecodeError' | 'InvalidComputeBlockTick';
2811
2796
  }
2812
- /** @name PalletBlockRewardsError (429) */
2797
+ /** @name PalletBlockRewardsError (432) */
2813
2798
  type PalletBlockRewardsError = Null;
2814
- /** @name PalletMintMintAction (434) */
2799
+ /** @name PalletMintMintAction (439) */
2815
2800
  interface PalletMintMintAction extends Struct {
2816
2801
  readonly argonBurned: u128;
2817
2802
  readonly argonMinted: u128;
2818
2803
  readonly bitcoinMinted: u128;
2819
2804
  }
2820
- /** @name PalletMintError (435) */
2805
+ /** @name PalletMintError (440) */
2821
2806
  interface PalletMintError extends Enum {
2822
2807
  readonly isTooManyPendingMints: boolean;
2823
2808
  readonly type: 'TooManyPendingMints';
2824
2809
  }
2825
- /** @name PalletBalancesBalanceLock (437) */
2810
+ /** @name PalletBalancesBalanceLock (442) */
2826
2811
  interface PalletBalancesBalanceLock extends Struct {
2827
2812
  readonly id: U8aFixed;
2828
2813
  readonly amount: u128;
2829
2814
  readonly reasons: PalletBalancesReasons;
2830
2815
  }
2831
- /** @name PalletBalancesReasons (438) */
2816
+ /** @name PalletBalancesReasons (443) */
2832
2817
  interface PalletBalancesReasons extends Enum {
2833
2818
  readonly isFee: boolean;
2834
2819
  readonly isMisc: boolean;
2835
2820
  readonly isAll: boolean;
2836
2821
  readonly type: 'Fee' | 'Misc' | 'All';
2837
2822
  }
2838
- /** @name PalletBalancesReserveData (441) */
2823
+ /** @name PalletBalancesReserveData (446) */
2839
2824
  interface PalletBalancesReserveData extends Struct {
2840
2825
  readonly id: U8aFixed;
2841
2826
  readonly amount: u128;
2842
2827
  }
2843
- /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (444) */
2828
+ /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (449) */
2844
2829
  interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
2845
2830
  readonly id: ArgonRuntimeRuntimeHoldReason;
2846
2831
  readonly amount: u128;
2847
2832
  }
2848
- /** @name ArgonRuntimeRuntimeHoldReason (445) */
2833
+ /** @name ArgonRuntimeRuntimeHoldReason (450) */
2849
2834
  interface ArgonRuntimeRuntimeHoldReason extends Enum {
2850
2835
  readonly isMiningSlot: boolean;
2851
2836
  readonly asMiningSlot: PalletMiningSlotHoldReason;
@@ -2857,44 +2842,44 @@ declare module '@polkadot/types/lookup' {
2857
2842
  readonly asBlockRewards: PalletBlockRewardsHoldReason;
2858
2843
  readonly type: 'MiningSlot' | 'Vaults' | 'BitcoinLocks' | 'BlockRewards';
2859
2844
  }
2860
- /** @name PalletMiningSlotHoldReason (446) */
2845
+ /** @name PalletMiningSlotHoldReason (451) */
2861
2846
  interface PalletMiningSlotHoldReason extends Enum {
2862
2847
  readonly isRegisterAsMiner: boolean;
2863
2848
  readonly type: 'RegisterAsMiner';
2864
2849
  }
2865
- /** @name PalletVaultsHoldReason (447) */
2850
+ /** @name PalletVaultsHoldReason (452) */
2866
2851
  interface PalletVaultsHoldReason extends Enum {
2867
2852
  readonly isEnterVault: boolean;
2868
2853
  readonly isObligationFee: boolean;
2869
2854
  readonly type: 'EnterVault' | 'ObligationFee';
2870
2855
  }
2871
- /** @name PalletBitcoinLocksHoldReason (448) */
2856
+ /** @name PalletBitcoinLocksHoldReason (453) */
2872
2857
  interface PalletBitcoinLocksHoldReason extends Enum {
2873
2858
  readonly isReleaseBitcoinLock: boolean;
2874
2859
  readonly type: 'ReleaseBitcoinLock';
2875
2860
  }
2876
- /** @name PalletBlockRewardsHoldReason (449) */
2861
+ /** @name PalletBlockRewardsHoldReason (454) */
2877
2862
  interface PalletBlockRewardsHoldReason extends Enum {
2878
2863
  readonly isMaturationPeriod: boolean;
2879
2864
  readonly type: 'MaturationPeriod';
2880
2865
  }
2881
- /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (452) */
2866
+ /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (457) */
2882
2867
  interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
2883
2868
  readonly id: ArgonRuntimeRuntimeFreezeReason;
2884
2869
  readonly amount: u128;
2885
2870
  }
2886
- /** @name ArgonRuntimeRuntimeFreezeReason (453) */
2871
+ /** @name ArgonRuntimeRuntimeFreezeReason (458) */
2887
2872
  interface ArgonRuntimeRuntimeFreezeReason extends Enum {
2888
2873
  readonly isBlockRewards: boolean;
2889
2874
  readonly asBlockRewards: PalletBlockRewardsFreezeReason;
2890
2875
  readonly type: 'BlockRewards';
2891
2876
  }
2892
- /** @name PalletBlockRewardsFreezeReason (454) */
2877
+ /** @name PalletBlockRewardsFreezeReason (459) */
2893
2878
  interface PalletBlockRewardsFreezeReason extends Enum {
2894
2879
  readonly isMaturationPeriod: boolean;
2895
2880
  readonly type: 'MaturationPeriod';
2896
2881
  }
2897
- /** @name PalletBalancesError (456) */
2882
+ /** @name PalletBalancesError (461) */
2898
2883
  interface PalletBalancesError extends Enum {
2899
2884
  readonly isVestingBalance: boolean;
2900
2885
  readonly isLiquidityRestrictions: boolean;
@@ -2910,7 +2895,7 @@ declare module '@polkadot/types/lookup' {
2910
2895
  readonly isDeltaZero: boolean;
2911
2896
  readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
2912
2897
  }
2913
- /** @name PalletTxPauseError (458) */
2898
+ /** @name PalletTxPauseError (463) */
2914
2899
  interface PalletTxPauseError extends Enum {
2915
2900
  readonly isIsPaused: boolean;
2916
2901
  readonly isIsUnpaused: boolean;
@@ -2918,23 +2903,23 @@ declare module '@polkadot/types/lookup' {
2918
2903
  readonly isNotFound: boolean;
2919
2904
  readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
2920
2905
  }
2921
- /** @name PalletTransactionPaymentReleases (459) */
2906
+ /** @name PalletTransactionPaymentReleases (464) */
2922
2907
  interface PalletTransactionPaymentReleases extends Enum {
2923
2908
  readonly isV1Ancient: boolean;
2924
2909
  readonly isV2: boolean;
2925
2910
  readonly type: 'V1Ancient' | 'V2';
2926
2911
  }
2927
- /** @name PalletUtilityError (460) */
2912
+ /** @name PalletUtilityError (465) */
2928
2913
  interface PalletUtilityError extends Enum {
2929
2914
  readonly isTooManyCalls: boolean;
2930
2915
  readonly type: 'TooManyCalls';
2931
2916
  }
2932
- /** @name PalletSudoError (461) */
2917
+ /** @name PalletSudoError (466) */
2933
2918
  interface PalletSudoError extends Enum {
2934
2919
  readonly isRequireSudo: boolean;
2935
2920
  readonly type: 'RequireSudo';
2936
2921
  }
2937
- /** @name PalletIsmpError (462) */
2922
+ /** @name PalletIsmpError (467) */
2938
2923
  interface PalletIsmpError extends Enum {
2939
2924
  readonly isInvalidMessage: boolean;
2940
2925
  readonly isMessageNotFound: boolean;
@@ -2943,9 +2928,9 @@ declare module '@polkadot/types/lookup' {
2943
2928
  readonly isChallengePeriodUpdateFailed: boolean;
2944
2929
  readonly type: 'InvalidMessage' | 'MessageNotFound' | 'ConsensusClientCreationFailed' | 'UnbondingPeriodUpdateFailed' | 'ChallengePeriodUpdateFailed';
2945
2930
  }
2946
- /** @name PalletHyperbridgeError (463) */
2931
+ /** @name PalletHyperbridgeError (468) */
2947
2932
  type PalletHyperbridgeError = Null;
2948
- /** @name PalletTokenGatewayError (465) */
2933
+ /** @name PalletTokenGatewayError (470) */
2949
2934
  interface PalletTokenGatewayError extends Enum {
2950
2935
  readonly isUnregisteredAsset: boolean;
2951
2936
  readonly isAssetTeleportError: boolean;
@@ -2958,32 +2943,32 @@ declare module '@polkadot/types/lookup' {
2958
2943
  readonly isNotAssetOwner: boolean;
2959
2944
  readonly type: 'UnregisteredAsset' | 'AssetTeleportError' | 'CoprocessorNotConfigured' | 'DispatchError' | 'AssetCreationError' | 'AssetDecimalsNotFound' | 'NotInitialized' | 'UnknownAsset' | 'NotAssetOwner';
2960
2945
  }
2961
- /** @name FrameSystemExtensionsCheckNonZeroSender (468) */
2946
+ /** @name FrameSystemExtensionsCheckNonZeroSender (473) */
2962
2947
  type FrameSystemExtensionsCheckNonZeroSender = Null;
2963
- /** @name FrameSystemExtensionsCheckSpecVersion (469) */
2948
+ /** @name FrameSystemExtensionsCheckSpecVersion (474) */
2964
2949
  type FrameSystemExtensionsCheckSpecVersion = Null;
2965
- /** @name FrameSystemExtensionsCheckTxVersion (470) */
2950
+ /** @name FrameSystemExtensionsCheckTxVersion (475) */
2966
2951
  type FrameSystemExtensionsCheckTxVersion = Null;
2967
- /** @name FrameSystemExtensionsCheckGenesis (471) */
2952
+ /** @name FrameSystemExtensionsCheckGenesis (476) */
2968
2953
  type FrameSystemExtensionsCheckGenesis = Null;
2969
- /** @name FrameSystemExtensionsCheckNonce (474) */
2954
+ /** @name FrameSystemExtensionsCheckNonce (479) */
2970
2955
  interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
2971
2956
  }
2972
- /** @name FrameSystemExtensionsCheckWeight (475) */
2957
+ /** @name FrameSystemExtensionsCheckWeight (480) */
2973
2958
  type FrameSystemExtensionsCheckWeight = Null;
2974
- /** @name PalletTransactionPaymentChargeTransactionPayment (476) */
2959
+ /** @name PalletTransactionPaymentChargeTransactionPayment (481) */
2975
2960
  interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
2976
2961
  }
2977
- /** @name FrameMetadataHashExtensionCheckMetadataHash (477) */
2962
+ /** @name FrameMetadataHashExtensionCheckMetadataHash (482) */
2978
2963
  interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
2979
2964
  readonly mode: FrameMetadataHashExtensionMode;
2980
2965
  }
2981
- /** @name FrameMetadataHashExtensionMode (478) */
2966
+ /** @name FrameMetadataHashExtensionMode (483) */
2982
2967
  interface FrameMetadataHashExtensionMode extends Enum {
2983
2968
  readonly isDisabled: boolean;
2984
2969
  readonly isEnabled: boolean;
2985
2970
  readonly type: 'Disabled' | 'Enabled';
2986
2971
  }
2987
- /** @name ArgonRuntimeRuntime (480) */
2972
+ /** @name ArgonRuntimeRuntime (485) */
2988
2973
  type ArgonRuntimeRuntime = Null;
2989
2974
  }