@argonprotocol/mainchain 1.4.10-dev.d386c4ce → 1.4.10-dev.f355ccc1

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.
@@ -2664,10 +2664,6 @@ declare module '@polkadot/types/lookup' {
2664
2664
  readonly asSetDelegateAccount: {
2665
2665
  readonly delegateAccountId: Option<AccountId32>;
2666
2666
  } & Struct;
2667
- readonly isSetName: boolean;
2668
- readonly asSetName: {
2669
- readonly name: Option<Bytes>;
2670
- } & Struct;
2671
2667
  readonly isSetCommittedArgonots: boolean;
2672
2668
  readonly asSetCommittedArgonots: {
2673
2669
  readonly amount: Compact<u128>;
@@ -2685,7 +2681,6 @@ declare module '@polkadot/types/lookup' {
2685
2681
  | 'ReplaceBitcoinXpub'
2686
2682
  | 'Collect'
2687
2683
  | 'SetDelegateAccount'
2688
- | 'SetName'
2689
2684
  | 'SetCommittedArgonots'
2690
2685
  | 'SetBackfillSecuritizationReserved';
2691
2686
  }
@@ -2693,7 +2688,6 @@ declare module '@polkadot/types/lookup' {
2693
2688
  /** @name PalletVaultsVaultConfig (209) */
2694
2689
  interface PalletVaultsVaultConfig extends Struct {
2695
2690
  readonly terms: ArgonPrimitivesVaultVaultTerms;
2696
- readonly name: Option<Bytes>;
2697
2691
  readonly delegateAccountId: Option<AccountId32>;
2698
2692
  readonly securitization: Compact<u128>;
2699
2693
  readonly bitcoinXpubkey: ArgonPrimitivesBitcoinOpaqueBitcoinXpub;
@@ -2708,10 +2702,10 @@ declare module '@polkadot/types/lookup' {
2708
2702
  readonly treasuryBonusProfitSharing: Compact<Permill>;
2709
2703
  }
2710
2704
 
2711
- /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (216) */
2705
+ /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (214) */
2712
2706
  interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {}
2713
2707
 
2714
- /** @name PalletBitcoinLocksCall (218) */
2708
+ /** @name PalletBitcoinLocksCall (216) */
2715
2709
  interface PalletBitcoinLocksCall extends Enum {
2716
2710
  readonly isInitialize: boolean;
2717
2711
  readonly asInitialize: {
@@ -2752,15 +2746,6 @@ declare module '@polkadot/types/lookup' {
2752
2746
  readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
2753
2747
  readonly signature: Bytes;
2754
2748
  } & Struct;
2755
- readonly isInitializeFor: boolean;
2756
- readonly asInitializeFor: {
2757
- readonly accountId: AccountId32;
2758
- readonly vaultId: u32;
2759
- readonly satoshis: Compact<u64>;
2760
- readonly bitcoinPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
2761
- readonly options: Option<PalletBitcoinLocksLockOptions>;
2762
- readonly backfillSecuritizationToUnreserve: Compact<u128>;
2763
- } & Struct;
2764
2749
  readonly isIncreaseSecuritization: boolean;
2765
2750
  readonly asIncreaseSecuritization: {
2766
2751
  readonly utxoId: u64;
@@ -2779,24 +2764,53 @@ declare module '@polkadot/types/lookup' {
2779
2764
  | 'AdminModifyMinimumLockedSats'
2780
2765
  | 'RequestOrphanedUtxoRelease'
2781
2766
  | 'CosignOrphanedUtxoRelease'
2782
- | 'InitializeFor'
2783
2767
  | 'IncreaseSecuritization'
2784
2768
  | 'SetAsBackfill';
2785
2769
  }
2786
2770
 
2787
- /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (219) */
2771
+ /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (217) */
2788
2772
  interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {}
2789
2773
 
2790
- /** @name PalletBitcoinLocksLockOptions (222) */
2774
+ /** @name PalletBitcoinLocksLockOptions (220) */
2791
2775
  interface PalletBitcoinLocksLockOptions extends Enum {
2792
2776
  readonly isV1: boolean;
2793
2777
  readonly asV1: {
2794
2778
  readonly microgonsAtTargetPerBtc: Option<u128>;
2795
2779
  } & Struct;
2796
- readonly type: 'V1';
2780
+ readonly isV2: boolean;
2781
+ readonly asV2: {
2782
+ readonly microgonsAtTargetPerBtc: Option<u128>;
2783
+ readonly feeCoupon: Option<PalletBitcoinLocksFeeCoupon>;
2784
+ } & Struct;
2785
+ readonly type: 'V1' | 'V2';
2786
+ }
2787
+
2788
+ /** @name PalletBitcoinLocksFeeCoupon (222) */
2789
+ interface PalletBitcoinLocksFeeCoupon extends Struct {
2790
+ readonly vaultId: Compact<u32>;
2791
+ readonly genesisHash: H256;
2792
+ readonly beneficiary: AccountId32;
2793
+ readonly feeDiscount: Compact<u128>;
2794
+ readonly backfillSecuritizationToUnreserve: Compact<u128>;
2795
+ readonly expiresAtFrame: Compact<u64>;
2796
+ readonly nonce: Compact<u64>;
2797
+ readonly signature: SpRuntimeMultiSignature;
2797
2798
  }
2798
2799
 
2799
- /** @name PalletNotariesCall (225) */
2800
+ /** @name SpRuntimeMultiSignature (223) */
2801
+ interface SpRuntimeMultiSignature extends Enum {
2802
+ readonly isEd25519: boolean;
2803
+ readonly asEd25519: U8aFixed;
2804
+ readonly isSr25519: boolean;
2805
+ readonly asSr25519: U8aFixed;
2806
+ readonly isEcdsa: boolean;
2807
+ readonly asEcdsa: U8aFixed;
2808
+ readonly isEth: boolean;
2809
+ readonly asEth: U8aFixed;
2810
+ readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
2811
+ }
2812
+
2813
+ /** @name PalletNotariesCall (228) */
2800
2814
  interface PalletNotariesCall extends Enum {
2801
2815
  readonly isPropose: boolean;
2802
2816
  readonly asPropose: {
@@ -2815,7 +2829,7 @@ declare module '@polkadot/types/lookup' {
2815
2829
  readonly type: 'Propose' | 'Activate' | 'Update';
2816
2830
  }
2817
2831
 
2818
- /** @name PalletNotebookCall (226) */
2832
+ /** @name PalletNotebookCall (229) */
2819
2833
  interface PalletNotebookCall extends Enum {
2820
2834
  readonly isSubmit: boolean;
2821
2835
  readonly asSubmit: {
@@ -2828,13 +2842,13 @@ declare module '@polkadot/types/lookup' {
2828
2842
  readonly type: 'Submit' | 'Unlock';
2829
2843
  }
2830
2844
 
2831
- /** @name ArgonPrimitivesNotebookSignedNotebookHeader (228) */
2845
+ /** @name ArgonPrimitivesNotebookSignedNotebookHeader (231) */
2832
2846
  interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
2833
2847
  readonly header: ArgonPrimitivesNotebookNotebookHeader;
2834
2848
  readonly signature: U8aFixed;
2835
2849
  }
2836
2850
 
2837
- /** @name ArgonPrimitivesNotebookNotebookHeader (229) */
2851
+ /** @name ArgonPrimitivesNotebookNotebookHeader (232) */
2838
2852
  interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
2839
2853
  readonly version: Compact<u16>;
2840
2854
  readonly notebookNumber: Compact<u32>;
@@ -2853,7 +2867,7 @@ declare module '@polkadot/types/lookup' {
2853
2867
  readonly domains: Vec<ITuple<[H256, AccountId32]>>;
2854
2868
  }
2855
2869
 
2856
- /** @name ArgonPrimitivesNotebookChainTransfer (232) */
2870
+ /** @name ArgonPrimitivesNotebookChainTransfer (235) */
2857
2871
  interface ArgonPrimitivesNotebookChainTransfer extends Enum {
2858
2872
  readonly isToMainchain: boolean;
2859
2873
  readonly asToMainchain: {
@@ -2867,13 +2881,13 @@ declare module '@polkadot/types/lookup' {
2867
2881
  readonly type: 'ToMainchain' | 'ToLocalchain';
2868
2882
  }
2869
2883
 
2870
- /** @name ArgonPrimitivesBalanceChangeAccountOrigin (235) */
2884
+ /** @name ArgonPrimitivesBalanceChangeAccountOrigin (238) */
2871
2885
  interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
2872
2886
  readonly notebookNumber: Compact<u32>;
2873
2887
  readonly accountUid: Compact<u32>;
2874
2888
  }
2875
2889
 
2876
- /** @name PalletLocalchainTransferCall (242) */
2890
+ /** @name PalletLocalchainTransferCall (244) */
2877
2891
  interface PalletLocalchainTransferCall extends Enum {
2878
2892
  readonly isSendToLocalchain: boolean;
2879
2893
  readonly asSendToLocalchain: {
@@ -2883,7 +2897,7 @@ declare module '@polkadot/types/lookup' {
2883
2897
  readonly type: 'SendToLocalchain';
2884
2898
  }
2885
2899
 
2886
- /** @name PalletBlockSealSpecCall (243) */
2900
+ /** @name PalletBlockSealSpecCall (245) */
2887
2901
  interface PalletBlockSealSpecCall extends Enum {
2888
2902
  readonly isConfigure: boolean;
2889
2903
  readonly asConfigure: {
@@ -2893,7 +2907,7 @@ declare module '@polkadot/types/lookup' {
2893
2907
  readonly type: 'Configure';
2894
2908
  }
2895
2909
 
2896
- /** @name PalletDomainsCall (244) */
2910
+ /** @name PalletDomainsCall (246) */
2897
2911
  interface PalletDomainsCall extends Enum {
2898
2912
  readonly isSetZoneRecord: boolean;
2899
2913
  readonly asSetZoneRecord: {
@@ -2903,7 +2917,7 @@ declare module '@polkadot/types/lookup' {
2903
2917
  readonly type: 'SetZoneRecord';
2904
2918
  }
2905
2919
 
2906
- /** @name PalletPriceIndexCall (245) */
2920
+ /** @name PalletPriceIndexCall (247) */
2907
2921
  interface PalletPriceIndexCall extends Enum {
2908
2922
  readonly isSubmit: boolean;
2909
2923
  readonly asSubmit: {
@@ -2917,7 +2931,7 @@ declare module '@polkadot/types/lookup' {
2917
2931
  readonly type: 'Submit' | 'SetOperator';
2918
2932
  }
2919
2933
 
2920
- /** @name PalletPriceIndexPriceIndex (246) */
2934
+ /** @name PalletPriceIndexPriceIndex (248) */
2921
2935
  interface PalletPriceIndexPriceIndex extends Struct {
2922
2936
  readonly btcUsdPrice: Compact<u128>;
2923
2937
  readonly argonotUsdPrice: u128;
@@ -2927,14 +2941,14 @@ declare module '@polkadot/types/lookup' {
2927
2941
  readonly tick: Compact<u64>;
2928
2942
  }
2929
2943
 
2930
- /** @name PalletPriceIndexEthereumPriceIndex (248) */
2944
+ /** @name PalletPriceIndexEthereumPriceIndex (250) */
2931
2945
  interface PalletPriceIndexEthereumPriceIndex extends Struct {
2932
2946
  readonly ethereumUsdPrice: u128;
2933
2947
  readonly ethereumGasPriceWei: Compact<u128>;
2934
2948
  readonly tick: Compact<u64>;
2935
2949
  }
2936
2950
 
2937
- /** @name PalletGrandpaCall (249) */
2951
+ /** @name PalletGrandpaCall (251) */
2938
2952
  interface PalletGrandpaCall extends Enum {
2939
2953
  readonly isReportEquivocation: boolean;
2940
2954
  readonly asReportEquivocation: {
@@ -2954,13 +2968,13 @@ declare module '@polkadot/types/lookup' {
2954
2968
  readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
2955
2969
  }
2956
2970
 
2957
- /** @name SpConsensusGrandpaEquivocationProof (250) */
2971
+ /** @name SpConsensusGrandpaEquivocationProof (252) */
2958
2972
  interface SpConsensusGrandpaEquivocationProof extends Struct {
2959
2973
  readonly setId: u64;
2960
2974
  readonly equivocation: SpConsensusGrandpaEquivocation;
2961
2975
  }
2962
2976
 
2963
- /** @name SpConsensusGrandpaEquivocation (251) */
2977
+ /** @name SpConsensusGrandpaEquivocation (253) */
2964
2978
  interface SpConsensusGrandpaEquivocation extends Enum {
2965
2979
  readonly isPrevote: boolean;
2966
2980
  readonly asPrevote: FinalityGrandpaEquivocationPrevote;
@@ -2969,7 +2983,7 @@ declare module '@polkadot/types/lookup' {
2969
2983
  readonly type: 'Prevote' | 'Precommit';
2970
2984
  }
2971
2985
 
2972
- /** @name FinalityGrandpaEquivocationPrevote (252) */
2986
+ /** @name FinalityGrandpaEquivocationPrevote (254) */
2973
2987
  interface FinalityGrandpaEquivocationPrevote extends Struct {
2974
2988
  readonly roundNumber: u64;
2975
2989
  readonly identity: SpConsensusGrandpaAppPublic;
@@ -2977,16 +2991,16 @@ declare module '@polkadot/types/lookup' {
2977
2991
  readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
2978
2992
  }
2979
2993
 
2980
- /** @name FinalityGrandpaPrevote (253) */
2994
+ /** @name FinalityGrandpaPrevote (255) */
2981
2995
  interface FinalityGrandpaPrevote extends Struct {
2982
2996
  readonly targetHash: H256;
2983
2997
  readonly targetNumber: u32;
2984
2998
  }
2985
2999
 
2986
- /** @name SpConsensusGrandpaAppSignature (254) */
3000
+ /** @name SpConsensusGrandpaAppSignature (256) */
2987
3001
  interface SpConsensusGrandpaAppSignature extends U8aFixed {}
2988
3002
 
2989
- /** @name FinalityGrandpaEquivocationPrecommit (256) */
3003
+ /** @name FinalityGrandpaEquivocationPrecommit (258) */
2990
3004
  interface FinalityGrandpaEquivocationPrecommit extends Struct {
2991
3005
  readonly roundNumber: u64;
2992
3006
  readonly identity: SpConsensusGrandpaAppPublic;
@@ -2994,16 +3008,16 @@ declare module '@polkadot/types/lookup' {
2994
3008
  readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
2995
3009
  }
2996
3010
 
2997
- /** @name FinalityGrandpaPrecommit (257) */
3011
+ /** @name FinalityGrandpaPrecommit (259) */
2998
3012
  interface FinalityGrandpaPrecommit extends Struct {
2999
3013
  readonly targetHash: H256;
3000
3014
  readonly targetNumber: u32;
3001
3015
  }
3002
3016
 
3003
- /** @name SpCoreVoid (259) */
3017
+ /** @name SpCoreVoid (261) */
3004
3018
  type SpCoreVoid = Null;
3005
3019
 
3006
- /** @name PalletBlockSealCall (260) */
3020
+ /** @name PalletBlockSealCall (262) */
3007
3021
  interface PalletBlockSealCall extends Enum {
3008
3022
  readonly isApply: boolean;
3009
3023
  readonly asApply: {
@@ -3012,7 +3026,7 @@ declare module '@polkadot/types/lookup' {
3012
3026
  readonly type: 'Apply';
3013
3027
  }
3014
3028
 
3015
- /** @name ArgonPrimitivesInherentsBlockSealInherent (261) */
3029
+ /** @name ArgonPrimitivesInherentsBlockSealInherent (263) */
3016
3030
  interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
3017
3031
  readonly isVote: boolean;
3018
3032
  readonly asVote: {
@@ -3027,14 +3041,14 @@ declare module '@polkadot/types/lookup' {
3027
3041
  readonly type: 'Vote' | 'Compute';
3028
3042
  }
3029
3043
 
3030
- /** @name ArgonPrimitivesBalanceChangeMerkleProof (262) */
3044
+ /** @name ArgonPrimitivesBalanceChangeMerkleProof (264) */
3031
3045
  interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
3032
3046
  readonly proof: Vec<H256>;
3033
3047
  readonly numberOfLeaves: Compact<u32>;
3034
3048
  readonly leafIndex: Compact<u32>;
3035
3049
  }
3036
3050
 
3037
- /** @name ArgonPrimitivesBlockVoteBlockVoteT (264) */
3051
+ /** @name ArgonPrimitivesBlockVoteBlockVoteT (266) */
3038
3052
  interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
3039
3053
  readonly accountId: AccountId32;
3040
3054
  readonly blockHash: H256;
@@ -3045,19 +3059,6 @@ declare module '@polkadot/types/lookup' {
3045
3059
  readonly tick: Compact<u64>;
3046
3060
  }
3047
3061
 
3048
- /** @name SpRuntimeMultiSignature (265) */
3049
- interface SpRuntimeMultiSignature extends Enum {
3050
- readonly isEd25519: boolean;
3051
- readonly asEd25519: U8aFixed;
3052
- readonly isSr25519: boolean;
3053
- readonly asSr25519: U8aFixed;
3054
- readonly isEcdsa: boolean;
3055
- readonly asEcdsa: U8aFixed;
3056
- readonly isEth: boolean;
3057
- readonly asEth: U8aFixed;
3058
- readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
3059
- }
3060
-
3061
3062
  /** @name PalletBlockRewardsCall (267) */
3062
3063
  interface PalletBlockRewardsCall extends Enum {
3063
3064
  readonly isSetBlockRewardsPaused: boolean;
@@ -3276,6 +3277,10 @@ declare module '@polkadot/types/lookup' {
3276
3277
  readonly asRegister: {
3277
3278
  readonly registration: PalletOperationalAccountsRegistration;
3278
3279
  } & Struct;
3280
+ readonly isSetName: boolean;
3281
+ readonly asSetName: {
3282
+ readonly name: Option<Bytes>;
3283
+ } & Struct;
3279
3284
  readonly isSetRewardConfig: boolean;
3280
3285
  readonly asSetRewardConfig: {
3281
3286
  readonly operationalCertificationReward: u128;
@@ -3294,6 +3299,7 @@ declare module '@polkadot/types/lookup' {
3294
3299
  } & Struct;
3295
3300
  readonly type:
3296
3301
  | 'Register'
3302
+ | 'SetName'
3297
3303
  | 'SetRewardConfig'
3298
3304
  | 'ForceSetProgress'
3299
3305
  | 'Activate'
@@ -3333,7 +3339,7 @@ declare module '@polkadot/types/lookup' {
3333
3339
  readonly signature: SpRuntimeMultiSignature;
3334
3340
  }
3335
3341
 
3336
- /** @name PalletOperationalAccountsOperationalProgressPatch (286) */
3342
+ /** @name PalletOperationalAccountsOperationalProgressPatch (288) */
3337
3343
  interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
3338
3344
  readonly uniswapArgonTransfersInAmount: Option<u128>;
3339
3345
  readonly accountBitcoinAmount: Option<u128>;
@@ -3343,7 +3349,7 @@ declare module '@polkadot/types/lookup' {
3343
3349
  readonly miningSeatCount: Option<u32>;
3344
3350
  }
3345
3351
 
3346
- /** @name PalletEthereumVerifierCall (288) */
3352
+ /** @name PalletEthereumVerifierCall (290) */
3347
3353
  interface PalletEthereumVerifierCall extends Enum {
3348
3354
  readonly isForceCheckpoint: boolean;
3349
3355
  readonly asForceCheckpoint: {
@@ -3371,7 +3377,7 @@ declare module '@polkadot/types/lookup' {
3371
3377
  | 'SetOperatingMode';
3372
3378
  }
3373
3379
 
3374
- /** @name PalletEthereumVerifierCheckpointUpdate (289) */
3380
+ /** @name PalletEthereumVerifierCheckpointUpdate (291) */
3375
3381
  interface PalletEthereumVerifierCheckpointUpdate extends Struct {
3376
3382
  readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
3377
3383
  readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
@@ -3380,7 +3386,7 @@ declare module '@polkadot/types/lookup' {
3380
3386
  readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
3381
3387
  }
3382
3388
 
3383
- /** @name SnowbridgeBeaconPrimitivesBeaconHeader (290) */
3389
+ /** @name SnowbridgeBeaconPrimitivesBeaconHeader (292) */
3384
3390
  interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
3385
3391
  readonly slot: u64;
3386
3392
  readonly proposerIndex: u64;
@@ -3389,22 +3395,22 @@ declare module '@polkadot/types/lookup' {
3389
3395
  readonly bodyRoot: H256;
3390
3396
  }
3391
3397
 
3392
- /** @name PalletEthereumVerifierSyncCommittee (291) */
3398
+ /** @name PalletEthereumVerifierSyncCommittee (293) */
3393
3399
  interface PalletEthereumVerifierSyncCommittee extends Struct {
3394
3400
  readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
3395
3401
  readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
3396
3402
  }
3397
3403
 
3398
- /** @name SnowbridgeBeaconPrimitivesPublicKey (293) */
3404
+ /** @name SnowbridgeBeaconPrimitivesPublicKey (295) */
3399
3405
  interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
3400
3406
 
3401
- /** @name PalletEthereumVerifierExecutionHeaderProof (297) */
3407
+ /** @name PalletEthereumVerifierExecutionHeaderProof (299) */
3402
3408
  interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
3403
3409
  readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
3404
3410
  readonly executionBranch: Vec<H256>;
3405
3411
  }
3406
3412
 
3407
- /** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (298) */
3413
+ /** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (300) */
3408
3414
  interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
3409
3415
  readonly isCapella: boolean;
3410
3416
  readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
@@ -3413,7 +3419,7 @@ declare module '@polkadot/types/lookup' {
3413
3419
  readonly type: 'Capella' | 'Deneb';
3414
3420
  }
3415
3421
 
3416
- /** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (299) */
3422
+ /** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (301) */
3417
3423
  interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
3418
3424
  readonly parentHash: H256;
3419
3425
  readonly feeRecipient: H160;
@@ -3432,7 +3438,7 @@ declare module '@polkadot/types/lookup' {
3432
3438
  readonly withdrawalsRoot: H256;
3433
3439
  }
3434
3440
 
3435
- /** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (300) */
3441
+ /** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (302) */
3436
3442
  interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
3437
3443
  readonly parentHash: H256;
3438
3444
  readonly feeRecipient: H160;
@@ -3453,7 +3459,7 @@ declare module '@polkadot/types/lookup' {
3453
3459
  readonly excessBlobGas: u64;
3454
3460
  }
3455
3461
 
3456
- /** @name PalletEthereumVerifierForkVersions (301) */
3462
+ /** @name PalletEthereumVerifierForkVersions (303) */
3457
3463
  interface PalletEthereumVerifierForkVersions extends Struct {
3458
3464
  readonly genesis: PalletEthereumVerifierFork;
3459
3465
  readonly altair: PalletEthereumVerifierFork;
@@ -3464,13 +3470,13 @@ declare module '@polkadot/types/lookup' {
3464
3470
  readonly fulu: PalletEthereumVerifierFork;
3465
3471
  }
3466
3472
 
3467
- /** @name PalletEthereumVerifierFork (302) */
3473
+ /** @name PalletEthereumVerifierFork (304) */
3468
3474
  interface PalletEthereumVerifierFork extends Struct {
3469
3475
  readonly version: U8aFixed;
3470
3476
  readonly epoch: Compact<u64>;
3471
3477
  }
3472
3478
 
3473
- /** @name PalletEthereumVerifierUpdate (303) */
3479
+ /** @name PalletEthereumVerifierUpdate (305) */
3474
3480
  interface PalletEthereumVerifierUpdate extends Struct {
3475
3481
  readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
3476
3482
  readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
@@ -3481,22 +3487,22 @@ declare module '@polkadot/types/lookup' {
3481
3487
  readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
3482
3488
  }
3483
3489
 
3484
- /** @name PalletEthereumVerifierSyncAggregate (304) */
3490
+ /** @name PalletEthereumVerifierSyncAggregate (306) */
3485
3491
  interface PalletEthereumVerifierSyncAggregate extends Struct {
3486
3492
  readonly syncCommitteeBits: Bytes;
3487
3493
  readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
3488
3494
  }
3489
3495
 
3490
- /** @name SnowbridgeBeaconPrimitivesSignature (306) */
3496
+ /** @name SnowbridgeBeaconPrimitivesSignature (308) */
3491
3497
  interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
3492
3498
 
3493
- /** @name PalletEthereumVerifierNextSyncCommitteeUpdate (309) */
3499
+ /** @name PalletEthereumVerifierNextSyncCommitteeUpdate (311) */
3494
3500
  interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
3495
3501
  readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
3496
3502
  readonly nextSyncCommitteeBranch: Vec<H256>;
3497
3503
  }
3498
3504
 
3499
- /** @name PalletCrosschainTransferCall (310) */
3505
+ /** @name PalletCrosschainTransferCall (312) */
3500
3506
  interface PalletCrosschainTransferCall extends Enum {
3501
3507
  readonly isSetChainConfig: boolean;
3502
3508
  readonly asSetChainConfig: {
@@ -3586,7 +3592,7 @@ declare module '@polkadot/types/lookup' {
3586
3592
  | 'CollateralizeTransfer';
3587
3593
  }
3588
3594
 
3589
- /** @name PalletCrosschainTransferChainConfig (311) */
3595
+ /** @name PalletCrosschainTransferChainConfig (313) */
3590
3596
  interface PalletCrosschainTransferChainConfig extends Enum {
3591
3597
  readonly isEvm: boolean;
3592
3598
  readonly asEvm: {
@@ -3598,7 +3604,7 @@ declare module '@polkadot/types/lookup' {
3598
3604
  readonly type: 'Evm';
3599
3605
  }
3600
3606
 
3601
- /** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (313) */
3607
+ /** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (315) */
3602
3608
  interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
3603
3609
  readonly activationGasCost: Compact<u128>;
3604
3610
  readonly signatureGasCost: Compact<u128>;
@@ -3606,56 +3612,56 @@ declare module '@polkadot/types/lookup' {
3606
3612
  readonly estimatedMicrogonsPerEth: u128;
3607
3613
  }
3608
3614
 
3609
- /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (316) */
3615
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (318) */
3610
3616
  interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
3611
3617
  readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
3612
3618
  readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
3613
3619
  }
3614
3620
 
3615
- /** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (317) */
3621
+ /** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (319) */
3616
3622
  interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
3617
3623
  readonly anchorBlockHash: H256;
3618
3624
  readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
3619
3625
  }
3620
3626
 
3621
- /** @name ArgonPrimitivesEthereumEthereumExecutionHeader (319) */
3627
+ /** @name ArgonPrimitivesEthereumEthereumExecutionHeader (321) */
3622
3628
  interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
3623
3629
  readonly rlp: Bytes;
3624
3630
  }
3625
3631
 
3626
- /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (323) */
3632
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (325) */
3627
3633
  interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
3628
3634
  readonly targetBlockNumber: Compact<u64>;
3629
3635
  readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
3630
3636
  readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
3631
3637
  }
3632
3638
 
3633
- /** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (324) */
3639
+ /** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (326) */
3634
3640
  interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
3635
3641
  readonly nodes: Vec<Bytes>;
3636
3642
  readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
3637
3643
  }
3638
3644
 
3639
- /** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (328) */
3645
+ /** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (330) */
3640
3646
  interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
3641
3647
  readonly transactionIndex: Compact<u64>;
3642
3648
  readonly nodeIndexes: Vec<u16>;
3643
3649
  }
3644
3650
 
3645
- /** @name ArgonPrimitivesEthereumEthereumReceiptLog (333) */
3651
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLog (335) */
3646
3652
  interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
3647
3653
  readonly transactionIndex: Compact<u64>;
3648
3654
  readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
3649
3655
  }
3650
3656
 
3651
- /** @name ArgonPrimitivesEthereumEthereumLog (334) */
3657
+ /** @name ArgonPrimitivesEthereumEthereumLog (336) */
3652
3658
  interface ArgonPrimitivesEthereumEthereumLog extends Struct {
3653
3659
  readonly address: H160;
3654
3660
  readonly topics: Vec<H256>;
3655
3661
  readonly data: Bytes;
3656
3662
  }
3657
3663
 
3658
- /** @name PalletBootstrapCall (339) */
3664
+ /** @name PalletBootstrapCall (341) */
3659
3665
  interface PalletBootstrapCall extends Enum {
3660
3666
  readonly isSetRecoveryPayload: boolean;
3661
3667
  readonly asSetRecoveryPayload: {
@@ -3671,12 +3677,12 @@ declare module '@polkadot/types/lookup' {
3671
3677
  readonly type: 'SetRecoveryPayload' | 'SetEndpoint';
3672
3678
  }
3673
3679
 
3674
- /** @name PalletBootstrapRecoveryProof (340) */
3680
+ /** @name PalletBootstrapRecoveryProof (342) */
3675
3681
  interface PalletBootstrapRecoveryProof extends Struct {
3676
3682
  readonly signature: U8aFixed;
3677
3683
  }
3678
3684
 
3679
- /** @name PalletMultisigError (342) */
3685
+ /** @name PalletMultisigError (344) */
3680
3686
  interface PalletMultisigError extends Enum {
3681
3687
  readonly isMinimumThreshold: boolean;
3682
3688
  readonly isAlreadyApproved: boolean;
@@ -3709,21 +3715,21 @@ declare module '@polkadot/types/lookup' {
3709
3715
  | 'AlreadyStored';
3710
3716
  }
3711
3717
 
3712
- /** @name PalletProxyProxyDefinition (345) */
3718
+ /** @name PalletProxyProxyDefinition (347) */
3713
3719
  interface PalletProxyProxyDefinition extends Struct {
3714
3720
  readonly delegate: AccountId32;
3715
3721
  readonly proxyType: ArgonRuntimeProxyType;
3716
3722
  readonly delay: u32;
3717
3723
  }
3718
3724
 
3719
- /** @name PalletProxyAnnouncement (349) */
3725
+ /** @name PalletProxyAnnouncement (351) */
3720
3726
  interface PalletProxyAnnouncement extends Struct {
3721
3727
  readonly real: AccountId32;
3722
3728
  readonly callHash: H256;
3723
3729
  readonly height: u32;
3724
3730
  }
3725
3731
 
3726
- /** @name PalletProxyError (351) */
3732
+ /** @name PalletProxyError (353) */
3727
3733
  interface PalletProxyError extends Enum {
3728
3734
  readonly isTooMany: boolean;
3729
3735
  readonly isNotFound: boolean;
@@ -3744,16 +3750,16 @@ declare module '@polkadot/types/lookup' {
3744
3750
  | 'NoSelfProxy';
3745
3751
  }
3746
3752
 
3747
- /** @name ArgonPrimitivesTickTicker (352) */
3753
+ /** @name ArgonPrimitivesTickTicker (354) */
3748
3754
  interface ArgonPrimitivesTickTicker extends Struct {
3749
3755
  readonly tickDurationMillis: Compact<u64>;
3750
3756
  readonly channelHoldExpirationTicks: Compact<u64>;
3751
3757
  }
3752
3758
 
3753
- /** @name PalletTicksError (354) */
3759
+ /** @name PalletTicksError (356) */
3754
3760
  type PalletTicksError = Null;
3755
3761
 
3756
- /** @name PalletMiningSlotMinerNonceScoring (357) */
3762
+ /** @name PalletMiningSlotMinerNonceScoring (359) */
3757
3763
  interface PalletMiningSlotMinerNonceScoring extends Struct {
3758
3764
  readonly nonce: U256;
3759
3765
  readonly lastWinBlock: Option<u32>;
@@ -3761,7 +3767,7 @@ declare module '@polkadot/types/lookup' {
3761
3767
  readonly frameStartBlocksWonSurplus: i16;
3762
3768
  }
3763
3769
 
3764
- /** @name ArgonPrimitivesBlockSealMiningBidStats (369) */
3770
+ /** @name ArgonPrimitivesBlockSealMiningBidStats (371) */
3765
3771
  interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
3766
3772
  readonly bidsCount: u32;
3767
3773
  readonly bidAmountMin: u128;
@@ -3769,14 +3775,14 @@ declare module '@polkadot/types/lookup' {
3769
3775
  readonly bidAmountSum: u128;
3770
3776
  }
3771
3777
 
3772
- /** @name ArgonPrimitivesBlockSealMiningSlotConfig (373) */
3778
+ /** @name ArgonPrimitivesBlockSealMiningSlotConfig (375) */
3773
3779
  interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
3774
3780
  readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
3775
3781
  readonly ticksBetweenSlots: Compact<u64>;
3776
3782
  readonly slotBiddingStartAfterTicks: Compact<u64>;
3777
3783
  }
3778
3784
 
3779
- /** @name PalletMiningSlotError (383) */
3785
+ /** @name PalletMiningSlotError (385) */
3780
3786
  interface PalletMiningSlotError extends Enum {
3781
3787
  readonly isSlotNotTakingBids: boolean;
3782
3788
  readonly isTooManyBlockRegistrants: boolean;
@@ -3803,7 +3809,7 @@ declare module '@polkadot/types/lookup' {
3803
3809
  | 'UnrecoverableHold';
3804
3810
  }
3805
3811
 
3806
- /** @name ArgonPrimitivesBitcoinUtxoValue (384) */
3812
+ /** @name ArgonPrimitivesBitcoinUtxoValue (386) */
3807
3813
  interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
3808
3814
  readonly utxoId: u64;
3809
3815
  readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
@@ -3812,7 +3818,7 @@ declare module '@polkadot/types/lookup' {
3812
3818
  readonly watchForSpentUntilHeight: Compact<u64>;
3813
3819
  }
3814
3820
 
3815
- /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (385) */
3821
+ /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (387) */
3816
3822
  interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
3817
3823
  readonly isP2wsh: boolean;
3818
3824
  readonly asP2wsh: {
@@ -3821,7 +3827,7 @@ declare module '@polkadot/types/lookup' {
3821
3827
  readonly type: 'P2wsh';
3822
3828
  }
3823
3829
 
3824
- /** @name ArgonPrimitivesBitcoinBitcoinNetwork (394) */
3830
+ /** @name ArgonPrimitivesBitcoinBitcoinNetwork (396) */
3825
3831
  interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
3826
3832
  readonly isBitcoin: boolean;
3827
3833
  readonly isTestnet: boolean;
@@ -3830,7 +3836,7 @@ declare module '@polkadot/types/lookup' {
3830
3836
  readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
3831
3837
  }
3832
3838
 
3833
- /** @name PalletBitcoinUtxosError (395) */
3839
+ /** @name PalletBitcoinUtxosError (397) */
3834
3840
  interface PalletBitcoinUtxosError extends Enum {
3835
3841
  readonly isNoPermissions: boolean;
3836
3842
  readonly isNoBitcoinConfirmedBlock: boolean;
@@ -3865,12 +3871,10 @@ declare module '@polkadot/types/lookup' {
3865
3871
  | 'LockAlreadyFunded';
3866
3872
  }
3867
3873
 
3868
- /** @name ArgonPrimitivesVault (396) */
3874
+ /** @name ArgonPrimitivesVault (398) */
3869
3875
  interface ArgonPrimitivesVault extends Struct {
3870
3876
  readonly operatorAccountId: AccountId32;
3871
3877
  readonly delegateAccountId: Option<AccountId32>;
3872
- readonly name: Option<Bytes>;
3873
- readonly lastNameChangeTick: Option<u64>;
3874
3878
  readonly securitization: Compact<u128>;
3875
3879
  readonly securitizationTarget: Compact<u128>;
3876
3880
  readonly securitizationLocked: Compact<u128>;
@@ -3889,13 +3893,13 @@ declare module '@polkadot/types/lookup' {
3889
3893
  readonly operationalMinimumReleaseTick: Option<u64>;
3890
3894
  }
3891
3895
 
3892
- /** @name ArgonPrimitivesVaultVaultArgonotCommitment (403) */
3896
+ /** @name ArgonPrimitivesVaultVaultArgonotCommitment (405) */
3893
3897
  interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
3894
3898
  readonly committedMicronots: Compact<u128>;
3895
3899
  readonly encumberedMicronots: Compact<u128>;
3896
3900
  }
3897
3901
 
3898
- /** @name ArgonPrimitivesBitcoinBitcoinXPub (405) */
3902
+ /** @name ArgonPrimitivesBitcoinBitcoinXPub (407) */
3899
3903
  interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
3900
3904
  readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
3901
3905
  readonly depth: Compact<u8>;
@@ -3905,14 +3909,14 @@ declare module '@polkadot/types/lookup' {
3905
3909
  readonly network: ArgonPrimitivesBitcoinNetworkKind;
3906
3910
  }
3907
3911
 
3908
- /** @name ArgonPrimitivesBitcoinNetworkKind (407) */
3912
+ /** @name ArgonPrimitivesBitcoinNetworkKind (409) */
3909
3913
  interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
3910
3914
  readonly isMain: boolean;
3911
3915
  readonly isTest: boolean;
3912
3916
  readonly type: 'Main' | 'Test';
3913
3917
  }
3914
3918
 
3915
- /** @name PalletVaultsVaultFrameRevenue (416) */
3919
+ /** @name PalletVaultsVaultFrameRevenue (418) */
3916
3920
  interface PalletVaultsVaultFrameRevenue extends Struct {
3917
3921
  readonly frameId: Compact<u64>;
3918
3922
  readonly bitcoinLockFeeRevenue: Compact<u128>;
@@ -3932,15 +3936,7 @@ declare module '@polkadot/types/lookup' {
3932
3936
  readonly uncollectedRevenue: Compact<u128>;
3933
3937
  }
3934
3938
 
3935
- /** @name PalletVaultsRecentCapacityDrop (419) */
3936
- interface PalletVaultsRecentCapacityDrop extends Struct {
3937
- readonly blockNumber: Compact<u32>;
3938
- readonly availableBeforeDrop: Compact<u128>;
3939
- readonly availableAfterDrop: Compact<u128>;
3940
- readonly noFeeFailuresUsed: Compact<u32>;
3941
- }
3942
-
3943
- /** @name PalletVaultsError (421) */
3939
+ /** @name PalletVaultsError (420) */
3944
3940
  interface PalletVaultsError extends Enum {
3945
3941
  readonly isNoMoreVaultIds: boolean;
3946
3942
  readonly isInsufficientFunds: boolean;
@@ -3969,7 +3965,6 @@ declare module '@polkadot/types/lookup' {
3969
3965
  readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
3970
3966
  readonly isFundingChangeAlreadyScheduled: boolean;
3971
3967
  readonly isInvalidBondSharingTerms: boolean;
3972
- readonly isInvalidVaultName: boolean;
3973
3968
  readonly isPendingCosignsBeforeCollect: boolean;
3974
3969
  readonly isPendingOrphanedUtxoCosignsBeforeCollect: boolean;
3975
3970
  readonly isOverdueCollectBlockersBeforeCollect: boolean;
@@ -4004,7 +3999,6 @@ declare module '@polkadot/types/lookup' {
4004
3999
  | 'UnableToGenerateVaultBitcoinPubkey'
4005
4000
  | 'FundingChangeAlreadyScheduled'
4006
4001
  | 'InvalidBondSharingTerms'
4007
- | 'InvalidVaultName'
4008
4002
  | 'PendingCosignsBeforeCollect'
4009
4003
  | 'PendingOrphanedUtxoCosignsBeforeCollect'
4010
4004
  | 'OverdueCollectBlockersBeforeCollect'
@@ -4013,7 +4007,7 @@ declare module '@polkadot/types/lookup' {
4013
4007
  | 'CommittedArgonotsBelowEncumberedBacking';
4014
4008
  }
4015
4009
 
4016
- /** @name PalletBitcoinLocksLockedBitcoin (422) */
4010
+ /** @name PalletBitcoinLocksLockedBitcoin (421) */
4017
4011
  interface PalletBitcoinLocksLockedBitcoin extends Struct {
4018
4012
  readonly vaultId: Compact<u32>;
4019
4013
  readonly liquidityPromised: Compact<u128>;
@@ -4038,7 +4032,7 @@ declare module '@polkadot/types/lookup' {
4038
4032
  readonly createdAtArgonBlock: Compact<u32>;
4039
4033
  }
4040
4034
 
4041
- /** @name PalletBitcoinLocksLockReleaseRequest (426) */
4035
+ /** @name PalletBitcoinLocksLockReleaseRequest (425) */
4042
4036
  interface PalletBitcoinLocksLockReleaseRequest extends Struct {
4043
4037
  readonly utxoId: Compact<u64>;
4044
4038
  readonly vaultId: Compact<u32>;
@@ -4048,7 +4042,7 @@ declare module '@polkadot/types/lookup' {
4048
4042
  readonly redemptionAmount: Compact<u128>;
4049
4043
  }
4050
4044
 
4051
- /** @name PalletBitcoinLocksOrphanedUtxo (428) */
4045
+ /** @name PalletBitcoinLocksOrphanedUtxo (427) */
4052
4046
  interface PalletBitcoinLocksOrphanedUtxo extends Struct {
4053
4047
  readonly utxoId: Compact<u64>;
4054
4048
  readonly vaultId: Compact<u32>;
@@ -4057,14 +4051,14 @@ declare module '@polkadot/types/lookup' {
4057
4051
  readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
4058
4052
  }
4059
4053
 
4060
- /** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (430) */
4054
+ /** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (429) */
4061
4055
  interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
4062
4056
  readonly bitcoinNetworkFee: u64;
4063
4057
  readonly toScriptPubkey: Bytes;
4064
4058
  readonly createdAtArgonBlockNumber: u32;
4065
4059
  }
4066
4060
 
4067
- /** @name PalletBitcoinLocksError (437) */
4061
+ /** @name PalletBitcoinLocksError (436) */
4068
4062
  interface PalletBitcoinLocksError extends Enum {
4069
4063
  readonly isInsufficientFunds: boolean;
4070
4064
  readonly isInsufficientVaultFunds: boolean;
@@ -4098,6 +4092,13 @@ declare module '@polkadot/types/lookup' {
4098
4092
  readonly isLockPendingFunding: boolean;
4099
4093
  readonly isOverflowError: boolean;
4100
4094
  readonly isIneligibleMicrogonRateRequested: boolean;
4095
+ readonly isFeeCouponWrongVault: boolean;
4096
+ readonly isFeeCouponWrongChain: boolean;
4097
+ readonly isFeeCouponWrongAccount: boolean;
4098
+ readonly isFeeCouponExpired: boolean;
4099
+ readonly isInvalidFeeCouponSignature: boolean;
4100
+ readonly isFeeCouponAlreadyUsed: boolean;
4101
+ readonly isFeeCouponOnlyForInitialization: boolean;
4101
4102
  readonly isOrphanedUtxoFundingConflict: boolean;
4102
4103
  readonly isOrphanedUtxoReleaseRequested: boolean;
4103
4104
  readonly isFundingUtxoCannotBeReleased: boolean;
@@ -4134,13 +4135,20 @@ declare module '@polkadot/types/lookup' {
4134
4135
  | 'LockPendingFunding'
4135
4136
  | 'OverflowError'
4136
4137
  | 'IneligibleMicrogonRateRequested'
4138
+ | 'FeeCouponWrongVault'
4139
+ | 'FeeCouponWrongChain'
4140
+ | 'FeeCouponWrongAccount'
4141
+ | 'FeeCouponExpired'
4142
+ | 'InvalidFeeCouponSignature'
4143
+ | 'FeeCouponAlreadyUsed'
4144
+ | 'FeeCouponOnlyForInitialization'
4137
4145
  | 'OrphanedUtxoFundingConflict'
4138
4146
  | 'OrphanedUtxoReleaseRequested'
4139
4147
  | 'FundingUtxoCannotBeReleased'
4140
4148
  | 'MaxOrphanedUtxoReleaseRequestsExceeded';
4141
4149
  }
4142
4150
 
4143
- /** @name ArgonPrimitivesVaultVaultError (438) */
4151
+ /** @name ArgonPrimitivesVaultVaultError (437) */
4144
4152
  interface ArgonPrimitivesVaultVaultError extends Enum {
4145
4153
  readonly isVaultClosed: boolean;
4146
4154
  readonly isAccountWouldBeBelowMinimum: boolean;
@@ -4171,7 +4179,7 @@ declare module '@polkadot/types/lookup' {
4171
4179
  | 'CommittedArgonotsBelowEncumberedBacking';
4172
4180
  }
4173
4181
 
4174
- /** @name PalletNotariesError (450) */
4182
+ /** @name PalletNotariesError (449) */
4175
4183
  interface PalletNotariesError extends Enum {
4176
4184
  readonly isProposalNotFound: boolean;
4177
4185
  readonly isMaxNotariesExceeded: boolean;
@@ -4194,7 +4202,7 @@ declare module '@polkadot/types/lookup' {
4194
4202
  | 'InvalidNotary';
4195
4203
  }
4196
4204
 
4197
- /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (454) */
4205
+ /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (453) */
4198
4206
  interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
4199
4207
  readonly notebookNumber: Compact<u32>;
4200
4208
  readonly tick: Compact<u64>;
@@ -4203,7 +4211,7 @@ declare module '@polkadot/types/lookup' {
4203
4211
  readonly parentSecret: Option<H256>;
4204
4212
  }
4205
4213
 
4206
- /** @name PalletNotebookError (457) */
4214
+ /** @name PalletNotebookError (456) */
4207
4215
  interface PalletNotebookError extends Enum {
4208
4216
  readonly isDuplicateNotebookNumber: boolean;
4209
4217
  readonly isMissingNotebookNumber: boolean;
@@ -4238,7 +4246,7 @@ declare module '@polkadot/types/lookup' {
4238
4246
  | 'InvalidNotebookSubmissionTick';
4239
4247
  }
4240
4248
 
4241
- /** @name PalletLocalchainTransferQueuedTransferOut (458) */
4249
+ /** @name PalletLocalchainTransferQueuedTransferOut (457) */
4242
4250
  interface PalletLocalchainTransferQueuedTransferOut extends Struct {
4243
4251
  readonly accountId: AccountId32;
4244
4252
  readonly amount: u128;
@@ -4246,10 +4254,10 @@ declare module '@polkadot/types/lookup' {
4246
4254
  readonly notaryId: u32;
4247
4255
  }
4248
4256
 
4249
- /** @name FrameSupportPalletId (460) */
4257
+ /** @name FrameSupportPalletId (459) */
4250
4258
  interface FrameSupportPalletId extends U8aFixed {}
4251
4259
 
4252
- /** @name PalletLocalchainTransferError (461) */
4260
+ /** @name PalletLocalchainTransferError (460) */
4253
4261
  interface PalletLocalchainTransferError extends Enum {
4254
4262
  readonly isMaxBlockTransfersExceeded: boolean;
4255
4263
  readonly isInsufficientFunds: boolean;
@@ -4270,7 +4278,7 @@ declare module '@polkadot/types/lookup' {
4270
4278
  | 'NoAvailableTransferId';
4271
4279
  }
4272
4280
 
4273
- /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (465) */
4281
+ /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (464) */
4274
4282
  interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
4275
4283
  readonly notaryId: Compact<u32>;
4276
4284
  readonly notebookNumber: Compact<u32>;
@@ -4279,13 +4287,13 @@ declare module '@polkadot/types/lookup' {
4279
4287
  readonly blockVotingPower: Compact<u128>;
4280
4288
  }
4281
4289
 
4282
- /** @name PalletBlockSealSpecError (470) */
4290
+ /** @name PalletBlockSealSpecError (469) */
4283
4291
  interface PalletBlockSealSpecError extends Enum {
4284
4292
  readonly isMaxNotebooksAtTickExceeded: boolean;
4285
4293
  readonly type: 'MaxNotebooksAtTickExceeded';
4286
4294
  }
4287
4295
 
4288
- /** @name PalletDomainsError (472) */
4296
+ /** @name PalletDomainsError (471) */
4289
4297
  interface PalletDomainsError extends Enum {
4290
4298
  readonly isDomainNotRegistered: boolean;
4291
4299
  readonly isNotDomainOwner: boolean;
@@ -4300,28 +4308,28 @@ declare module '@polkadot/types/lookup' {
4300
4308
  | 'AccountDecodingError';
4301
4309
  }
4302
4310
 
4303
- /** @name PalletPriceIndexEthereumPriceFrameAccumulator (474) */
4311
+ /** @name PalletPriceIndexEthereumPriceFrameAccumulator (473) */
4304
4312
  interface PalletPriceIndexEthereumPriceFrameAccumulator extends Struct {
4305
4313
  readonly totalUsdPrice: u128;
4306
4314
  readonly totalWeiPerGas: Compact<u128>;
4307
4315
  readonly sampleCount: Compact<u32>;
4308
4316
  }
4309
4317
 
4310
- /** @name PalletPriceIndexCpiMeasurementBucket (479) */
4318
+ /** @name PalletPriceIndexCpiMeasurementBucket (478) */
4311
4319
  interface PalletPriceIndexCpiMeasurementBucket extends Struct {
4312
4320
  readonly tickRange: ITuple<[u64, u64]>;
4313
4321
  readonly totalCpi: i128;
4314
4322
  readonly measurementsCount: u32;
4315
4323
  }
4316
4324
 
4317
- /** @name PalletPriceIndexArgonotAverageFrameAccumulator (483) */
4325
+ /** @name PalletPriceIndexArgonotAverageFrameAccumulator (482) */
4318
4326
  interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
4319
4327
  readonly frameId: Compact<u64>;
4320
4328
  readonly totalMicrogonsPerArgonot: Compact<u128>;
4321
4329
  readonly sampleCount: Compact<u32>;
4322
4330
  }
4323
4331
 
4324
- /** @name PalletPriceIndexError (484) */
4332
+ /** @name PalletPriceIndexError (483) */
4325
4333
  interface PalletPriceIndexError extends Enum {
4326
4334
  readonly isNotAuthorizedOperator: boolean;
4327
4335
  readonly isMissingValue: boolean;
@@ -4336,7 +4344,7 @@ declare module '@polkadot/types/lookup' {
4336
4344
  | 'InvalidEthereumPrices';
4337
4345
  }
4338
4346
 
4339
- /** @name PalletGrandpaStoredState (485) */
4347
+ /** @name PalletGrandpaStoredState (484) */
4340
4348
  interface PalletGrandpaStoredState extends Enum {
4341
4349
  readonly isLive: boolean;
4342
4350
  readonly isPendingPause: boolean;
@@ -4353,7 +4361,7 @@ declare module '@polkadot/types/lookup' {
4353
4361
  readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
4354
4362
  }
4355
4363
 
4356
- /** @name PalletGrandpaStoredPendingChange (486) */
4364
+ /** @name PalletGrandpaStoredPendingChange (485) */
4357
4365
  interface PalletGrandpaStoredPendingChange extends Struct {
4358
4366
  readonly scheduledAt: u32;
4359
4367
  readonly delay: u32;
@@ -4361,7 +4369,7 @@ declare module '@polkadot/types/lookup' {
4361
4369
  readonly forced: Option<u32>;
4362
4370
  }
4363
4371
 
4364
- /** @name PalletGrandpaError (488) */
4372
+ /** @name PalletGrandpaError (487) */
4365
4373
  interface PalletGrandpaError extends Enum {
4366
4374
  readonly isPauseFailed: boolean;
4367
4375
  readonly isResumeFailed: boolean;
@@ -4380,14 +4388,14 @@ declare module '@polkadot/types/lookup' {
4380
4388
  | 'DuplicateOffenceReport';
4381
4389
  }
4382
4390
 
4383
- /** @name ArgonPrimitivesProvidersBlockSealerInfo (489) */
4391
+ /** @name ArgonPrimitivesProvidersBlockSealerInfo (488) */
4384
4392
  interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
4385
4393
  readonly blockAuthorAccountId: AccountId32;
4386
4394
  readonly blockVoteRewardsAccount: Option<AccountId32>;
4387
4395
  readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
4388
4396
  }
4389
4397
 
4390
- /** @name PalletBlockSealError (491) */
4398
+ /** @name PalletBlockSealError (490) */
4391
4399
  interface PalletBlockSealError extends Enum {
4392
4400
  readonly isInvalidVoteSealStrength: boolean;
4393
4401
  readonly isInvalidSubmitter: boolean;
@@ -4434,10 +4442,10 @@ declare module '@polkadot/types/lookup' {
4434
4442
  | 'DuplicateVoteBlockAtTick';
4435
4443
  }
4436
4444
 
4437
- /** @name PalletBlockRewardsError (495) */
4445
+ /** @name PalletBlockRewardsError (494) */
4438
4446
  type PalletBlockRewardsError = Null;
4439
4447
 
4440
- /** @name PalletMintPendingMintUtxo (496) */
4448
+ /** @name PalletMintPendingMintUtxo (495) */
4441
4449
  interface PalletMintPendingMintUtxo extends Struct {
4442
4450
  readonly utxoId: Compact<u64>;
4443
4451
  readonly accountId: AccountId32;
@@ -4445,34 +4453,34 @@ declare module '@polkadot/types/lookup' {
4445
4453
  readonly maxAmountPerFrame: Compact<u128>;
4446
4454
  }
4447
4455
 
4448
- /** @name PalletMintMintQueueCursor (498) */
4456
+ /** @name PalletMintMintQueueCursor (497) */
4449
4457
  interface PalletMintMintQueueCursor extends Struct {
4450
4458
  readonly payoutStartIndex: Compact<u64>;
4451
4459
  readonly payoutCursorIndex: Compact<u64>;
4452
4460
  readonly payoutCursorFrameId: Option<u64>;
4453
4461
  }
4454
4462
 
4455
- /** @name PalletMintMintAction (501) */
4463
+ /** @name PalletMintMintAction (500) */
4456
4464
  interface PalletMintMintAction extends Struct {
4457
4465
  readonly argonBurned: u128;
4458
4466
  readonly argonMinted: u128;
4459
4467
  readonly bitcoinMinted: u128;
4460
4468
  }
4461
4469
 
4462
- /** @name PalletMintError (503) */
4470
+ /** @name PalletMintError (502) */
4463
4471
  interface PalletMintError extends Enum {
4464
4472
  readonly isTooManyPendingMints: boolean;
4465
4473
  readonly type: 'TooManyPendingMints';
4466
4474
  }
4467
4475
 
4468
- /** @name PalletBalancesBalanceLock (505) */
4476
+ /** @name PalletBalancesBalanceLock (504) */
4469
4477
  interface PalletBalancesBalanceLock extends Struct {
4470
4478
  readonly id: U8aFixed;
4471
4479
  readonly amount: u128;
4472
4480
  readonly reasons: PalletBalancesReasons;
4473
4481
  }
4474
4482
 
4475
- /** @name PalletBalancesReasons (506) */
4483
+ /** @name PalletBalancesReasons (505) */
4476
4484
  interface PalletBalancesReasons extends Enum {
4477
4485
  readonly isFee: boolean;
4478
4486
  readonly isMisc: boolean;
@@ -4480,38 +4488,38 @@ declare module '@polkadot/types/lookup' {
4480
4488
  readonly type: 'Fee' | 'Misc' | 'All';
4481
4489
  }
4482
4490
 
4483
- /** @name PalletBalancesReserveData (509) */
4491
+ /** @name PalletBalancesReserveData (508) */
4484
4492
  interface PalletBalancesReserveData extends Struct {
4485
4493
  readonly id: U8aFixed;
4486
4494
  readonly amount: u128;
4487
4495
  }
4488
4496
 
4489
- /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (512) */
4497
+ /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (511) */
4490
4498
  interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
4491
4499
  readonly id: ArgonRuntimeRuntimeHoldReason;
4492
4500
  readonly amount: u128;
4493
4501
  }
4494
4502
 
4495
- /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (515) */
4503
+ /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (514) */
4496
4504
  interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
4497
4505
  readonly id: ArgonRuntimeRuntimeFreezeReason;
4498
4506
  readonly amount: u128;
4499
4507
  }
4500
4508
 
4501
- /** @name ArgonRuntimeRuntimeFreezeReason (516) */
4509
+ /** @name ArgonRuntimeRuntimeFreezeReason (515) */
4502
4510
  interface ArgonRuntimeRuntimeFreezeReason extends Enum {
4503
4511
  readonly isBlockRewards: boolean;
4504
4512
  readonly asBlockRewards: PalletBlockRewardsFreezeReason;
4505
4513
  readonly type: 'BlockRewards';
4506
4514
  }
4507
4515
 
4508
- /** @name PalletBlockRewardsFreezeReason (517) */
4516
+ /** @name PalletBlockRewardsFreezeReason (516) */
4509
4517
  interface PalletBlockRewardsFreezeReason extends Enum {
4510
4518
  readonly isMaturationPeriod: boolean;
4511
4519
  readonly type: 'MaturationPeriod';
4512
4520
  }
4513
4521
 
4514
- /** @name PalletBalancesError (519) */
4522
+ /** @name PalletBalancesError (518) */
4515
4523
  interface PalletBalancesError extends Enum {
4516
4524
  readonly isVestingBalance: boolean;
4517
4525
  readonly isLiquidityRestrictions: boolean;
@@ -4540,7 +4548,7 @@ declare module '@polkadot/types/lookup' {
4540
4548
  | 'DeltaZero';
4541
4549
  }
4542
4550
 
4543
- /** @name PalletTxPauseError (521) */
4551
+ /** @name PalletTxPauseError (520) */
4544
4552
  interface PalletTxPauseError extends Enum {
4545
4553
  readonly isIsPaused: boolean;
4546
4554
  readonly isIsUnpaused: boolean;
@@ -4549,40 +4557,40 @@ declare module '@polkadot/types/lookup' {
4549
4557
  readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
4550
4558
  }
4551
4559
 
4552
- /** @name PalletTransactionPaymentReleases (522) */
4560
+ /** @name PalletTransactionPaymentReleases (521) */
4553
4561
  interface PalletTransactionPaymentReleases extends Enum {
4554
4562
  readonly isV1Ancient: boolean;
4555
4563
  readonly isV2: boolean;
4556
4564
  readonly type: 'V1Ancient' | 'V2';
4557
4565
  }
4558
4566
 
4559
- /** @name FrameSupportStorageNoDrop (523) */
4567
+ /** @name FrameSupportStorageNoDrop (522) */
4560
4568
  interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
4561
4569
 
4562
- /** @name FrameSupportTokensFungibleImbalance (524) */
4570
+ /** @name FrameSupportTokensFungibleImbalance (523) */
4563
4571
  interface FrameSupportTokensFungibleImbalance extends Struct {
4564
4572
  readonly amount: u128;
4565
4573
  }
4566
4574
 
4567
- /** @name PalletUtilityError (525) */
4575
+ /** @name PalletUtilityError (524) */
4568
4576
  interface PalletUtilityError extends Enum {
4569
4577
  readonly isTooManyCalls: boolean;
4570
4578
  readonly type: 'TooManyCalls';
4571
4579
  }
4572
4580
 
4573
- /** @name PalletSudoError (526) */
4581
+ /** @name PalletSudoError (525) */
4574
4582
  interface PalletSudoError extends Enum {
4575
4583
  readonly isRequireSudo: boolean;
4576
4584
  readonly type: 'RequireSudo';
4577
4585
  }
4578
4586
 
4579
- /** @name PalletTreasuryFrameVaultCapital (527) */
4587
+ /** @name PalletTreasuryFrameVaultCapital (526) */
4580
4588
  interface PalletTreasuryFrameVaultCapital extends Struct {
4581
4589
  readonly frameId: Compact<u64>;
4582
4590
  readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
4583
4591
  }
4584
4592
 
4585
- /** @name PalletTreasuryVaultCapital (529) */
4593
+ /** @name PalletTreasuryVaultCapital (528) */
4586
4594
  interface PalletTreasuryVaultCapital extends Struct {
4587
4595
  readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
4588
4596
  readonly backfillBondsEligible: Compact<u32>;
@@ -4590,26 +4598,26 @@ declare module '@polkadot/types/lookup' {
4590
4598
  readonly eligibleBonds: Compact<u32>;
4591
4599
  }
4592
4600
 
4593
- /** @name PalletTreasuryBondLotAllocation (531) */
4601
+ /** @name PalletTreasuryBondLotAllocation (530) */
4594
4602
  interface PalletTreasuryBondLotAllocation extends Struct {
4595
4603
  readonly bondLotId: Compact<u64>;
4596
4604
  readonly prorata: u128;
4597
4605
  }
4598
4606
 
4599
- /** @name PalletTreasuryFrameArgonotBondParticipants (536) */
4607
+ /** @name PalletTreasuryFrameArgonotBondParticipants (535) */
4600
4608
  interface PalletTreasuryFrameArgonotBondParticipants extends Struct {
4601
4609
  readonly frameId: Compact<u64>;
4602
4610
  readonly totalBonds: Compact<u32>;
4603
4611
  readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
4604
4612
  }
4605
4613
 
4606
- /** @name PalletTreasuryBondLotSummary (538) */
4614
+ /** @name PalletTreasuryBondLotSummary (537) */
4607
4615
  interface PalletTreasuryBondLotSummary extends Struct {
4608
4616
  readonly bondLotId: Compact<u64>;
4609
4617
  readonly bonds: Compact<u32>;
4610
4618
  }
4611
4619
 
4612
- /** @name PalletTreasuryBondLot (540) */
4620
+ /** @name PalletTreasuryBondLot (539) */
4613
4621
  interface PalletTreasuryBondLot extends Struct {
4614
4622
  readonly owner: AccountId32;
4615
4623
  readonly program: PalletTreasuryBondProgram;
@@ -4624,7 +4632,7 @@ declare module '@polkadot/types/lookup' {
4624
4632
  readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
4625
4633
  }
4626
4634
 
4627
- /** @name PalletTreasuryBondProgram (541) */
4635
+ /** @name PalletTreasuryBondProgram (540) */
4628
4636
  interface PalletTreasuryBondProgram extends Enum {
4629
4637
  readonly isVault: boolean;
4630
4638
  readonly asVault: {
@@ -4636,14 +4644,14 @@ declare module '@polkadot/types/lookup' {
4636
4644
  readonly type: 'Vault' | 'Argonot';
4637
4645
  }
4638
4646
 
4639
- /** @name PalletTreasuryVaultBondState (544) */
4647
+ /** @name PalletTreasuryVaultBondState (543) */
4640
4648
  interface PalletTreasuryVaultBondState extends Struct {
4641
4649
  readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
4642
4650
  readonly backfillBonds: Compact<u32>;
4643
4651
  readonly backfillBondsReserved: Compact<u32>;
4644
4652
  }
4645
4653
 
4646
- /** @name PalletTreasuryError (546) */
4654
+ /** @name PalletTreasuryError (545) */
4647
4655
  interface PalletTreasuryError extends Enum {
4648
4656
  readonly isBondPurchaseRejected: boolean;
4649
4657
  readonly isVaultNotAcceptingBondPurchases: boolean;
@@ -4688,18 +4696,20 @@ declare module '@polkadot/types/lookup' {
4688
4696
  | 'NoPermissions';
4689
4697
  }
4690
4698
 
4691
- /** @name PalletFeeControlError (547) */
4699
+ /** @name PalletFeeControlError (546) */
4692
4700
  interface PalletFeeControlError extends Enum {
4693
4701
  readonly isSponsoredFeeTooHigh: boolean;
4694
4702
  readonly type: 'SponsoredFeeTooHigh';
4695
4703
  }
4696
4704
 
4697
- /** @name PalletOperationalAccountsOperationalAccount (548) */
4705
+ /** @name PalletOperationalAccountsOperationalAccount (547) */
4698
4706
  interface PalletOperationalAccountsOperationalAccount extends Struct {
4699
4707
  readonly vaultAccount: AccountId32;
4700
4708
  readonly miningAccount: AccountId32;
4701
4709
  readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
4702
4710
  readonly upstreamAccount: Option<AccountId32>;
4711
+ readonly name: Option<Bytes>;
4712
+ readonly lastNameChangeTick: Option<u64>;
4703
4713
  readonly uniswapArgonTransfersInAmount: u128;
4704
4714
  readonly accountBitcoinAmount: u128;
4705
4715
  readonly accountVaultBondAmount: u128;
@@ -4709,7 +4719,6 @@ declare module '@polkadot/types/lookup' {
4709
4719
  readonly miningSeatAccrual: Compact<u32>;
4710
4720
  readonly miningSeatAppliedTotal: Compact<u32>;
4711
4721
  readonly operationalCertificationsCount: Compact<u32>;
4712
- readonly accessCodePending: bool;
4713
4722
  readonly availableAccessCodes: Compact<u32>;
4714
4723
  readonly rewardsEarnedCount: Compact<u32>;
4715
4724
  readonly rewardsEarnedAmount: u128;
@@ -4717,13 +4726,13 @@ declare module '@polkadot/types/lookup' {
4717
4726
  readonly isOperationallyCertified: bool;
4718
4727
  }
4719
4728
 
4720
- /** @name PalletOperationalAccountsRewardsConfig (549) */
4729
+ /** @name PalletOperationalAccountsRewardsConfig (548) */
4721
4730
  interface PalletOperationalAccountsRewardsConfig extends Struct {
4722
4731
  readonly operationalCertificationReward: Compact<u128>;
4723
4732
  readonly operationalCertificationBonusReward: Compact<u128>;
4724
4733
  }
4725
4734
 
4726
- /** @name PalletOperationalAccountsError (550) */
4735
+ /** @name PalletOperationalAccountsError (549) */
4727
4736
  interface PalletOperationalAccountsError extends Enum {
4728
4737
  readonly isAlreadyRegistered: boolean;
4729
4738
  readonly isInvalidRegistrationSubmitter: boolean;
@@ -4744,6 +4753,7 @@ declare module '@polkadot/types/lookup' {
4744
4753
  readonly isAlreadyOperationallyCertified: boolean;
4745
4754
  readonly isNotEligibleForActivation: boolean;
4746
4755
  readonly isUpstreamHasNoAvailableAccessCodes: boolean;
4756
+ readonly isInvalidName: boolean;
4747
4757
  readonly type:
4748
4758
  | 'AlreadyRegistered'
4749
4759
  | 'InvalidRegistrationSubmitter'
@@ -4763,15 +4773,16 @@ declare module '@polkadot/types/lookup' {
4763
4773
  | 'TreasuryInsufficientFunds'
4764
4774
  | 'AlreadyOperationallyCertified'
4765
4775
  | 'NotEligibleForActivation'
4766
- | 'UpstreamHasNoAvailableAccessCodes';
4776
+ | 'UpstreamHasNoAvailableAccessCodes'
4777
+ | 'InvalidName';
4767
4778
  }
4768
4779
 
4769
- /** @name PalletEthereumVerifierFinalizedBeaconHeaderState (551) */
4780
+ /** @name PalletEthereumVerifierFinalizedBeaconHeaderState (550) */
4770
4781
  interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
4771
4782
  readonly slot: Compact<u64>;
4772
4783
  }
4773
4784
 
4774
- /** @name PalletEthereumVerifierExecutionHeaderAnchor (552) */
4785
+ /** @name PalletEthereumVerifierExecutionHeaderAnchor (551) */
4775
4786
  interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
4776
4787
  readonly blockNumber: Compact<u64>;
4777
4788
  readonly timestampMillis: Compact<u64>;
@@ -4781,44 +4792,44 @@ declare module '@polkadot/types/lookup' {
4781
4792
  readonly receiptsRoot: H256;
4782
4793
  }
4783
4794
 
4784
- /** @name PalletEthereumVerifierSyncCommitteePrepared (553) */
4795
+ /** @name PalletEthereumVerifierSyncCommitteePrepared (552) */
4785
4796
  interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
4786
4797
  readonly root: H256;
4787
4798
  readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
4788
4799
  readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
4789
4800
  }
4790
4801
 
4791
- /** @name SnowbridgeMilagroBlsKeysPublicKey (555) */
4802
+ /** @name SnowbridgeMilagroBlsKeysPublicKey (554) */
4792
4803
  interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
4793
4804
  readonly point: SnowbridgeAmclBls381Ecp;
4794
4805
  }
4795
4806
 
4796
- /** @name SnowbridgeAmclBls381Ecp (556) */
4807
+ /** @name SnowbridgeAmclBls381Ecp (555) */
4797
4808
  interface SnowbridgeAmclBls381Ecp extends Struct {
4798
4809
  readonly x: SnowbridgeAmclBls381Fp;
4799
4810
  readonly y: SnowbridgeAmclBls381Fp;
4800
4811
  readonly z: SnowbridgeAmclBls381Fp;
4801
4812
  }
4802
4813
 
4803
- /** @name SnowbridgeAmclBls381Fp (557) */
4814
+ /** @name SnowbridgeAmclBls381Fp (556) */
4804
4815
  interface SnowbridgeAmclBls381Fp extends Struct {
4805
4816
  readonly x: SnowbridgeAmclBls381Big;
4806
4817
  readonly xes: i32;
4807
4818
  }
4808
4819
 
4809
- /** @name SnowbridgeAmclBls381Big (558) */
4820
+ /** @name SnowbridgeAmclBls381Big (557) */
4810
4821
  interface SnowbridgeAmclBls381Big extends Struct {
4811
4822
  readonly w: Vec<i32>;
4812
4823
  }
4813
4824
 
4814
- /** @name ArgonPrimitivesEthereumEthereumBeaconPreset (562) */
4825
+ /** @name ArgonPrimitivesEthereumEthereumBeaconPreset (561) */
4815
4826
  interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
4816
4827
  readonly isMainnet: boolean;
4817
4828
  readonly isMinimal: boolean;
4818
4829
  readonly type: 'Mainnet' | 'Minimal';
4819
4830
  }
4820
4831
 
4821
- /** @name PalletEthereumVerifierError (563) */
4832
+ /** @name PalletEthereumVerifierError (562) */
4822
4833
  interface PalletEthereumVerifierError extends Enum {
4823
4834
  readonly isSkippedSyncCommitteePeriod: boolean;
4824
4835
  readonly isSyncCommitteeUpdateRequired: boolean;
@@ -4871,7 +4882,7 @@ declare module '@polkadot/types/lookup' {
4871
4882
  | 'Halted';
4872
4883
  }
4873
4884
 
4874
- /** @name PalletCrosschainTransferAccountTransferTotals (564) */
4885
+ /** @name PalletCrosschainTransferAccountTransferTotals (563) */
4875
4886
  interface PalletCrosschainTransferAccountTransferTotals extends Struct {
4876
4887
  readonly microgonsIn: u128;
4877
4888
  readonly microgonsOut: u128;
@@ -4883,21 +4894,21 @@ declare module '@polkadot/types/lookup' {
4883
4894
  readonly argonotTransfersOutCount: Compact<u32>;
4884
4895
  }
4885
4896
 
4886
- /** @name PalletCrosschainTransferGlobalIssuanceCouncil (566) */
4897
+ /** @name PalletCrosschainTransferGlobalIssuanceCouncil (565) */
4887
4898
  interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
4888
4899
  readonly epochMicrogonsPerArgonot: u128;
4889
4900
  readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
4890
4901
  readonly totalWeight: u128;
4891
4902
  }
4892
4903
 
4893
- /** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (568) */
4904
+ /** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (567) */
4894
4905
  interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
4895
4906
  readonly accountId: AccountId32;
4896
4907
  readonly signer: H160;
4897
4908
  readonly weight: u128;
4898
4909
  }
4899
4910
 
4900
- /** @name PalletCrosschainTransferCouncilApprovalQueueEntry (573) */
4911
+ /** @name PalletCrosschainTransferCouncilApprovalQueueEntry (572) */
4901
4912
  interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
4902
4913
  readonly approvingCouncilHash: H256;
4903
4914
  readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
@@ -4909,7 +4920,7 @@ declare module '@polkadot/types/lookup' {
4909
4920
  readonly signatures: BTreeMap<H160, U8aFixed>;
4910
4921
  }
4911
4922
 
4912
- /** @name PalletCrosschainTransferMintingAuthority (578) */
4923
+ /** @name PalletCrosschainTransferMintingAuthority (577) */
4913
4924
  interface PalletCrosschainTransferMintingAuthority extends Struct {
4914
4925
  readonly accountId: AccountId32;
4915
4926
  readonly destinationChain: PalletCrosschainTransferSourceChain;
@@ -4926,7 +4937,7 @@ declare module '@polkadot/types/lookup' {
4926
4937
  readonly deactivationApprovalQueueNonce: Option<u64>;
4927
4938
  }
4928
4939
 
4929
- /** @name PalletCrosschainTransferMintingAuthorityState (579) */
4940
+ /** @name PalletCrosschainTransferMintingAuthorityState (578) */
4930
4941
  interface PalletCrosschainTransferMintingAuthorityState extends Enum {
4931
4942
  readonly isPendingActivation: boolean;
4932
4943
  readonly isActive: boolean;
@@ -4934,7 +4945,7 @@ declare module '@polkadot/types/lookup' {
4934
4945
  readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
4935
4946
  }
4936
4947
 
4937
- /** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (581) */
4948
+ /** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (580) */
4938
4949
  interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
4939
4950
  readonly argonAccountId: AccountId32;
4940
4951
  readonly argonTransferNonce: Compact<u64>;
@@ -4953,7 +4964,7 @@ declare module '@polkadot/types/lookup' {
4953
4964
  readonly state: PalletCrosschainTransferTransferOutTransferOutState;
4954
4965
  }
4955
4966
 
4956
- /** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (583) */
4967
+ /** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (582) */
4957
4968
  interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
4958
4969
  readonly microgonCollateral: u128;
4959
4970
  readonly micronotCollateral: u128;
@@ -4961,27 +4972,27 @@ declare module '@polkadot/types/lookup' {
4961
4972
  readonly signature: U8aFixed;
4962
4973
  }
4963
4974
 
4964
- /** @name PalletCrosschainTransferTransferOutTransferOutState (587) */
4975
+ /** @name PalletCrosschainTransferTransferOutTransferOutState (586) */
4965
4976
  interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
4966
4977
  readonly isStarted: boolean;
4967
4978
  readonly isReady: boolean;
4968
4979
  readonly type: 'Started' | 'Ready';
4969
4980
  }
4970
4981
 
4971
- /** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (589) */
4982
+ /** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (588) */
4972
4983
  interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
4973
4984
  readonly transferId: H256;
4974
4985
  readonly remainingCollateral: u128;
4975
4986
  readonly remainingMintingAuthorityTip: u128;
4976
4987
  }
4977
4988
 
4978
- /** @name PalletCrosschainTransferSourceChainCirculation (591) */
4989
+ /** @name PalletCrosschainTransferSourceChainCirculation (590) */
4979
4990
  interface PalletCrosschainTransferSourceChainCirculation extends Struct {
4980
4991
  readonly argonCirculation: u128;
4981
4992
  readonly argonotCirculation: u128;
4982
4993
  }
4983
4994
 
4984
- /** @name PalletCrosschainTransferError (592) */
4995
+ /** @name PalletCrosschainTransferError (591) */
4985
4996
  interface PalletCrosschainTransferError extends Enum {
4986
4997
  readonly isInvalidTransferToArgonActivity: boolean;
4987
4998
  readonly isNoGatewayProofBlocksProvided: boolean;
@@ -5096,7 +5107,7 @@ declare module '@polkadot/types/lookup' {
5096
5107
  | 'CouncilSignerRotationPending';
5097
5108
  }
5098
5109
 
5099
- /** @name PalletBootstrapError (594) */
5110
+ /** @name PalletBootstrapError (593) */
5100
5111
  interface PalletBootstrapError extends Enum {
5101
5112
  readonly isEncryptedPayloadTooLong: boolean;
5102
5113
  readonly isInvalidRecoveryProof: boolean;
@@ -5107,45 +5118,45 @@ declare module '@polkadot/types/lookup' {
5107
5118
  | 'EndpointOwnedByAnotherAccount';
5108
5119
  }
5109
5120
 
5110
- /** @name FrameSystemExtensionsAuthorizeCall (597) */
5121
+ /** @name FrameSystemExtensionsAuthorizeCall (596) */
5111
5122
  type FrameSystemExtensionsAuthorizeCall = Null;
5112
5123
 
5113
- /** @name FrameSystemExtensionsCheckNonZeroSender (598) */
5124
+ /** @name FrameSystemExtensionsCheckNonZeroSender (597) */
5114
5125
  type FrameSystemExtensionsCheckNonZeroSender = Null;
5115
5126
 
5116
- /** @name FrameSystemExtensionsCheckSpecVersion (599) */
5127
+ /** @name FrameSystemExtensionsCheckSpecVersion (598) */
5117
5128
  type FrameSystemExtensionsCheckSpecVersion = Null;
5118
5129
 
5119
- /** @name FrameSystemExtensionsCheckTxVersion (600) */
5130
+ /** @name FrameSystemExtensionsCheckTxVersion (599) */
5120
5131
  type FrameSystemExtensionsCheckTxVersion = Null;
5121
5132
 
5122
- /** @name FrameSystemExtensionsCheckGenesis (601) */
5133
+ /** @name FrameSystemExtensionsCheckGenesis (600) */
5123
5134
  type FrameSystemExtensionsCheckGenesis = Null;
5124
5135
 
5125
- /** @name FrameSystemExtensionsCheckNonce (604) */
5136
+ /** @name FrameSystemExtensionsCheckNonce (603) */
5126
5137
  interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
5127
5138
 
5128
- /** @name FrameSystemExtensionsCheckWeight (605) */
5139
+ /** @name FrameSystemExtensionsCheckWeight (604) */
5129
5140
  type FrameSystemExtensionsCheckWeight = Null;
5130
5141
 
5131
- /** @name PalletTransactionPaymentChargeTransactionPayment (606) */
5142
+ /** @name PalletTransactionPaymentChargeTransactionPayment (605) */
5132
5143
  interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
5133
5144
 
5134
- /** @name FrameMetadataHashExtensionCheckMetadataHash (607) */
5145
+ /** @name FrameMetadataHashExtensionCheckMetadataHash (606) */
5135
5146
  interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
5136
5147
  readonly mode: FrameMetadataHashExtensionMode;
5137
5148
  }
5138
5149
 
5139
- /** @name FrameMetadataHashExtensionMode (608) */
5150
+ /** @name FrameMetadataHashExtensionMode (607) */
5140
5151
  interface FrameMetadataHashExtensionMode extends Enum {
5141
5152
  readonly isDisabled: boolean;
5142
5153
  readonly isEnabled: boolean;
5143
5154
  readonly type: 'Disabled' | 'Enabled';
5144
5155
  }
5145
5156
 
5146
- /** @name FrameSystemExtensionsWeightReclaim (609) */
5157
+ /** @name FrameSystemExtensionsWeightReclaim (608) */
5147
5158
  type FrameSystemExtensionsWeightReclaim = Null;
5148
5159
 
5149
- /** @name ArgonRuntimeRuntime (611) */
5160
+ /** @name ArgonRuntimeRuntime (610) */
5150
5161
  type ArgonRuntimeRuntime = Null;
5151
5162
  } // declare module