@argonprotocol/mainchain 1.0.14 → 1.0.16

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.
@@ -253,8 +253,14 @@ declare module '@polkadot/types/lookup' {
253
253
  readonly bidAmount: u128;
254
254
  readonly index: u32;
255
255
  } & Struct;
256
- readonly isSlotBidderReplaced: boolean;
257
- readonly asSlotBidderReplaced: {
256
+ readonly isSlotBidderOut: boolean;
257
+ readonly asSlotBidderOut: {
258
+ readonly accountId: AccountId32;
259
+ readonly bidAmount: u128;
260
+ readonly obligationId: Option<u64>;
261
+ } & Struct;
262
+ readonly isSlotBidderDropped: boolean;
263
+ readonly asSlotBidderDropped: {
258
264
  readonly accountId: AccountId32;
259
265
  readonly obligationId: Option<u64>;
260
266
  readonly preservedArgonotHold: bool;
@@ -277,7 +283,17 @@ declare module '@polkadot/types/lookup' {
277
283
  readonly ticksBetweenSlots: u64;
278
284
  readonly slotBiddingStartAfterTicks: u64;
279
285
  } & Struct;
280
- readonly type: 'NewMiners' | 'SlotBidderAdded' | 'SlotBidderReplaced' | 'ReleasedMinerSeat' | 'ReleaseMinerSeatError' | 'MiningConfigurationUpdated';
286
+ readonly isMiningBidsClosed: boolean;
287
+ readonly asMiningBidsClosed: {
288
+ readonly cohortId: u64;
289
+ } & Struct;
290
+ readonly isReleaseBidError: boolean;
291
+ readonly asReleaseBidError: {
292
+ readonly accountId: AccountId32;
293
+ readonly obligationId: Option<u64>;
294
+ readonly error: SpRuntimeDispatchError;
295
+ } & Struct;
296
+ readonly type: 'NewMiners' | 'SlotBidderAdded' | 'SlotBidderOut' | 'SlotBidderDropped' | 'ReleasedMinerSeat' | 'ReleaseMinerSeatError' | 'MiningConfigurationUpdated' | 'MiningBidsClosed' | 'ReleaseBidError';
281
297
  }
282
298
  /** @name ArgonPrimitivesBlockSealMiningRegistration (41) */
283
299
  interface ArgonPrimitivesBlockSealMiningRegistration extends Struct {
@@ -2381,20 +2397,20 @@ declare module '@polkadot/types/lookup' {
2381
2397
  }
2382
2398
  /** @name PalletTicksError (326) */
2383
2399
  type PalletTicksError = Null;
2384
- /** @name ArgonPrimitivesBlockSealMiningBidStats (332) */
2400
+ /** @name ArgonPrimitivesBlockSealMiningBidStats (333) */
2385
2401
  interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
2386
2402
  readonly bidsCount: u32;
2387
2403
  readonly bidAmountMin: u128;
2388
2404
  readonly bidAmountMax: u128;
2389
2405
  readonly bidAmountSum: u128;
2390
2406
  }
2391
- /** @name ArgonPrimitivesBlockSealMiningSlotConfig (334) */
2407
+ /** @name ArgonPrimitivesBlockSealMiningSlotConfig (335) */
2392
2408
  interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
2393
2409
  readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
2394
2410
  readonly ticksBetweenSlots: Compact<u64>;
2395
2411
  readonly slotBiddingStartAfterTicks: Compact<u64>;
2396
2412
  }
