@argonprotocol/mainchain 1.0.13 → 1.0.15

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.
@@ -132,6 +132,10 @@ declare module '@polkadot/api-base/types/errors' {
132
132
  * Bitcoin height not confirmed yet
133
133
  **/
134
134
  BitcoinHeightNotConfirmed: AugmentedError<ApiType>;
135
+ /**
136
+ * Duplicated UtxoId. Already in use
137
+ **/
138
+ DuplicateUtxoId: AugmentedError<ApiType>;
135
139
  /**
136
140
  * Insufficient bitcoin amount
137
141
  **/
@@ -411,6 +415,10 @@ declare module '@polkadot/api-base/types/errors' {
411
415
  miningSlot: {
412
416
  AccountWouldBeBelowMinimum: AugmentedError<ApiType>;
413
417
  BidTooLow: AugmentedError<ApiType>;
418
+ /**
419
+ * You can't reduce the amount of bonded argons
420
+ **/
421
+ CannotReduceBondedArgons: AugmentedError<ApiType>;
414
422
  /**
415
423
  * Keys cannot be registered by multiple accounts
416
424
  **/
@@ -430,6 +438,10 @@ declare module '@polkadot/api-base/types/errors' {
430
438
  * Unable to decode the key format
431
439
  **/
432
440
  InvalidKeyFormat: AugmentedError<ApiType>;
441
+ /**
442
+ * Cannot change the bonded argon vault
443
+ **/
444
+ InvalidVaultSwitch: AugmentedError<ApiType>;
433
445
  MinimumObligationAmountNotMet: AugmentedError<ApiType>;
434
446
  NoMoreObligationIds: AugmentedError<ApiType>;
435
447
  NoPermissions: AugmentedError<ApiType>;
@@ -756,6 +756,14 @@ declare module '@polkadot/api-base/types/events' {
756
756
  }>;
757
757
  };
758
758
  miningSlot: {
759
+ /**
760
+ * Bids are closed due to the VRF randomized function triggering
761
+ **/
762
+ MiningBidsClosed: AugmentedEvent<ApiType, [
763
+ cohortId: u64
764
+ ], {
765
+ cohortId: u64;
766
+ }>;
759
767
  MiningConfigurationUpdated: AugmentedEvent<ApiType, [
760
768
  ticksBeforeBidEndForVrfClose: u64,
761
769
  ticksBetweenSlots: u64,
@@ -774,6 +782,15 @@ declare module '@polkadot/api-base/types/events' {
774
782
  newMiners: Vec<ArgonPrimitivesBlockSealMiningRegistration>;
775
783
  cohortId: u64;
776
784
  }>;
785
+ ReleaseBidError: AugmentedEvent<ApiType, [
786
+ accountId: AccountId32,
787
+ obligationId: Option<u64>,
788
+ error: SpRuntimeDispatchError
789
+ ], {
790
+ accountId: AccountId32;
791
+ obligationId: Option<u64>;
792
+ error: SpRuntimeDispatchError;
793
+ }>;
777
794
  ReleasedMinerSeat: AugmentedEvent<ApiType, [
778
795
  accountId: AccountId32,
779
796
  obligationId: Option<u64>,
@@ -801,7 +818,7 @@ declare module '@polkadot/api-base/types/events' {
801
818
  bidAmount: u128;
802
819
  index: u32;
803
820
  }>;
804
- SlotBidderReplaced: AugmentedEvent<ApiType, [
821
+ SlotBidderDropped: AugmentedEvent<ApiType, [
805
822
  accountId: AccountId32,
806
823
  obligationId: Option<u64>,
807
824
  preservedArgonotHold: bool
@@ -810,6 +827,15 @@ declare module '@polkadot/api-base/types/events' {
810
827
  obligationId: Option<u64>;
811
828
  preservedArgonotHold: bool;
812
829
  }>;
830
+ SlotBidderOut: AugmentedEvent<ApiType, [
831
+ accountId: AccountId32,
832
+ bidAmount: u128,
833
+ obligationId: Option<u64>
834
+ ], {
835
+ accountId: AccountId32;
836
+ bidAmount: u128;
837
+ obligationId: Option<u64>;
838
+ }>;
813
839
  };
814
840
  mint: {
815
841
  ArgonsMinted: AugmentedEvent<ApiType, [
@@ -467,8 +467,8 @@ declare module '@polkadot/api-base/types/submittable' {
467
467
  * The required amount is calculated as a percentage of the total ownership tokens in the
468
468
  * network. This percentage is adjusted before the beginning of each slot.
469
469
  *
470
- * If your bid is replaced, a `SlotBidderReplaced` event will be emitted. By monitoring for
471
- * this event, you will be able to ensure your bid is accepted.
470
+ * If your bid is no longer winning, a `SlotBidderOut` event will be emitted. By monitoring
471
+ * for this event, you will be able to ensure your bid is accepted.
472
472
  *
473
473
  * NOTE: bidding for each slot will be closed at a random block within
474
474
  * `mining_config.ticks_before_bid_end_for_vrf_close` blocks of the slot end time.
@@ -257,7 +257,12 @@ declare const _default: {
257
257
  bidAmount: string;
258
258
  index: string;
259
259
  };
260
- SlotBidderReplaced: {
260
+ SlotBidderOut: {
261
+ accountId: string;
262
+ bidAmount: string;
263
+ obligationId: string;
264
+ };
265
+ SlotBidderDropped: {
261
266
  accountId: string;
262
267
  obligationId: string;
263
268
  preservedArgonotHold: string;
@@ -277,6 +282,14 @@ declare const _default: {
277
282
  ticksBetweenSlots: string;
278
283
  slotBiddingStartAfterTicks: string;
279
284
  };
285
+ MiningBidsClosed: {
286
+ cohortId: string;
287
+ };
288
+ ReleaseBidError: {
289
+ accountId: string;
290
+ obligationId: string;
291
+ error: string;
292
+ };
280
293
  };
281
294
  };
282
295
  /**
@@ -2457,7 +2470,7 @@ declare const _default: {
2457
2470
  **/
2458
2471
  PalletTicksError: string;
2459
2472
  /**
2460
- * Lookup332: argon_primitives::block_seal::MiningBidStats
2473
+ * Lookup333: argon_primitives::block_seal::MiningBidStats
2461
2474
  **/
2462
2475
  ArgonPrimitivesBlockSealMiningBidStats: {
2463
2476
  bidsCount: string;
@@ -2466,7 +2479,7 @@ declare const _default: {
2466
2479
  bidAmountSum: string;
2467
2480
  };
2468
2481
  /**
2469
- * Lookup334: argon_primitives::block_seal::MiningSlotConfig
2482
+ * Lookup335: argon_primitives::block_seal::MiningSlotConfig
2470
2483
  **/
2471
2484
  ArgonPrimitivesBlockSealMiningSlotConfig: {
2472
2485
  ticksBeforeBidEndForVrfClose: string;
@@ -2474,7 +2487,7 @@ declare const _default: {
2474
2487
  slotBiddingStartAfterTicks: string;
2475
2488
  };
2476
2489
  /**
2477
- * Lookup336: pallet_mining_slot::pallet::Error<T>
2490
+ * Lookup337: pallet_mining_slot::pallet::Error<T>
2478
2491
  **/
2479
2492
  PalletMiningSlotError: {
2480
2493
  _enum: {
@@ -2499,16 +2512,18 @@ declare const _default: {
2499
2512
  GenericObligationError: string;
2500
2513
  CannotRegisterDuplicateKeys: string;
2501
2514
  InvalidKeyFormat: string;
2515
+ CannotReduceBondedArgons: string;
2516
+ InvalidVaultSwitch: string;
2502
2517
  };
2503
2518
  };
2504
2519
  /**
2505
- * Lookup337: argon_primitives::vault::ObligationError
2520
+ * Lookup338: argon_primitives::vault::ObligationError
2506
2521
  **/
2507
2522
  ArgonPrimitivesVaultObligationError: {
2508
2523
  _enum: string[];
2509
2524
  };
2510
2525
  /**
2511
- * Lookup338: argon_primitives::bitcoin::UtxoValue
2526
+ * Lookup339: argon_primitives::bitcoin::UtxoValue
2512
2527
  **/
2513
2528
  ArgonPrimitivesBitcoinUtxoValue: {
2514
2529
  utxoId: string;
@@ -2518,7 +2533,7 @@ declare const _default: {
2518
2533
  watchForSpentUntilHeight: string;
2519
2534
  };
2520
2535
  /**
2521
- * Lookup339: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
2536
+ * Lookup340: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
2522
2537
  **/
2523
2538
  ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey: {
2524
2539
  _enum: {
@@ -2528,19 +2543,19 @@ declare const _default: {
2528
2543
  };
2529
2544
  };
2530
2545
  /**
2531
- * Lookup344: argon_primitives::bitcoin::BitcoinNetwork
2546
+ * Lookup345: argon_primitives::bitcoin::BitcoinNetwork
2532
2547
  **/
2533
2548
  ArgonPrimitivesBitcoinBitcoinNetwork: {
2534
2549
  _enum: string[];
2535
2550
  };
2536
2551
  /**
2537
- * Lookup347: pallet_bitcoin_utxos::pallet::Error<T>
2552
+ * Lookup348: pallet_bitcoin_utxos::pallet::Error<T>
2538
2553
  **/
2539
2554
  PalletBitcoinUtxosError: {
2540
2555
  _enum: string[];
2541
2556
  };
2542
2557
  /**
2543
- * Lookup348: argon_primitives::vault::Vault<sp_core::crypto::AccountId32, Balance>
2558
+ * Lookup349: argon_primitives::vault::Vault<sp_core::crypto::AccountId32, Balance>
2544
2559
  **/
2545
2560
  ArgonPrimitivesVault: {
2546
2561
  operatorAccountId: string;
@@ -2556,7 +2571,7 @@ declare const _default: {
2556
2571
  activationTick: string;
2557
2572
  };
2558
2573
  /**
2559
- * Lookup349: argon_primitives::vault::VaultArgons<Balance>
2574
+ * Lookup350: argon_primitives::vault::VaultArgons<Balance>
2560
2575
  **/
2561
2576
  ArgonPrimitivesVaultVaultArgons: {
2562
2577
  annualPercentRate: string;
@@ -2565,7 +2580,7 @@ declare const _default: {
2565
2580
  baseFee: string;
2566
2581
  };
2567
2582
  /**
2568
- * Lookup355: argon_primitives::bitcoin::BitcoinXPub
2583
+ * Lookup356: argon_primitives::bitcoin::BitcoinXPub
2569
2584
  **/
2570
2585
  ArgonPrimitivesBitcoinBitcoinXPub: {
2571
2586
  publicKey: string;
@@ -2576,13 +2591,13 @@ declare const _default: {
2576
2591
  network: string;
2577
2592
  };
2578
2593
  /**
2579
- * Lookup357: argon_primitives::bitcoin::NetworkKind
2594
+ * Lookup358: argon_primitives::bitcoin::NetworkKind
2580
2595
  **/
2581
2596
  ArgonPrimitivesBitcoinNetworkKind: {
2582
2597
  _enum: string[];
2583
2598
  };
2584
2599
  /**
2585
- * Lookup363: argon_primitives::vault::Obligation<sp_core::crypto::AccountId32, Balance>
2600
+ * Lookup364: argon_primitives::vault::Obligation<sp_core::crypto::AccountId32, Balance>
2586
2601
  **/
2587
2602
  ArgonPrimitivesVaultObligation: {
2588
2603
  obligationId: string;
@@ -2596,13 +2611,13 @@ declare const _default: {
2596
2611
  expiration: string;
2597
2612
  };
2598
2613
  /**
2599
- * Lookup366: pallet_vaults::pallet::Error<T>
2614
+ * Lookup367: pallet_vaults::pallet::Error<T>
2600
2615
  **/
2601
2616
  PalletVaultsError: {
2602
2617
  _enum: string[];
2603
2618
  };
2604
2619
  /**
2605
- * Lookup367: pallet_bitcoin_locks::pallet::LockedBitcoin<T>
2620
+ * Lookup368: pallet_bitcoin_locks::pallet::LockedBitcoin<T>
2606
2621
  **/
2607
2622
  PalletBitcoinLocksLockedBitcoin: {
2608
2623
  obligationId: string;
@@ -2621,7 +2636,7 @@ declare const _default: {
2621
2636
  isVerified: string;
2622
2637
  };
2623
2638
  /**
2624
- * Lookup371: pallet_bitcoin_locks::pallet::LockReleaseRequest<Balance>
2639
+ * Lookup372: pallet_bitcoin_locks::pallet::LockReleaseRequest<Balance>
2625
2640
  **/
2626
2641
  PalletBitcoinLocksLockReleaseRequest: {
2627
2642
  utxoId: string;
@@ -2633,7 +2648,7 @@ declare const _default: {
2633
2648
  redemptionPrice: string;
2634
2649
  };
2635
2650
  /**
2636
- * Lookup375: pallet_bitcoin_locks::pallet::Error<T>
2651
+ * Lookup376: pallet_bitcoin_locks::pallet::Error<T>
2637
2652
  **/
2638
2653
  PalletBitcoinLocksError: {
2639
2654
  _enum: {
@@ -2670,13 +2685,13 @@ declare const _default: {
2670
2685
  };
2671
2686
  };
2672
2687
  /**
2673
- * Lookup387: pallet_notaries::pallet::Error<T>
2688
+ * Lookup388: pallet_notaries::pallet::Error<T>
2674
2689
  **/
2675
2690
  PalletNotariesError: {
2676
2691
  _enum: string[];
2677
2692
  };
2678
2693
  /**
2679
- * Lookup391: argon_primitives::notary::NotaryNotebookKeyDetails
2694
+ * Lookup392: argon_primitives::notary::NotaryNotebookKeyDetails
2680
2695
  **/
2681
2696
  ArgonPrimitivesNotaryNotaryNotebookKeyDetails: {
2682
2697
  notebookNumber: string;
@@ -2686,13 +2701,13 @@ declare const _default: {
2686
2701
  parentSecret: string;
2687
2702
  };
2688
2703
  /**
2689
- * Lookup394: pallet_notebook::pallet::Error<T>
2704
+ * Lookup395: pallet_notebook::pallet::Error<T>
2690
2705
  **/
2691
2706
  PalletNotebookError: {
2692
2707
  _enum: string[];
2693
2708
  };
2694
2709
  /**
2695
- * Lookup395: pallet_chain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
2710
+ * Lookup396: pallet_chain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
2696
2711
  **/
2697
2712
  PalletChainTransferQueuedTransferOut: {
2698
2713
  accountId: string;
@@ -2701,17 +2716,17 @@ declare const _default: {
2701
2716
  notaryId: string;
2702
2717
  };
2703
2718
  /**
2704
- * Lookup401: frame_support::PalletId
2719
+ * Lookup402: frame_support::PalletId
2705
2720
  **/
2706
2721
  FrameSupportPalletId: string;
2707
2722
  /**
2708
- * Lookup402: pallet_chain_transfer::pallet::Error<T>
2723
+ * Lookup403: pallet_chain_transfer::pallet::Error<T>
2709
2724
  **/
2710
2725
  PalletChainTransferError: {
2711
2726
  _enum: string[];
2712
2727
  };
2713
2728
  /**
2714
- * Lookup407: argon_primitives::notary::NotaryNotebookVoteDigestDetails
2729
+ * Lookup408: argon_primitives::notary::NotaryNotebookVoteDigestDetails
2715
2730
  **/
2716
2731
  ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails: {
2717
2732
  notaryId: string;
@@ -2721,25 +2736,25 @@ declare const _default: {
2721
2736
  blockVotingPower: string;
2722
2737
  };
2723
2738
  /**
2724
- * Lookup412: pallet_block_seal_spec::pallet::Error<T>
2739
+ * Lookup413: pallet_block_seal_spec::pallet::Error<T>
2725
2740
  **/
2726
2741
  PalletBlockSealSpecError: {
2727
2742
  _enum: string[];
2728
2743
  };
2729
2744
  /**
2730
- * Lookup414: pallet_domains::pallet::Error<T>
2745
+ * Lookup415: pallet_domains::pallet::Error<T>
2731
2746
  **/
2732
2747
  PalletDomainsError: {
2733
2748
  _enum: string[];
2734
2749
  };
2735
2750
  /**
2736
- * Lookup415: pallet_price_index::pallet::Error<T>
2751
+ * Lookup416: pallet_price_index::pallet::Error<T>
2737
2752
  **/
2738
2753
  PalletPriceIndexError: {
2739
2754
  _enum: string[];
2740
2755
  };
2741
2756
  /**
2742
- * Lookup416: pallet_grandpa::StoredState<N>
2757
+ * Lookup417: pallet_grandpa::StoredState<N>
2743
2758
  **/
2744
2759
  PalletGrandpaStoredState: {
2745
2760
  _enum: {
@@ -2756,7 +2771,7 @@ declare const _default: {
2756
2771
  };
2757
2772
  };
2758
2773
  /**
2759
- * Lookup417: pallet_grandpa::StoredPendingChange<N, Limit>
2774
+ * Lookup418: pallet_grandpa::StoredPendingChange<N, Limit>
2760
2775
  **/
2761
2776
  PalletGrandpaStoredPendingChange: {
2762
2777
  scheduledAt: string;
@@ -2765,13 +2780,13 @@ declare const _default: {
2765
2780
  forced: string;
2766
2781
  };
2767
2782
  /**
2768
- * Lookup420: pallet_grandpa::pallet::Error<T>
2783
+ * Lookup421: pallet_grandpa::pallet::Error<T>
2769
2784
  **/
2770
2785
  PalletGrandpaError: {
2771
2786
  _enum: string[];
2772
2787
  };
2773
2788
  /**
2774
- * Lookup421: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32>
2789
+ * Lookup422: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32>
2775
2790
  **/
2776
2791
  ArgonPrimitivesProvidersBlockSealerInfo: {
2777
2792
  blockAuthorAccountId: string;
@@ -2779,17 +2794,17 @@ declare const _default: {
2779
2794
  blockSealAuthority: string;
2780
2795
  };
2781
2796
  /**
2782
- * Lookup425: pallet_block_seal::pallet::Error<T>
2797
+ * Lookup426: pallet_block_seal::pallet::Error<T>
2783
2798
  **/
2784
2799
  PalletBlockSealError: {
2785
2800
  _enum: string[];
2786
2801
  };
2787
2802
  /**
2788
- * Lookup428: pallet_block_rewards::pallet::Error<T>
2803
+ * Lookup429: pallet_block_rewards::pallet::Error<T>
2789
2804
  **/
2790
2805
  PalletBlockRewardsError: string;
2791
2806
  /**
2792
- * Lookup433: pallet_mint::MintAction<Balance>
2807
+ * Lookup434: pallet_mint::MintAction<Balance>
2793
2808
  **/
2794
2809
  PalletMintMintAction: {
2795
2810
  argonBurned: string;
@@ -2797,13 +2812,13 @@ declare const _default: {
2797
2812
  bitcoinMinted: string;
2798
2813
  };
2799
2814
  /**
2800
- * Lookup434: pallet_mint::pallet::Error<T>
2815
+ * Lookup435: pallet_mint::pallet::Error<T>
2801
2816
  **/
2802
2817
  PalletMintError: {
2803
2818
  _enum: string[];
2804
2819
  };
2805
2820
  /**
2806
- * Lookup436: pallet_balances::types::BalanceLock<Balance>
2821
+ * Lookup437: pallet_balances::types::BalanceLock<Balance>
2807
2822
  **/
2808
2823
  PalletBalancesBalanceLock: {
2809
2824
  id: string;
@@ -2811,27 +2826,27 @@ declare const _default: {
2811
2826
  reasons: string;
2812
2827
  };
2813
2828
  /**
2814
- * Lookup437: pallet_balances::types::Reasons
2829
+ * Lookup438: pallet_balances::types::Reasons
2815
2830
  **/
2816
2831
  PalletBalancesReasons: {
2817
2832
  _enum: string[];
2818
2833
  };
2819
2834
  /**
2820
- * Lookup440: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
2835
+ * Lookup441: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
2821
2836
  **/
2822
2837
  PalletBalancesReserveData: {
2823
2838
  id: string;
2824
2839
  amount: string;
2825
2840
  };
2826
2841
  /**
2827
- * Lookup443: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeHoldReason, Balance>
2842
+ * Lookup444: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeHoldReason, Balance>
2828
2843
  **/
2829
2844
  FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
2830
2845
  id: string;
2831
2846
  amount: string;
2832
2847
  };
2833
2848
  /**
2834
- * Lookup444: argon_runtime::RuntimeHoldReason
2849
+ * Lookup445: argon_runtime::RuntimeHoldReason
2835
2850
  **/
2836
2851
  ArgonRuntimeRuntimeHoldReason: {
2837
2852
  _enum: {
@@ -2858,38 +2873,38 @@ declare const _default: {
2858
2873
  };
2859
2874
  };
2860
2875
  /**
2861
- * Lookup445: pallet_mining_slot::pallet::HoldReason
2876
+ * Lookup446: pallet_mining_slot::pallet::HoldReason
2862
2877
  **/
2863
2878
  PalletMiningSlotHoldReason: {
2864
2879
  _enum: string[];
2865
2880
  };
2866
2881
  /**
2867
- * Lookup446: pallet_vaults::pallet::HoldReason
2882
+ * Lookup447: pallet_vaults::pallet::HoldReason
2868
2883
  **/
2869
2884
  PalletVaultsHoldReason: {
2870
2885
  _enum: string[];
2871
2886
  };
2872
2887
  /**
2873
- * Lookup447: pallet_bitcoin_locks::pallet::HoldReason
2888
+ * Lookup448: pallet_bitcoin_locks::pallet::HoldReason
2874
2889
  **/
2875
2890
  PalletBitcoinLocksHoldReason: {
2876
2891
  _enum: string[];
2877
2892
  };
2878
2893
  /**
2879
- * Lookup448: pallet_block_rewards::pallet::HoldReason
2894
+ * Lookup449: pallet_block_rewards::pallet::HoldReason
2880
2895
  **/
2881
2896
  PalletBlockRewardsHoldReason: {
2882
2897
  _enum: string[];
2883
2898
  };
2884
2899
  /**
2885
- * Lookup451: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeFreezeReason, Balance>
2900
+ * Lookup452: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeFreezeReason, Balance>
2886
2901
  **/
2887
2902
  FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
2888
2903
  id: string;
2889
2904
  amount: string;
2890
2905
  };
2891
2906
  /**
2892
- * Lookup452: argon_runtime::RuntimeFreezeReason
2907
+ * Lookup453: argon_runtime::RuntimeFreezeReason
2893
2908
  **/
2894
2909
  ArgonRuntimeRuntimeFreezeReason: {
2895
2910
  _enum: {
@@ -2916,99 +2931,99 @@ declare const _default: {
2916
2931
  };
2917
2932
  };
2918
2933
  /**
2919
- * Lookup453: pallet_block_rewards::pallet::FreezeReason
2934
+ * Lookup454: pallet_block_rewards::pallet::FreezeReason
2920
2935
  **/
2921
2936
  PalletBlockRewardsFreezeReason: {
2922
2937
  _enum: string[];
2923
2938
  };
2924
2939
  /**
2925
- * Lookup455: pallet_balances::pallet::Error<T, I>
2940
+ * Lookup456: pallet_balances::pallet::Error<T, I>
2926
2941
  **/
2927
2942
  PalletBalancesError: {
2928
2943
  _enum: string[];
2929
2944
  };
2930
2945
  /**
2931
- * Lookup457: pallet_tx_pause::pallet::Error<T>
2946
+ * Lookup458: pallet_tx_pause::pallet::Error<T>
2932
2947
  **/
2933
2948
  PalletTxPauseError: {
2934
2949
  _enum: string[];
2935
2950
  };
2936
2951
  /**
2937
- * Lookup458: pallet_transaction_payment::Releases
2952
+ * Lookup459: pallet_transaction_payment::Releases
2938
2953
  **/
2939
2954
  PalletTransactionPaymentReleases: {
2940
2955
  _enum: string[];
2941
2956
  };
2942
2957
  /**
2943
- * Lookup459: pallet_utility::pallet::Error<T>
2958
+ * Lookup460: pallet_utility::pallet::Error<T>
2944
2959
  **/
2945
2960
  PalletUtilityError: {
2946
2961
  _enum: string[];
2947
2962
  };
2948
2963
  /**
2949
- * Lookup460: pallet_sudo::pallet::Error<T>
2964
+ * Lookup461: pallet_sudo::pallet::Error<T>
2950
2965
  **/
2951
2966
  PalletSudoError: {
2952
2967
  _enum: string[];
2953
2968
  };
2954
2969
  /**
2955
- * Lookup461: pallet_ismp::pallet::Error<T>
2970
+ * Lookup462: pallet_ismp::pallet::Error<T>
2956
2971
  **/
2957
2972
  PalletIsmpError: {
2958
2973
  _enum: string[];
2959
2974
  };
2960
2975
  /**
2961
- * Lookup462: pallet_hyperbridge::pallet::Error<T>
2976
+ * Lookup463: pallet_hyperbridge::pallet::Error<T>
2962
2977
  **/
2963
2978
  PalletHyperbridgeError: string;
2964
2979
  /**
2965
- * Lookup464: pallet_token_gateway::pallet::Error<T>
2980
+ * Lookup465: pallet_token_gateway::pallet::Error<T>
2966
2981
  **/
2967
2982
  PalletTokenGatewayError: {
2968
2983
  _enum: string[];
2969
2984
  };
2970
2985
  /**
2971
- * Lookup467: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
2986
+ * Lookup468: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
2972
2987
  **/
2973
2988
  FrameSystemExtensionsCheckNonZeroSender: string;
2974
2989
  /**
2975
- * Lookup468: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
2990
+ * Lookup469: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
2976
2991
  **/
2977
2992
  FrameSystemExtensionsCheckSpecVersion: string;
2978
2993
  /**
2979
- * Lookup469: frame_system::extensions::check_tx_version::CheckTxVersion<T>
2994
+ * Lookup470: frame_system::extensions::check_tx_version::CheckTxVersion<T>
2980
2995
  **/
2981
2996
  FrameSystemExtensionsCheckTxVersion: string;
2982
2997
  /**
2983
- * Lookup470: frame_system::extensions::check_genesis::CheckGenesis<T>
2998
+ * Lookup471: frame_system::extensions::check_genesis::CheckGenesis<T>
2984
2999
  **/
2985
3000
  FrameSystemExtensionsCheckGenesis: string;
2986
3001
  /**
2987
- * Lookup473: frame_system::extensions::check_nonce::CheckNonce<T>
3002
+ * Lookup474: frame_system::extensions::check_nonce::CheckNonce<T>
2988
3003
  **/
2989
3004
  FrameSystemExtensionsCheckNonce: string;
2990
3005
  /**
2991
- * Lookup474: frame_system::extensions::check_weight::CheckWeight<T>
3006
+ * Lookup475: frame_system::extensions::check_weight::CheckWeight<T>
2992
3007
  **/
2993
3008
  FrameSystemExtensionsCheckWeight: string;
2994
3009
  /**
2995
- * Lookup475: pallet_transaction_payment::ChargeTransactionPayment<T>
3010
+ * Lookup476: pallet_transaction_payment::ChargeTransactionPayment<T>
2996
3011
  **/
2997
3012
  PalletTransactionPaymentChargeTransactionPayment: string;
2998
3013
  /**
2999
- * Lookup476: frame_metadata_hash_extension::CheckMetadataHash<T>
3014
+ * Lookup477: frame_metadata_hash_extension::CheckMetadataHash<T>
3000
3015
  **/
3001
3016
  FrameMetadataHashExtensionCheckMetadataHash: {
3002
3017
  mode: string;
3003
3018
  };
3004
3019
  /**
3005
- * Lookup477: frame_metadata_hash_extension::Mode
3020
+ * Lookup478: frame_metadata_hash_extension::Mode
3006
3021
  **/
3007
3022
  FrameMetadataHashExtensionMode: {
3008
3023
  _enum: string[];
3009
3024
  };
3010
3025
  /**
3011
- * Lookup479: argon_runtime::Runtime
3026
+ * Lookup480: argon_runtime::Runtime
3012
3027
  **/
3013
3028
  ArgonRuntimeRuntime: string;
3014
3029
  };