@argonprotocol/mainchain 1.0.16 → 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 +30 -36
  7. package/lib/cjs/interfaces/lookup.d.ts +245 -276
  8. package/lib/cjs/interfaces/lookup.js +285 -293
  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 +283 -294
  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 +30 -36
  18. package/lib/esm/interfaces/lookup.d.ts +245 -276
  19. package/lib/esm/interfaces/lookup.js +285 -293
  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 +283 -294
  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 +30 -36
  32. package/lib/types/interfaces/lookup.d.ts +245 -276
  33. package/lib/types/interfaces/registry.d.ts +2 -3
  34. package/lib/types/interfaces/types-lookup.d.ts +283 -294
  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,28 +1577,25 @@ 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: {
1594
- readonly miningSlotDelay: u64;
1593
+ readonly miningSlotDelay: Option<u64>;
1594
+ readonly ticksBeforeBidEndForVrfClose: Option<u64>;
1595
1595
  } & Struct;
1596
1596
  readonly type: 'Bid' | 'ConfigureMiningSlotDelay';
1597
1597
  }
1598
- /** @name PalletMiningSlotMiningSlotBid (184) */
1599
- interface PalletMiningSlotMiningSlotBid extends Struct {
1600
- readonly vaultId: u32;
1601
- readonly amount: u128;
1602
- }
1603
- /** @name PalletBitcoinUtxosCall (185) */
1598
+ /** @name PalletBitcoinUtxosCall (181) */
1604
1599
  interface PalletBitcoinUtxosCall extends Enum {
1605
1600
  readonly isSync: boolean;
1606
1601
  readonly asSync: {
@@ -1617,19 +1612,19 @@ declare module '@polkadot/types/lookup' {
1617
1612
  } & Struct;
1618
1613
  readonly type: 'Sync' | 'SetConfirmedBlock' | 'SetOperator';
1619
1614
  }
1620
- /** @name ArgonPrimitivesInherentsBitcoinUtxoSync (186) */
1615
+ /** @name ArgonPrimitivesInherentsBitcoinUtxoSync (182) */
1621
1616
  interface ArgonPrimitivesInherentsBitcoinUtxoSync extends Struct {
1622
1617
  readonly spent: BTreeMap<u64, u64>;
1623
1618
  readonly verified: BTreeMap<u64, ArgonPrimitivesBitcoinUtxoRef>;
1624
1619
  readonly invalid: BTreeMap<u64, ArgonPrimitivesBitcoinBitcoinRejectedReason>;
1625
1620
  readonly syncToBlock: ArgonPrimitivesBitcoinBitcoinBlock;
1626
1621
  }
1627
- /** @name ArgonPrimitivesBitcoinBitcoinBlock (196) */
1622
+ /** @name ArgonPrimitivesBitcoinBitcoinBlock (192) */
1628
1623
  interface ArgonPrimitivesBitcoinBitcoinBlock extends Struct {
1629
1624
  readonly blockHeight: Compact<u64>;
1630
1625
  readonly blockHash: ArgonPrimitivesBitcoinH256Le;
1631
1626
  }
1632
- /** @name PalletVaultsCall (197) */
1627
+ /** @name PalletVaultsCall (193) */
1633
1628
  interface PalletVaultsCall extends Enum {
1634
1629
  readonly isCreate: boolean;
1635
1630
  readonly asCreate: {
@@ -1638,8 +1633,8 @@ declare module '@polkadot/types/lookup' {
1638
1633
  readonly isModifyFunding: boolean;
1639
1634
  readonly asModifyFunding: {
1640
1635
  readonly vaultId: u32;
1641
- readonly totalMiningAmountOffered: u128;
1642
- readonly totalBitcoinAmountOffered: u128;
1636
+ readonly totalBondedBitcoinAmountOffered: u128;
1637
+ readonly totalLockedBitcoinAmountOffered: u128;
1643
1638
  readonly addedSecuritizationPercent: u128;
1644
1639
  } & Struct;
1645
1640
  readonly isModifyTerms: boolean;
@@ -1658,26 +1653,23 @@ declare module '@polkadot/types/lookup' {
1658
1653
  } & Struct;
1659
1654
  readonly type: 'Create' | 'ModifyFunding' | 'ModifyTerms' | 'Close' | 'ReplaceBitcoinXpub';
1660
1655
  }
1661
- /** @name PalletVaultsVaultConfig (198) */
1656
+ /** @name PalletVaultsVaultConfig (194) */
1662
1657
  interface PalletVaultsVaultConfig extends Struct {
1663
1658
  readonly terms: ArgonPrimitivesVaultVaultTerms;
1664
- readonly bitcoinAmountAllocated: Compact<u128>;
1659
+ readonly lockedBitcoinArgonsAllocated: Compact<u128>;
1665
1660
  readonly bitcoinXpubkey: ArgonPrimitivesBitcoinOpaqueBitcoinXpub;
1666
- readonly bondedArgonsAllocated: Compact<u128>;
1661
+ readonly bondedBitcoinArgonsAllocated: Compact<u128>;
1667
1662
  readonly addedSecuritizationPercent: Compact<u128>;
1668
1663
  }
1669
- /** @name ArgonPrimitivesVaultVaultTerms (199) */
1664
+ /** @name ArgonPrimitivesVaultVaultTerms (195) */
1670
1665
  interface ArgonPrimitivesVaultVaultTerms extends Struct {
1671
1666
  readonly bitcoinAnnualPercentRate: Compact<u128>;
1672
1667
  readonly bitcoinBaseFee: Compact<u128>;
1673
- readonly bondedArgonsAnnualPercentRate: Compact<u128>;
1674
- readonly bondedArgonsBaseFee: Compact<u128>;
1675
- readonly miningRewardSharingPercentTake: Compact<u128>;
1676
1668
  }
1677
- /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (200) */
1669
+ /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (197) */
1678
1670
  interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {
1679
1671
  }
1680
- /** @name PalletBitcoinLocksCall (202) */
1672
+ /** @name PalletBitcoinLocksCall (199) */
1681
1673
  interface PalletBitcoinLocksCall extends Enum {
1682
1674
  readonly isInitialize: boolean;
1683
1675
  readonly asInitialize: {
@@ -1702,10 +1694,10 @@ declare module '@polkadot/types/lookup' {
1702
1694
  } & Struct;
1703
1695
  readonly type: 'Initialize' | 'RequestRelease' | 'CosignRelease' | 'AdminModifyMinimumLockedSats';
1704
1696
  }
1705
- /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (203) */
1697
+ /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (200) */
1706
1698
  interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {
1707
1699
  }
1708
- /** @name PalletNotariesCall (207) */
1700
+ /** @name PalletNotariesCall (204) */
1709
1701
  interface PalletNotariesCall extends Enum {
1710
1702
  readonly isPropose: boolean;
1711
1703
  readonly asPropose: {
@@ -1723,7 +1715,7 @@ declare module '@polkadot/types/lookup' {
1723
1715
  } & Struct;
1724
1716
  readonly type: 'Propose' | 'Activate' | 'Update';
1725
1717
  }
1726
- /** @name PalletNotebookCall (208) */
1718
+ /** @name PalletNotebookCall (205) */
1727
1719
  interface PalletNotebookCall extends Enum {
1728
1720
  readonly isSubmit: boolean;
1729
1721
  readonly asSubmit: {
@@ -1735,12 +1727,12 @@ declare module '@polkadot/types/lookup' {
1735
1727
  } & Struct;
1736
1728
  readonly type: 'Submit' | 'Unlock';
1737
1729
  }
1738
- /** @name ArgonPrimitivesNotebookSignedNotebookHeader (210) */
1730
+ /** @name ArgonPrimitivesNotebookSignedNotebookHeader (207) */
1739
1731
  interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
1740
1732
  readonly header: ArgonPrimitivesNotebookNotebookHeader;
1741
1733
  readonly signature: U8aFixed;
1742
1734
  }
1743
- /** @name ArgonPrimitivesNotebookNotebookHeader (211) */
1735
+ /** @name ArgonPrimitivesNotebookNotebookHeader (208) */
1744
1736
  interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
1745
1737
  readonly version: Compact<u16>;
1746
1738
  readonly notebookNumber: Compact<u32>;
@@ -1758,7 +1750,7 @@ declare module '@polkadot/types/lookup' {
1758
1750
  readonly parentSecret: Option<H256>;
1759
1751
  readonly domains: Vec<ITuple<[H256, AccountId32]>>;
1760
1752
  }
1761
- /** @name ArgonPrimitivesNotebookChainTransfer (214) */
1753
+ /** @name ArgonPrimitivesNotebookChainTransfer (211) */
1762
1754
  interface ArgonPrimitivesNotebookChainTransfer extends Enum {
1763
1755
  readonly isToMainchain: boolean;
1764
1756
  readonly asToMainchain: {
@@ -1771,12 +1763,12 @@ declare module '@polkadot/types/lookup' {
1771
1763
  } & Struct;
1772
1764
  readonly type: 'ToMainchain' | 'ToLocalchain';
1773
1765
  }
1774
- /** @name ArgonPrimitivesBalanceChangeAccountOrigin (217) */
1766
+ /** @name ArgonPrimitivesBalanceChangeAccountOrigin (214) */
1775
1767
  interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
1776
1768
  readonly notebookNumber: Compact<u32>;
1777
1769
  readonly accountUid: Compact<u32>;
1778
1770
  }
1779
- /** @name PalletChainTransferCall (224) */
1771
+ /** @name PalletChainTransferCall (221) */
1780
1772
  interface PalletChainTransferCall extends Enum {
1781
1773
  readonly isSendToLocalchain: boolean;
1782
1774
  readonly asSendToLocalchain: {
@@ -1785,7 +1777,7 @@ declare module '@polkadot/types/lookup' {
1785
1777
  } & Struct;
1786
1778
  readonly type: 'SendToLocalchain';
1787
1779
  }
1788
- /** @name PalletBlockSealSpecCall (225) */
1780
+ /** @name PalletBlockSealSpecCall (222) */
1789
1781
  interface PalletBlockSealSpecCall extends Enum {
1790
1782
  readonly isConfigure: boolean;
1791
1783
  readonly asConfigure: {
@@ -1794,7 +1786,7 @@ declare module '@polkadot/types/lookup' {
1794
1786
  } & Struct;
1795
1787
  readonly type: 'Configure';
1796
1788
  }
1797
- /** @name PalletDomainsCall (226) */
1789
+ /** @name PalletDomainsCall (223) */
1798
1790
  interface PalletDomainsCall extends Enum {
1799
1791
  readonly isSetZoneRecord: boolean;
1800
1792
  readonly asSetZoneRecord: {
@@ -1803,7 +1795,7 @@ declare module '@polkadot/types/lookup' {
1803
1795
  } & Struct;
1804
1796
  readonly type: 'SetZoneRecord';
1805
1797
  }
1806
- /** @name PalletPriceIndexCall (227) */
1798
+ /** @name PalletPriceIndexCall (224) */
1807
1799
  interface PalletPriceIndexCall extends Enum {
1808
1800
  readonly isSubmit: boolean;
1809
1801
  readonly asSubmit: {
@@ -1815,14 +1807,16 @@ declare module '@polkadot/types/lookup' {
1815
1807
  } & Struct;
1816
1808
  readonly type: 'Submit' | 'SetOperator';
1817
1809
  }
1818
- /** @name PalletPriceIndexPriceIndex (228) */
1810
+ /** @name PalletPriceIndexPriceIndex (225) */
1819
1811
  interface PalletPriceIndexPriceIndex extends Struct {
1820
1812
  readonly btcUsdPrice: Compact<u128>;
1813
+ readonly argonotUsdPrice: u128;
1821
1814
  readonly argonUsdPrice: Compact<u128>;
1822
1815
  readonly argonUsdTargetPrice: u128;
1816
+ readonly argonTimeWeightedAverageLiquidity: u128;
1823
1817
  readonly tick: Compact<u64>;
1824
1818
  }
1825
- /** @name PalletGrandpaCall (229) */
1819
+ /** @name PalletGrandpaCall (226) */
1826
1820
  interface PalletGrandpaCall extends Enum {
1827
1821
  readonly isReportEquivocation: boolean;
1828
1822
  readonly asReportEquivocation: {
@@ -1841,12 +1835,12 @@ declare module '@polkadot/types/lookup' {
1841
1835
  } & Struct;
1842
1836
  readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
1843
1837
  }
1844
- /** @name SpConsensusGrandpaEquivocationProof (230) */
1838
+ /** @name SpConsensusGrandpaEquivocationProof (227) */
1845
1839
  interface SpConsensusGrandpaEquivocationProof extends Struct {
1846
1840
  readonly setId: u64;
1847
1841
  readonly equivocation: SpConsensusGrandpaEquivocation;
1848
1842
  }
1849
- /** @name SpConsensusGrandpaEquivocation (231) */
1843
+ /** @name SpConsensusGrandpaEquivocation (228) */
1850
1844
  interface SpConsensusGrandpaEquivocation extends Enum {
1851
1845
  readonly isPrevote: boolean;
1852
1846
  readonly asPrevote: FinalityGrandpaEquivocationPrevote;
@@ -1854,7 +1848,7 @@ declare module '@polkadot/types/lookup' {
1854
1848
  readonly asPrecommit: FinalityGrandpaEquivocationPrecommit;
1855
1849
  readonly type: 'Prevote' | 'Precommit';
1856
1850
  }
1857
- /** @name FinalityGrandpaEquivocationPrevote (232) */
1851
+ /** @name FinalityGrandpaEquivocationPrevote (229) */
1858
1852
  interface FinalityGrandpaEquivocationPrevote extends Struct {
1859
1853
  readonly roundNumber: u64;
1860
1854
  readonly identity: SpConsensusGrandpaAppPublic;
@@ -1867,15 +1861,15 @@ declare module '@polkadot/types/lookup' {
1867
1861
  SpConsensusGrandpaAppSignature
1868
1862
  ]>;
1869
1863
  }
1870
- /** @name FinalityGrandpaPrevote (233) */
1864
+ /** @name FinalityGrandpaPrevote (230) */
1871
1865
  interface FinalityGrandpaPrevote extends Struct {
1872
1866
  readonly targetHash: H256;
1873
1867
  readonly targetNumber: u32;
1874
1868
  }
1875
- /** @name SpConsensusGrandpaAppSignature (234) */
1869
+ /** @name SpConsensusGrandpaAppSignature (231) */
1876
1870
  interface SpConsensusGrandpaAppSignature extends U8aFixed {
1877
1871
  }
1878
- /** @name FinalityGrandpaEquivocationPrecommit (236) */
1872
+ /** @name FinalityGrandpaEquivocationPrecommit (233) */
1879
1873
  interface FinalityGrandpaEquivocationPrecommit extends Struct {
1880
1874
  readonly roundNumber: u64;
1881
1875
  readonly identity: SpConsensusGrandpaAppPublic;
@@ -1888,14 +1882,14 @@ declare module '@polkadot/types/lookup' {
1888
1882
  SpConsensusGrandpaAppSignature
1889
1883
  ]>;
1890
1884
  }
1891
- /** @name FinalityGrandpaPrecommit (237) */
1885
+ /** @name FinalityGrandpaPrecommit (234) */
1892
1886
  interface FinalityGrandpaPrecommit extends Struct {
1893
1887
  readonly targetHash: H256;
1894
1888
  readonly targetNumber: u32;
1895
1889
  }
1896
- /** @name SpCoreVoid (239) */
1890
+ /** @name SpCoreVoid (236) */
1897
1891
  type SpCoreVoid = Null;
1898
- /** @name PalletBlockSealCall (240) */
1892
+ /** @name PalletBlockSealCall (237) */
1899
1893
  interface PalletBlockSealCall extends Enum {
1900
1894
  readonly isApply: boolean;
1901
1895
  readonly asApply: {
@@ -1903,7 +1897,7 @@ declare module '@polkadot/types/lookup' {
1903
1897
  } & Struct;
1904
1898
  readonly type: 'Apply';
1905
1899
  }
1906
- /** @name ArgonPrimitivesInherentsBlockSealInherent (241) */
1900
+ /** @name ArgonPrimitivesInherentsBlockSealInherent (238) */
1907
1901
  interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
1908
1902
  readonly isVote: boolean;
1909
1903
  readonly asVote: {
@@ -1916,13 +1910,13 @@ declare module '@polkadot/types/lookup' {
1916
1910
  readonly isCompute: boolean;
1917
1911
  readonly type: 'Vote' | 'Compute';
1918
1912
  }
1919
- /** @name ArgonPrimitivesBalanceChangeMerkleProof (242) */
1913
+ /** @name ArgonPrimitivesBalanceChangeMerkleProof (239) */
1920
1914
  interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
1921
1915
  readonly proof: Vec<H256>;
1922
1916
  readonly numberOfLeaves: Compact<u32>;
1923
1917
  readonly leafIndex: Compact<u32>;
1924
1918
  }
1925
- /** @name ArgonPrimitivesBlockVoteBlockVoteT (244) */
1919
+ /** @name ArgonPrimitivesBlockVoteBlockVoteT (241) */
1926
1920
  interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
1927
1921
  readonly accountId: AccountId32;
1928
1922
  readonly blockHash: H256;
@@ -1932,7 +1926,7 @@ declare module '@polkadot/types/lookup' {
1932
1926
  readonly blockRewardsAccountId: AccountId32;
1933
1927
  readonly tick: Compact<u64>;
1934
1928
  }
1935
- /** @name SpRuntimeMultiSignature (245) */
1929
+ /** @name SpRuntimeMultiSignature (242) */
1936
1930
  interface SpRuntimeMultiSignature extends Enum {
1937
1931
  readonly isEd25519: boolean;
1938
1932
  readonly asEd25519: U8aFixed;
@@ -1942,7 +1936,7 @@ declare module '@polkadot/types/lookup' {
1942
1936
  readonly asEcdsa: U8aFixed;
1943
1937
  readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
1944
1938
  }
1945
- /** @name PalletBlockRewardsCall (247) */
1939
+ /** @name PalletBlockRewardsCall (244) */
1946
1940
  interface PalletBlockRewardsCall extends Enum {
1947
1941
  readonly isSetBlockRewardsPaused: boolean;
1948
1942
  readonly asSetBlockRewardsPaused: {
@@ -1950,9 +1944,9 @@ declare module '@polkadot/types/lookup' {
1950
1944
  } & Struct;
1951
1945
  readonly type: 'SetBlockRewardsPaused';
1952
1946
  }
1953
- /** @name PalletMintCall (248) */
1947
+ /** @name PalletMintCall (245) */
1954
1948
  type PalletMintCall = Null;
1955
- /** @name PalletBalancesCall (249) */
1949
+ /** @name PalletBalancesCall (246) */
1956
1950
  interface PalletBalancesCall extends Enum {
1957
1951
  readonly isTransferAllowDeath: boolean;
1958
1952
  readonly asTransferAllowDeath: {
@@ -2001,13 +1995,13 @@ declare module '@polkadot/types/lookup' {
2001
1995
  } & Struct;
2002
1996
  readonly type: 'TransferAllowDeath' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'ForceSetBalance' | 'ForceAdjustTotalIssuance' | 'Burn';
2003
1997
  }
2004
- /** @name PalletBalancesAdjustmentDirection (250) */
1998
+ /** @name PalletBalancesAdjustmentDirection (247) */
2005
1999
  interface PalletBalancesAdjustmentDirection extends Enum {
2006
2000
  readonly isIncrease: boolean;
2007
2001
  readonly isDecrease: boolean;
2008
2002
  readonly type: 'Increase' | 'Decrease';
2009
2003
  }
2010
- /** @name PalletTxPauseCall (252) */
2004
+ /** @name PalletTxPauseCall (249) */
2011
2005
  interface PalletTxPauseCall extends Enum {
2012
2006
  readonly isPause: boolean;
2013
2007
  readonly asPause: {
@@ -2019,7 +2013,7 @@ declare module '@polkadot/types/lookup' {
2019
2013
  } & Struct;
2020
2014
  readonly type: 'Pause' | 'Unpause';
2021
2015
  }
2022
- /** @name PalletUtilityCall (253) */
2016
+ /** @name PalletUtilityCall (250) */
2023
2017
  interface PalletUtilityCall extends Enum {
2024
2018
  readonly isBatch: boolean;
2025
2019
  readonly asBatch: {
@@ -2050,14 +2044,14 @@ declare module '@polkadot/types/lookup' {
2050
2044
  } & Struct;
2051
2045
  readonly type: 'Batch' | 'AsDerivative' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight';
2052
2046
  }
2053
- /** @name ArgonRuntimeOriginCaller (255) */
2047
+ /** @name ArgonRuntimeOriginCaller (252) */
2054
2048
  interface ArgonRuntimeOriginCaller extends Enum {
2055
2049
  readonly isSystem: boolean;
2056
2050
  readonly asSystem: FrameSupportDispatchRawOrigin;
2057
2051
  readonly isVoid: boolean;
2058
2052
  readonly type: 'System' | 'Void';
2059
2053
  }
2060
- /** @name FrameSupportDispatchRawOrigin (256) */
2054
+ /** @name FrameSupportDispatchRawOrigin (253) */
2061
2055
  interface FrameSupportDispatchRawOrigin extends Enum {
2062
2056
  readonly isRoot: boolean;
2063
2057
  readonly isSigned: boolean;
@@ -2065,7 +2059,7 @@ declare module '@polkadot/types/lookup' {
2065
2059
  readonly isNone: boolean;
2066
2060
  readonly type: 'Root' | 'Signed' | 'None';
2067
2061
  }
2068
- /** @name PalletSudoCall (257) */
2062
+ /** @name PalletSudoCall (254) */
2069
2063
  interface PalletSudoCall extends Enum {
2070
2064
  readonly isSudo: boolean;
2071
2065
  readonly asSudo: {
@@ -2088,7 +2082,7 @@ declare module '@polkadot/types/lookup' {
2088
2082
  readonly isRemoveKey: boolean;
2089
2083
  readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
2090
2084
  }
2091
- /** @name PalletIsmpCall (258) */
2085
+ /** @name PalletIsmpCall (255) */
2092
2086
  interface PalletIsmpCall extends Enum {
2093
2087
  readonly isHandleUnsigned: boolean;
2094
2088
  readonly asHandleUnsigned: {
@@ -2108,7 +2102,7 @@ declare module '@polkadot/types/lookup' {
2108
2102
  } & Struct;
2109
2103
  readonly type: 'HandleUnsigned' | 'CreateConsensusClient' | 'UpdateConsensusState' | 'FundMessage';
2110
2104
  }
2111
- /** @name IsmpMessagingMessage (260) */
2105
+ /** @name IsmpMessagingMessage (257) */
2112
2106
  interface IsmpMessagingMessage extends Enum {
2113
2107
  readonly isConsensus: boolean;
2114
2108
  readonly asConsensus: IsmpMessagingConsensusMessage;
@@ -2122,25 +2116,25 @@ declare module '@polkadot/types/lookup' {
2122
2116
  readonly asTimeout: IsmpMessagingTimeoutMessage;
2123
2117
  readonly type: 'Consensus' | 'FraudProof' | 'Request' | 'Response' | 'Timeout';
2124
2118
  }
2125
- /** @name IsmpMessagingConsensusMessage (261) */
2119
+ /** @name IsmpMessagingConsensusMessage (258) */
2126
2120
  interface IsmpMessagingConsensusMessage extends Struct {
2127
2121
  readonly consensusProof: Bytes;
2128
2122
  readonly consensusStateId: U8aFixed;
2129
2123
  readonly signer: Bytes;
2130
2124
  }
2131
- /** @name IsmpMessagingFraudProofMessage (262) */
2125
+ /** @name IsmpMessagingFraudProofMessage (259) */
2132
2126
  interface IsmpMessagingFraudProofMessage extends Struct {
2133
2127
  readonly proof1: Bytes;
2134
2128
  readonly proof2: Bytes;
2135
2129
  readonly consensusStateId: U8aFixed;
2136
2130
  }
2137
- /** @name IsmpMessagingRequestMessage (263) */
2131
+ /** @name IsmpMessagingRequestMessage (260) */
2138
2132
  interface IsmpMessagingRequestMessage extends Struct {
2139
2133
  readonly requests: Vec<IsmpRouterPostRequest>;
2140
2134
  readonly proof: IsmpMessagingProof;
2141
2135
  readonly signer: Bytes;
2142
2136
  }
2143
- /** @name IsmpRouterPostRequest (265) */
2137
+ /** @name IsmpRouterPostRequest (262) */
2144
2138
  interface IsmpRouterPostRequest extends Struct {
2145
2139
  readonly source: IsmpHostStateMachine;
2146
2140
  readonly dest: IsmpHostStateMachine;
@@ -2150,18 +2144,18 @@ declare module '@polkadot/types/lookup' {
2150
2144
  readonly timeoutTimestamp: u64;
2151
2145
  readonly body: Bytes;
2152
2146
  }
2153
- /** @name IsmpMessagingProof (266) */
2147
+ /** @name IsmpMessagingProof (263) */
2154
2148
  interface IsmpMessagingProof extends Struct {
2155
2149
  readonly height: IsmpConsensusStateMachineHeight;
2156
2150
  readonly proof: Bytes;
2157
2151
  }
2158
- /** @name IsmpMessagingResponseMessage (267) */
2152
+ /** @name IsmpMessagingResponseMessage (264) */
2159
2153
  interface IsmpMessagingResponseMessage extends Struct {
2160
2154
  readonly datagram: IsmpRouterRequestResponse;
2161
2155
  readonly proof: IsmpMessagingProof;
2162
2156
  readonly signer: Bytes;
2163
2157
  }
2164
- /** @name IsmpRouterRequestResponse (268) */
2158
+ /** @name IsmpRouterRequestResponse (265) */
2165
2159
  interface IsmpRouterRequestResponse extends Enum {
2166
2160
  readonly isRequest: boolean;
2167
2161
  readonly asRequest: Vec<IsmpRouterRequest>;
@@ -2169,7 +2163,7 @@ declare module '@polkadot/types/lookup' {
2169
2163
  readonly asResponse: Vec<IsmpRouterResponse>;
2170
2164
  readonly type: 'Request' | 'Response';
2171
2165
  }
2172
- /** @name IsmpRouterRequest (270) */
2166
+ /** @name IsmpRouterRequest (267) */
2173
2167
  interface IsmpRouterRequest extends Enum {
2174
2168
  readonly isPost: boolean;
2175
2169
  readonly asPost: IsmpRouterPostRequest;
@@ -2177,7 +2171,7 @@ declare module '@polkadot/types/lookup' {
2177
2171
  readonly asGet: IsmpRouterGetRequest;
2178
2172
  readonly type: 'Post' | 'Get';
2179
2173
  }
2180
- /** @name IsmpRouterGetRequest (271) */
2174
+ /** @name IsmpRouterGetRequest (268) */
2181
2175
  interface IsmpRouterGetRequest extends Struct {
2182
2176
  readonly source: IsmpHostStateMachine;
2183
2177
  readonly dest: IsmpHostStateMachine;
@@ -2188,7 +2182,7 @@ declare module '@polkadot/types/lookup' {
2188
2182
  readonly context: Bytes;
2189
2183
  readonly timeoutTimestamp: u64;
2190
2184
  }
2191
- /** @name IsmpRouterResponse (273) */
2185
+ /** @name IsmpRouterResponse (270) */
2192
2186
  interface IsmpRouterResponse extends Enum {
2193
2187
  readonly isPost: boolean;
2194
2188
  readonly asPost: IsmpRouterPostResponse;
@@ -2196,23 +2190,23 @@ declare module '@polkadot/types/lookup' {
2196
2190
  readonly asGet: IsmpRouterGetResponse;
2197
2191
  readonly type: 'Post' | 'Get';
2198
2192
  }
2199
- /** @name IsmpRouterPostResponse (274) */
2193
+ /** @name IsmpRouterPostResponse (271) */
2200
2194
  interface IsmpRouterPostResponse extends Struct {
2201
2195
  readonly post: IsmpRouterPostRequest;
2202
2196
  readonly response: Bytes;
2203
2197
  readonly timeoutTimestamp: u64;
2204
2198
  }
2205
- /** @name IsmpRouterGetResponse (275) */
2199
+ /** @name IsmpRouterGetResponse (272) */
2206
2200
  interface IsmpRouterGetResponse extends Struct {
2207
2201
  readonly get_: IsmpRouterGetRequest;
2208
2202
  readonly values_: Vec<IsmpRouterStorageValue>;
2209
2203
  }
2210
- /** @name IsmpRouterStorageValue (277) */
2204
+ /** @name IsmpRouterStorageValue (274) */
2211
2205
  interface IsmpRouterStorageValue extends Struct {
2212
2206
  readonly key: Bytes;
2213
2207
  readonly value: Option<Bytes>;
2214
2208
  }
2215
- /** @name IsmpMessagingTimeoutMessage (279) */
2209
+ /** @name IsmpMessagingTimeoutMessage (276) */
2216
2210
  interface IsmpMessagingTimeoutMessage extends Enum {
2217
2211
  readonly isPost: boolean;
2218
2212
  readonly asPost: {
@@ -2230,7 +2224,7 @@ declare module '@polkadot/types/lookup' {
2230
2224
  } & Struct;
2231
2225
  readonly type: 'Post' | 'PostResponse' | 'Get';
2232
2226
  }
2233
- /** @name IsmpMessagingCreateConsensusState (281) */
2227
+ /** @name IsmpMessagingCreateConsensusState (278) */
2234
2228
  interface IsmpMessagingCreateConsensusState extends Struct {
2235
2229
  readonly consensusState: Bytes;
2236
2230
  readonly consensusClientId: U8aFixed;
@@ -2239,29 +2233,29 @@ declare module '@polkadot/types/lookup' {
2239
2233
  readonly challengePeriods: BTreeMap<IsmpHostStateMachine, u64>;
2240
2234
  readonly stateMachineCommitments: Vec<ITuple<[IsmpConsensusStateMachineId, IsmpMessagingStateCommitmentHeight]>>;
2241
2235
  }
2242
- /** @name IsmpMessagingStateCommitmentHeight (287) */
2236
+ /** @name IsmpMessagingStateCommitmentHeight (284) */
2243
2237
  interface IsmpMessagingStateCommitmentHeight extends Struct {
2244
2238
  readonly commitment: IsmpConsensusStateCommitment;
2245
2239
  readonly height: u64;
2246
2240
  }
2247
- /** @name IsmpConsensusStateCommitment (288) */
2241
+ /** @name IsmpConsensusStateCommitment (285) */
2248
2242
  interface IsmpConsensusStateCommitment extends Struct {
2249
2243
  readonly timestamp: u64;
2250
2244
  readonly overlayRoot: Option<H256>;
2251
2245
  readonly stateRoot: H256;
2252
2246
  }
2253
- /** @name PalletIsmpUtilsUpdateConsensusState (289) */
2247
+ /** @name PalletIsmpUtilsUpdateConsensusState (286) */
2254
2248
  interface PalletIsmpUtilsUpdateConsensusState extends Struct {
2255
2249
  readonly consensusStateId: U8aFixed;
2256
2250
  readonly unbondingPeriod: Option<u64>;
2257
2251
  readonly challengePeriods: BTreeMap<IsmpHostStateMachine, u64>;
2258
2252
  }
2259
- /** @name PalletIsmpUtilsFundMessageParams (290) */
2253
+ /** @name PalletIsmpUtilsFundMessageParams (287) */
2260
2254
  interface PalletIsmpUtilsFundMessageParams extends Struct {
2261
2255
  readonly commitment: PalletIsmpUtilsMessageCommitment;
2262
2256
  readonly amount: u128;
2263
2257
  }
2264
- /** @name PalletIsmpUtilsMessageCommitment (291) */
2258
+ /** @name PalletIsmpUtilsMessageCommitment (288) */
2265
2259
  interface PalletIsmpUtilsMessageCommitment extends Enum {
2266
2260
  readonly isRequest: boolean;
2267
2261
  readonly asRequest: H256;
@@ -2269,7 +2263,7 @@ declare module '@polkadot/types/lookup' {
2269
2263
  readonly asResponse: H256;
2270
2264
  readonly type: 'Request' | 'Response';
2271
2265
  }
2272
- /** @name IsmpGrandpaCall (292) */
2266
+ /** @name IsmpGrandpaCall (289) */
2273
2267
  interface IsmpGrandpaCall extends Enum {
2274
2268
  readonly isAddStateMachines: boolean;
2275
2269
  readonly asAddStateMachines: {
@@ -2281,12 +2275,12 @@ declare module '@polkadot/types/lookup' {
2281
2275
  } & Struct;
2282
2276
  readonly type: 'AddStateMachines' | 'RemoveStateMachines';
2283
2277
  }
2284
- /** @name IsmpGrandpaAddStateMachine (294) */
2278
+ /** @name IsmpGrandpaAddStateMachine (291) */
2285
2279
  interface IsmpGrandpaAddStateMachine extends Struct {
2286
2280
  readonly stateMachine: IsmpHostStateMachine;
2287
2281
  readonly slotDuration: u64;
2288
2282
  }
2289
- /** @name PalletTokenGatewayCall (295) */
2283
+ /** @name PalletTokenGatewayCall (292) */
2290
2284
  interface PalletTokenGatewayCall extends Enum {
2291
2285
  readonly isTeleport: boolean;
2292
2286
  readonly asTeleport: {
@@ -2310,7 +2304,7 @@ declare module '@polkadot/types/lookup' {
2310
2304
  } & Struct;
2311
2305
  readonly type: 'Teleport' | 'SetTokenGatewayAddresses' | 'CreateErc6160Asset' | 'UpdateErc6160Asset' | 'UpdateAssetPrecision';
2312
2306
  }
2313
- /** @name PalletTokenGatewayTeleportParams (296) */
2307
+ /** @name PalletTokenGatewayTeleportParams (293) */
2314
2308
  interface PalletTokenGatewayTeleportParams extends Struct {
2315
2309
  readonly assetId: u32;
2316
2310
  readonly destination: IsmpHostStateMachine;
@@ -2322,33 +2316,33 @@ declare module '@polkadot/types/lookup' {
2322
2316
  readonly callData: Option<Bytes>;
2323
2317
  readonly redeem: bool;
2324
2318
  }
2325
- /** @name PalletTokenGatewayAssetRegistration (300) */
2319
+ /** @name PalletTokenGatewayAssetRegistration (297) */
2326
2320
  interface PalletTokenGatewayAssetRegistration extends Struct {
2327
2321
  readonly localId: u32;
2328
2322
  readonly reg: TokenGatewayPrimitivesGatewayAssetRegistration;
2329
2323
  readonly native: bool;
2330
2324
  readonly precision: BTreeMap<IsmpHostStateMachine, u8>;
2331
2325
  }
2332
- /** @name TokenGatewayPrimitivesGatewayAssetRegistration (301) */
2326
+ /** @name TokenGatewayPrimitivesGatewayAssetRegistration (298) */
2333
2327
  interface TokenGatewayPrimitivesGatewayAssetRegistration extends Struct {
2334
2328
  readonly name: Bytes;
2335
2329
  readonly symbol: Bytes;
2336
2330
  readonly chains: Vec<IsmpHostStateMachine>;
2337
2331
  readonly minimumBalance: Option<u128>;
2338
2332
  }
2339
- /** @name TokenGatewayPrimitivesGatewayAssetUpdate (306) */
2333
+ /** @name TokenGatewayPrimitivesGatewayAssetUpdate (303) */
2340
2334
  interface TokenGatewayPrimitivesGatewayAssetUpdate extends Struct {
2341
2335
  readonly assetId: H256;
2342
2336
  readonly addChains: Vec<IsmpHostStateMachine>;
2343
2337
  readonly removeChains: Vec<IsmpHostStateMachine>;
2344
2338
  readonly newAdmins: Vec<ITuple<[IsmpHostStateMachine, H160]>>;
2345
2339
  }
2346
- /** @name PalletTokenGatewayPrecisionUpdate (312) */
2340
+ /** @name PalletTokenGatewayPrecisionUpdate (309) */
2347
2341
  interface PalletTokenGatewayPrecisionUpdate extends Struct {
2348
2342
  readonly assetId: u32;
2349
2343
  readonly precisions: BTreeMap<IsmpHostStateMachine, u8>;
2350
2344
  }
2351
- /** @name PalletMultisigError (314) */
2345
+ /** @name PalletMultisigError (311) */
2352
2346
  interface PalletMultisigError extends Enum {
2353
2347
  readonly isMinimumThreshold: boolean;
2354
2348
  readonly isAlreadyApproved: boolean;
@@ -2366,19 +2360,19 @@ declare module '@polkadot/types/lookup' {
2366
2360
  readonly isAlreadyStored: boolean;
2367
2361
  readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored';
2368
2362
  }
2369
- /** @name PalletProxyProxyDefinition (317) */
2363
+ /** @name PalletProxyProxyDefinition (314) */
2370
2364
  interface PalletProxyProxyDefinition extends Struct {
2371
2365
  readonly delegate: AccountId32;
2372
2366
  readonly proxyType: ArgonRuntimeProxyType;
2373
2367
  readonly delay: u32;
2374
2368
  }
2375
- /** @name PalletProxyAnnouncement (321) */
2369
+ /** @name PalletProxyAnnouncement (318) */
2376
2370
  interface PalletProxyAnnouncement extends Struct {
2377
2371
  readonly real: AccountId32;
2378
2372
  readonly callHash: H256;
2379
2373
  readonly height: u32;
2380
2374
  }
2381
- /** @name PalletProxyError (323) */
2375
+ /** @name PalletProxyError (320) */
2382
2376
  interface PalletProxyError extends Enum {
2383
2377
  readonly isTooMany: boolean;
2384
2378
  readonly isNotFound: boolean;
@@ -2390,12 +2384,12 @@ declare module '@polkadot/types/lookup' {
2390
2384
  readonly isNoSelfProxy: boolean;
2391
2385
  readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy';
2392
2386
  }
2393
- /** @name ArgonPrimitivesTickTicker (324) */
2387
+ /** @name ArgonPrimitivesTickTicker (321) */
2394
2388
  interface ArgonPrimitivesTickTicker extends Struct {
2395
2389
  readonly tickDurationMillis: Compact<u64>;
2396
2390
  readonly channelHoldExpirationTicks: Compact<u64>;
2397
2391
  }
2398
- /** @name PalletTicksError (326) */
2392
+ /** @name PalletTicksError (323) */
2399
2393
  type PalletTicksError = Null;
2400
2394
  /** @name ArgonPrimitivesBlockSealMiningBidStats (333) */
2401
2395
  interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
@@ -2424,47 +2418,18 @@ declare module '@polkadot/types/lookup' {
2424
2418
  readonly isExpirationAtBlockOverflow: boolean;
2425
2419
  readonly isInsufficientFunds: boolean;
2426
2420
  readonly isInsufficientVaultFunds: boolean;
2427
- readonly isExpirationTooSoon: boolean;
2428
2421
  readonly isNoPermissions: boolean;
2429
2422
  readonly isHoldUnexpectedlyModified: boolean;
2430
2423
  readonly isUnrecoverableHold: boolean;
2431
2424
  readonly isVaultNotFound: boolean;
2432
2425
  readonly isAccountWouldBeBelowMinimum: boolean;
2433
- readonly isGenericObligationError: boolean;
2434
- readonly asGenericObligationError: ArgonPrimitivesVaultObligationError;
2435
2426
  readonly isCannotRegisterDuplicateKeys: boolean;
2436
2427
  readonly isInvalidKeyFormat: boolean;
2437
- readonly isCannotReduceBondedArgons: boolean;
2438
- readonly isInvalidVaultSwitch: boolean;
2439
- 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';
2440
- }
2441
- /** @name ArgonPrimitivesVaultObligationError (338) */
2442
- interface ArgonPrimitivesVaultObligationError extends Enum {
2443
- readonly isObligationNotFound: boolean;
2444
- readonly isNoMoreObligationIds: boolean;
2445
- readonly isMinimumObligationAmountNotMet: boolean;
2446
- readonly isVaultClosed: boolean;
2447
- readonly isExpirationAtBlockOverflow: boolean;
2448
- readonly isAccountWouldBeBelowMinimum: boolean;
2449
- readonly isInsufficientFunds: boolean;
2450
- readonly isInsufficientVaultFunds: boolean;
2451
- readonly isInsufficientBondedArgons: boolean;
2452
- readonly isExpirationTooSoon: boolean;
2453
- readonly isNoPermissions: boolean;
2454
- readonly isHoldUnexpectedlyModified: boolean;
2455
- readonly isUnrecoverableHold: boolean;
2456
- readonly isVaultNotFound: boolean;
2457
- readonly isNoVaultBitcoinPubkeysAvailable: boolean;
2458
- readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
2459
- readonly isInvalidBitcoinScript: boolean;
2460
- readonly isInternalError: boolean;
2461
- readonly isObligationCompletionError: boolean;
2462
- readonly isVaultNotYetActive: boolean;
2463
- readonly isBaseFeeOverflow: boolean;
2464
- readonly isInvalidVaultSwitch: boolean;
2465
- 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';
2466
2431
  }
2467
- /** @name ArgonPrimitivesBitcoinUtxoValue (339) */
2432
+ /** @name ArgonPrimitivesBitcoinUtxoValue (338) */
2468
2433
  interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
2469
2434
  readonly utxoId: u64;
2470
2435
  readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
@@ -2472,7 +2437,7 @@ declare module '@polkadot/types/lookup' {
2472
2437
  readonly submittedAtHeight: Compact<u64>;
2473
2438
  readonly watchForSpentUntilHeight: Compact<u64>;
2474
2439
  }
2475
- /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (340) */
2440
+ /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (339) */
2476
2441
  interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
2477
2442
  readonly isP2wsh: boolean;
2478
2443
  readonly asP2wsh: {
@@ -2480,7 +2445,7 @@ declare module '@polkadot/types/lookup' {
2480
2445
  } & Struct;
2481
2446
  readonly type: 'P2wsh';
2482
2447
  }
2483
- /** @name ArgonPrimitivesBitcoinBitcoinNetwork (345) */
2448
+ /** @name ArgonPrimitivesBitcoinBitcoinNetwork (344) */
2484
2449
  interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
2485
2450
  readonly isBitcoin: boolean;
2486
2451
  readonly isTestnet: boolean;
@@ -2488,7 +2453,7 @@ declare module '@polkadot/types/lookup' {
2488
2453
  readonly isRegtest: boolean;
2489
2454
  readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
2490
2455
  }
2491
- /** @name PalletBitcoinUtxosError (348) */
2456
+ /** @name PalletBitcoinUtxosError (347) */
2492
2457
  interface PalletBitcoinUtxosError extends Enum {
2493
2458
  readonly isNoPermissions: boolean;
2494
2459
  readonly isNoBitcoinConfirmedBlock: boolean;
@@ -2504,28 +2469,25 @@ declare module '@polkadot/types/lookup' {
2504
2469
  readonly isDuplicateUtxoId: boolean;
2505
2470
  readonly type: 'NoPermissions' | 'NoBitcoinConfirmedBlock' | 'InsufficientBitcoinAmount' | 'NoBitcoinPricesAvailable' | 'ScriptPubkeyConflict' | 'UtxoNotLocked' | 'RedemptionsUnavailable' | 'InvalidBitcoinSyncHeight' | 'BitcoinHeightNotConfirmed' | 'MaxUtxosExceeded' | 'InvalidBitcoinScript' | 'DuplicateUtxoId';
2506
2471
  }
2507
- /** @name ArgonPrimitivesVault (349) */
2472
+ /** @name ArgonPrimitivesVault (348) */
2508
2473
  interface ArgonPrimitivesVault extends Struct {
2509
2474
  readonly operatorAccountId: AccountId32;
2510
- readonly bitcoinArgons: ArgonPrimitivesVaultVaultArgons;
2475
+ readonly lockedBitcoinArgons: ArgonPrimitivesVaultVaultArgons;
2476
+ readonly terms: ArgonPrimitivesVaultVaultTerms;
2511
2477
  readonly addedSecuritizationPercent: Compact<u128>;
2512
2478
  readonly addedSecuritizationArgons: Compact<u128>;
2513
- readonly bondedArgons: ArgonPrimitivesVaultVaultArgons;
2514
- readonly miningRewardSharingPercentTake: Compact<u128>;
2479
+ readonly bondedBitcoinArgons: ArgonPrimitivesVaultVaultArgons;
2515
2480
  readonly isClosed: bool;
2516
2481
  readonly pendingTerms: Option<ITuple<[u64, ArgonPrimitivesVaultVaultTerms]>>;
2517
- readonly pendingBondedArgons: Option<ITuple<[u64, u128]>>;
2518
2482
  readonly pendingBitcoins: u128;
2519
2483
  readonly activationTick: u64;
2520
2484
  }
2521
- /** @name ArgonPrimitivesVaultVaultArgons (350) */
2485
+ /** @name ArgonPrimitivesVaultVaultArgons (349) */
2522
2486
  interface ArgonPrimitivesVaultVaultArgons extends Struct {
2523
- readonly annualPercentRate: Compact<u128>;
2524
2487
  readonly allocated: Compact<u128>;
2525
2488
  readonly reserved: Compact<u128>;
2526
- readonly baseFee: Compact<u128>;
2527
2489
  }
2528
- /** @name ArgonPrimitivesBitcoinBitcoinXPub (356) */
2490
+ /** @name ArgonPrimitivesBitcoinBitcoinXPub (353) */
2529
2491
  interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
2530
2492
  readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
2531
2493
  readonly depth: Compact<u8>;
@@ -2534,13 +2496,13 @@ declare module '@polkadot/types/lookup' {
2534
2496
  readonly chainCode: U8aFixed;
2535
2497
  readonly network: ArgonPrimitivesBitcoinNetworkKind;
2536
2498
  }
2537
- /** @name ArgonPrimitivesBitcoinNetworkKind (358) */
2499
+ /** @name ArgonPrimitivesBitcoinNetworkKind (355) */
2538
2500
  interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
2539
2501
  readonly isMain: boolean;
2540
2502
  readonly isTest: boolean;
2541
2503
  readonly type: 'Main' | 'Test';
2542
2504
  }
2543
- /** @name ArgonPrimitivesVaultObligation (364) */
2505
+ /** @name ArgonPrimitivesVaultObligation (358) */
2544
2506
  interface ArgonPrimitivesVaultObligation extends Struct {
2545
2507
  readonly obligationId: Compact<u64>;
2546
2508
  readonly fundType: ArgonPrimitivesVaultFundType;
@@ -2551,6 +2513,17 @@ declare module '@polkadot/types/lookup' {
2551
2513
  readonly amount: Compact<u128>;
2552
2514
  readonly startTick: Compact<u64>;
2553
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 {
2554
2527
  }
2555
2528
  /** @name PalletVaultsError (367) */
2556
2529
  interface PalletVaultsError extends Enum {
@@ -2561,7 +2534,6 @@ declare module '@polkadot/types/lookup' {
2561
2534
  readonly isExpirationAtBlockOverflow: boolean;
2562
2535
  readonly isInsufficientFunds: boolean;
2563
2536
  readonly isInsufficientVaultFunds: boolean;
2564
- readonly isInsufficientBondedArgons: boolean;
2565
2537
  readonly isAccountBelowMinimumBalance: boolean;
2566
2538
  readonly isVaultClosed: boolean;
2567
2539
  readonly isInvalidVaultAmount: boolean;
@@ -2574,7 +2546,6 @@ declare module '@polkadot/types/lookup' {
2574
2546
  readonly isUnsafeXpubkey: boolean;
2575
2547
  readonly isUnableToDeriveVaultXpubChild: boolean;
2576
2548
  readonly isBitcoinConversionFailed: boolean;
2577
- readonly isExpirationTooSoon: boolean;
2578
2549
  readonly isNoPermissions: boolean;
2579
2550
  readonly isHoldUnexpectedlyModified: boolean;
2580
2551
  readonly isUnrecoverableHold: boolean;
@@ -2588,7 +2559,7 @@ declare module '@polkadot/types/lookup' {
2588
2559
  readonly isFundingChangeAlreadyScheduled: boolean;
2589
2560
  readonly isObligationCompletionError: boolean;
2590
2561
  readonly isBaseFeeOverflow: boolean;
2591
- 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';
2592
2563
  }
2593
2564
  /** @name PalletBitcoinLocksLockedBitcoin (368) */
2594
2565
  interface PalletBitcoinLocksLockedBitcoin extends Struct {
@@ -2606,6 +2577,7 @@ declare module '@polkadot/types/lookup' {
2606
2577
  readonly createdAtHeight: Compact<u64>;
2607
2578
  readonly utxoScriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
2608
2579
  readonly isVerified: bool;
2580
+ readonly isRejectedNeedsRelease: bool;
2609
2581
  }
2610
2582
  /** @name PalletBitcoinLocksLockReleaseRequest (372) */
2611
2583
  interface PalletBitcoinLocksLockReleaseRequest extends Struct {
@@ -2625,7 +2597,6 @@ declare module '@polkadot/types/lookup' {
2625
2597
  readonly isExpirationAtBlockOverflow: boolean;
2626
2598
  readonly isInsufficientFunds: boolean;
2627
2599
  readonly isInsufficientVaultFunds: boolean;
2628
- readonly isInsufficientBondedArgons: boolean;
2629
2600
  readonly isAccountWouldGoBelowMinimumBalance: boolean;
2630
2601
  readonly isVaultClosed: boolean;
2631
2602
  readonly isInvalidVaultAmount: boolean;
@@ -2640,7 +2611,6 @@ declare module '@polkadot/types/lookup' {
2640
2611
  readonly isInsufficientSatoshisLocked: boolean;
2641
2612
  readonly isNoBitcoinPricesAvailable: boolean;
2642
2613
  readonly isInvalidBitcoinScript: boolean;
2643
- readonly isExpirationTooSoon: boolean;
2644
2614
  readonly isNoPermissions: boolean;
2645
2615
  readonly isHoldUnexpectedlyModified: boolean;
2646
2616
  readonly isUnrecoverableHold: boolean;
@@ -2650,9 +2620,31 @@ declare module '@polkadot/types/lookup' {
2650
2620
  readonly isLockNotFound: boolean;
2651
2621
  readonly isNoVaultBitcoinPubkeysAvailable: boolean;
2652
2622
  readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
2653
- 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';
2654
2624
  }
2655
- /** @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) */
2656
2648
  interface PalletNotariesError extends Enum {
2657
2649
  readonly isProposalNotFound: boolean;
2658
2650
  readonly isMaxNotariesExceeded: boolean;
@@ -2665,7 +2657,7 @@ declare module '@polkadot/types/lookup' {
2665
2657
  readonly isInvalidNotary: boolean;
2666
2658
  readonly type: 'ProposalNotFound' | 'MaxNotariesExceeded' | 'MaxProposalsPerBlockExceeded' | 'NotAnActiveNotary' | 'InvalidNotaryOperator' | 'NoMoreNotaryIds' | 'EffectiveTickTooSoon' | 'TooManyKeys' | 'InvalidNotary';
2667
2659
  }
2668
- /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (392) */
2660
+ /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (393) */
2669
2661
  interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
2670
2662
  readonly notebookNumber: Compact<u32>;
2671
2663
  readonly tick: Compact<u64>;
@@ -2673,7 +2665,7 @@ declare module '@polkadot/types/lookup' {
2673
2665
  readonly secretHash: H256;
2674
2666
  readonly parentSecret: Option<H256>;
2675
2667
  }
2676
- /** @name PalletNotebookError (395) */
2668
+ /** @name PalletNotebookError (396) */
2677
2669
  interface PalletNotebookError extends Enum {
2678
2670
  readonly isDuplicateNotebookNumber: boolean;
2679
2671
  readonly isMissingNotebookNumber: boolean;
@@ -2692,16 +2684,13 @@ declare module '@polkadot/types/lookup' {
2692
2684
  readonly isInvalidNotebookSubmissionTick: boolean;
2693
2685
  readonly type: 'DuplicateNotebookNumber' | 'MissingNotebookNumber' | 'NotebookTickAlreadyUsed' | 'InvalidNotebookSignature' | 'InvalidSecretProvided' | 'CouldNotDecodeNotebook' | 'DuplicateNotebookDigest' | 'MissingNotebookDigest' | 'InvalidNotebookDigest' | 'MultipleNotebookInherentsProvided' | 'InternalError' | 'NotebookSubmittedForLockedNotary' | 'InvalidReprocessNotebook' | 'InvalidNotaryOperator' | 'InvalidNotebookSubmissionTick';
2694
2686
  }
2695
- /** @name PalletChainTransferQueuedTransferOut (396) */
2687
+ /** @name PalletChainTransferQueuedTransferOut (397) */
2696
2688
  interface PalletChainTransferQueuedTransferOut extends Struct {
2697
2689
  readonly accountId: AccountId32;
2698
2690
  readonly amount: u128;
2699
2691
  readonly expirationTick: u64;
2700
2692
  readonly notaryId: u32;
2701
2693
  }
2702
- /** @name FrameSupportPalletId (402) */
2703
- interface FrameSupportPalletId extends U8aFixed {
2704
- }
2705
2694
  /** @name PalletChainTransferError (403) */
2706
2695
  interface PalletChainTransferError extends Enum {
2707
2696
  readonly isMaxBlockTransfersExceeded: boolean;
@@ -2805,43 +2794,43 @@ declare module '@polkadot/types/lookup' {
2805
2794
  readonly isInvalidComputeBlockTick: boolean;
2806
2795
  readonly type: 'InvalidVoteSealStrength' | 'InvalidSubmitter' | 'UnableToDecodeVoteAccount' | 'UnregisteredBlockAuthor' | 'InvalidBlockVoteProof' | 'NoGrandparentVoteMinimum' | 'DuplicateBlockSealProvided' | 'InsufficientVotingPower' | 'ParentVotingKeyNotFound' | 'InvalidVoteGrandparentHash' | 'IneligibleNotebookUsed' | 'NoEligibleVotingRoot' | 'CouldNotDecodeVote' | 'MaxNotebooksAtTickExceeded' | 'NoClosestMinerFoundForVote' | 'BlockVoteInvalidSignature' | 'InvalidForkPowerParent' | 'BlockSealDecodeError' | 'InvalidComputeBlockTick';
2807
2796
  }
2808
- /** @name PalletBlockRewardsError (429) */
2797
+ /** @name PalletBlockRewardsError (432) */
2809
2798
  type PalletBlockRewardsError = Null;
2810
- /** @name PalletMintMintAction (434) */
2799
+ /** @name PalletMintMintAction (439) */
2811
2800
  interface PalletMintMintAction extends Struct {
2812
2801
  readonly argonBurned: u128;
2813
2802
  readonly argonMinted: u128;
2814
2803
  readonly bitcoinMinted: u128;
2815
2804
  }
2816
- /** @name PalletMintError (435) */
2805
+ /** @name PalletMintError (440) */
2817
2806
  interface PalletMintError extends Enum {
2818
2807
  readonly isTooManyPendingMints: boolean;
2819
2808
  readonly type: 'TooManyPendingMints';
2820
2809
  }
2821
- /** @name PalletBalancesBalanceLock (437) */
2810
+ /** @name PalletBalancesBalanceLock (442) */
2822
2811
  interface PalletBalancesBalanceLock extends Struct {
2823
2812
  readonly id: U8aFixed;
2824
2813
  readonly amount: u128;
2825
2814
  readonly reasons: PalletBalancesReasons;
2826
2815
  }
2827
- /** @name PalletBalancesReasons (438) */
2816
+ /** @name PalletBalancesReasons (443) */
2828
2817
  interface PalletBalancesReasons extends Enum {
2829
2818
  readonly isFee: boolean;
2830
2819
  readonly isMisc: boolean;
2831
2820
  readonly isAll: boolean;
2832
2821
  readonly type: 'Fee' | 'Misc' | 'All';
2833
2822
  }
2834
- /** @name PalletBalancesReserveData (441) */
2823
+ /** @name PalletBalancesReserveData (446) */
2835
2824
  interface PalletBalancesReserveData extends Struct {
2836
2825
  readonly id: U8aFixed;
2837
2826
  readonly amount: u128;
2838
2827
  }
2839
- /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (444) */
2828
+ /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (449) */
2840
2829
  interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
2841
2830
  readonly id: ArgonRuntimeRuntimeHoldReason;
2842
2831
  readonly amount: u128;
2843
2832
  }
2844
- /** @name ArgonRuntimeRuntimeHoldReason (445) */
2833
+ /** @name ArgonRuntimeRuntimeHoldReason (450) */
2845
2834
  interface ArgonRuntimeRuntimeHoldReason extends Enum {
2846
2835
  readonly isMiningSlot: boolean;
2847
2836
  readonly asMiningSlot: PalletMiningSlotHoldReason;
@@ -2853,44 +2842,44 @@ declare module '@polkadot/types/lookup' {
2853
2842
  readonly asBlockRewards: PalletBlockRewardsHoldReason;
2854
2843
  readonly type: 'MiningSlot' | 'Vaults' | 'BitcoinLocks' | 'BlockRewards';
2855
2844
  }
2856
- /** @name PalletMiningSlotHoldReason (446) */
2845
+ /** @name PalletMiningSlotHoldReason (451) */
2857
2846
  interface PalletMiningSlotHoldReason extends Enum {
2858
2847
  readonly isRegisterAsMiner: boolean;
2859
2848
  readonly type: 'RegisterAsMiner';
2860
2849
  }
2861
- /** @name PalletVaultsHoldReason (447) */
2850
+ /** @name PalletVaultsHoldReason (452) */
2862
2851
  interface PalletVaultsHoldReason extends Enum {
2863
2852
  readonly isEnterVault: boolean;
2864
2853
  readonly isObligationFee: boolean;
2865
2854
  readonly type: 'EnterVault' | 'ObligationFee';
2866
2855
  }
2867
- /** @name PalletBitcoinLocksHoldReason (448) */
2856
+ /** @name PalletBitcoinLocksHoldReason (453) */
2868
2857
  interface PalletBitcoinLocksHoldReason extends Enum {
2869
2858
  readonly isReleaseBitcoinLock: boolean;
2870
2859
  readonly type: 'ReleaseBitcoinLock';
2871
2860
  }
2872
- /** @name PalletBlockRewardsHoldReason (449) */
2861
+ /** @name PalletBlockRewardsHoldReason (454) */
2873
2862
  interface PalletBlockRewardsHoldReason extends Enum {
2874
2863
  readonly isMaturationPeriod: boolean;
2875
2864
  readonly type: 'MaturationPeriod';
2876
2865
  }
2877
- /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (452) */
2866
+ /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (457) */
2878
2867
  interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
2879
2868
  readonly id: ArgonRuntimeRuntimeFreezeReason;
2880
2869
  readonly amount: u128;
2881
2870
  }
2882
- /** @name ArgonRuntimeRuntimeFreezeReason (453) */
2871
+ /** @name ArgonRuntimeRuntimeFreezeReason (458) */
2883
2872
  interface ArgonRuntimeRuntimeFreezeReason extends Enum {
2884
2873
  readonly isBlockRewards: boolean;
2885
2874
  readonly asBlockRewards: PalletBlockRewardsFreezeReason;
2886
2875
  readonly type: 'BlockRewards';
2887
2876
  }
2888
- /** @name PalletBlockRewardsFreezeReason (454) */
2877
+ /** @name PalletBlockRewardsFreezeReason (459) */
2889
2878
  interface PalletBlockRewardsFreezeReason extends Enum {
2890
2879
  readonly isMaturationPeriod: boolean;
2891
2880
  readonly type: 'MaturationPeriod';
2892
2881
  }
2893
- /** @name PalletBalancesError (456) */
2882
+ /** @name PalletBalancesError (461) */
2894
2883
  interface PalletBalancesError extends Enum {
2895
2884
  readonly isVestingBalance: boolean;
2896
2885
  readonly isLiquidityRestrictions: boolean;
@@ -2906,7 +2895,7 @@ declare module '@polkadot/types/lookup' {
2906
2895
  readonly isDeltaZero: boolean;
2907
2896
  readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
2908
2897
  }
2909
- /** @name PalletTxPauseError (458) */
2898
+ /** @name PalletTxPauseError (463) */
2910
2899
  interface PalletTxPauseError extends Enum {
2911
2900
  readonly isIsPaused: boolean;
2912
2901
  readonly isIsUnpaused: boolean;
@@ -2914,23 +2903,23 @@ declare module '@polkadot/types/lookup' {
2914
2903
  readonly isNotFound: boolean;
2915
2904
  readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
2916
2905
  }
2917
- /** @name PalletTransactionPaymentReleases (459) */
2906
+ /** @name PalletTransactionPaymentReleases (464) */
2918
2907
  interface PalletTransactionPaymentReleases extends Enum {
2919
2908
  readonly isV1Ancient: boolean;
2920
2909
  readonly isV2: boolean;
2921
2910
  readonly type: 'V1Ancient' | 'V2';
2922
2911
  }
2923
- /** @name PalletUtilityError (460) */
2912
+ /** @name PalletUtilityError (465) */
2924
2913
  interface PalletUtilityError extends Enum {
2925
2914
  readonly isTooManyCalls: boolean;
2926
2915
  readonly type: 'TooManyCalls';
2927
2916
  }
2928
- /** @name PalletSudoError (461) */
2917
+ /** @name PalletSudoError (466) */
2929
2918
  interface PalletSudoError extends Enum {
2930
2919
  readonly isRequireSudo: boolean;
2931
2920
  readonly type: 'RequireSudo';
2932
2921
  }
2933
- /** @name PalletIsmpError (462) */
2922
+ /** @name PalletIsmpError (467) */
2934
2923
  interface PalletIsmpError extends Enum {
2935
2924
  readonly isInvalidMessage: boolean;
2936
2925
  readonly isMessageNotFound: boolean;
@@ -2939,9 +2928,9 @@ declare module '@polkadot/types/lookup' {
2939
2928
  readonly isChallengePeriodUpdateFailed: boolean;
2940
2929
  readonly type: 'InvalidMessage' | 'MessageNotFound' | 'ConsensusClientCreationFailed' | 'UnbondingPeriodUpdateFailed' | 'ChallengePeriodUpdateFailed';
2941
2930
  }
2942
- /** @name PalletHyperbridgeError (463) */
2931
+ /** @name PalletHyperbridgeError (468) */
2943
2932
  type PalletHyperbridgeError = Null;
2944
- /** @name PalletTokenGatewayError (465) */
2933
+ /** @name PalletTokenGatewayError (470) */
2945
2934
  interface PalletTokenGatewayError extends Enum {
2946
2935
  readonly isUnregisteredAsset: boolean;
2947
2936
  readonly isAssetTeleportError: boolean;
@@ -2954,32 +2943,32 @@ declare module '@polkadot/types/lookup' {
2954
2943
  readonly isNotAssetOwner: boolean;
2955
2944
  readonly type: 'UnregisteredAsset' | 'AssetTeleportError' | 'CoprocessorNotConfigured' | 'DispatchError' | 'AssetCreationError' | 'AssetDecimalsNotFound' | 'NotInitialized' | 'UnknownAsset' | 'NotAssetOwner';
2956
2945
  }
2957
- /** @name FrameSystemExtensionsCheckNonZeroSender (468) */
2946
+ /** @name FrameSystemExtensionsCheckNonZeroSender (473) */
2958
2947
  type FrameSystemExtensionsCheckNonZeroSender = Null;
2959
- /** @name FrameSystemExtensionsCheckSpecVersion (469) */
2948
+ /** @name FrameSystemExtensionsCheckSpecVersion (474) */
2960
2949
  type FrameSystemExtensionsCheckSpecVersion = Null;
2961
- /** @name FrameSystemExtensionsCheckTxVersion (470) */
2950
+ /** @name FrameSystemExtensionsCheckTxVersion (475) */
2962
2951
  type FrameSystemExtensionsCheckTxVersion = Null;
2963
- /** @name FrameSystemExtensionsCheckGenesis (471) */
2952
+ /** @name FrameSystemExtensionsCheckGenesis (476) */
2964
2953
  type FrameSystemExtensionsCheckGenesis = Null;
2965
- /** @name FrameSystemExtensionsCheckNonce (474) */
2954
+ /** @name FrameSystemExtensionsCheckNonce (479) */
2966
2955
  interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
2967
2956
  }
2968
- /** @name FrameSystemExtensionsCheckWeight (475) */
2957
+ /** @name FrameSystemExtensionsCheckWeight (480) */
2969
2958
  type FrameSystemExtensionsCheckWeight = Null;
2970
- /** @name PalletTransactionPaymentChargeTransactionPayment (476) */
2959
+ /** @name PalletTransactionPaymentChargeTransactionPayment (481) */
2971
2960
  interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
2972
2961
  }
2973
- /** @name FrameMetadataHashExtensionCheckMetadataHash (477) */
2962
+ /** @name FrameMetadataHashExtensionCheckMetadataHash (482) */
2974
2963
  interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
2975
2964
  readonly mode: FrameMetadataHashExtensionMode;
2976
2965
  }
2977
- /** @name FrameMetadataHashExtensionMode (478) */
2966
+ /** @name FrameMetadataHashExtensionMode (483) */
2978
2967
  interface FrameMetadataHashExtensionMode extends Enum {
2979
2968
  readonly isDisabled: boolean;
2980
2969
  readonly isEnabled: boolean;
2981
2970
  readonly type: 'Disabled' | 'Enabled';
2982
2971
  }
2983
- /** @name ArgonRuntimeRuntime (480) */
2972
+ /** @name ArgonRuntimeRuntime (485) */
2984
2973
  type ArgonRuntimeRuntime = Null;
2985
2974
  }