2397
- /** @name PalletMiningSlotError (336) */
2413
+ /** @name PalletMiningSlotError (337) */
2398
2414
  interface PalletMiningSlotError extends Enum {
2399
2415
  readonly isSlotNotTakingBids: boolean;
2400
2416
  readonly isTooManyBlockRegistrants: boolean;
@@ -2418,9 +2434,11 @@ declare module '@polkadot/types/lookup' {
2418
2434
  readonly asGenericObligationError: ArgonPrimitivesVaultObligationError;
2419
2435
  readonly isCannotRegisterDuplicateKeys: boolean;
2420
2436
  readonly isInvalidKeyFormat: boolean;
2421
- readonly type: 'SlotNotTakingBids' | 'TooManyBlockRegistrants' | 'InsufficientOwnershipTokens' | 'BidTooLow' | 'CannotRegisterOverlappingSessions' | 'ObligationNotFound' | 'NoMoreObligationIds' | 'VaultClosed' | 'MinimumObligationAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'AccountWouldBeBelowMinimum' | 'GenericObligationError' | 'CannotRegisterDuplicateKeys' | 'InvalidKeyFormat';
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';
2422
2440
  }
2423
- /** @name ArgonPrimitivesVaultObligationError (337) */
2441
+ /** @name ArgonPrimitivesVaultObligationError (338) */
2424
2442
  interface ArgonPrimitivesVaultObligationError extends Enum {
2425
2443
  readonly isObligationNotFound: boolean;
2426
2444
  readonly isNoMoreObligationIds: boolean;
@@ -2443,9 +2461,10 @@ declare module '@polkadot/types/lookup' {
2443
2461
  readonly isObligationCompletionError: boolean;
2444
2462
  readonly isVaultNotYetActive: boolean;
2445
2463
  readonly isBaseFeeOverflow: boolean;
2446
- readonly type: 'ObligationNotFound' | 'NoMoreObligationIds' | 'MinimumObligationAmountNotMet' | 'VaultClosed' | 'ExpirationAtBlockOverflow' | 'AccountWouldBeBelowMinimum' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'InsufficientBondedArgons' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'InvalidBitcoinScript' | 'InternalError' | 'ObligationCompletionError' | 'VaultNotYetActive' | 'BaseFeeOverflow';
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';
2447
2466
  }
2448
- /** @name ArgonPrimitivesBitcoinUtxoValue (338) */
2467
+ /** @name ArgonPrimitivesBitcoinUtxoValue (339) */
2449
2468
  interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
2450
2469
  readonly utxoId: u64;
2451
2470
  readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
@@ -2453,7 +2472,7 @@ declare module '@polkadot/types/lookup' {
2453
2472
  readonly submittedAtHeight: Compact<u64>;
2454
2473
  readonly watchForSpentUntilHeight: Compact<u64>;
2455
2474
  }
2456
- /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (339) */
2475
+ /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (340) */
2457
2476
  interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
2458
2477
  readonly isP2wsh: boolean;
2459
2478
  readonly asP2wsh: {
@@ -2461,7 +2480,7 @@ declare module '@polkadot/types/lookup' {
2461
2480
  } & Struct;
2462
2481
  readonly type: 'P2wsh';
2463
2482
  }
2464
- /** @name ArgonPrimitivesBitcoinBitcoinNetwork (344) */
2483
+ /** @name ArgonPrimitivesBitcoinBitcoinNetwork (345) */
2465
2484
  interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
2466
2485
  readonly isBitcoin: boolean;
2467
2486
  readonly isTestnet: boolean;
@@ -2469,7 +2488,7 @@ declare module '@polkadot/types/lookup' {
2469
2488
  readonly isRegtest: boolean;
2470
2489
  readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
2471
2490
  }
2472
- /** @name PalletBitcoinUtxosError (347) */
2491
+ /** @name PalletBitcoinUtxosError (348) */
2473
2492
  interface PalletBitcoinUtxosError extends Enum {
2474
2493
  readonly isNoPermissions: boolean;
2475
2494
  readonly isNoBitcoinConfirmedBlock: boolean;
@@ -2485,7 +2504,7 @@ declare module '@polkadot/types/lookup' {
2485
2504
  readonly isDuplicateUtxoId: boolean;
2486
2505
  readonly type: 'NoPermissions' | 'NoBitcoinConfirmedBlock' | 'InsufficientBitcoinAmount' | 'NoBitcoinPricesAvailable' | 'ScriptPubkeyConflict' | 'UtxoNotLocked' | 'RedemptionsUnavailable' | 'InvalidBitcoinSyncHeight' | 'BitcoinHeightNotConfirmed' | 'MaxUtxosExceeded' | 'InvalidBitcoinScript' | 'DuplicateUtxoId';
2487
2506
  }
2488
- /** @name ArgonPrimitivesVault (348) */
2507
+ /** @name ArgonPrimitivesVault (349) */
2489
2508
  interface ArgonPrimitivesVault extends Struct {
2490
2509
  readonly operatorAccountId: AccountId32;
2491
2510
  readonly bitcoinArgons: ArgonPrimitivesVaultVaultArgons;
@@ -2499,14 +2518,14 @@ declare module '@polkadot/types/lookup' {
2499
2518
  readonly pendingBitcoins: u128;
2500
2519
  readonly activationTick: u64;
2501
2520
  }
2502
- /** @name ArgonPrimitivesVaultVaultArgons (349) */
2521
+ /** @name ArgonPrimitivesVaultVaultArgons (350) */
2503
2522
  interface ArgonPrimitivesVaultVaultArgons extends Struct {
2504
2523
  readonly annualPercentRate: Compact<u128>;
2505
2524
  readonly allocated: Compact<u128>;
2506
2525
  readonly reserved: Compact<u128>;
2507
2526
  readonly baseFee: Compact<u128>;
2508
2527
  }
2509
- /** @name ArgonPrimitivesBitcoinBitcoinXPub (355) */
2528
+ /** @name ArgonPrimitivesBitcoinBitcoinXPub (356) */
2510
2529
  interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
2511
2530
  readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
2512
2531
  readonly depth: Compact<u8>;
@@ -2515,13 +2534,13 @@ declare module '@polkadot/types/lookup' {
2515
2534
  readonly chainCode: U8aFixed;
2516
2535
  readonly network: ArgonPrimitivesBitcoinNetworkKind;
2517
2536
  }
2518
- /** @name ArgonPrimitivesBitcoinNetworkKind (357) */
2537
+ /** @name ArgonPrimitivesBitcoinNetworkKind (358) */
2519
2538
  interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
2520
2539
  readonly isMain: boolean;
2521
2540
  readonly isTest: boolean;
2522
2541
  readonly type: 'Main' | 'Test';
2523
2542
  }
2524
- /** @name ArgonPrimitivesVaultObligation (363) */
2543
+ /** @name ArgonPrimitivesVaultObligation (364) */
2525
2544
  interface ArgonPrimitivesVaultObligation extends Struct {
2526
2545
  readonly obligationId: Compact<u64>;
2527
2546
  readonly fundType: ArgonPrimitivesVaultFundType;
@@ -2533,7 +2552,7 @@ declare module '@polkadot/types/lookup' {
2533
2552
  readonly startTick: Compact<u64>;
2534
2553
  readonly expiration: ArgonPrimitivesVaultObligationExpiration;
2535
2554
  }
2536
- /** @name PalletVaultsError (366) */
2555
+ /** @name PalletVaultsError (367) */
2537
2556
  interface PalletVaultsError extends Enum {
2538
2557
  readonly isObligationNotFound: boolean;
2539
2558
  readonly isNoMoreVaultIds: boolean;
@@ -2571,7 +2590,7 @@ declare module '@polkadot/types/lookup' {
2571
2590
  readonly isBaseFeeOverflow: boolean;
2572
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';
2573
2592
  }
2574
- /** @name PalletBitcoinLocksLockedBitcoin (367) */
2593
+ /** @name PalletBitcoinLocksLockedBitcoin (368) */
2575
2594
  interface PalletBitcoinLocksLockedBitcoin extends Struct {
2576
2595
  readonly obligationId: Compact<u64>;
2577
2596
  readonly vaultId: Compact<u32>;
@@ -2588,7 +2607,7 @@ declare module '@polkadot/types/lookup' {
2588
2607
  readonly utxoScriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
2589
2608
  readonly isVerified: bool;
2590
2609
  }
2591
- /** @name PalletBitcoinLocksLockReleaseRequest (371) */
2610
+ /** @name PalletBitcoinLocksLockReleaseRequest (372) */
2592
2611
  interface PalletBitcoinLocksLockReleaseRequest extends Struct {
2593
2612
  readonly utxoId: Compact<u64>;
2594
2613
  readonly obligationId: Compact<u64>;
@@ -2598,7 +2617,7 @@ declare module '@polkadot/types/lookup' {
2598
2617
  readonly toScriptPubkey: Bytes;
2599
2618
  readonly redemptionPrice: Compact<u128>;
2600
2619
  }
2601
- /** @name PalletBitcoinLocksError (375) */
2620
+ /** @name PalletBitcoinLocksError (376) */
2602
2621
  interface PalletBitcoinLocksError extends Enum {
2603
2622
  readonly isObligationNotFound: boolean;
2604
2623
  readonly isNoMoreObligationIds: boolean;
@@ -2633,7 +2652,7 @@ declare module '@polkadot/types/lookup' {
2633
2652
  readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
2634
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';
2635
2654
  }
2636
- /** @name PalletNotariesError (387) */
2655
+ /** @name PalletNotariesError (388) */
2637
2656
  interface PalletNotariesError extends Enum {
2638
2657
  readonly isProposalNotFound: boolean;
2639
2658
  readonly isMaxNotariesExceeded: boolean;
@@ -2646,7 +2665,7 @@ declare module '@polkadot/types/lookup' {
2646
2665
  readonly isInvalidNotary: boolean;
2647
2666
  readonly type: 'ProposalNotFound' | 'MaxNotariesExceeded' | 'MaxProposalsPerBlockExceeded' | 'NotAnActiveNotary' | 'InvalidNotaryOperator' | 'NoMoreNotaryIds' | 'EffectiveTickTooSoon' | 'TooManyKeys' | 'InvalidNotary';
2648
2667
  }
2649
- /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (391) */
2668
+ /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (392) */
2650
2669
  interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
2651
2670
  readonly notebookNumber: Compact<u32>;
2652
2671
  readonly tick: Compact<u64>;
@@ -2654,7 +2673,7 @@ declare module '@polkadot/types/lookup' {
2654
2673
  readonly secretHash: H256;
2655
2674
  readonly parentSecret: Option<H256>;
2656
2675
  }
2657
- /** @name PalletNotebookError (394) */
2676
+ /** @name PalletNotebookError (395) */
2658
2677
  interface PalletNotebookError extends Enum {
2659
2678
  readonly isDuplicateNotebookNumber: boolean;
2660
2679
  readonly isMissingNotebookNumber: boolean;
@@ -2673,17 +2692,17 @@ declare module '@polkadot/types/lookup' {
2673
2692
  readonly isInvalidNotebookSubmissionTick: boolean;
2674
2693
  readonly type: 'DuplicateNotebookNumber' | 'MissingNotebookNumber' | 'NotebookTickAlreadyUsed' | 'InvalidNotebookSignature' | 'InvalidSecretProvided' | 'CouldNotDecodeNotebook' | 'DuplicateNotebookDigest' | 'MissingNotebookDigest' | 'InvalidNotebookDigest' | 'MultipleNotebookInherentsProvided' | 'InternalError' | 'NotebookSubmittedForLockedNotary' | 'InvalidReprocessNotebook' | 'InvalidNotaryOperator' | 'InvalidNotebookSubmissionTick';
2675
2694
  }
2676
- /** @name PalletChainTransferQueuedTransferOut (395) */
2695
+ /** @name PalletChainTransferQueuedTransferOut (396) */
2677
2696
  interface PalletChainTransferQueuedTransferOut extends Struct {
2678
2697
  readonly accountId: AccountId32;
2679
2698
  readonly amount: u128;
2680
2699
  readonly expirationTick: u64;
2681
2700
  readonly notaryId: u32;
2682
2701
  }
2683
- /** @name FrameSupportPalletId (401) */
2702
+ /** @name FrameSupportPalletId (402) */
2684
2703
  interface FrameSupportPalletId extends U8aFixed {
2685
2704
  }
2686
- /** @name PalletChainTransferError (402) */
2705
+ /** @name PalletChainTransferError (403) */
2687
2706
  interface PalletChainTransferError extends Enum {
2688
2707
  readonly isMaxBlockTransfersExceeded: boolean;
2689
2708
  readonly isInsufficientFunds: boolean;
@@ -2693,7 +2712,7 @@ declare module '@polkadot/types/lookup' {
2693
2712
  readonly isInvalidNotaryUsedForTransfer: boolean;
2694
2713
  readonly type: 'MaxBlockTransfersExceeded' | 'InsufficientFunds' | 'InsufficientNotarizedFunds' | 'InvalidOrDuplicatedLocalchainTransfer' | 'NotebookIncludesExpiredLocalchainTransfer' | 'InvalidNotaryUsedForTransfer';
2695
2714
  }
2696
- /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (407) */
2715
+ /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (408) */
2697
2716
  interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
2698
2717
  readonly notaryId: Compact<u32>;
2699
2718
  readonly notebookNumber: Compact<u32>;
@@ -2701,12 +2720,12 @@ declare module '@polkadot/types/lookup' {
2701
2720
  readonly blockVotesCount: Compact<u32>;
2702
2721
  readonly blockVotingPower: Compact<u128>;
2703
2722
  }
2704
- /** @name PalletBlockSealSpecError (412) */
2723
+ /** @name PalletBlockSealSpecError (413) */
2705
2724
  interface PalletBlockSealSpecError extends Enum {
2706
2725
  readonly isMaxNotebooksAtTickExceeded: boolean;
2707
2726
  readonly type: 'MaxNotebooksAtTickExceeded';
2708
2727
  }
2709
- /** @name PalletDomainsError (414) */
2728
+ /** @name PalletDomainsError (415) */
2710
2729
  interface PalletDomainsError extends Enum {
2711
2730
  readonly isDomainNotRegistered: boolean;
2712
2731
  readonly isNotDomainOwner: boolean;
@@ -2715,7 +2734,7 @@ declare module '@polkadot/types/lookup' {
2715
2734
  readonly isAccountDecodingError: boolean;
2716
2735
  readonly type: 'DomainNotRegistered' | 'NotDomainOwner' | 'FailedToAddToAddressHistory' | 'FailedToAddExpiringDomain' | 'AccountDecodingError';
2717
2736
  }
2718
- /** @name PalletPriceIndexError (415) */
2737
+ /** @name PalletPriceIndexError (416) */
2719
2738
  interface PalletPriceIndexError extends Enum {
2720
2739
  readonly isNotAuthorizedOperator: boolean;
2721
2740
  readonly isMissingValue: boolean;
@@ -2723,7 +2742,7 @@ declare module '@polkadot/types/lookup' {
2723
2742
  readonly isMaxPriceChangePerTickExceeded: boolean;
2724
2743
  readonly type: 'NotAuthorizedOperator' | 'MissingValue' | 'PricesTooOld' | 'MaxPriceChangePerTickExceeded';
2725
2744
  }
2726
- /** @name PalletGrandpaStoredState (416) */
2745
+ /** @name PalletGrandpaStoredState (417) */
2727
2746
  interface PalletGrandpaStoredState extends Enum {
2728
2747
  readonly isLive: boolean;
2729
2748
  readonly isPendingPause: boolean;
@@ -2739,14 +2758,14 @@ declare module '@polkadot/types/lookup' {
2739
2758
  } & Struct;
2740
2759
  readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
2741
2760
  }
2742
- /** @name PalletGrandpaStoredPendingChange (417) */
2761
+ /** @name PalletGrandpaStoredPendingChange (418) */
2743
2762
  interface PalletGrandpaStoredPendingChange extends Struct {
2744
2763
  readonly scheduledAt: u32;
2745
2764
  readonly delay: u32;
2746
2765
  readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
2747
2766
  readonly forced: Option<u32>;
2748
2767
  }
2749
- /** @name PalletGrandpaError (420) */
2768
+ /** @name PalletGrandpaError (421) */
2750
2769
  interface PalletGrandpaError extends Enum {
2751
2770
  readonly isPauseFailed: boolean;
2752
2771
  readonly isResumeFailed: boolean;
@@ -2757,13 +2776,13 @@ declare module '@polkadot/types/lookup' {
2757
2776
  readonly isDuplicateOffenceReport: boolean;
2758
2777
  readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
2759
2778
  }
2760
- /** @name ArgonPrimitivesProvidersBlockSealerInfo (421) */
2779
+ /** @name ArgonPrimitivesProvidersBlockSealerInfo (422) */
2761
2780
  interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
2762
2781
  readonly blockAuthorAccountId: AccountId32;
2763
2782
  readonly blockVoteRewardsAccount: Option<AccountId32>;
2764
2783
  readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
2765
2784
  }
2766
- /** @name PalletBlockSealError (425) */
2785
+ /** @name PalletBlockSealError (426) */
2767
2786
  interface PalletBlockSealError extends Enum {
2768
2787
  readonly isInvalidVoteSealStrength: boolean;
2769
2788
  readonly isInvalidSubmitter: boolean;
@@ -2786,43 +2805,43 @@ declare module '@polkadot/types/lookup' {
2786
2805
  readonly isInvalidComputeBlockTick: boolean;
2787
2806
  readonly type: 'InvalidVoteSealStrength' | 'InvalidSubmitter' | 'UnableToDecodeVoteAccount' | 'UnregisteredBlockAuthor' | 'InvalidBlockVoteProof' | 'NoGrandparentVoteMinimum' | 'DuplicateBlockSealProvided' | 'InsufficientVotingPower' | 'ParentVotingKeyNotFound' | 'InvalidVoteGrandparentHash' | 'IneligibleNotebookUsed' | 'NoEligibleVotingRoot' | 'CouldNotDecodeVote' | 'MaxNotebooksAtTickExceeded' | 'NoClosestMinerFoundForVote' | 'BlockVoteInvalidSignature' | 'InvalidForkPowerParent' | 'BlockSealDecodeError' | 'InvalidComputeBlockTick';
2788
2807
  }
2789
- /** @name PalletBlockRewardsError (428) */
2808
+ /** @name PalletBlockRewardsError (429) */
2790
2809
  type PalletBlockRewardsError = Null;
2791
- /** @name PalletMintMintAction (433) */
2810
+ /** @name PalletMintMintAction (434) */
2792
2811
  interface PalletMintMintAction extends Struct {
2793
2812
  readonly argonBurned: u128;
2794
2813
  readonly argonMinted: u128;
2795
2814
  readonly bitcoinMinted: u128;
2796
2815
  }
2797
- /** @name PalletMintError (434) */
2816
+ /** @name PalletMintError (435) */
2798
2817
  interface PalletMintError extends Enum {
2799
2818
  readonly isTooManyPendingMints: boolean;
2800
2819
  readonly type: 'TooManyPendingMints';
2801
2820
  }
2802
- /** @name PalletBalancesBalanceLock (436) */
2821
+ /** @name PalletBalancesBalanceLock (437) */
2803
2822
  interface PalletBalancesBalanceLock extends Struct {
2804
2823
  readonly id: U8aFixed;
2805
2824
  readonly amount: u128;
2806
2825
  readonly reasons: PalletBalancesReasons;
2807
2826
  }
2808
- /** @name PalletBalancesReasons (437) */
2827
+ /** @name PalletBalancesReasons (438) */
2809
2828
  interface PalletBalancesReasons extends Enum {
2810
2829
  readonly isFee: boolean;
2811
2830
  readonly isMisc: boolean;
2812
2831
  readonly isAll: boolean;
2813
2832
  readonly type: 'Fee' | 'Misc' | 'All';
2814
2833
  }
2815
- /** @name PalletBalancesReserveData (440) */
2834
+ /** @name PalletBalancesReserveData (441) */
2816
2835
  interface PalletBalancesReserveData extends Struct {
2817
2836
  readonly id: U8aFixed;
2818
2837
  readonly amount: u128;
2819
2838
  }
2820
- /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (443) */
2839
+ /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (444) */
2821
2840
  interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
2822
2841
  readonly id: ArgonRuntimeRuntimeHoldReason;
2823
2842
  readonly amount: u128;
2824
2843
  }
2825
- /** @name ArgonRuntimeRuntimeHoldReason (444) */
2844
+ /** @name ArgonRuntimeRuntimeHoldReason (445) */
2826
2845
  interface ArgonRuntimeRuntimeHoldReason extends Enum {
2827
2846
  readonly isMiningSlot: boolean;
2828
2847
  readonly asMiningSlot: PalletMiningSlotHoldReason;
@@ -2834,44 +2853,44 @@ declare module '@polkadot/types/lookup' {
2834
2853
  readonly asBlockRewards: PalletBlockRewardsHoldReason;
2835
2854
  readonly type: 'MiningSlot' | 'Vaults' | 'BitcoinLocks' | 'BlockRewards';
2836
2855
  }
2837
- /** @name PalletMiningSlotHoldReason (445) */
2856
+ /** @name PalletMiningSlotHoldReason (446) */
2838
2857
  interface PalletMiningSlotHoldReason extends Enum {
2839
2858
  readonly isRegisterAsMiner: boolean;
2840
2859
  readonly type: 'RegisterAsMiner';
2841
2860
  }
2842
- /** @name PalletVaultsHoldReason (446) */
2861
+ /** @name PalletVaultsHoldReason (447) */
2843
2862
  interface PalletVaultsHoldReason extends Enum {
2844
2863
  readonly isEnterVault: boolean;
2845
2864
  readonly isObligationFee: boolean;
2846
2865
  readonly type: 'EnterVault' | 'ObligationFee';
2847
2866
  }
2848
- /** @name PalletBitcoinLocksHoldReason (447) */
2867
+ /** @name PalletBitcoinLocksHoldReason (448) */
2849
2868
  interface PalletBitcoinLocksHoldReason extends Enum {
2850
2869
  readonly isReleaseBitcoinLock: boolean;
2851
2870
  readonly type: 'ReleaseBitcoinLock';
2852
2871
  }
2853
- /** @name PalletBlockRewardsHoldReason (448) */
2872
+ /** @name PalletBlockRewardsHoldReason (449) */
2854
2873
  interface PalletBlockRewardsHoldReason extends Enum {
2855
2874
  readonly isMaturationPeriod: boolean;
2856
2875
  readonly type: 'MaturationPeriod';
2857
2876
  }
2858
- /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (451) */
2877
+ /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (452) */
2859
2878
  interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
2860
2879
  readonly id: ArgonRuntimeRuntimeFreezeReason;
2861
2880
  readonly amount: u128;
2862
2881
  }
2863
- /** @name ArgonRuntimeRuntimeFreezeReason (452) */
2882
+ /** @name ArgonRuntimeRuntimeFreezeReason (453) */
2864
2883
  interface ArgonRuntimeRuntimeFreezeReason extends Enum {
2865
2884
  readonly isBlockRewards: boolean;
2866
2885
  readonly asBlockRewards: PalletBlockRewardsFreezeReason;
2867
2886
  readonly type: 'BlockRewards';
2868
2887
  }
2869
- /** @name PalletBlockRewardsFreezeReason (453) */
2888
+ /** @name PalletBlockRewardsFreezeReason (454) */
2870
2889
  interface PalletBlockRewardsFreezeReason extends Enum {
2871
2890
  readonly isMaturationPeriod: boolean;
2872
2891
  readonly type: 'MaturationPeriod';
2873
2892
  }
2874
- /** @name PalletBalancesError (455) */
2893
+ /** @name PalletBalancesError (456) */
2875
2894
  interface PalletBalancesError extends Enum {
2876
2895
  readonly isVestingBalance: boolean;
2877
2896
  readonly isLiquidityRestrictions: boolean;
@@ -2887,7 +2906,7 @@ declare module '@polkadot/types/lookup' {
2887
2906
  readonly isDeltaZero: boolean;
2888
2907
  readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
2889
2908
  }
2890
- /** @name PalletTxPauseError (457) */
2909
+ /** @name PalletTxPauseError (458) */
2891
2910
  interface PalletTxPauseError extends Enum {
2892
2911
  readonly isIsPaused: boolean;
2893
2912
  readonly isIsUnpaused: boolean;
@@ -2895,23 +2914,23 @@ declare module '@polkadot/types/lookup' {
2895
2914
  readonly isNotFound: boolean;
2896
2915
  readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
2897
2916
  }
2898
- /** @name PalletTransactionPaymentReleases (458) */
2917
+ /** @name PalletTransactionPaymentReleases (459) */
2899
2918
  interface PalletTransactionPaymentReleases extends Enum {
2900
2919
  readonly isV1Ancient: boolean;
2901
2920
  readonly isV2: boolean;
2902
2921
  readonly type: 'V1Ancient' | 'V2';
2903
2922
  }
2904
- /** @name PalletUtilityError (459) */
2923
+ /** @name PalletUtilityError (460) */
2905
2924
  interface PalletUtilityError extends Enum {
2906
2925
  readonly isTooManyCalls: boolean;
2907
2926
  readonly type: 'TooManyCalls';
2908
2927
  }
2909
- /** @name PalletSudoError (460) */
2928
+ /** @name PalletSudoError (461) */
2910
2929
  interface PalletSudoError extends Enum {
2911
2930
  readonly isRequireSudo: boolean;
2912
2931
  readonly type: 'RequireSudo';
2913
2932
  }
2914
- /** @name PalletIsmpError (461) */
2933
+ /** @name PalletIsmpError (462) */
2915
2934
  interface PalletIsmpError extends Enum {
2916
2935
  readonly isInvalidMessage: boolean;
2917
2936
  readonly isMessageNotFound: boolean;
@@ -2920,9 +2939,9 @@ declare module '@polkadot/types/lookup' {
2920
2939
  readonly isChallengePeriodUpdateFailed: boolean;
2921
2940
  readonly type: 'InvalidMessage' | 'MessageNotFound' | 'ConsensusClientCreationFailed' | 'UnbondingPeriodUpdateFailed' | 'ChallengePeriodUpdateFailed';
2922
2941
  }
2923
- /** @name PalletHyperbridgeError (462) */
2942
+ /** @name PalletHyperbridgeError (463) */
2924
2943
  type PalletHyperbridgeError = Null;
2925
- /** @name PalletTokenGatewayError (464) */
2944
+ /** @name PalletTokenGatewayError (465) */
2926
2945
  interface PalletTokenGatewayError extends Enum {
2927
2946
  readonly isUnregisteredAsset: boolean;
2928
2947
  readonly isAssetTeleportError: boolean;
@@ -2935,32 +2954,32 @@ declare module '@polkadot/types/lookup' {
2935
2954
  readonly isNotAssetOwner: boolean;
2936
2955
  readonly type: 'UnregisteredAsset' | 'AssetTeleportError' | 'CoprocessorNotConfigured' | 'DispatchError' | 'AssetCreationError' | 'AssetDecimalsNotFound' | 'NotInitialized' | 'UnknownAsset' | 'NotAssetOwner';
2937
2956
  }
2938
- /** @name FrameSystemExtensionsCheckNonZeroSender (467) */
2957
+ /** @name FrameSystemExtensionsCheckNonZeroSender (468) */
2939
2958
  type FrameSystemExtensionsCheckNonZeroSender = Null;
2940
- /** @name FrameSystemExtensionsCheckSpecVersion (468) */
2959
+ /** @name FrameSystemExtensionsCheckSpecVersion (469) */
2941
2960
  type FrameSystemExtensionsCheckSpecVersion = Null;
2942
- /** @name FrameSystemExtensionsCheckTxVersion (469) */
2961
+ /** @name FrameSystemExtensionsCheckTxVersion (470) */
2943
2962
  type FrameSystemExtensionsCheckTxVersion = Null;
2944
- /** @name FrameSystemExtensionsCheckGenesis (470) */
2963
+ /** @name FrameSystemExtensionsCheckGenesis (471) */
2945
2964
  type FrameSystemExtensionsCheckGenesis = Null;
2946
- /** @name FrameSystemExtensionsCheckNonce (473) */
2965
+ /** @name FrameSystemExtensionsCheckNonce (474) */
2947
2966
  interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
2948
2967
  }
2949
- /** @name FrameSystemExtensionsCheckWeight (474) */
2968
+ /** @name FrameSystemExtensionsCheckWeight (475) */
2950
2969
  type FrameSystemExtensionsCheckWeight = Null;
2951
- /** @name PalletTransactionPaymentChargeTransactionPayment (475) */
2970
+ /** @name PalletTransactionPaymentChargeTransactionPayment (476) */
2952
2971
  interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
2953
2972
  }
2954
- /** @name FrameMetadataHashExtensionCheckMetadataHash (476) */
2973
+ /** @name FrameMetadataHashExtensionCheckMetadataHash (477) */
2955
2974
  interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
2956
2975
  readonly mode: FrameMetadataHashExtensionMode;
2957
2976
  }
2958
- /** @name FrameMetadataHashExtensionMode (477) */
2977
+ /** @name FrameMetadataHashExtensionMode (478) */
2959
2978
  interface FrameMetadataHashExtensionMode extends Enum {
2960
2979
  readonly isDisabled: boolean;
2961
2980
  readonly isEnabled: boolean;
2962
2981
  readonly type: 'Disabled' | 'Enabled';
2963
2982
  }
2964
- /** @name ArgonRuntimeRuntime (479) */
2983
+ /** @name ArgonRuntimeRuntime (480) */
2965
2984
  type ArgonRuntimeRuntime = Null;
2966
2985
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@argonprotocol/mainchain",
3
- "version": "1.0.14",
3
+ "version": "1.0.16",
4
4
  "description": "A client for accessing the Argon mainchain apis.",
5
5
  "repository": {
6
6
  "type": "git",