@argonprotocol/mainchain 1.4.10-dev.d4d4d1dd → 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.
- package/browser/index.d.ts +3909 -277
- package/browser/index.js +52 -16
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +75 -39
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +3909 -277
- package/lib/index.d.ts +3909 -277
- package/lib/index.js +52 -16
- package/lib/index.js.map +1 -1
- package/package.json +7 -4
- package/src/interfaces/augment-api-consts.ts +8 -13
- package/src/interfaces/augment-api-errors.ts +37 -5
- package/src/interfaces/augment-api-query.ts +39 -9
- package/src/interfaces/augment-api-tx.ts +18 -30
- package/src/interfaces/lookup.ts +242 -218
- package/src/interfaces/registry.ts +6 -2
- package/src/interfaces/types-lookup.ts +254 -226
|
@@ -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 (
|
|
2705
|
+
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (214) */
|
|
2712
2706
|
interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {}
|
|
2713
2707
|
|
|
2714
|
-
/** @name PalletBitcoinLocksCall (
|
|
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 (
|
|
2771
|
+
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (217) */
|
|
2788
2772
|
interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {}
|
|
2789
2773
|
|
|
2790
|
-
/** @name PalletBitcoinLocksLockOptions (
|
|
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
|
|
2780
|
+
readonly isV2: boolean;
|
|
2781
|
+
readonly asV2: {
|
|
2782
|
+
readonly microgonsAtTargetPerBtc: Option<u128>;
|
|
2783
|
+
readonly feeCoupon: Option<PalletBitcoinLocksFeeCoupon>;
|
|
2784
|
+
} & Struct;
|
|
2785
|
+
readonly type: 'V1' | 'V2';
|
|
2797
2786
|
}
|
|
2798
2787
|
|
|
2799
|
-
/** @name
|
|
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;
|
|
2798
|
+
}
|
|
2799
|
+
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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 (
|
|
2910
|
+
/** @name PalletDomainsCall (246) */
|
|
2897
2911
|
interface PalletDomainsCall extends Enum {
|
|
2898
2912
|
readonly isSetZoneRecord: boolean;
|
|
2899
2913
|
readonly asSetZoneRecord: {
|
|
@@ -2903,11 +2917,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
2903
2917
|
readonly type: 'SetZoneRecord';
|
|
2904
2918
|
}
|
|
2905
2919
|
|
|
2906
|
-
/** @name PalletPriceIndexCall (
|
|
2920
|
+
/** @name PalletPriceIndexCall (247) */
|
|
2907
2921
|
interface PalletPriceIndexCall extends Enum {
|
|
2908
2922
|
readonly isSubmit: boolean;
|
|
2909
2923
|
readonly asSubmit: {
|
|
2910
2924
|
readonly index: PalletPriceIndexPriceIndex;
|
|
2925
|
+
readonly ethereum: Option<PalletPriceIndexEthereumPriceIndex>;
|
|
2911
2926
|
} & Struct;
|
|
2912
2927
|
readonly isSetOperator: boolean;
|
|
2913
2928
|
readonly asSetOperator: {
|
|
@@ -2916,7 +2931,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2916
2931
|
readonly type: 'Submit' | 'SetOperator';
|
|
2917
2932
|
}
|
|
2918
2933
|
|
|
2919
|
-
/** @name PalletPriceIndexPriceIndex (
|
|
2934
|
+
/** @name PalletPriceIndexPriceIndex (248) */
|
|
2920
2935
|
interface PalletPriceIndexPriceIndex extends Struct {
|
|
2921
2936
|
readonly btcUsdPrice: Compact<u128>;
|
|
2922
2937
|
readonly argonotUsdPrice: u128;
|
|
@@ -2926,7 +2941,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2926
2941
|
readonly tick: Compact<u64>;
|
|
2927
2942
|
}
|
|
2928
2943
|
|
|
2929
|
-
/** @name
|
|
2944
|
+
/** @name PalletPriceIndexEthereumPriceIndex (250) */
|
|
2945
|
+
interface PalletPriceIndexEthereumPriceIndex extends Struct {
|
|
2946
|
+
readonly ethereumUsdPrice: u128;
|
|
2947
|
+
readonly ethereumGasPriceWei: Compact<u128>;
|
|
2948
|
+
readonly tick: Compact<u64>;
|
|
2949
|
+
}
|
|
2950
|
+
|
|
2951
|
+
/** @name PalletGrandpaCall (251) */
|
|
2930
2952
|
interface PalletGrandpaCall extends Enum {
|
|
2931
2953
|
readonly isReportEquivocation: boolean;
|
|
2932
2954
|
readonly asReportEquivocation: {
|
|
@@ -2946,13 +2968,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2946
2968
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
|
2947
2969
|
}
|
|
2948
2970
|
|
|
2949
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
|
2971
|
+
/** @name SpConsensusGrandpaEquivocationProof (252) */
|
|
2950
2972
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
|
2951
2973
|
readonly setId: u64;
|
|
2952
2974
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
|
2953
2975
|
}
|
|
2954
2976
|
|
|
2955
|
-
/** @name SpConsensusGrandpaEquivocation (
|
|
2977
|
+
/** @name SpConsensusGrandpaEquivocation (253) */
|
|
2956
2978
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
|
2957
2979
|
readonly isPrevote: boolean;
|
|
2958
2980
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
|
@@ -2961,7 +2983,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2961
2983
|
readonly type: 'Prevote' | 'Precommit';
|
|
2962
2984
|
}
|
|
2963
2985
|
|
|
2964
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
|
2986
|
+
/** @name FinalityGrandpaEquivocationPrevote (254) */
|
|
2965
2987
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
|
2966
2988
|
readonly roundNumber: u64;
|
|
2967
2989
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2969,16 +2991,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2969
2991
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
2970
2992
|
}
|
|
2971
2993
|
|
|
2972
|
-
/** @name FinalityGrandpaPrevote (
|
|
2994
|
+
/** @name FinalityGrandpaPrevote (255) */
|
|
2973
2995
|
interface FinalityGrandpaPrevote extends Struct {
|
|
2974
2996
|
readonly targetHash: H256;
|
|
2975
2997
|
readonly targetNumber: u32;
|
|
2976
2998
|
}
|
|
2977
2999
|
|
|
2978
|
-
/** @name SpConsensusGrandpaAppSignature (
|
|
3000
|
+
/** @name SpConsensusGrandpaAppSignature (256) */
|
|
2979
3001
|
interface SpConsensusGrandpaAppSignature extends U8aFixed {}
|
|
2980
3002
|
|
|
2981
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
|
3003
|
+
/** @name FinalityGrandpaEquivocationPrecommit (258) */
|
|
2982
3004
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
|
2983
3005
|
readonly roundNumber: u64;
|
|
2984
3006
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2986,16 +3008,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2986
3008
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
2987
3009
|
}
|
|
2988
3010
|
|
|
2989
|
-
/** @name FinalityGrandpaPrecommit (
|
|
3011
|
+
/** @name FinalityGrandpaPrecommit (259) */
|
|
2990
3012
|
interface FinalityGrandpaPrecommit extends Struct {
|
|
2991
3013
|
readonly targetHash: H256;
|
|
2992
3014
|
readonly targetNumber: u32;
|
|
2993
3015
|
}
|
|
2994
3016
|
|
|
2995
|
-
/** @name SpCoreVoid (
|
|
3017
|
+
/** @name SpCoreVoid (261) */
|
|
2996
3018
|
type SpCoreVoid = Null;
|
|
2997
3019
|
|
|
2998
|
-
/** @name PalletBlockSealCall (
|
|
3020
|
+
/** @name PalletBlockSealCall (262) */
|
|
2999
3021
|
interface PalletBlockSealCall extends Enum {
|
|
3000
3022
|
readonly isApply: boolean;
|
|
3001
3023
|
readonly asApply: {
|
|
@@ -3004,7 +3026,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3004
3026
|
readonly type: 'Apply';
|
|
3005
3027
|
}
|
|
3006
3028
|
|
|
3007
|
-
/** @name ArgonPrimitivesInherentsBlockSealInherent (
|
|
3029
|
+
/** @name ArgonPrimitivesInherentsBlockSealInherent (263) */
|
|
3008
3030
|
interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
|
|
3009
3031
|
readonly isVote: boolean;
|
|
3010
3032
|
readonly asVote: {
|
|
@@ -3019,14 +3041,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3019
3041
|
readonly type: 'Vote' | 'Compute';
|
|
3020
3042
|
}
|
|
3021
3043
|
|
|
3022
|
-
/** @name ArgonPrimitivesBalanceChangeMerkleProof (
|
|
3044
|
+
/** @name ArgonPrimitivesBalanceChangeMerkleProof (264) */
|
|
3023
3045
|
interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
|
|
3024
3046
|
readonly proof: Vec<H256>;
|
|
3025
3047
|
readonly numberOfLeaves: Compact<u32>;
|
|
3026
3048
|
readonly leafIndex: Compact<u32>;
|
|
3027
3049
|
}
|
|
3028
3050
|
|
|
3029
|
-
/** @name ArgonPrimitivesBlockVoteBlockVoteT (
|
|
3051
|
+
/** @name ArgonPrimitivesBlockVoteBlockVoteT (266) */
|
|
3030
3052
|
interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
|
|
3031
3053
|
readonly accountId: AccountId32;
|
|
3032
3054
|
readonly blockHash: H256;
|
|
@@ -3037,20 +3059,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3037
3059
|
readonly tick: Compact<u64>;
|
|
3038
3060
|
}
|
|
3039
3061
|
|
|
3040
|
-
/** @name
|
|
3041
|
-
interface SpRuntimeMultiSignature extends Enum {
|
|
3042
|
-
readonly isEd25519: boolean;
|
|
3043
|
-
readonly asEd25519: U8aFixed;
|
|
3044
|
-
readonly isSr25519: boolean;
|
|
3045
|
-
readonly asSr25519: U8aFixed;
|
|
3046
|
-
readonly isEcdsa: boolean;
|
|
3047
|
-
readonly asEcdsa: U8aFixed;
|
|
3048
|
-
readonly isEth: boolean;
|
|
3049
|
-
readonly asEth: U8aFixed;
|
|
3050
|
-
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
|
|
3051
|
-
}
|
|
3052
|
-
|
|
3053
|
-
/** @name PalletBlockRewardsCall (265) */
|
|
3062
|
+
/** @name PalletBlockRewardsCall (267) */
|
|
3054
3063
|
interface PalletBlockRewardsCall extends Enum {
|
|
3055
3064
|
readonly isSetBlockRewardsPaused: boolean;
|
|
3056
3065
|
readonly asSetBlockRewardsPaused: {
|
|
@@ -3063,10 +3072,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
3063
3072
|
readonly type: 'SetBlockRewardsPaused' | 'SetBlockVoterRewardsEnabled';
|
|
3064
3073
|
}
|
|
3065
3074
|
|
|
3066
|
-
/** @name PalletMintCall (
|
|
3075
|
+
/** @name PalletMintCall (268) */
|
|
3067
3076
|
type PalletMintCall = Null;
|
|
3068
3077
|
|
|
3069
|
-
/** @name PalletBalancesCall (
|
|
3078
|
+
/** @name PalletBalancesCall (269) */
|
|
3070
3079
|
interface PalletBalancesCall extends Enum {
|
|
3071
3080
|
readonly isTransferAllowDeath: boolean;
|
|
3072
3081
|
readonly asTransferAllowDeath: {
|
|
@@ -3125,14 +3134,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3125
3134
|
| 'Burn';
|
|
3126
3135
|
}
|
|
3127
3136
|
|
|
3128
|
-
/** @name PalletBalancesAdjustmentDirection (
|
|
3137
|
+
/** @name PalletBalancesAdjustmentDirection (270) */
|
|
3129
3138
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
|
3130
3139
|
readonly isIncrease: boolean;
|
|
3131
3140
|
readonly isDecrease: boolean;
|
|
3132
3141
|
readonly type: 'Increase' | 'Decrease';
|
|
3133
3142
|
}
|
|
3134
3143
|
|
|
3135
|
-
/** @name PalletTxPauseCall (
|
|
3144
|
+
/** @name PalletTxPauseCall (272) */
|
|
3136
3145
|
interface PalletTxPauseCall extends Enum {
|
|
3137
3146
|
readonly isPause: boolean;
|
|
3138
3147
|
readonly asPause: {
|
|
@@ -3145,7 +3154,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3145
3154
|
readonly type: 'Pause' | 'Unpause';
|
|
3146
3155
|
}
|
|
3147
3156
|
|
|
3148
|
-
/** @name PalletUtilityCall (
|
|
3157
|
+
/** @name PalletUtilityCall (273) */
|
|
3149
3158
|
interface PalletUtilityCall extends Enum {
|
|
3150
3159
|
readonly isBatch: boolean;
|
|
3151
3160
|
readonly asBatch: {
|
|
@@ -3195,7 +3204,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3195
3204
|
| 'DispatchAsFallible';
|
|
3196
3205
|
}
|
|
3197
3206
|
|
|
3198
|
-
/** @name PalletSudoCall (
|
|
3207
|
+
/** @name PalletSudoCall (275) */
|
|
3199
3208
|
interface PalletSudoCall extends Enum {
|
|
3200
3209
|
readonly isSudo: boolean;
|
|
3201
3210
|
readonly asSudo: {
|
|
@@ -3219,7 +3228,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3219
3228
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
|
3220
3229
|
}
|
|
3221
3230
|
|
|
3222
|
-
/** @name PalletTreasuryCall (
|
|
3231
|
+
/** @name PalletTreasuryCall (276) */
|
|
3223
3232
|
interface PalletTreasuryCall extends Enum {
|
|
3224
3233
|
readonly isBuyBonds: boolean;
|
|
3225
3234
|
readonly asBuyBonds: {
|
|
@@ -3253,7 +3262,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3253
3262
|
| 'SetBackfillBondsReserved';
|
|
3254
3263
|
}
|
|
3255
3264
|
|
|
3256
|
-
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (
|
|
3265
|
+
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (278) */
|
|
3257
3266
|
interface ArgonPrimitivesVaultTreasuryBonusApprovalProof extends Struct {
|
|
3258
3267
|
readonly vaultId: Compact<u32>;
|
|
3259
3268
|
readonly beneficiary: AccountId32;
|
|
@@ -3262,12 +3271,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
3262
3271
|
readonly signature: SpRuntimeMultiSignature;
|
|
3263
3272
|
}
|
|
3264
3273
|
|
|
3265
|
-
/** @name PalletOperationalAccountsCall (
|
|
3274
|
+
/** @name PalletOperationalAccountsCall (279) */
|
|
3266
3275
|
interface PalletOperationalAccountsCall extends Enum {
|
|
3267
3276
|
readonly isRegister: boolean;
|
|
3268
3277
|
readonly asRegister: {
|
|
3269
3278
|
readonly registration: PalletOperationalAccountsRegistration;
|
|
3270
3279
|
} & Struct;
|
|
3280
|
+
readonly isSetName: boolean;
|
|
3281
|
+
readonly asSetName: {
|
|
3282
|
+
readonly name: Option<Bytes>;
|
|
3283
|
+
} & Struct;
|
|
3271
3284
|
readonly isSetRewardConfig: boolean;
|
|
3272
3285
|
readonly asSetRewardConfig: {
|
|
3273
3286
|
readonly operationalCertificationReward: u128;
|
|
@@ -3286,20 +3299,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3286
3299
|
} & Struct;
|
|
3287
3300
|
readonly type:
|
|
3288
3301
|
| 'Register'
|
|
3302
|
+
| 'SetName'
|
|
3289
3303
|
| 'SetRewardConfig'
|
|
3290
3304
|
| 'ForceSetProgress'
|
|
3291
3305
|
| 'Activate'
|
|
3292
3306
|
| 'ClaimRewards';
|
|
3293
3307
|
}
|
|
3294
3308
|
|
|
3295
|
-
/** @name PalletOperationalAccountsRegistration (
|
|
3309
|
+
/** @name PalletOperationalAccountsRegistration (280) */
|
|
3296
3310
|
interface PalletOperationalAccountsRegistration extends Enum {
|
|
3297
3311
|
readonly isV1: boolean;
|
|
3298
3312
|
readonly asV1: PalletOperationalAccountsRegistrationV1;
|
|
3299
3313
|
readonly type: 'V1';
|
|
3300
3314
|
}
|
|
3301
3315
|
|
|
3302
|
-
/** @name PalletOperationalAccountsRegistrationV1 (
|
|
3316
|
+
/** @name PalletOperationalAccountsRegistrationV1 (281) */
|
|
3303
3317
|
interface PalletOperationalAccountsRegistrationV1 extends Struct {
|
|
3304
3318
|
readonly operationalAccount: AccountId32;
|
|
3305
3319
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
@@ -3311,21 +3325,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3311
3325
|
readonly accessProof: Option<PalletOperationalAccountsUpstreamAccessProof>;
|
|
3312
3326
|
}
|
|
3313
3327
|
|
|
3314
|
-
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (
|
|
3328
|
+
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (282) */
|
|
3315
3329
|
interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {}
|
|
3316
3330
|
|
|
3317
|
-
/** @name PalletOperationalAccountsAccountOwnershipProof (
|
|
3331
|
+
/** @name PalletOperationalAccountsAccountOwnershipProof (283) */
|
|
3318
3332
|
interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
|
|
3319
3333
|
readonly signature: SpRuntimeMultiSignature;
|
|
3320
3334
|
}
|
|
3321
3335
|
|
|
3322
|
-
/** @name PalletOperationalAccountsUpstreamAccessProof (
|
|
3336
|
+
/** @name PalletOperationalAccountsUpstreamAccessProof (285) */
|
|
3323
3337
|
interface PalletOperationalAccountsUpstreamAccessProof extends Struct {
|
|
3324
3338
|
readonly upstreamAccount: AccountId32;
|
|
3325
3339
|
readonly signature: SpRuntimeMultiSignature;
|
|
3326
3340
|
}
|
|
3327
3341
|
|
|
3328
|
-
/** @name PalletOperationalAccountsOperationalProgressPatch (
|
|
3342
|
+
/** @name PalletOperationalAccountsOperationalProgressPatch (288) */
|
|
3329
3343
|
interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
|
|
3330
3344
|
readonly uniswapArgonTransfersInAmount: Option<u128>;
|
|
3331
3345
|
readonly accountBitcoinAmount: Option<u128>;
|
|
@@ -3335,7 +3349,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3335
3349
|
readonly miningSeatCount: Option<u32>;
|
|
3336
3350
|
}
|
|
3337
3351
|
|
|
3338
|
-
/** @name PalletEthereumVerifierCall (
|
|
3352
|
+
/** @name PalletEthereumVerifierCall (290) */
|
|
3339
3353
|
interface PalletEthereumVerifierCall extends Enum {
|
|
3340
3354
|
readonly isForceCheckpoint: boolean;
|
|
3341
3355
|
readonly asForceCheckpoint: {
|
|
@@ -3363,7 +3377,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3363
3377
|
| 'SetOperatingMode';
|
|
3364
3378
|
}
|
|
3365
3379
|
|
|
3366
|
-
/** @name PalletEthereumVerifierCheckpointUpdate (
|
|
3380
|
+
/** @name PalletEthereumVerifierCheckpointUpdate (291) */
|
|
3367
3381
|
interface PalletEthereumVerifierCheckpointUpdate extends Struct {
|
|
3368
3382
|
readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3369
3383
|
readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
@@ -3372,7 +3386,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3372
3386
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3373
3387
|
}
|
|
3374
3388
|
|
|
3375
|
-
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (
|
|
3389
|
+
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (292) */
|
|
3376
3390
|
interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
|
|
3377
3391
|
readonly slot: u64;
|
|
3378
3392
|
readonly proposerIndex: u64;
|
|
@@ -3381,22 +3395,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3381
3395
|
readonly bodyRoot: H256;
|
|
3382
3396
|
}
|
|
3383
3397
|
|
|
3384
|
-
/** @name PalletEthereumVerifierSyncCommittee (
|
|
3398
|
+
/** @name PalletEthereumVerifierSyncCommittee (293) */
|
|
3385
3399
|
interface PalletEthereumVerifierSyncCommittee extends Struct {
|
|
3386
3400
|
readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
|
|
3387
3401
|
readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
|
|
3388
3402
|
}
|
|
3389
3403
|
|
|
3390
|
-
/** @name SnowbridgeBeaconPrimitivesPublicKey (
|
|
3404
|
+
/** @name SnowbridgeBeaconPrimitivesPublicKey (295) */
|
|
3391
3405
|
interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
|
|
3392
3406
|
|
|
3393
|
-
/** @name PalletEthereumVerifierExecutionHeaderProof (
|
|
3407
|
+
/** @name PalletEthereumVerifierExecutionHeaderProof (299) */
|
|
3394
3408
|
interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
|
|
3395
3409
|
readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
|
|
3396
3410
|
readonly executionBranch: Vec<H256>;
|
|
3397
3411
|
}
|
|
3398
3412
|
|
|
3399
|
-
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (
|
|
3413
|
+
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (300) */
|
|
3400
3414
|
interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
|
|
3401
3415
|
readonly isCapella: boolean;
|
|
3402
3416
|
readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
|
|
@@ -3405,7 +3419,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3405
3419
|
readonly type: 'Capella' | 'Deneb';
|
|
3406
3420
|
}
|
|
3407
3421
|
|
|
3408
|
-
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (
|
|
3422
|
+
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (301) */
|
|
3409
3423
|
interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
|
|
3410
3424
|
readonly parentHash: H256;
|
|
3411
3425
|
readonly feeRecipient: H160;
|
|
@@ -3424,7 +3438,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3424
3438
|
readonly withdrawalsRoot: H256;
|
|
3425
3439
|
}
|
|
3426
3440
|
|
|
3427
|
-
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (
|
|
3441
|
+
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (302) */
|
|
3428
3442
|
interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
|
|
3429
3443
|
readonly parentHash: H256;
|
|
3430
3444
|
readonly feeRecipient: H160;
|
|
@@ -3445,7 +3459,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3445
3459
|
readonly excessBlobGas: u64;
|
|
3446
3460
|
}
|
|
3447
3461
|
|
|
3448
|
-
/** @name PalletEthereumVerifierForkVersions (
|
|
3462
|
+
/** @name PalletEthereumVerifierForkVersions (303) */
|
|
3449
3463
|
interface PalletEthereumVerifierForkVersions extends Struct {
|
|
3450
3464
|
readonly genesis: PalletEthereumVerifierFork;
|
|
3451
3465
|
readonly altair: PalletEthereumVerifierFork;
|
|
@@ -3456,13 +3470,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3456
3470
|
readonly fulu: PalletEthereumVerifierFork;
|
|
3457
3471
|
}
|
|
3458
3472
|
|
|
3459
|
-
/** @name PalletEthereumVerifierFork (
|
|
3473
|
+
/** @name PalletEthereumVerifierFork (304) */
|
|
3460
3474
|
interface PalletEthereumVerifierFork extends Struct {
|
|
3461
3475
|
readonly version: U8aFixed;
|
|
3462
3476
|
readonly epoch: Compact<u64>;
|
|
3463
3477
|
}
|
|
3464
3478
|
|
|
3465
|
-
/** @name PalletEthereumVerifierUpdate (
|
|
3479
|
+
/** @name PalletEthereumVerifierUpdate (305) */
|
|
3466
3480
|
interface PalletEthereumVerifierUpdate extends Struct {
|
|
3467
3481
|
readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3468
3482
|
readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
|
|
@@ -3473,22 +3487,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3473
3487
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3474
3488
|
}
|
|
3475
3489
|
|
|
3476
|
-
/** @name PalletEthereumVerifierSyncAggregate (
|
|
3490
|
+
/** @name PalletEthereumVerifierSyncAggregate (306) */
|
|
3477
3491
|
interface PalletEthereumVerifierSyncAggregate extends Struct {
|
|
3478
3492
|
readonly syncCommitteeBits: Bytes;
|
|
3479
3493
|
readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
|
|
3480
3494
|
}
|
|
3481
3495
|
|
|
3482
|
-
/** @name SnowbridgeBeaconPrimitivesSignature (
|
|
3496
|
+
/** @name SnowbridgeBeaconPrimitivesSignature (308) */
|
|
3483
3497
|
interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
|
|
3484
3498
|
|
|
3485
|
-
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (
|
|
3499
|
+
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (311) */
|
|
3486
3500
|
interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
|
|
3487
3501
|
readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
3488
3502
|
readonly nextSyncCommitteeBranch: Vec<H256>;
|
|
3489
3503
|
}
|
|
3490
3504
|
|
|
3491
|
-
/** @name PalletCrosschainTransferCall (
|
|
3505
|
+
/** @name PalletCrosschainTransferCall (312) */
|
|
3492
3506
|
interface PalletCrosschainTransferCall extends Enum {
|
|
3493
3507
|
readonly isSetChainConfig: boolean;
|
|
3494
3508
|
readonly asSetChainConfig: {
|
|
@@ -3578,7 +3592,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3578
3592
|
| 'CollateralizeTransfer';
|
|
3579
3593
|
}
|
|
3580
3594
|
|
|
3581
|
-
/** @name PalletCrosschainTransferChainConfig (
|
|
3595
|
+
/** @name PalletCrosschainTransferChainConfig (313) */
|
|
3582
3596
|
interface PalletCrosschainTransferChainConfig extends Enum {
|
|
3583
3597
|
readonly isEvm: boolean;
|
|
3584
3598
|
readonly asEvm: {
|
|
@@ -3590,7 +3604,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3590
3604
|
readonly type: 'Evm';
|
|
3591
3605
|
}
|
|
3592
3606
|
|
|
3593
|
-
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (
|
|
3607
|
+
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (315) */
|
|
3594
3608
|
interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
|
|
3595
3609
|
readonly activationGasCost: Compact<u128>;
|
|
3596
3610
|
readonly signatureGasCost: Compact<u128>;
|
|
@@ -3598,56 +3612,56 @@ declare module '@polkadot/types/lookup' {
|
|
|
3598
3612
|
readonly estimatedMicrogonsPerEth: u128;
|
|
3599
3613
|
}
|
|
3600
3614
|
|
|
3601
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (
|
|
3615
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (318) */
|
|
3602
3616
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
|
|
3603
3617
|
readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
|
|
3604
3618
|
readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
|
|
3605
3619
|
}
|
|
3606
3620
|
|
|
3607
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (
|
|
3621
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (319) */
|
|
3608
3622
|
interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
|
|
3609
3623
|
readonly anchorBlockHash: H256;
|
|
3610
3624
|
readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
|
|
3611
3625
|
}
|
|
3612
3626
|
|
|
3613
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (
|
|
3627
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (321) */
|
|
3614
3628
|
interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
|
|
3615
3629
|
readonly rlp: Bytes;
|
|
3616
3630
|
}
|
|
3617
3631
|
|
|
3618
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (
|
|
3632
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (325) */
|
|
3619
3633
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
|
|
3620
3634
|
readonly targetBlockNumber: Compact<u64>;
|
|
3621
3635
|
readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
|
|
3622
3636
|
readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
|
|
3623
3637
|
}
|
|
3624
3638
|
|
|
3625
|
-
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (
|
|
3639
|
+
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (326) */
|
|
3626
3640
|
interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
|
|
3627
3641
|
readonly nodes: Vec<Bytes>;
|
|
3628
3642
|
readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
|
|
3629
3643
|
}
|
|
3630
3644
|
|
|
3631
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (
|
|
3645
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (330) */
|
|
3632
3646
|
interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
|
|
3633
3647
|
readonly transactionIndex: Compact<u64>;
|
|
3634
3648
|
readonly nodeIndexes: Vec<u16>;
|
|
3635
3649
|
}
|
|
3636
3650
|
|
|
3637
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (
|
|
3651
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (335) */
|
|
3638
3652
|
interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
|
|
3639
3653
|
readonly transactionIndex: Compact<u64>;
|
|
3640
3654
|
readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
|
|
3641
3655
|
}
|
|
3642
3656
|
|
|
3643
|
-
/** @name ArgonPrimitivesEthereumEthereumLog (
|
|
3657
|
+
/** @name ArgonPrimitivesEthereumEthereumLog (336) */
|
|
3644
3658
|
interface ArgonPrimitivesEthereumEthereumLog extends Struct {
|
|
3645
3659
|
readonly address: H160;
|
|
3646
3660
|
readonly topics: Vec<H256>;
|
|
3647
3661
|
readonly data: Bytes;
|
|
3648
3662
|
}
|
|
3649
3663
|
|
|
3650
|
-
/** @name PalletBootstrapCall (
|
|
3664
|
+
/** @name PalletBootstrapCall (341) */
|
|
3651
3665
|
interface PalletBootstrapCall extends Enum {
|
|
3652
3666
|
readonly isSetRecoveryPayload: boolean;
|
|
3653
3667
|
readonly asSetRecoveryPayload: {
|
|
@@ -3663,12 +3677,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
3663
3677
|
readonly type: 'SetRecoveryPayload' | 'SetEndpoint';
|
|
3664
3678
|
}
|
|
3665
3679
|
|
|
3666
|
-
/** @name PalletBootstrapRecoveryProof (
|
|
3680
|
+
/** @name PalletBootstrapRecoveryProof (342) */
|
|
3667
3681
|
interface PalletBootstrapRecoveryProof extends Struct {
|
|
3668
3682
|
readonly signature: U8aFixed;
|
|
3669
3683
|
}
|
|
3670
3684
|
|
|
3671
|
-
/** @name PalletMultisigError (
|
|
3685
|
+
/** @name PalletMultisigError (344) */
|
|
3672
3686
|
interface PalletMultisigError extends Enum {
|
|
3673
3687
|
readonly isMinimumThreshold: boolean;
|
|
3674
3688
|
readonly isAlreadyApproved: boolean;
|
|
@@ -3701,21 +3715,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3701
3715
|
| 'AlreadyStored';
|
|
3702
3716
|
}
|
|
3703
3717
|
|
|
3704
|
-
/** @name PalletProxyProxyDefinition (
|
|
3718
|
+
/** @name PalletProxyProxyDefinition (347) */
|
|
3705
3719
|
interface PalletProxyProxyDefinition extends Struct {
|
|
3706
3720
|
readonly delegate: AccountId32;
|
|
3707
3721
|
readonly proxyType: ArgonRuntimeProxyType;
|
|
3708
3722
|
readonly delay: u32;
|
|
3709
3723
|
}
|
|
3710
3724
|
|
|
3711
|
-
/** @name PalletProxyAnnouncement (
|
|
3725
|
+
/** @name PalletProxyAnnouncement (351) */
|
|
3712
3726
|
interface PalletProxyAnnouncement extends Struct {
|
|
3713
3727
|
readonly real: AccountId32;
|
|
3714
3728
|
readonly callHash: H256;
|
|
3715
3729
|
readonly height: u32;
|
|
3716
3730
|
}
|
|
3717
3731
|
|
|
3718
|
-
/** @name PalletProxyError (
|
|
3732
|
+
/** @name PalletProxyError (353) */
|
|
3719
3733
|
interface PalletProxyError extends Enum {
|
|
3720
3734
|
readonly isTooMany: boolean;
|
|
3721
3735
|
readonly isNotFound: boolean;
|
|
@@ -3736,16 +3750,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
3736
3750
|
| 'NoSelfProxy';
|
|
3737
3751
|
}
|
|
3738
3752
|
|
|
3739
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
3753
|
+
/** @name ArgonPrimitivesTickTicker (354) */
|
|
3740
3754
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
3741
3755
|
readonly tickDurationMillis: Compact<u64>;
|
|
3742
3756
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
3743
3757
|
}
|
|
3744
3758
|
|
|
3745
|
-
/** @name PalletTicksError (
|
|
3759
|
+
/** @name PalletTicksError (356) */
|
|
3746
3760
|
type PalletTicksError = Null;
|
|
3747
3761
|
|
|
3748
|
-
/** @name PalletMiningSlotMinerNonceScoring (
|
|
3762
|
+
/** @name PalletMiningSlotMinerNonceScoring (359) */
|
|
3749
3763
|
interface PalletMiningSlotMinerNonceScoring extends Struct {
|
|
3750
3764
|
readonly nonce: U256;
|
|
3751
3765
|
readonly lastWinBlock: Option<u32>;
|
|
@@ -3753,7 +3767,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3753
3767
|
readonly frameStartBlocksWonSurplus: i16;
|
|
3754
3768
|
}
|
|
3755
3769
|
|
|
3756
|
-
/** @name ArgonPrimitivesBlockSealMiningBidStats (
|
|
3770
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (371) */
|
|
3757
3771
|
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
3758
3772
|
readonly bidsCount: u32;
|
|
3759
3773
|
readonly bidAmountMin: u128;
|
|
@@ -3761,14 +3775,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3761
3775
|
readonly bidAmountSum: u128;
|
|
3762
3776
|
}
|
|
3763
3777
|
|
|
3764
|
-
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (
|
|
3778
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (375) */
|
|
3765
3779
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
3766
3780
|
readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
|
|
3767
3781
|
readonly ticksBetweenSlots: Compact<u64>;
|
|
3768
3782
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
3769
3783
|
}
|
|
3770
3784
|
|
|
3771
|
-
/** @name PalletMiningSlotError (
|
|
3785
|
+
/** @name PalletMiningSlotError (385) */
|
|
3772
3786
|
interface PalletMiningSlotError extends Enum {
|
|
3773
3787
|
readonly isSlotNotTakingBids: boolean;
|
|
3774
3788
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -3795,7 +3809,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3795
3809
|
| 'UnrecoverableHold';
|
|
3796
3810
|
}
|
|
3797
3811
|
|
|
3798
|
-
/** @name ArgonPrimitivesBitcoinUtxoValue (
|
|
3812
|
+
/** @name ArgonPrimitivesBitcoinUtxoValue (386) */
|
|
3799
3813
|
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
3800
3814
|
readonly utxoId: u64;
|
|
3801
3815
|
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
@@ -3804,7 +3818,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3804
3818
|
readonly watchForSpentUntilHeight: Compact<u64>;
|
|
3805
3819
|
}
|
|
3806
3820
|
|
|
3807
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (
|
|
3821
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (387) */
|
|
3808
3822
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
3809
3823
|
readonly isP2wsh: boolean;
|
|
3810
3824
|
readonly asP2wsh: {
|
|
@@ -3813,7 +3827,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3813
3827
|
readonly type: 'P2wsh';
|
|
3814
3828
|
}
|
|
3815
3829
|
|
|
3816
|
-
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (
|
|
3830
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (396) */
|
|
3817
3831
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
3818
3832
|
readonly isBitcoin: boolean;
|
|
3819
3833
|
readonly isTestnet: boolean;
|
|
@@ -3822,7 +3836,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3822
3836
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
3823
3837
|
}
|
|
3824
3838
|
|
|
3825
|
-
/** @name PalletBitcoinUtxosError (
|
|
3839
|
+
/** @name PalletBitcoinUtxosError (397) */
|
|
3826
3840
|
interface PalletBitcoinUtxosError extends Enum {
|
|
3827
3841
|
readonly isNoPermissions: boolean;
|
|
3828
3842
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -3857,12 +3871,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
3857
3871
|
| 'LockAlreadyFunded';
|
|
3858
3872
|
}
|
|
3859
3873
|
|
|
3860
|
-
/** @name ArgonPrimitivesVault (
|
|
3874
|
+
/** @name ArgonPrimitivesVault (398) */
|
|
3861
3875
|
interface ArgonPrimitivesVault extends Struct {
|
|
3862
3876
|
readonly operatorAccountId: AccountId32;
|
|
3863
3877
|
readonly delegateAccountId: Option<AccountId32>;
|
|
3864
|
-
readonly name: Option<Bytes>;
|
|
3865
|
-
readonly lastNameChangeTick: Option<u64>;
|
|
3866
3878
|
readonly securitization: Compact<u128>;
|
|
3867
3879
|
readonly securitizationTarget: Compact<u128>;
|
|
3868
3880
|
readonly securitizationLocked: Compact<u128>;
|
|
@@ -3881,13 +3893,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3881
3893
|
readonly operationalMinimumReleaseTick: Option<u64>;
|
|
3882
3894
|
}
|
|
3883
3895
|
|
|
3884
|
-
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (
|
|
3896
|
+
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (405) */
|
|
3885
3897
|
interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
|
|
3886
3898
|
readonly committedMicronots: Compact<u128>;
|
|
3887
3899
|
readonly encumberedMicronots: Compact<u128>;
|
|
3888
3900
|
}
|
|
3889
3901
|
|
|
3890
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
3902
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (407) */
|
|
3891
3903
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
3892
3904
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
3893
3905
|
readonly depth: Compact<u8>;
|
|
@@ -3897,14 +3909,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3897
3909
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
3898
3910
|
}
|
|
3899
3911
|
|
|
3900
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
3912
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (409) */
|
|
3901
3913
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
3902
3914
|
readonly isMain: boolean;
|
|
3903
3915
|
readonly isTest: boolean;
|
|
3904
3916
|
readonly type: 'Main' | 'Test';
|
|
3905
3917
|
}
|
|
3906
3918
|
|
|
3907
|
-
/** @name PalletVaultsVaultFrameRevenue (
|
|
3919
|
+
/** @name PalletVaultsVaultFrameRevenue (418) */
|
|
3908
3920
|
interface PalletVaultsVaultFrameRevenue extends Struct {
|
|
3909
3921
|
readonly frameId: Compact<u64>;
|
|
3910
3922
|
readonly bitcoinLockFeeRevenue: Compact<u128>;
|
|
@@ -3924,15 +3936,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3924
3936
|
readonly uncollectedRevenue: Compact<u128>;
|
|
3925
3937
|
}
|
|
3926
3938
|
|
|
3927
|
-
/** @name
|
|
3928
|
-
interface PalletVaultsRecentCapacityDrop extends Struct {
|
|
3929
|
-
readonly blockNumber: Compact<u32>;
|
|
3930
|
-
readonly availableBeforeDrop: Compact<u128>;
|
|
3931
|
-
readonly availableAfterDrop: Compact<u128>;
|
|
3932
|
-
readonly noFeeFailuresUsed: Compact<u32>;
|
|
3933
|
-
}
|
|
3934
|
-
|
|
3935
|
-
/** @name PalletVaultsError (419) */
|
|
3939
|
+
/** @name PalletVaultsError (420) */
|
|
3936
3940
|
interface PalletVaultsError extends Enum {
|
|
3937
3941
|
readonly isNoMoreVaultIds: boolean;
|
|
3938
3942
|
readonly isInsufficientFunds: boolean;
|
|
@@ -3961,7 +3965,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
3961
3965
|
readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
|
|
3962
3966
|
readonly isFundingChangeAlreadyScheduled: boolean;
|
|
3963
3967
|
readonly isInvalidBondSharingTerms: boolean;
|
|
3964
|
-
readonly isInvalidVaultName: boolean;
|
|
3965
3968
|
readonly isPendingCosignsBeforeCollect: boolean;
|
|
3966
3969
|
readonly isPendingOrphanedUtxoCosignsBeforeCollect: boolean;
|
|
3967
3970
|
readonly isOverdueCollectBlockersBeforeCollect: boolean;
|
|
@@ -3996,7 +3999,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
3996
3999
|
| 'UnableToGenerateVaultBitcoinPubkey'
|
|
3997
4000
|
| 'FundingChangeAlreadyScheduled'
|
|
3998
4001
|
| 'InvalidBondSharingTerms'
|
|
3999
|
-
| 'InvalidVaultName'
|
|
4000
4002
|
| 'PendingCosignsBeforeCollect'
|
|
4001
4003
|
| 'PendingOrphanedUtxoCosignsBeforeCollect'
|
|
4002
4004
|
| 'OverdueCollectBlockersBeforeCollect'
|
|
@@ -4005,7 +4007,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4005
4007
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
4006
4008
|
}
|
|
4007
4009
|
|
|
4008
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
4010
|
+
/** @name PalletBitcoinLocksLockedBitcoin (421) */
|
|
4009
4011
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
4010
4012
|
readonly vaultId: Compact<u32>;
|
|
4011
4013
|
readonly liquidityPromised: Compact<u128>;
|
|
@@ -4030,7 +4032,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4030
4032
|
readonly createdAtArgonBlock: Compact<u32>;
|
|
4031
4033
|
}
|
|
4032
4034
|
|
|
4033
|
-
/** @name PalletBitcoinLocksLockReleaseRequest (
|
|
4035
|
+
/** @name PalletBitcoinLocksLockReleaseRequest (425) */
|
|
4034
4036
|
interface PalletBitcoinLocksLockReleaseRequest extends Struct {
|
|
4035
4037
|
readonly utxoId: Compact<u64>;
|
|
4036
4038
|
readonly vaultId: Compact<u32>;
|
|
@@ -4040,7 +4042,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4040
4042
|
readonly redemptionAmount: Compact<u128>;
|
|
4041
4043
|
}
|
|
4042
4044
|
|
|
4043
|
-
/** @name PalletBitcoinLocksOrphanedUtxo (
|
|
4045
|
+
/** @name PalletBitcoinLocksOrphanedUtxo (427) */
|
|
4044
4046
|
interface PalletBitcoinLocksOrphanedUtxo extends Struct {
|
|
4045
4047
|
readonly utxoId: Compact<u64>;
|
|
4046
4048
|
readonly vaultId: Compact<u32>;
|
|
@@ -4049,14 +4051,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4049
4051
|
readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
|
|
4050
4052
|
}
|
|
4051
4053
|
|
|
4052
|
-
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (
|
|
4054
|
+
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (429) */
|
|
4053
4055
|
interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
|
|
4054
4056
|
readonly bitcoinNetworkFee: u64;
|
|
4055
4057
|
readonly toScriptPubkey: Bytes;
|
|
4056
4058
|
readonly createdAtArgonBlockNumber: u32;
|
|
4057
4059
|
}
|
|
4058
4060
|
|
|
4059
|
-
/** @name PalletBitcoinLocksError (
|
|
4061
|
+
/** @name PalletBitcoinLocksError (436) */
|
|
4060
4062
|
interface PalletBitcoinLocksError extends Enum {
|
|
4061
4063
|
readonly isInsufficientFunds: boolean;
|
|
4062
4064
|
readonly isInsufficientVaultFunds: boolean;
|
|
@@ -4090,6 +4092,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4090
4092
|
readonly isLockPendingFunding: boolean;
|
|
4091
4093
|
readonly isOverflowError: boolean;
|
|
4092
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;
|
|
4093
4102
|
readonly isOrphanedUtxoFundingConflict: boolean;
|
|
4094
4103
|
readonly isOrphanedUtxoReleaseRequested: boolean;
|
|
4095
4104
|
readonly isFundingUtxoCannotBeReleased: boolean;
|
|
@@ -4126,13 +4135,20 @@ declare module '@polkadot/types/lookup' {
|
|
|
4126
4135
|
| 'LockPendingFunding'
|
|
4127
4136
|
| 'OverflowError'
|
|
4128
4137
|
| 'IneligibleMicrogonRateRequested'
|
|
4138
|
+
| 'FeeCouponWrongVault'
|
|
4139
|
+
| 'FeeCouponWrongChain'
|
|
4140
|
+
| 'FeeCouponWrongAccount'
|
|
4141
|
+
| 'FeeCouponExpired'
|
|
4142
|
+
| 'InvalidFeeCouponSignature'
|
|
4143
|
+
| 'FeeCouponAlreadyUsed'
|
|
4144
|
+
| 'FeeCouponOnlyForInitialization'
|
|
4129
4145
|
| 'OrphanedUtxoFundingConflict'
|
|
4130
4146
|
| 'OrphanedUtxoReleaseRequested'
|
|
4131
4147
|
| 'FundingUtxoCannotBeReleased'
|
|
4132
4148
|
| 'MaxOrphanedUtxoReleaseRequestsExceeded';
|
|
4133
4149
|
}
|
|
4134
4150
|
|
|
4135
|
-
/** @name ArgonPrimitivesVaultVaultError (
|
|
4151
|
+
/** @name ArgonPrimitivesVaultVaultError (437) */
|
|
4136
4152
|
interface ArgonPrimitivesVaultVaultError extends Enum {
|
|
4137
4153
|
readonly isVaultClosed: boolean;
|
|
4138
4154
|
readonly isAccountWouldBeBelowMinimum: boolean;
|
|
@@ -4163,7 +4179,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4163
4179
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
4164
4180
|
}
|
|
4165
4181
|
|
|
4166
|
-
/** @name PalletNotariesError (
|
|
4182
|
+
/** @name PalletNotariesError (449) */
|
|
4167
4183
|
interface PalletNotariesError extends Enum {
|
|
4168
4184
|
readonly isProposalNotFound: boolean;
|
|
4169
4185
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -4186,7 +4202,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4186
4202
|
| 'InvalidNotary';
|
|
4187
4203
|
}
|
|
4188
4204
|
|
|
4189
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
4205
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (453) */
|
|
4190
4206
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
4191
4207
|
readonly notebookNumber: Compact<u32>;
|
|
4192
4208
|
readonly tick: Compact<u64>;
|
|
@@ -4195,7 +4211,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4195
4211
|
readonly parentSecret: Option<H256>;
|
|
4196
4212
|
}
|
|
4197
4213
|
|
|
4198
|
-
/** @name PalletNotebookError (
|
|
4214
|
+
/** @name PalletNotebookError (456) */
|
|
4199
4215
|
interface PalletNotebookError extends Enum {
|
|
4200
4216
|
readonly isDuplicateNotebookNumber: boolean;
|
|
4201
4217
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -4230,7 +4246,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4230
4246
|
| 'InvalidNotebookSubmissionTick';
|
|
4231
4247
|
}
|
|
4232
4248
|
|
|
4233
|
-
/** @name PalletLocalchainTransferQueuedTransferOut (
|
|
4249
|
+
/** @name PalletLocalchainTransferQueuedTransferOut (457) */
|
|
4234
4250
|
interface PalletLocalchainTransferQueuedTransferOut extends Struct {
|
|
4235
4251
|
readonly accountId: AccountId32;
|
|
4236
4252
|
readonly amount: u128;
|
|
@@ -4238,10 +4254,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4238
4254
|
readonly notaryId: u32;
|
|
4239
4255
|
}
|
|
4240
4256
|
|
|
4241
|
-
/** @name FrameSupportPalletId (
|
|
4257
|
+
/** @name FrameSupportPalletId (459) */
|
|
4242
4258
|
interface FrameSupportPalletId extends U8aFixed {}
|
|
4243
4259
|
|
|
4244
|
-
/** @name PalletLocalchainTransferError (
|
|
4260
|
+
/** @name PalletLocalchainTransferError (460) */
|
|
4245
4261
|
interface PalletLocalchainTransferError extends Enum {
|
|
4246
4262
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
4247
4263
|
readonly isInsufficientFunds: boolean;
|
|
@@ -4262,7 +4278,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4262
4278
|
| 'NoAvailableTransferId';
|
|
4263
4279
|
}
|
|
4264
4280
|
|
|
4265
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
4281
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (464) */
|
|
4266
4282
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
4267
4283
|
readonly notaryId: Compact<u32>;
|
|
4268
4284
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -4271,13 +4287,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4271
4287
|
readonly blockVotingPower: Compact<u128>;
|
|
4272
4288
|
}
|
|
4273
4289
|
|
|
4274
|
-
/** @name PalletBlockSealSpecError (
|
|
4290
|
+
/** @name PalletBlockSealSpecError (469) */
|
|
4275
4291
|
interface PalletBlockSealSpecError extends Enum {
|
|
4276
4292
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
4277
4293
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
4278
4294
|
}
|
|
4279
4295
|
|
|
4280
|
-
/** @name PalletDomainsError (
|
|
4296
|
+
/** @name PalletDomainsError (471) */
|
|
4281
4297
|
interface PalletDomainsError extends Enum {
|
|
4282
4298
|
readonly isDomainNotRegistered: boolean;
|
|
4283
4299
|
readonly isNotDomainOwner: boolean;
|
|
@@ -4292,34 +4308,43 @@ declare module '@polkadot/types/lookup' {
|
|
|
4292
4308
|
| 'AccountDecodingError';
|
|
4293
4309
|
}
|
|
4294
4310
|
|
|
4295
|
-
/** @name
|
|
4311
|
+
/** @name PalletPriceIndexEthereumPriceFrameAccumulator (473) */
|
|
4312
|
+
interface PalletPriceIndexEthereumPriceFrameAccumulator extends Struct {
|
|
4313
|
+
readonly totalUsdPrice: u128;
|
|
4314
|
+
readonly totalWeiPerGas: Compact<u128>;
|
|
4315
|
+
readonly sampleCount: Compact<u32>;
|
|
4316
|
+
}
|
|
4317
|
+
|
|
4318
|
+
/** @name PalletPriceIndexCpiMeasurementBucket (478) */
|
|
4296
4319
|
interface PalletPriceIndexCpiMeasurementBucket extends Struct {
|
|
4297
4320
|
readonly tickRange: ITuple<[u64, u64]>;
|
|
4298
4321
|
readonly totalCpi: i128;
|
|
4299
4322
|
readonly measurementsCount: u32;
|
|
4300
4323
|
}
|
|
4301
4324
|
|
|
4302
|
-
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (
|
|
4325
|
+
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (482) */
|
|
4303
4326
|
interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
|
|
4304
4327
|
readonly frameId: Compact<u64>;
|
|
4305
4328
|
readonly totalMicrogonsPerArgonot: Compact<u128>;
|
|
4306
4329
|
readonly sampleCount: Compact<u32>;
|
|
4307
4330
|
}
|
|
4308
4331
|
|
|
4309
|
-
/** @name PalletPriceIndexError (
|
|
4332
|
+
/** @name PalletPriceIndexError (483) */
|
|
4310
4333
|
interface PalletPriceIndexError extends Enum {
|
|
4311
4334
|
readonly isNotAuthorizedOperator: boolean;
|
|
4312
4335
|
readonly isMissingValue: boolean;
|
|
4313
4336
|
readonly isPricesTooOld: boolean;
|
|
4314
4337
|
readonly isMaxPriceChangePerTickExceeded: boolean;
|
|
4338
|
+
readonly isInvalidEthereumPrices: boolean;
|
|
4315
4339
|
readonly type:
|
|
4316
4340
|
| 'NotAuthorizedOperator'
|
|
4317
4341
|
| 'MissingValue'
|
|
4318
4342
|
| 'PricesTooOld'
|
|
4319
|
-
| 'MaxPriceChangePerTickExceeded'
|
|
4343
|
+
| 'MaxPriceChangePerTickExceeded'
|
|
4344
|
+
| 'InvalidEthereumPrices';
|
|
4320
4345
|
}
|
|
4321
4346
|
|
|
4322
|
-
/** @name PalletGrandpaStoredState (
|
|
4347
|
+
/** @name PalletGrandpaStoredState (484) */
|
|
4323
4348
|
interface PalletGrandpaStoredState extends Enum {
|
|
4324
4349
|
readonly isLive: boolean;
|
|
4325
4350
|
readonly isPendingPause: boolean;
|
|
@@ -4336,7 +4361,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4336
4361
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
4337
4362
|
}
|
|
4338
4363
|
|
|
4339
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
4364
|
+
/** @name PalletGrandpaStoredPendingChange (485) */
|
|
4340
4365
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
4341
4366
|
readonly scheduledAt: u32;
|
|
4342
4367
|
readonly delay: u32;
|
|
@@ -4344,7 +4369,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4344
4369
|
readonly forced: Option<u32>;
|
|
4345
4370
|
}
|
|
4346
4371
|
|
|
4347
|
-
/** @name PalletGrandpaError (
|
|
4372
|
+
/** @name PalletGrandpaError (487) */
|
|
4348
4373
|
interface PalletGrandpaError extends Enum {
|
|
4349
4374
|
readonly isPauseFailed: boolean;
|
|
4350
4375
|
readonly isResumeFailed: boolean;
|
|
@@ -4363,14 +4388,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4363
4388
|
| 'DuplicateOffenceReport';
|
|
4364
4389
|
}
|
|
4365
4390
|
|
|
4366
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
4391
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (488) */
|
|
4367
4392
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
4368
4393
|
readonly blockAuthorAccountId: AccountId32;
|
|
4369
4394
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
4370
4395
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
4371
4396
|
}
|
|
4372
4397
|
|
|
4373
|
-
/** @name PalletBlockSealError (
|
|
4398
|
+
/** @name PalletBlockSealError (490) */
|
|
4374
4399
|
interface PalletBlockSealError extends Enum {
|
|
4375
4400
|
readonly isInvalidVoteSealStrength: boolean;
|
|
4376
4401
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -4417,10 +4442,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4417
4442
|
| 'DuplicateVoteBlockAtTick';
|
|
4418
4443
|
}
|
|
4419
4444
|
|
|
4420
|
-
/** @name PalletBlockRewardsError (
|
|
4445
|
+
/** @name PalletBlockRewardsError (494) */
|
|
4421
4446
|
type PalletBlockRewardsError = Null;
|
|
4422
4447
|
|
|
4423
|
-
/** @name PalletMintPendingMintUtxo (
|
|
4448
|
+
/** @name PalletMintPendingMintUtxo (495) */
|
|
4424
4449
|
interface PalletMintPendingMintUtxo extends Struct {
|
|
4425
4450
|
readonly utxoId: Compact<u64>;
|
|
4426
4451
|
readonly accountId: AccountId32;
|
|
@@ -4428,34 +4453,34 @@ declare module '@polkadot/types/lookup' {
|
|
|
4428
4453
|
readonly maxAmountPerFrame: Compact<u128>;
|
|
4429
4454
|
}
|
|
4430
4455
|
|
|
4431
|
-
/** @name PalletMintMintQueueCursor (
|
|
4456
|
+
/** @name PalletMintMintQueueCursor (497) */
|
|
4432
4457
|
interface PalletMintMintQueueCursor extends Struct {
|
|
4433
4458
|
readonly payoutStartIndex: Compact<u64>;
|
|
4434
4459
|
readonly payoutCursorIndex: Compact<u64>;
|
|
4435
4460
|
readonly payoutCursorFrameId: Option<u64>;
|
|
4436
4461
|
}
|
|
4437
4462
|
|
|
4438
|
-
/** @name PalletMintMintAction (
|
|
4463
|
+
/** @name PalletMintMintAction (500) */
|
|
4439
4464
|
interface PalletMintMintAction extends Struct {
|
|
4440
4465
|
readonly argonBurned: u128;
|
|
4441
4466
|
readonly argonMinted: u128;
|
|
4442
4467
|
readonly bitcoinMinted: u128;
|
|
4443
4468
|
}
|
|
4444
4469
|
|
|
4445
|
-
/** @name PalletMintError (
|
|
4470
|
+
/** @name PalletMintError (502) */
|
|
4446
4471
|
interface PalletMintError extends Enum {
|
|
4447
4472
|
readonly isTooManyPendingMints: boolean;
|
|
4448
4473
|
readonly type: 'TooManyPendingMints';
|
|
4449
4474
|
}
|
|
4450
4475
|
|
|
4451
|
-
/** @name PalletBalancesBalanceLock (
|
|
4476
|
+
/** @name PalletBalancesBalanceLock (504) */
|
|
4452
4477
|
interface PalletBalancesBalanceLock extends Struct {
|
|
4453
4478
|
readonly id: U8aFixed;
|
|
4454
4479
|
readonly amount: u128;
|
|
4455
4480
|
readonly reasons: PalletBalancesReasons;
|
|
4456
4481
|
}
|
|
4457
4482
|
|
|
4458
|
-
/** @name PalletBalancesReasons (
|
|
4483
|
+
/** @name PalletBalancesReasons (505) */
|
|
4459
4484
|
interface PalletBalancesReasons extends Enum {
|
|
4460
4485
|
readonly isFee: boolean;
|
|
4461
4486
|
readonly isMisc: boolean;
|
|
@@ -4463,38 +4488,38 @@ declare module '@polkadot/types/lookup' {
|
|
|
4463
4488
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
4464
4489
|
}
|
|
4465
4490
|
|
|
4466
|
-
/** @name PalletBalancesReserveData (
|
|
4491
|
+
/** @name PalletBalancesReserveData (508) */
|
|
4467
4492
|
interface PalletBalancesReserveData extends Struct {
|
|
4468
4493
|
readonly id: U8aFixed;
|
|
4469
4494
|
readonly amount: u128;
|
|
4470
4495
|
}
|
|
4471
4496
|
|
|
4472
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
4497
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (511) */
|
|
4473
4498
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
4474
4499
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
4475
4500
|
readonly amount: u128;
|
|
4476
4501
|
}
|
|
4477
4502
|
|
|
4478
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
4503
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (514) */
|
|
4479
4504
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
4480
4505
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
4481
4506
|
readonly amount: u128;
|
|
4482
4507
|
}
|
|
4483
4508
|
|
|
4484
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
4509
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (515) */
|
|
4485
4510
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
4486
4511
|
readonly isBlockRewards: boolean;
|
|
4487
4512
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
4488
4513
|
readonly type: 'BlockRewards';
|
|
4489
4514
|
}
|
|
4490
4515
|
|
|
4491
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
4516
|
+
/** @name PalletBlockRewardsFreezeReason (516) */
|
|
4492
4517
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
4493
4518
|
readonly isMaturationPeriod: boolean;
|
|
4494
4519
|
readonly type: 'MaturationPeriod';
|
|
4495
4520
|
}
|
|
4496
4521
|
|
|
4497
|
-
/** @name PalletBalancesError (
|
|
4522
|
+
/** @name PalletBalancesError (518) */
|
|
4498
4523
|
interface PalletBalancesError extends Enum {
|
|
4499
4524
|
readonly isVestingBalance: boolean;
|
|
4500
4525
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -4523,7 +4548,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4523
4548
|
| 'DeltaZero';
|
|
4524
4549
|
}
|
|
4525
4550
|
|
|
4526
|
-
/** @name PalletTxPauseError (
|
|
4551
|
+
/** @name PalletTxPauseError (520) */
|
|
4527
4552
|
interface PalletTxPauseError extends Enum {
|
|
4528
4553
|
readonly isIsPaused: boolean;
|
|
4529
4554
|
readonly isIsUnpaused: boolean;
|
|
@@ -4532,40 +4557,40 @@ declare module '@polkadot/types/lookup' {
|
|
|
4532
4557
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
4533
4558
|
}
|
|
4534
4559
|
|
|
4535
|
-
/** @name PalletTransactionPaymentReleases (
|
|
4560
|
+
/** @name PalletTransactionPaymentReleases (521) */
|
|
4536
4561
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
4537
4562
|
readonly isV1Ancient: boolean;
|
|
4538
4563
|
readonly isV2: boolean;
|
|
4539
4564
|
readonly type: 'V1Ancient' | 'V2';
|
|
4540
4565
|
}
|
|
4541
4566
|
|
|
4542
|
-
/** @name FrameSupportStorageNoDrop (
|
|
4567
|
+
/** @name FrameSupportStorageNoDrop (522) */
|
|
4543
4568
|
interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
|
|
4544
4569
|
|
|
4545
|
-
/** @name FrameSupportTokensFungibleImbalance (
|
|
4570
|
+
/** @name FrameSupportTokensFungibleImbalance (523) */
|
|
4546
4571
|
interface FrameSupportTokensFungibleImbalance extends Struct {
|
|
4547
4572
|
readonly amount: u128;
|
|
4548
4573
|
}
|
|
4549
4574
|
|
|
4550
|
-
/** @name PalletUtilityError (
|
|
4575
|
+
/** @name PalletUtilityError (524) */
|
|
4551
4576
|
interface PalletUtilityError extends Enum {
|
|
4552
4577
|
readonly isTooManyCalls: boolean;
|
|
4553
4578
|
readonly type: 'TooManyCalls';
|
|
4554
4579
|
}
|
|
4555
4580
|
|
|
4556
|
-
/** @name PalletSudoError (
|
|
4581
|
+
/** @name PalletSudoError (525) */
|
|
4557
4582
|
interface PalletSudoError extends Enum {
|
|
4558
4583
|
readonly isRequireSudo: boolean;
|
|
4559
4584
|
readonly type: 'RequireSudo';
|
|
4560
4585
|
}
|
|
4561
4586
|
|
|
4562
|
-
/** @name PalletTreasuryFrameVaultCapital (
|
|
4587
|
+
/** @name PalletTreasuryFrameVaultCapital (526) */
|
|
4563
4588
|
interface PalletTreasuryFrameVaultCapital extends Struct {
|
|
4564
4589
|
readonly frameId: Compact<u64>;
|
|
4565
4590
|
readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
|
|
4566
4591
|
}
|
|
4567
4592
|
|
|
4568
|
-
/** @name PalletTreasuryVaultCapital (
|
|
4593
|
+
/** @name PalletTreasuryVaultCapital (528) */
|
|
4569
4594
|
interface PalletTreasuryVaultCapital extends Struct {
|
|
4570
4595
|
readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
|
|
4571
4596
|
readonly backfillBondsEligible: Compact<u32>;
|
|
@@ -4573,26 +4598,26 @@ declare module '@polkadot/types/lookup' {
|
|
|
4573
4598
|
readonly eligibleBonds: Compact<u32>;
|
|
4574
4599
|
}
|
|
4575
4600
|
|
|
4576
|
-
/** @name PalletTreasuryBondLotAllocation (
|
|
4601
|
+
/** @name PalletTreasuryBondLotAllocation (530) */
|
|
4577
4602
|
interface PalletTreasuryBondLotAllocation extends Struct {
|
|
4578
4603
|
readonly bondLotId: Compact<u64>;
|
|
4579
4604
|
readonly prorata: u128;
|
|
4580
4605
|
}
|
|
4581
4606
|
|
|
4582
|
-
/** @name PalletTreasuryFrameArgonotBondParticipants (
|
|
4607
|
+
/** @name PalletTreasuryFrameArgonotBondParticipants (535) */
|
|
4583
4608
|
interface PalletTreasuryFrameArgonotBondParticipants extends Struct {
|
|
4584
4609
|
readonly frameId: Compact<u64>;
|
|
4585
4610
|
readonly totalBonds: Compact<u32>;
|
|
4586
4611
|
readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
4587
4612
|
}
|
|
4588
4613
|
|
|
4589
|
-
/** @name PalletTreasuryBondLotSummary (
|
|
4614
|
+
/** @name PalletTreasuryBondLotSummary (537) */
|
|
4590
4615
|
interface PalletTreasuryBondLotSummary extends Struct {
|
|
4591
4616
|
readonly bondLotId: Compact<u64>;
|
|
4592
4617
|
readonly bonds: Compact<u32>;
|
|
4593
4618
|
}
|
|
4594
4619
|
|
|
4595
|
-
/** @name PalletTreasuryBondLot (
|
|
4620
|
+
/** @name PalletTreasuryBondLot (539) */
|
|
4596
4621
|
interface PalletTreasuryBondLot extends Struct {
|
|
4597
4622
|
readonly owner: AccountId32;
|
|
4598
4623
|
readonly program: PalletTreasuryBondProgram;
|
|
@@ -4607,7 +4632,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4607
4632
|
readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
|
|
4608
4633
|
}
|
|
4609
4634
|
|
|
4610
|
-
/** @name PalletTreasuryBondProgram (
|
|
4635
|
+
/** @name PalletTreasuryBondProgram (540) */
|
|
4611
4636
|
interface PalletTreasuryBondProgram extends Enum {
|
|
4612
4637
|
readonly isVault: boolean;
|
|
4613
4638
|
readonly asVault: {
|
|
@@ -4619,14 +4644,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4619
4644
|
readonly type: 'Vault' | 'Argonot';
|
|
4620
4645
|
}
|
|
4621
4646
|
|
|
4622
|
-
/** @name PalletTreasuryVaultBondState (
|
|
4647
|
+
/** @name PalletTreasuryVaultBondState (543) */
|
|
4623
4648
|
interface PalletTreasuryVaultBondState extends Struct {
|
|
4624
4649
|
readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
4625
4650
|
readonly backfillBonds: Compact<u32>;
|
|
4626
4651
|
readonly backfillBondsReserved: Compact<u32>;
|
|
4627
4652
|
}
|
|
4628
4653
|
|
|
4629
|
-
/** @name PalletTreasuryError (
|
|
4654
|
+
/** @name PalletTreasuryError (545) */
|
|
4630
4655
|
interface PalletTreasuryError extends Enum {
|
|
4631
4656
|
readonly isBondPurchaseRejected: boolean;
|
|
4632
4657
|
readonly isVaultNotAcceptingBondPurchases: boolean;
|
|
@@ -4671,18 +4696,20 @@ declare module '@polkadot/types/lookup' {
|
|
|
4671
4696
|
| 'NoPermissions';
|
|
4672
4697
|
}
|
|
4673
4698
|
|
|
4674
|
-
/** @name PalletFeeControlError (
|
|
4699
|
+
/** @name PalletFeeControlError (546) */
|
|
4675
4700
|
interface PalletFeeControlError extends Enum {
|
|
4676
4701
|
readonly isSponsoredFeeTooHigh: boolean;
|
|
4677
4702
|
readonly type: 'SponsoredFeeTooHigh';
|
|
4678
4703
|
}
|
|
4679
4704
|
|
|
4680
|
-
/** @name PalletOperationalAccountsOperationalAccount (
|
|
4705
|
+
/** @name PalletOperationalAccountsOperationalAccount (547) */
|
|
4681
4706
|
interface PalletOperationalAccountsOperationalAccount extends Struct {
|
|
4682
4707
|
readonly vaultAccount: AccountId32;
|
|
4683
4708
|
readonly miningAccount: AccountId32;
|
|
4684
4709
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
4685
4710
|
readonly upstreamAccount: Option<AccountId32>;
|
|
4711
|
+
readonly name: Option<Bytes>;
|
|
4712
|
+
readonly lastNameChangeTick: Option<u64>;
|
|
4686
4713
|
readonly uniswapArgonTransfersInAmount: u128;
|
|
4687
4714
|
readonly accountBitcoinAmount: u128;
|
|
4688
4715
|
readonly accountVaultBondAmount: u128;
|
|
@@ -4692,7 +4719,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
4692
4719
|
readonly miningSeatAccrual: Compact<u32>;
|
|
4693
4720
|
readonly miningSeatAppliedTotal: Compact<u32>;
|
|
4694
4721
|
readonly operationalCertificationsCount: Compact<u32>;
|
|
4695
|
-
readonly accessCodePending: bool;
|
|
4696
4722
|
readonly availableAccessCodes: Compact<u32>;
|
|
4697
4723
|
readonly rewardsEarnedCount: Compact<u32>;
|
|
4698
4724
|
readonly rewardsEarnedAmount: u128;
|
|
@@ -4700,13 +4726,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4700
4726
|
readonly isOperationallyCertified: bool;
|
|
4701
4727
|
}
|
|
4702
4728
|
|
|
4703
|
-
/** @name PalletOperationalAccountsRewardsConfig (
|
|
4729
|
+
/** @name PalletOperationalAccountsRewardsConfig (548) */
|
|
4704
4730
|
interface PalletOperationalAccountsRewardsConfig extends Struct {
|
|
4705
4731
|
readonly operationalCertificationReward: Compact<u128>;
|
|
4706
4732
|
readonly operationalCertificationBonusReward: Compact<u128>;
|
|
4707
4733
|
}
|
|
4708
4734
|
|
|
4709
|
-
/** @name PalletOperationalAccountsError (
|
|
4735
|
+
/** @name PalletOperationalAccountsError (549) */
|
|
4710
4736
|
interface PalletOperationalAccountsError extends Enum {
|
|
4711
4737
|
readonly isAlreadyRegistered: boolean;
|
|
4712
4738
|
readonly isInvalidRegistrationSubmitter: boolean;
|
|
@@ -4727,6 +4753,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4727
4753
|
readonly isAlreadyOperationallyCertified: boolean;
|
|
4728
4754
|
readonly isNotEligibleForActivation: boolean;
|
|
4729
4755
|
readonly isUpstreamHasNoAvailableAccessCodes: boolean;
|
|
4756
|
+
readonly isInvalidName: boolean;
|
|
4730
4757
|
readonly type:
|
|
4731
4758
|
| 'AlreadyRegistered'
|
|
4732
4759
|
| 'InvalidRegistrationSubmitter'
|
|
@@ -4746,15 +4773,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
4746
4773
|
| 'TreasuryInsufficientFunds'
|
|
4747
4774
|
| 'AlreadyOperationallyCertified'
|
|
4748
4775
|
| 'NotEligibleForActivation'
|
|
4749
|
-
| 'UpstreamHasNoAvailableAccessCodes'
|
|
4776
|
+
| 'UpstreamHasNoAvailableAccessCodes'
|
|
4777
|
+
| 'InvalidName';
|
|
4750
4778
|
}
|
|
4751
4779
|
|
|
4752
|
-
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (
|
|
4780
|
+
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (550) */
|
|
4753
4781
|
interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
|
|
4754
4782
|
readonly slot: Compact<u64>;
|
|
4755
4783
|
}
|
|
4756
4784
|
|
|
4757
|
-
/** @name PalletEthereumVerifierExecutionHeaderAnchor (
|
|
4785
|
+
/** @name PalletEthereumVerifierExecutionHeaderAnchor (551) */
|
|
4758
4786
|
interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
|
|
4759
4787
|
readonly blockNumber: Compact<u64>;
|
|
4760
4788
|
readonly timestampMillis: Compact<u64>;
|
|
@@ -4764,44 +4792,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
4764
4792
|
readonly receiptsRoot: H256;
|
|
4765
4793
|
}
|
|
4766
4794
|
|
|
4767
|
-
/** @name PalletEthereumVerifierSyncCommitteePrepared (
|
|
4795
|
+
/** @name PalletEthereumVerifierSyncCommitteePrepared (552) */
|
|
4768
4796
|
interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
|
|
4769
4797
|
readonly root: H256;
|
|
4770
4798
|
readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
|
|
4771
4799
|
readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
|
|
4772
4800
|
}
|
|
4773
4801
|
|
|
4774
|
-
/** @name SnowbridgeMilagroBlsKeysPublicKey (
|
|
4802
|
+
/** @name SnowbridgeMilagroBlsKeysPublicKey (554) */
|
|
4775
4803
|
interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
|
|
4776
4804
|
readonly point: SnowbridgeAmclBls381Ecp;
|
|
4777
4805
|
}
|
|
4778
4806
|
|
|
4779
|
-
/** @name SnowbridgeAmclBls381Ecp (
|
|
4807
|
+
/** @name SnowbridgeAmclBls381Ecp (555) */
|
|
4780
4808
|
interface SnowbridgeAmclBls381Ecp extends Struct {
|
|
4781
4809
|
readonly x: SnowbridgeAmclBls381Fp;
|
|
4782
4810
|
readonly y: SnowbridgeAmclBls381Fp;
|
|
4783
4811
|
readonly z: SnowbridgeAmclBls381Fp;
|
|
4784
4812
|
}
|
|
4785
4813
|
|
|
4786
|
-
/** @name SnowbridgeAmclBls381Fp (
|
|
4814
|
+
/** @name SnowbridgeAmclBls381Fp (556) */
|
|
4787
4815
|
interface SnowbridgeAmclBls381Fp extends Struct {
|
|
4788
4816
|
readonly x: SnowbridgeAmclBls381Big;
|
|
4789
4817
|
readonly xes: i32;
|
|
4790
4818
|
}
|
|
4791
4819
|
|
|
4792
|
-
/** @name SnowbridgeAmclBls381Big (
|
|
4820
|
+
/** @name SnowbridgeAmclBls381Big (557) */
|
|
4793
4821
|
interface SnowbridgeAmclBls381Big extends Struct {
|
|
4794
4822
|
readonly w: Vec<i32>;
|
|
4795
4823
|
}
|
|
4796
4824
|
|
|
4797
|
-
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (
|
|
4825
|
+
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (561) */
|
|
4798
4826
|
interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
|
|
4799
4827
|
readonly isMainnet: boolean;
|
|
4800
4828
|
readonly isMinimal: boolean;
|
|
4801
4829
|
readonly type: 'Mainnet' | 'Minimal';
|
|
4802
4830
|
}
|
|
4803
4831
|
|
|
4804
|
-
/** @name PalletEthereumVerifierError (
|
|
4832
|
+
/** @name PalletEthereumVerifierError (562) */
|
|
4805
4833
|
interface PalletEthereumVerifierError extends Enum {
|
|
4806
4834
|
readonly isSkippedSyncCommitteePeriod: boolean;
|
|
4807
4835
|
readonly isSyncCommitteeUpdateRequired: boolean;
|
|
@@ -4854,7 +4882,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4854
4882
|
| 'Halted';
|
|
4855
4883
|
}
|
|
4856
4884
|
|
|
4857
|
-
/** @name PalletCrosschainTransferAccountTransferTotals (
|
|
4885
|
+
/** @name PalletCrosschainTransferAccountTransferTotals (563) */
|
|
4858
4886
|
interface PalletCrosschainTransferAccountTransferTotals extends Struct {
|
|
4859
4887
|
readonly microgonsIn: u128;
|
|
4860
4888
|
readonly microgonsOut: u128;
|
|
@@ -4866,21 +4894,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4866
4894
|
readonly argonotTransfersOutCount: Compact<u32>;
|
|
4867
4895
|
}
|
|
4868
4896
|
|
|
4869
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (
|
|
4897
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (565) */
|
|
4870
4898
|
interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
|
|
4871
4899
|
readonly epochMicrogonsPerArgonot: u128;
|
|
4872
4900
|
readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
|
|
4873
4901
|
readonly totalWeight: u128;
|
|
4874
4902
|
}
|
|
4875
4903
|
|
|
4876
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (
|
|
4904
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (567) */
|
|
4877
4905
|
interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
|
|
4878
4906
|
readonly accountId: AccountId32;
|
|
4879
4907
|
readonly signer: H160;
|
|
4880
4908
|
readonly weight: u128;
|
|
4881
4909
|
}
|
|
4882
4910
|
|
|
4883
|
-
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (
|
|
4911
|
+
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (572) */
|
|
4884
4912
|
interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
|
|
4885
4913
|
readonly approvingCouncilHash: H256;
|
|
4886
4914
|
readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
|
|
@@ -4892,7 +4920,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4892
4920
|
readonly signatures: BTreeMap<H160, U8aFixed>;
|
|
4893
4921
|
}
|
|
4894
4922
|
|
|
4895
|
-
/** @name PalletCrosschainTransferMintingAuthority (
|
|
4923
|
+
/** @name PalletCrosschainTransferMintingAuthority (577) */
|
|
4896
4924
|
interface PalletCrosschainTransferMintingAuthority extends Struct {
|
|
4897
4925
|
readonly accountId: AccountId32;
|
|
4898
4926
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -4909,7 +4937,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4909
4937
|
readonly deactivationApprovalQueueNonce: Option<u64>;
|
|
4910
4938
|
}
|
|
4911
4939
|
|
|
4912
|
-
/** @name PalletCrosschainTransferMintingAuthorityState (
|
|
4940
|
+
/** @name PalletCrosschainTransferMintingAuthorityState (578) */
|
|
4913
4941
|
interface PalletCrosschainTransferMintingAuthorityState extends Enum {
|
|
4914
4942
|
readonly isPendingActivation: boolean;
|
|
4915
4943
|
readonly isActive: boolean;
|
|
@@ -4917,7 +4945,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4917
4945
|
readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
|
|
4918
4946
|
}
|
|
4919
4947
|
|
|
4920
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (
|
|
4948
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (580) */
|
|
4921
4949
|
interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
|
|
4922
4950
|
readonly argonAccountId: AccountId32;
|
|
4923
4951
|
readonly argonTransferNonce: Compact<u64>;
|
|
@@ -4936,7 +4964,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4936
4964
|
readonly state: PalletCrosschainTransferTransferOutTransferOutState;
|
|
4937
4965
|
}
|
|
4938
4966
|
|
|
4939
|
-
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (
|
|
4967
|
+
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (582) */
|
|
4940
4968
|
interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
|
|
4941
4969
|
readonly microgonCollateral: u128;
|
|
4942
4970
|
readonly micronotCollateral: u128;
|
|
@@ -4944,27 +4972,27 @@ declare module '@polkadot/types/lookup' {
|
|
|
4944
4972
|
readonly signature: U8aFixed;
|
|
4945
4973
|
}
|
|
4946
4974
|
|
|
4947
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutState (
|
|
4975
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutState (586) */
|
|
4948
4976
|
interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
|
|
4949
4977
|
readonly isStarted: boolean;
|
|
4950
4978
|
readonly isReady: boolean;
|
|
4951
4979
|
readonly type: 'Started' | 'Ready';
|
|
4952
4980
|
}
|
|
4953
4981
|
|
|
4954
|
-
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (
|
|
4982
|
+
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (588) */
|
|
4955
4983
|
interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
|
|
4956
4984
|
readonly transferId: H256;
|
|
4957
4985
|
readonly remainingCollateral: u128;
|
|
4958
4986
|
readonly remainingMintingAuthorityTip: u128;
|
|
4959
4987
|
}
|
|
4960
4988
|
|
|
4961
|
-
/** @name PalletCrosschainTransferSourceChainCirculation (
|
|
4989
|
+
/** @name PalletCrosschainTransferSourceChainCirculation (590) */
|
|
4962
4990
|
interface PalletCrosschainTransferSourceChainCirculation extends Struct {
|
|
4963
4991
|
readonly argonCirculation: u128;
|
|
4964
4992
|
readonly argonotCirculation: u128;
|
|
4965
4993
|
}
|
|
4966
4994
|
|
|
4967
|
-
/** @name PalletCrosschainTransferError (
|
|
4995
|
+
/** @name PalletCrosschainTransferError (591) */
|
|
4968
4996
|
interface PalletCrosschainTransferError extends Enum {
|
|
4969
4997
|
readonly isInvalidTransferToArgonActivity: boolean;
|
|
4970
4998
|
readonly isNoGatewayProofBlocksProvided: boolean;
|
|
@@ -5079,7 +5107,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
5079
5107
|
| 'CouncilSignerRotationPending';
|
|
5080
5108
|
}
|
|
5081
5109
|
|
|
5082
|
-
/** @name PalletBootstrapError (
|
|
5110
|
+
/** @name PalletBootstrapError (593) */
|
|
5083
5111
|
interface PalletBootstrapError extends Enum {
|
|
5084
5112
|
readonly isEncryptedPayloadTooLong: boolean;
|
|
5085
5113
|
readonly isInvalidRecoveryProof: boolean;
|
|
@@ -5090,45 +5118,45 @@ declare module '@polkadot/types/lookup' {
|
|
|
5090
5118
|
| 'EndpointOwnedByAnotherAccount';
|
|
5091
5119
|
}
|
|
5092
5120
|
|
|
5093
|
-
/** @name FrameSystemExtensionsAuthorizeCall (
|
|
5121
|
+
/** @name FrameSystemExtensionsAuthorizeCall (596) */
|
|
5094
5122
|
type FrameSystemExtensionsAuthorizeCall = Null;
|
|
5095
5123
|
|
|
5096
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
5124
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (597) */
|
|
5097
5125
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
5098
5126
|
|
|
5099
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
5127
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (598) */
|
|
5100
5128
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
5101
5129
|
|
|
5102
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
5130
|
+
/** @name FrameSystemExtensionsCheckTxVersion (599) */
|
|
5103
5131
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
5104
5132
|
|
|
5105
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
5133
|
+
/** @name FrameSystemExtensionsCheckGenesis (600) */
|
|
5106
5134
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
5107
5135
|
|
|
5108
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
5136
|
+
/** @name FrameSystemExtensionsCheckNonce (603) */
|
|
5109
5137
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
|
|
5110
5138
|
|
|
5111
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
5139
|
+
/** @name FrameSystemExtensionsCheckWeight (604) */
|
|
5112
5140
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
5113
5141
|
|
|
5114
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
5142
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (605) */
|
|
5115
5143
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
|
|
5116
5144
|
|
|
5117
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
5145
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (606) */
|
|
5118
5146
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
5119
5147
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
5120
5148
|
}
|
|
5121
5149
|
|
|
5122
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
5150
|
+
/** @name FrameMetadataHashExtensionMode (607) */
|
|
5123
5151
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
5124
5152
|
readonly isDisabled: boolean;
|
|
5125
5153
|
readonly isEnabled: boolean;
|
|
5126
5154
|
readonly type: 'Disabled' | 'Enabled';
|
|
5127
5155
|
}
|
|
5128
5156
|
|
|
5129
|
-
/** @name FrameSystemExtensionsWeightReclaim (
|
|
5157
|
+
/** @name FrameSystemExtensionsWeightReclaim (608) */
|
|
5130
5158
|
type FrameSystemExtensionsWeightReclaim = Null;
|
|
5131
5159
|
|
|
5132
|
-
/** @name ArgonRuntimeRuntime (
|
|
5160
|
+
/** @name ArgonRuntimeRuntime (610) */
|
|
5133
5161
|
type ArgonRuntimeRuntime = Null;
|
|
5134
5162
|
} // declare module
|