@argonprotocol/mainchain 1.4.10-dev.d4d4d1dd → 1.4.11
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 +209 -172
- package/browser/index.js +1 -1
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +1 -1
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +209 -172
- package/lib/index.d.ts +209 -172
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +4 -0
- package/src/interfaces/augment-api-errors.ts +4 -0
- package/src/interfaces/augment-api-query.ts +18 -0
- package/src/interfaces/augment-api-tx.ts +9 -1
- package/src/interfaces/lookup.ts +186 -168
- package/src/interfaces/registry.ts +4 -0
- package/src/interfaces/types-lookup.ts +186 -169
|
@@ -2908,6 +2908,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2908
2908
|
readonly isSubmit: boolean;
|
|
2909
2909
|
readonly asSubmit: {
|
|
2910
2910
|
readonly index: PalletPriceIndexPriceIndex;
|
|
2911
|
+
readonly ethereum: Option<PalletPriceIndexEthereumPriceIndex>;
|
|
2911
2912
|
} & Struct;
|
|
2912
2913
|
readonly isSetOperator: boolean;
|
|
2913
2914
|
readonly asSetOperator: {
|
|
@@ -2926,7 +2927,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2926
2927
|
readonly tick: Compact<u64>;
|
|
2927
2928
|
}
|
|
2928
2929
|
|
|
2929
|
-
/** @name
|
|
2930
|
+
/** @name PalletPriceIndexEthereumPriceIndex (248) */
|
|
2931
|
+
interface PalletPriceIndexEthereumPriceIndex extends Struct {
|
|
2932
|
+
readonly ethereumUsdPrice: u128;
|
|
2933
|
+
readonly ethereumGasPriceWei: Compact<u128>;
|
|
2934
|
+
readonly tick: Compact<u64>;
|
|
2935
|
+
}
|
|
2936
|
+
|
|
2937
|
+
/** @name PalletGrandpaCall (249) */
|
|
2930
2938
|
interface PalletGrandpaCall extends Enum {
|
|
2931
2939
|
readonly isReportEquivocation: boolean;
|
|
2932
2940
|
readonly asReportEquivocation: {
|
|
@@ -2946,13 +2954,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2946
2954
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
|
2947
2955
|
}
|
|
2948
2956
|
|
|
2949
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
|
2957
|
+
/** @name SpConsensusGrandpaEquivocationProof (250) */
|
|
2950
2958
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
|
2951
2959
|
readonly setId: u64;
|
|
2952
2960
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
|
2953
2961
|
}
|
|
2954
2962
|
|
|
2955
|
-
/** @name SpConsensusGrandpaEquivocation (
|
|
2963
|
+
/** @name SpConsensusGrandpaEquivocation (251) */
|
|
2956
2964
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
|
2957
2965
|
readonly isPrevote: boolean;
|
|
2958
2966
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
|
@@ -2961,7 +2969,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2961
2969
|
readonly type: 'Prevote' | 'Precommit';
|
|
2962
2970
|
}
|
|
2963
2971
|
|
|
2964
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
|
2972
|
+
/** @name FinalityGrandpaEquivocationPrevote (252) */
|
|
2965
2973
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
|
2966
2974
|
readonly roundNumber: u64;
|
|
2967
2975
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2969,16 +2977,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2969
2977
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
2970
2978
|
}
|
|
2971
2979
|
|
|
2972
|
-
/** @name FinalityGrandpaPrevote (
|
|
2980
|
+
/** @name FinalityGrandpaPrevote (253) */
|
|
2973
2981
|
interface FinalityGrandpaPrevote extends Struct {
|
|
2974
2982
|
readonly targetHash: H256;
|
|
2975
2983
|
readonly targetNumber: u32;
|
|
2976
2984
|
}
|
|
2977
2985
|
|
|
2978
|
-
/** @name SpConsensusGrandpaAppSignature (
|
|
2986
|
+
/** @name SpConsensusGrandpaAppSignature (254) */
|
|
2979
2987
|
interface SpConsensusGrandpaAppSignature extends U8aFixed {}
|
|
2980
2988
|
|
|
2981
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
|
2989
|
+
/** @name FinalityGrandpaEquivocationPrecommit (256) */
|
|
2982
2990
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
|
2983
2991
|
readonly roundNumber: u64;
|
|
2984
2992
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2986,16 +2994,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2986
2994
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
2987
2995
|
}
|
|
2988
2996
|
|
|
2989
|
-
/** @name FinalityGrandpaPrecommit (
|
|
2997
|
+
/** @name FinalityGrandpaPrecommit (257) */
|
|
2990
2998
|
interface FinalityGrandpaPrecommit extends Struct {
|
|
2991
2999
|
readonly targetHash: H256;
|
|
2992
3000
|
readonly targetNumber: u32;
|
|
2993
3001
|
}
|
|
2994
3002
|
|
|
2995
|
-
/** @name SpCoreVoid (
|
|
3003
|
+
/** @name SpCoreVoid (259) */
|
|
2996
3004
|
type SpCoreVoid = Null;
|
|
2997
3005
|
|
|
2998
|
-
/** @name PalletBlockSealCall (
|
|
3006
|
+
/** @name PalletBlockSealCall (260) */
|
|
2999
3007
|
interface PalletBlockSealCall extends Enum {
|
|
3000
3008
|
readonly isApply: boolean;
|
|
3001
3009
|
readonly asApply: {
|
|
@@ -3004,7 +3012,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3004
3012
|
readonly type: 'Apply';
|
|
3005
3013
|
}
|
|
3006
3014
|
|
|
3007
|
-
/** @name ArgonPrimitivesInherentsBlockSealInherent (
|
|
3015
|
+
/** @name ArgonPrimitivesInherentsBlockSealInherent (261) */
|
|
3008
3016
|
interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
|
|
3009
3017
|
readonly isVote: boolean;
|
|
3010
3018
|
readonly asVote: {
|
|
@@ -3019,14 +3027,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3019
3027
|
readonly type: 'Vote' | 'Compute';
|
|
3020
3028
|
}
|
|
3021
3029
|
|
|
3022
|
-
/** @name ArgonPrimitivesBalanceChangeMerkleProof (
|
|
3030
|
+
/** @name ArgonPrimitivesBalanceChangeMerkleProof (262) */
|
|
3023
3031
|
interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
|
|
3024
3032
|
readonly proof: Vec<H256>;
|
|
3025
3033
|
readonly numberOfLeaves: Compact<u32>;
|
|
3026
3034
|
readonly leafIndex: Compact<u32>;
|
|
3027
3035
|
}
|
|
3028
3036
|
|
|
3029
|
-
/** @name ArgonPrimitivesBlockVoteBlockVoteT (
|
|
3037
|
+
/** @name ArgonPrimitivesBlockVoteBlockVoteT (264) */
|
|
3030
3038
|
interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
|
|
3031
3039
|
readonly accountId: AccountId32;
|
|
3032
3040
|
readonly blockHash: H256;
|
|
@@ -3037,7 +3045,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3037
3045
|
readonly tick: Compact<u64>;
|
|
3038
3046
|
}
|
|
3039
3047
|
|
|
3040
|
-
/** @name SpRuntimeMultiSignature (
|
|
3048
|
+
/** @name SpRuntimeMultiSignature (265) */
|
|
3041
3049
|
interface SpRuntimeMultiSignature extends Enum {
|
|
3042
3050
|
readonly isEd25519: boolean;
|
|
3043
3051
|
readonly asEd25519: U8aFixed;
|
|
@@ -3050,7 +3058,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3050
3058
|
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
|
|
3051
3059
|
}
|
|
3052
3060
|
|
|
3053
|
-
/** @name PalletBlockRewardsCall (
|
|
3061
|
+
/** @name PalletBlockRewardsCall (267) */
|
|
3054
3062
|
interface PalletBlockRewardsCall extends Enum {
|
|
3055
3063
|
readonly isSetBlockRewardsPaused: boolean;
|
|
3056
3064
|
readonly asSetBlockRewardsPaused: {
|
|
@@ -3063,10 +3071,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
3063
3071
|
readonly type: 'SetBlockRewardsPaused' | 'SetBlockVoterRewardsEnabled';
|
|
3064
3072
|
}
|
|
3065
3073
|
|
|
3066
|
-
/** @name PalletMintCall (
|
|
3074
|
+
/** @name PalletMintCall (268) */
|
|
3067
3075
|
type PalletMintCall = Null;
|
|
3068
3076
|
|
|
3069
|
-
/** @name PalletBalancesCall (
|
|
3077
|
+
/** @name PalletBalancesCall (269) */
|
|
3070
3078
|
interface PalletBalancesCall extends Enum {
|
|
3071
3079
|
readonly isTransferAllowDeath: boolean;
|
|
3072
3080
|
readonly asTransferAllowDeath: {
|
|
@@ -3125,14 +3133,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3125
3133
|
| 'Burn';
|
|
3126
3134
|
}
|
|
3127
3135
|
|
|
3128
|
-
/** @name PalletBalancesAdjustmentDirection (
|
|
3136
|
+
/** @name PalletBalancesAdjustmentDirection (270) */
|
|
3129
3137
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
|
3130
3138
|
readonly isIncrease: boolean;
|
|
3131
3139
|
readonly isDecrease: boolean;
|
|
3132
3140
|
readonly type: 'Increase' | 'Decrease';
|
|
3133
3141
|
}
|
|
3134
3142
|
|
|
3135
|
-
/** @name PalletTxPauseCall (
|
|
3143
|
+
/** @name PalletTxPauseCall (272) */
|
|
3136
3144
|
interface PalletTxPauseCall extends Enum {
|
|
3137
3145
|
readonly isPause: boolean;
|
|
3138
3146
|
readonly asPause: {
|
|
@@ -3145,7 +3153,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3145
3153
|
readonly type: 'Pause' | 'Unpause';
|
|
3146
3154
|
}
|
|
3147
3155
|
|
|
3148
|
-
/** @name PalletUtilityCall (
|
|
3156
|
+
/** @name PalletUtilityCall (273) */
|
|
3149
3157
|
interface PalletUtilityCall extends Enum {
|
|
3150
3158
|
readonly isBatch: boolean;
|
|
3151
3159
|
readonly asBatch: {
|
|
@@ -3195,7 +3203,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3195
3203
|
| 'DispatchAsFallible';
|
|
3196
3204
|
}
|
|
3197
3205
|
|
|
3198
|
-
/** @name PalletSudoCall (
|
|
3206
|
+
/** @name PalletSudoCall (275) */
|
|
3199
3207
|
interface PalletSudoCall extends Enum {
|
|
3200
3208
|
readonly isSudo: boolean;
|
|
3201
3209
|
readonly asSudo: {
|
|
@@ -3219,7 +3227,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3219
3227
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
|
3220
3228
|
}
|
|
3221
3229
|
|
|
3222
|
-
/** @name PalletTreasuryCall (
|
|
3230
|
+
/** @name PalletTreasuryCall (276) */
|
|
3223
3231
|
interface PalletTreasuryCall extends Enum {
|
|
3224
3232
|
readonly isBuyBonds: boolean;
|
|
3225
3233
|
readonly asBuyBonds: {
|
|
@@ -3253,7 +3261,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3253
3261
|
| 'SetBackfillBondsReserved';
|
|
3254
3262
|
}
|
|
3255
3263
|
|
|
3256
|
-
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (
|
|
3264
|
+
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (278) */
|
|
3257
3265
|
interface ArgonPrimitivesVaultTreasuryBonusApprovalProof extends Struct {
|
|
3258
3266
|
readonly vaultId: Compact<u32>;
|
|
3259
3267
|
readonly beneficiary: AccountId32;
|
|
@@ -3262,7 +3270,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3262
3270
|
readonly signature: SpRuntimeMultiSignature;
|
|
3263
3271
|
}
|
|
3264
3272
|
|
|
3265
|
-
/** @name PalletOperationalAccountsCall (
|
|
3273
|
+
/** @name PalletOperationalAccountsCall (279) */
|
|
3266
3274
|
interface PalletOperationalAccountsCall extends Enum {
|
|
3267
3275
|
readonly isRegister: boolean;
|
|
3268
3276
|
readonly asRegister: {
|
|
@@ -3292,14 +3300,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3292
3300
|
| 'ClaimRewards';
|
|
3293
3301
|
}
|
|
3294
3302
|
|
|
3295
|
-
/** @name PalletOperationalAccountsRegistration (
|
|
3303
|
+
/** @name PalletOperationalAccountsRegistration (280) */
|
|
3296
3304
|
interface PalletOperationalAccountsRegistration extends Enum {
|
|
3297
3305
|
readonly isV1: boolean;
|
|
3298
3306
|
readonly asV1: PalletOperationalAccountsRegistrationV1;
|
|
3299
3307
|
readonly type: 'V1';
|
|
3300
3308
|
}
|
|
3301
3309
|
|
|
3302
|
-
/** @name PalletOperationalAccountsRegistrationV1 (
|
|
3310
|
+
/** @name PalletOperationalAccountsRegistrationV1 (281) */
|
|
3303
3311
|
interface PalletOperationalAccountsRegistrationV1 extends Struct {
|
|
3304
3312
|
readonly operationalAccount: AccountId32;
|
|
3305
3313
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
@@ -3311,21 +3319,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3311
3319
|
readonly accessProof: Option<PalletOperationalAccountsUpstreamAccessProof>;
|
|
3312
3320
|
}
|
|
3313
3321
|
|
|
3314
|
-
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (
|
|
3322
|
+
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (282) */
|
|
3315
3323
|
interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {}
|
|
3316
3324
|
|
|
3317
|
-
/** @name PalletOperationalAccountsAccountOwnershipProof (
|
|
3325
|
+
/** @name PalletOperationalAccountsAccountOwnershipProof (283) */
|
|
3318
3326
|
interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
|
|
3319
3327
|
readonly signature: SpRuntimeMultiSignature;
|
|
3320
3328
|
}
|
|
3321
3329
|
|
|
3322
|
-
/** @name PalletOperationalAccountsUpstreamAccessProof (
|
|
3330
|
+
/** @name PalletOperationalAccountsUpstreamAccessProof (285) */
|
|
3323
3331
|
interface PalletOperationalAccountsUpstreamAccessProof extends Struct {
|
|
3324
3332
|
readonly upstreamAccount: AccountId32;
|
|
3325
3333
|
readonly signature: SpRuntimeMultiSignature;
|
|
3326
3334
|
}
|
|
3327
3335
|
|
|
3328
|
-
/** @name PalletOperationalAccountsOperationalProgressPatch (
|
|
3336
|
+
/** @name PalletOperationalAccountsOperationalProgressPatch (286) */
|
|
3329
3337
|
interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
|
|
3330
3338
|
readonly uniswapArgonTransfersInAmount: Option<u128>;
|
|
3331
3339
|
readonly accountBitcoinAmount: Option<u128>;
|
|
@@ -3335,7 +3343,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3335
3343
|
readonly miningSeatCount: Option<u32>;
|
|
3336
3344
|
}
|
|
3337
3345
|
|
|
3338
|
-
/** @name PalletEthereumVerifierCall (
|
|
3346
|
+
/** @name PalletEthereumVerifierCall (288) */
|
|
3339
3347
|
interface PalletEthereumVerifierCall extends Enum {
|
|
3340
3348
|
readonly isForceCheckpoint: boolean;
|
|
3341
3349
|
readonly asForceCheckpoint: {
|
|
@@ -3363,7 +3371,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3363
3371
|
| 'SetOperatingMode';
|
|
3364
3372
|
}
|
|
3365
3373
|
|
|
3366
|
-
/** @name PalletEthereumVerifierCheckpointUpdate (
|
|
3374
|
+
/** @name PalletEthereumVerifierCheckpointUpdate (289) */
|
|
3367
3375
|
interface PalletEthereumVerifierCheckpointUpdate extends Struct {
|
|
3368
3376
|
readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3369
3377
|
readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
@@ -3372,7 +3380,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3372
3380
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3373
3381
|
}
|
|
3374
3382
|
|
|
3375
|
-
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (
|
|
3383
|
+
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (290) */
|
|
3376
3384
|
interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
|
|
3377
3385
|
readonly slot: u64;
|
|
3378
3386
|
readonly proposerIndex: u64;
|
|
@@ -3381,22 +3389,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3381
3389
|
readonly bodyRoot: H256;
|
|
3382
3390
|
}
|
|
3383
3391
|
|
|
3384
|
-
/** @name PalletEthereumVerifierSyncCommittee (
|
|
3392
|
+
/** @name PalletEthereumVerifierSyncCommittee (291) */
|
|
3385
3393
|
interface PalletEthereumVerifierSyncCommittee extends Struct {
|
|
3386
3394
|
readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
|
|
3387
3395
|
readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
|
|
3388
3396
|
}
|
|
3389
3397
|
|
|
3390
|
-
/** @name SnowbridgeBeaconPrimitivesPublicKey (
|
|
3398
|
+
/** @name SnowbridgeBeaconPrimitivesPublicKey (293) */
|
|
3391
3399
|
interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
|
|
3392
3400
|
|
|
3393
|
-
/** @name PalletEthereumVerifierExecutionHeaderProof (
|
|
3401
|
+
/** @name PalletEthereumVerifierExecutionHeaderProof (297) */
|
|
3394
3402
|
interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
|
|
3395
3403
|
readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
|
|
3396
3404
|
readonly executionBranch: Vec<H256>;
|
|
3397
3405
|
}
|
|
3398
3406
|
|
|
3399
|
-
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (
|
|
3407
|
+
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (298) */
|
|
3400
3408
|
interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
|
|
3401
3409
|
readonly isCapella: boolean;
|
|
3402
3410
|
readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
|
|
@@ -3405,7 +3413,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3405
3413
|
readonly type: 'Capella' | 'Deneb';
|
|
3406
3414
|
}
|
|
3407
3415
|
|
|
3408
|
-
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (
|
|
3416
|
+
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (299) */
|
|
3409
3417
|
interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
|
|
3410
3418
|
readonly parentHash: H256;
|
|
3411
3419
|
readonly feeRecipient: H160;
|
|
@@ -3424,7 +3432,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3424
3432
|
readonly withdrawalsRoot: H256;
|
|
3425
3433
|
}
|
|
3426
3434
|
|
|
3427
|
-
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (
|
|
3435
|
+
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (300) */
|
|
3428
3436
|
interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
|
|
3429
3437
|
readonly parentHash: H256;
|
|
3430
3438
|
readonly feeRecipient: H160;
|
|
@@ -3445,7 +3453,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3445
3453
|
readonly excessBlobGas: u64;
|
|
3446
3454
|
}
|
|
3447
3455
|
|
|
3448
|
-
/** @name PalletEthereumVerifierForkVersions (
|
|
3456
|
+
/** @name PalletEthereumVerifierForkVersions (301) */
|
|
3449
3457
|
interface PalletEthereumVerifierForkVersions extends Struct {
|
|
3450
3458
|
readonly genesis: PalletEthereumVerifierFork;
|
|
3451
3459
|
readonly altair: PalletEthereumVerifierFork;
|
|
@@ -3456,13 +3464,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3456
3464
|
readonly fulu: PalletEthereumVerifierFork;
|
|
3457
3465
|
}
|
|
3458
3466
|
|
|
3459
|
-
/** @name PalletEthereumVerifierFork (
|
|
3467
|
+
/** @name PalletEthereumVerifierFork (302) */
|
|
3460
3468
|
interface PalletEthereumVerifierFork extends Struct {
|
|
3461
3469
|
readonly version: U8aFixed;
|
|
3462
3470
|
readonly epoch: Compact<u64>;
|
|
3463
3471
|
}
|
|
3464
3472
|
|
|
3465
|
-
/** @name PalletEthereumVerifierUpdate (
|
|
3473
|
+
/** @name PalletEthereumVerifierUpdate (303) */
|
|
3466
3474
|
interface PalletEthereumVerifierUpdate extends Struct {
|
|
3467
3475
|
readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3468
3476
|
readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
|
|
@@ -3473,22 +3481,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3473
3481
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3474
3482
|
}
|
|
3475
3483
|
|
|
3476
|
-
/** @name PalletEthereumVerifierSyncAggregate (
|
|
3484
|
+
/** @name PalletEthereumVerifierSyncAggregate (304) */
|
|
3477
3485
|
interface PalletEthereumVerifierSyncAggregate extends Struct {
|
|
3478
3486
|
readonly syncCommitteeBits: Bytes;
|
|
3479
3487
|
readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
|
|
3480
3488
|
}
|
|
3481
3489
|
|
|
3482
|
-
/** @name SnowbridgeBeaconPrimitivesSignature (
|
|
3490
|
+
/** @name SnowbridgeBeaconPrimitivesSignature (306) */
|
|
3483
3491
|
interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
|
|
3484
3492
|
|
|
3485
|
-
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (
|
|
3493
|
+
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (309) */
|
|
3486
3494
|
interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
|
|
3487
3495
|
readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
3488
3496
|
readonly nextSyncCommitteeBranch: Vec<H256>;
|
|
3489
3497
|
}
|
|
3490
3498
|
|
|
3491
|
-
/** @name PalletCrosschainTransferCall (
|
|
3499
|
+
/** @name PalletCrosschainTransferCall (310) */
|
|
3492
3500
|
interface PalletCrosschainTransferCall extends Enum {
|
|
3493
3501
|
readonly isSetChainConfig: boolean;
|
|
3494
3502
|
readonly asSetChainConfig: {
|
|
@@ -3578,7 +3586,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3578
3586
|
| 'CollateralizeTransfer';
|
|
3579
3587
|
}
|
|
3580
3588
|
|
|
3581
|
-
/** @name PalletCrosschainTransferChainConfig (
|
|
3589
|
+
/** @name PalletCrosschainTransferChainConfig (311) */
|
|
3582
3590
|
interface PalletCrosschainTransferChainConfig extends Enum {
|
|
3583
3591
|
readonly isEvm: boolean;
|
|
3584
3592
|
readonly asEvm: {
|
|
@@ -3590,7 +3598,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3590
3598
|
readonly type: 'Evm';
|
|
3591
3599
|
}
|
|
3592
3600
|
|
|
3593
|
-
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (
|
|
3601
|
+
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (313) */
|
|
3594
3602
|
interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
|
|
3595
3603
|
readonly activationGasCost: Compact<u128>;
|
|
3596
3604
|
readonly signatureGasCost: Compact<u128>;
|
|
@@ -3598,56 +3606,56 @@ declare module '@polkadot/types/lookup' {
|
|
|
3598
3606
|
readonly estimatedMicrogonsPerEth: u128;
|
|
3599
3607
|
}
|
|
3600
3608
|
|
|
3601
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (
|
|
3609
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (316) */
|
|
3602
3610
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
|
|
3603
3611
|
readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
|
|
3604
3612
|
readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
|
|
3605
3613
|
}
|
|
3606
3614
|
|
|
3607
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (
|
|
3615
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (317) */
|
|
3608
3616
|
interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
|
|
3609
3617
|
readonly anchorBlockHash: H256;
|
|
3610
3618
|
readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
|
|
3611
3619
|
}
|
|
3612
3620
|
|
|
3613
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (
|
|
3621
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (319) */
|
|
3614
3622
|
interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
|
|
3615
3623
|
readonly rlp: Bytes;
|
|
3616
3624
|
}
|
|
3617
3625
|
|
|
3618
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (
|
|
3626
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (323) */
|
|
3619
3627
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
|
|
3620
3628
|
readonly targetBlockNumber: Compact<u64>;
|
|
3621
3629
|
readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
|
|
3622
3630
|
readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
|
|
3623
3631
|
}
|
|
3624
3632
|
|
|
3625
|
-
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (
|
|
3633
|
+
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (324) */
|
|
3626
3634
|
interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
|
|
3627
3635
|
readonly nodes: Vec<Bytes>;
|
|
3628
3636
|
readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
|
|
3629
3637
|
}
|
|
3630
3638
|
|
|
3631
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (
|
|
3639
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (328) */
|
|
3632
3640
|
interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
|
|
3633
3641
|
readonly transactionIndex: Compact<u64>;
|
|
3634
3642
|
readonly nodeIndexes: Vec<u16>;
|
|
3635
3643
|
}
|
|
3636
3644
|
|
|
3637
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (
|
|
3645
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (333) */
|
|
3638
3646
|
interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
|
|
3639
3647
|
readonly transactionIndex: Compact<u64>;
|
|
3640
3648
|
readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
|
|
3641
3649
|
}
|
|
3642
3650
|
|
|
3643
|
-
/** @name ArgonPrimitivesEthereumEthereumLog (
|
|
3651
|
+
/** @name ArgonPrimitivesEthereumEthereumLog (334) */
|
|
3644
3652
|
interface ArgonPrimitivesEthereumEthereumLog extends Struct {
|
|
3645
3653
|
readonly address: H160;
|
|
3646
3654
|
readonly topics: Vec<H256>;
|
|
3647
3655
|
readonly data: Bytes;
|
|
3648
3656
|
}
|
|
3649
3657
|
|
|
3650
|
-
/** @name PalletBootstrapCall (
|
|
3658
|
+
/** @name PalletBootstrapCall (339) */
|
|
3651
3659
|
interface PalletBootstrapCall extends Enum {
|
|
3652
3660
|
readonly isSetRecoveryPayload: boolean;
|
|
3653
3661
|
readonly asSetRecoveryPayload: {
|
|
@@ -3663,12 +3671,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
3663
3671
|
readonly type: 'SetRecoveryPayload' | 'SetEndpoint';
|
|
3664
3672
|
}
|
|
3665
3673
|
|
|
3666
|
-
/** @name PalletBootstrapRecoveryProof (
|
|
3674
|
+
/** @name PalletBootstrapRecoveryProof (340) */
|
|
3667
3675
|
interface PalletBootstrapRecoveryProof extends Struct {
|
|
3668
3676
|
readonly signature: U8aFixed;
|
|
3669
3677
|
}
|
|
3670
3678
|
|
|
3671
|
-
/** @name PalletMultisigError (
|
|
3679
|
+
/** @name PalletMultisigError (342) */
|
|
3672
3680
|
interface PalletMultisigError extends Enum {
|
|
3673
3681
|
readonly isMinimumThreshold: boolean;
|
|
3674
3682
|
readonly isAlreadyApproved: boolean;
|
|
@@ -3701,21 +3709,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3701
3709
|
| 'AlreadyStored';
|
|
3702
3710
|
}
|
|
3703
3711
|
|
|
3704
|
-
/** @name PalletProxyProxyDefinition (
|
|
3712
|
+
/** @name PalletProxyProxyDefinition (345) */
|
|
3705
3713
|
interface PalletProxyProxyDefinition extends Struct {
|
|
3706
3714
|
readonly delegate: AccountId32;
|
|
3707
3715
|
readonly proxyType: ArgonRuntimeProxyType;
|
|
3708
3716
|
readonly delay: u32;
|
|
3709
3717
|
}
|
|
3710
3718
|
|
|
3711
|
-
/** @name PalletProxyAnnouncement (
|
|
3719
|
+
/** @name PalletProxyAnnouncement (349) */
|
|
3712
3720
|
interface PalletProxyAnnouncement extends Struct {
|
|
3713
3721
|
readonly real: AccountId32;
|
|
3714
3722
|
readonly callHash: H256;
|
|
3715
3723
|
readonly height: u32;
|
|
3716
3724
|
}
|
|
3717
3725
|
|
|
3718
|
-
/** @name PalletProxyError (
|
|
3726
|
+
/** @name PalletProxyError (351) */
|
|
3719
3727
|
interface PalletProxyError extends Enum {
|
|
3720
3728
|
readonly isTooMany: boolean;
|
|
3721
3729
|
readonly isNotFound: boolean;
|
|
@@ -3736,16 +3744,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
3736
3744
|
| 'NoSelfProxy';
|
|
3737
3745
|
}
|
|
3738
3746
|
|
|
3739
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
3747
|
+
/** @name ArgonPrimitivesTickTicker (352) */
|
|
3740
3748
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
3741
3749
|
readonly tickDurationMillis: Compact<u64>;
|
|
3742
3750
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
3743
3751
|
}
|
|
3744
3752
|
|
|
3745
|
-
/** @name PalletTicksError (
|
|
3753
|
+
/** @name PalletTicksError (354) */
|
|
3746
3754
|
type PalletTicksError = Null;
|
|
3747
3755
|
|
|
3748
|
-
/** @name PalletMiningSlotMinerNonceScoring (
|
|
3756
|
+
/** @name PalletMiningSlotMinerNonceScoring (357) */
|
|
3749
3757
|
interface PalletMiningSlotMinerNonceScoring extends Struct {
|
|
3750
3758
|
readonly nonce: U256;
|
|
3751
3759
|
readonly lastWinBlock: Option<u32>;
|
|
@@ -3753,7 +3761,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3753
3761
|
readonly frameStartBlocksWonSurplus: i16;
|
|
3754
3762
|
}
|
|
3755
3763
|
|
|
3756
|
-
/** @name ArgonPrimitivesBlockSealMiningBidStats (
|
|
3764
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (369) */
|
|
3757
3765
|
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
3758
3766
|
readonly bidsCount: u32;
|
|
3759
3767
|
readonly bidAmountMin: u128;
|
|
@@ -3761,14 +3769,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3761
3769
|
readonly bidAmountSum: u128;
|
|
3762
3770
|
}
|
|
3763
3771
|
|
|
3764
|
-
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (
|
|
3772
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (373) */
|
|
3765
3773
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
3766
3774
|
readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
|
|
3767
3775
|
readonly ticksBetweenSlots: Compact<u64>;
|
|
3768
3776
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
3769
3777
|
}
|
|
3770
3778
|
|
|
3771
|
-
/** @name PalletMiningSlotError (
|
|
3779
|
+
/** @name PalletMiningSlotError (383) */
|
|
3772
3780
|
interface PalletMiningSlotError extends Enum {
|
|
3773
3781
|
readonly isSlotNotTakingBids: boolean;
|
|
3774
3782
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -3795,7 +3803,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3795
3803
|
| 'UnrecoverableHold';
|
|
3796
3804
|
}
|
|
3797
3805
|
|
|
3798
|
-
/** @name ArgonPrimitivesBitcoinUtxoValue (
|
|
3806
|
+
/** @name ArgonPrimitivesBitcoinUtxoValue (384) */
|
|
3799
3807
|
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
3800
3808
|
readonly utxoId: u64;
|
|
3801
3809
|
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
@@ -3804,7 +3812,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3804
3812
|
readonly watchForSpentUntilHeight: Compact<u64>;
|
|
3805
3813
|
}
|
|
3806
3814
|
|
|
3807
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (
|
|
3815
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (385) */
|
|
3808
3816
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
3809
3817
|
readonly isP2wsh: boolean;
|
|
3810
3818
|
readonly asP2wsh: {
|
|
@@ -3813,7 +3821,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3813
3821
|
readonly type: 'P2wsh';
|
|
3814
3822
|
}
|
|
3815
3823
|
|
|
3816
|
-
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (
|
|
3824
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (394) */
|
|
3817
3825
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
3818
3826
|
readonly isBitcoin: boolean;
|
|
3819
3827
|
readonly isTestnet: boolean;
|
|
@@ -3822,7 +3830,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3822
3830
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
3823
3831
|
}
|
|
3824
3832
|
|
|
3825
|
-
/** @name PalletBitcoinUtxosError (
|
|
3833
|
+
/** @name PalletBitcoinUtxosError (395) */
|
|
3826
3834
|
interface PalletBitcoinUtxosError extends Enum {
|
|
3827
3835
|
readonly isNoPermissions: boolean;
|
|
3828
3836
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -3857,7 +3865,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3857
3865
|
| 'LockAlreadyFunded';
|
|
3858
3866
|
}
|
|
3859
3867
|
|
|
3860
|
-
/** @name ArgonPrimitivesVault (
|
|
3868
|
+
/** @name ArgonPrimitivesVault (396) */
|
|
3861
3869
|
interface ArgonPrimitivesVault extends Struct {
|
|
3862
3870
|
readonly operatorAccountId: AccountId32;
|
|
3863
3871
|
readonly delegateAccountId: Option<AccountId32>;
|
|
@@ -3881,13 +3889,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3881
3889
|
readonly operationalMinimumReleaseTick: Option<u64>;
|
|
3882
3890
|
}
|
|
3883
3891
|
|
|
3884
|
-
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (
|
|
3892
|
+
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (403) */
|
|
3885
3893
|
interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
|
|
3886
3894
|
readonly committedMicronots: Compact<u128>;
|
|
3887
3895
|
readonly encumberedMicronots: Compact<u128>;
|
|
3888
3896
|
}
|
|
3889
3897
|
|
|
3890
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
3898
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (405) */
|
|
3891
3899
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
3892
3900
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
3893
3901
|
readonly depth: Compact<u8>;
|
|
@@ -3897,14 +3905,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3897
3905
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
3898
3906
|
}
|
|
3899
3907
|
|
|
3900
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
3908
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (407) */
|
|
3901
3909
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
3902
3910
|
readonly isMain: boolean;
|
|
3903
3911
|
readonly isTest: boolean;
|
|
3904
3912
|
readonly type: 'Main' | 'Test';
|
|
3905
3913
|
}
|
|
3906
3914
|
|
|
3907
|
-
/** @name PalletVaultsVaultFrameRevenue (
|
|
3915
|
+
/** @name PalletVaultsVaultFrameRevenue (416) */
|
|
3908
3916
|
interface PalletVaultsVaultFrameRevenue extends Struct {
|
|
3909
3917
|
readonly frameId: Compact<u64>;
|
|
3910
3918
|
readonly bitcoinLockFeeRevenue: Compact<u128>;
|
|
@@ -3924,7 +3932,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3924
3932
|
readonly uncollectedRevenue: Compact<u128>;
|
|
3925
3933
|
}
|
|
3926
3934
|
|
|
3927
|
-
/** @name PalletVaultsRecentCapacityDrop (
|
|
3935
|
+
/** @name PalletVaultsRecentCapacityDrop (419) */
|
|
3928
3936
|
interface PalletVaultsRecentCapacityDrop extends Struct {
|
|
3929
3937
|
readonly blockNumber: Compact<u32>;
|
|
3930
3938
|
readonly availableBeforeDrop: Compact<u128>;
|
|
@@ -3932,7 +3940,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3932
3940
|
readonly noFeeFailuresUsed: Compact<u32>;
|
|
3933
3941
|
}
|
|
3934
3942
|
|
|
3935
|
-
/** @name PalletVaultsError (
|
|
3943
|
+
/** @name PalletVaultsError (421) */
|
|
3936
3944
|
interface PalletVaultsError extends Enum {
|
|
3937
3945
|
readonly isNoMoreVaultIds: boolean;
|
|
3938
3946
|
readonly isInsufficientFunds: boolean;
|
|
@@ -4005,7 +4013,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4005
4013
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
4006
4014
|
}
|
|
4007
4015
|
|
|
4008
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
4016
|
+
/** @name PalletBitcoinLocksLockedBitcoin (422) */
|
|
4009
4017
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
4010
4018
|
readonly vaultId: Compact<u32>;
|
|
4011
4019
|
readonly liquidityPromised: Compact<u128>;
|
|
@@ -4030,7 +4038,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4030
4038
|
readonly createdAtArgonBlock: Compact<u32>;
|
|
4031
4039
|
}
|
|
4032
4040
|
|
|
4033
|
-
/** @name PalletBitcoinLocksLockReleaseRequest (
|
|
4041
|
+
/** @name PalletBitcoinLocksLockReleaseRequest (426) */
|
|
4034
4042
|
interface PalletBitcoinLocksLockReleaseRequest extends Struct {
|
|
4035
4043
|
readonly utxoId: Compact<u64>;
|
|
4036
4044
|
readonly vaultId: Compact<u32>;
|
|
@@ -4040,7 +4048,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4040
4048
|
readonly redemptionAmount: Compact<u128>;
|
|
4041
4049
|
}
|
|
4042
4050
|
|
|
4043
|
-
/** @name PalletBitcoinLocksOrphanedUtxo (
|
|
4051
|
+
/** @name PalletBitcoinLocksOrphanedUtxo (428) */
|
|
4044
4052
|
interface PalletBitcoinLocksOrphanedUtxo extends Struct {
|
|
4045
4053
|
readonly utxoId: Compact<u64>;
|
|
4046
4054
|
readonly vaultId: Compact<u32>;
|
|
@@ -4049,14 +4057,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4049
4057
|
readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
|
|
4050
4058
|
}
|
|
4051
4059
|
|
|
4052
|
-
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (
|
|
4060
|
+
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (430) */
|
|
4053
4061
|
interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
|
|
4054
4062
|
readonly bitcoinNetworkFee: u64;
|
|
4055
4063
|
readonly toScriptPubkey: Bytes;
|
|
4056
4064
|
readonly createdAtArgonBlockNumber: u32;
|
|
4057
4065
|
}
|
|
4058
4066
|
|
|
4059
|
-
/** @name PalletBitcoinLocksError (
|
|
4067
|
+
/** @name PalletBitcoinLocksError (437) */
|
|
4060
4068
|
interface PalletBitcoinLocksError extends Enum {
|
|
4061
4069
|
readonly isInsufficientFunds: boolean;
|
|
4062
4070
|
readonly isInsufficientVaultFunds: boolean;
|
|
@@ -4132,7 +4140,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4132
4140
|
| 'MaxOrphanedUtxoReleaseRequestsExceeded';
|
|
4133
4141
|
}
|
|
4134
4142
|
|
|
4135
|
-
/** @name ArgonPrimitivesVaultVaultError (
|
|
4143
|
+
/** @name ArgonPrimitivesVaultVaultError (438) */
|
|
4136
4144
|
interface ArgonPrimitivesVaultVaultError extends Enum {
|
|
4137
4145
|
readonly isVaultClosed: boolean;
|
|
4138
4146
|
readonly isAccountWouldBeBelowMinimum: boolean;
|
|
@@ -4163,7 +4171,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4163
4171
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
4164
4172
|
}
|
|
4165
4173
|
|
|
4166
|
-
/** @name PalletNotariesError (
|
|
4174
|
+
/** @name PalletNotariesError (450) */
|
|
4167
4175
|
interface PalletNotariesError extends Enum {
|
|
4168
4176
|
readonly isProposalNotFound: boolean;
|
|
4169
4177
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -4186,7 +4194,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4186
4194
|
| 'InvalidNotary';
|
|
4187
4195
|
}
|
|
4188
4196
|
|
|
4189
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
4197
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (454) */
|
|
4190
4198
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
4191
4199
|
readonly notebookNumber: Compact<u32>;
|
|
4192
4200
|
readonly tick: Compact<u64>;
|
|
@@ -4195,7 +4203,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4195
4203
|
readonly parentSecret: Option<H256>;
|
|
4196
4204
|
}
|
|
4197
4205
|
|
|
4198
|
-
/** @name PalletNotebookError (
|
|
4206
|
+
/** @name PalletNotebookError (457) */
|
|
4199
4207
|
interface PalletNotebookError extends Enum {
|
|
4200
4208
|
readonly isDuplicateNotebookNumber: boolean;
|
|
4201
4209
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -4230,7 +4238,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4230
4238
|
| 'InvalidNotebookSubmissionTick';
|
|
4231
4239
|
}
|
|
4232
4240
|
|
|
4233
|
-
/** @name PalletLocalchainTransferQueuedTransferOut (
|
|
4241
|
+
/** @name PalletLocalchainTransferQueuedTransferOut (458) */
|
|
4234
4242
|
interface PalletLocalchainTransferQueuedTransferOut extends Struct {
|
|
4235
4243
|
readonly accountId: AccountId32;
|
|
4236
4244
|
readonly amount: u128;
|
|
@@ -4238,10 +4246,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4238
4246
|
readonly notaryId: u32;
|
|
4239
4247
|
}
|
|
4240
4248
|
|
|
4241
|
-
/** @name FrameSupportPalletId (
|
|
4249
|
+
/** @name FrameSupportPalletId (460) */
|
|
4242
4250
|
interface FrameSupportPalletId extends U8aFixed {}
|
|
4243
4251
|
|
|
4244
|
-
/** @name PalletLocalchainTransferError (
|
|
4252
|
+
/** @name PalletLocalchainTransferError (461) */
|
|
4245
4253
|
interface PalletLocalchainTransferError extends Enum {
|
|
4246
4254
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
4247
4255
|
readonly isInsufficientFunds: boolean;
|
|
@@ -4262,7 +4270,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4262
4270
|
| 'NoAvailableTransferId';
|
|
4263
4271
|
}
|
|
4264
4272
|
|
|
4265
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
4273
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (465) */
|
|
4266
4274
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
4267
4275
|
readonly notaryId: Compact<u32>;
|
|
4268
4276
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -4271,13 +4279,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4271
4279
|
readonly blockVotingPower: Compact<u128>;
|
|
4272
4280
|
}
|
|
4273
4281
|
|
|
4274
|
-
/** @name PalletBlockSealSpecError (
|
|
4282
|
+
/** @name PalletBlockSealSpecError (470) */
|
|
4275
4283
|
interface PalletBlockSealSpecError extends Enum {
|
|
4276
4284
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
4277
4285
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
4278
4286
|
}
|
|
4279
4287
|
|
|
4280
|
-
/** @name PalletDomainsError (
|
|
4288
|
+
/** @name PalletDomainsError (472) */
|
|
4281
4289
|
interface PalletDomainsError extends Enum {
|
|
4282
4290
|
readonly isDomainNotRegistered: boolean;
|
|
4283
4291
|
readonly isNotDomainOwner: boolean;
|
|
@@ -4292,34 +4300,43 @@ declare module '@polkadot/types/lookup' {
|
|
|
4292
4300
|
| 'AccountDecodingError';
|
|
4293
4301
|
}
|
|
4294
4302
|
|
|
4295
|
-
/** @name
|
|
4303
|
+
/** @name PalletPriceIndexEthereumPriceFrameAccumulator (474) */
|
|
4304
|
+
interface PalletPriceIndexEthereumPriceFrameAccumulator extends Struct {
|
|
4305
|
+
readonly totalUsdPrice: u128;
|
|
4306
|
+
readonly totalWeiPerGas: Compact<u128>;
|
|
4307
|
+
readonly sampleCount: Compact<u32>;
|
|
4308
|
+
}
|
|
4309
|
+
|
|
4310
|
+
/** @name PalletPriceIndexCpiMeasurementBucket (479) */
|
|
4296
4311
|
interface PalletPriceIndexCpiMeasurementBucket extends Struct {
|
|
4297
4312
|
readonly tickRange: ITuple<[u64, u64]>;
|
|
4298
4313
|
readonly totalCpi: i128;
|
|
4299
4314
|
readonly measurementsCount: u32;
|
|
4300
4315
|
}
|
|
4301
4316
|
|
|
4302
|
-
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (
|
|
4317
|
+
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (483) */
|
|
4303
4318
|
interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
|
|
4304
4319
|
readonly frameId: Compact<u64>;
|
|
4305
4320
|
readonly totalMicrogonsPerArgonot: Compact<u128>;
|
|
4306
4321
|
readonly sampleCount: Compact<u32>;
|
|
4307
4322
|
}
|
|
4308
4323
|
|
|
4309
|
-
/** @name PalletPriceIndexError (
|
|
4324
|
+
/** @name PalletPriceIndexError (484) */
|
|
4310
4325
|
interface PalletPriceIndexError extends Enum {
|
|
4311
4326
|
readonly isNotAuthorizedOperator: boolean;
|
|
4312
4327
|
readonly isMissingValue: boolean;
|
|
4313
4328
|
readonly isPricesTooOld: boolean;
|
|
4314
4329
|
readonly isMaxPriceChangePerTickExceeded: boolean;
|
|
4330
|
+
readonly isInvalidEthereumPrices: boolean;
|
|
4315
4331
|
readonly type:
|
|
4316
4332
|
| 'NotAuthorizedOperator'
|
|
4317
4333
|
| 'MissingValue'
|
|
4318
4334
|
| 'PricesTooOld'
|
|
4319
|
-
| 'MaxPriceChangePerTickExceeded'
|
|
4335
|
+
| 'MaxPriceChangePerTickExceeded'
|
|
4336
|
+
| 'InvalidEthereumPrices';
|
|
4320
4337
|
}
|
|
4321
4338
|
|
|
4322
|
-
/** @name PalletGrandpaStoredState (
|
|
4339
|
+
/** @name PalletGrandpaStoredState (485) */
|
|
4323
4340
|
interface PalletGrandpaStoredState extends Enum {
|
|
4324
4341
|
readonly isLive: boolean;
|
|
4325
4342
|
readonly isPendingPause: boolean;
|
|
@@ -4336,7 +4353,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4336
4353
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
4337
4354
|
}
|
|
4338
4355
|
|
|
4339
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
4356
|
+
/** @name PalletGrandpaStoredPendingChange (486) */
|
|
4340
4357
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
4341
4358
|
readonly scheduledAt: u32;
|
|
4342
4359
|
readonly delay: u32;
|
|
@@ -4344,7 +4361,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4344
4361
|
readonly forced: Option<u32>;
|
|
4345
4362
|
}
|
|
4346
4363
|
|
|
4347
|
-
/** @name PalletGrandpaError (
|
|
4364
|
+
/** @name PalletGrandpaError (488) */
|
|
4348
4365
|
interface PalletGrandpaError extends Enum {
|
|
4349
4366
|
readonly isPauseFailed: boolean;
|
|
4350
4367
|
readonly isResumeFailed: boolean;
|
|
@@ -4363,14 +4380,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4363
4380
|
| 'DuplicateOffenceReport';
|
|
4364
4381
|
}
|
|
4365
4382
|
|
|
4366
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
4383
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (489) */
|
|
4367
4384
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
4368
4385
|
readonly blockAuthorAccountId: AccountId32;
|
|
4369
4386
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
4370
4387
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
4371
4388
|
}
|
|
4372
4389
|
|
|
4373
|
-
/** @name PalletBlockSealError (
|
|
4390
|
+
/** @name PalletBlockSealError (491) */
|
|
4374
4391
|
interface PalletBlockSealError extends Enum {
|
|
4375
4392
|
readonly isInvalidVoteSealStrength: boolean;
|
|
4376
4393
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -4417,10 +4434,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4417
4434
|
| 'DuplicateVoteBlockAtTick';
|
|
4418
4435
|
}
|
|
4419
4436
|
|
|
4420
|
-
/** @name PalletBlockRewardsError (
|
|
4437
|
+
/** @name PalletBlockRewardsError (495) */
|
|
4421
4438
|
type PalletBlockRewardsError = Null;
|
|
4422
4439
|
|
|
4423
|
-
/** @name PalletMintPendingMintUtxo (
|
|
4440
|
+
/** @name PalletMintPendingMintUtxo (496) */
|
|
4424
4441
|
interface PalletMintPendingMintUtxo extends Struct {
|
|
4425
4442
|
readonly utxoId: Compact<u64>;
|
|
4426
4443
|
readonly accountId: AccountId32;
|
|
@@ -4428,34 +4445,34 @@ declare module '@polkadot/types/lookup' {
|
|
|
4428
4445
|
readonly maxAmountPerFrame: Compact<u128>;
|
|
4429
4446
|
}
|
|
4430
4447
|
|
|
4431
|
-
/** @name PalletMintMintQueueCursor (
|
|
4448
|
+
/** @name PalletMintMintQueueCursor (498) */
|
|
4432
4449
|
interface PalletMintMintQueueCursor extends Struct {
|
|
4433
4450
|
readonly payoutStartIndex: Compact<u64>;
|
|
4434
4451
|
readonly payoutCursorIndex: Compact<u64>;
|
|
4435
4452
|
readonly payoutCursorFrameId: Option<u64>;
|
|
4436
4453
|
}
|
|
4437
4454
|
|
|
4438
|
-
/** @name PalletMintMintAction (
|
|
4455
|
+
/** @name PalletMintMintAction (501) */
|
|
4439
4456
|
interface PalletMintMintAction extends Struct {
|
|
4440
4457
|
readonly argonBurned: u128;
|
|
4441
4458
|
readonly argonMinted: u128;
|
|
4442
4459
|
readonly bitcoinMinted: u128;
|
|
4443
4460
|
}
|
|
4444
4461
|
|
|
4445
|
-
/** @name PalletMintError (
|
|
4462
|
+
/** @name PalletMintError (503) */
|
|
4446
4463
|
interface PalletMintError extends Enum {
|
|
4447
4464
|
readonly isTooManyPendingMints: boolean;
|
|
4448
4465
|
readonly type: 'TooManyPendingMints';
|
|
4449
4466
|
}
|
|
4450
4467
|
|
|
4451
|
-
/** @name PalletBalancesBalanceLock (
|
|
4468
|
+
/** @name PalletBalancesBalanceLock (505) */
|
|
4452
4469
|
interface PalletBalancesBalanceLock extends Struct {
|
|
4453
4470
|
readonly id: U8aFixed;
|
|
4454
4471
|
readonly amount: u128;
|
|
4455
4472
|
readonly reasons: PalletBalancesReasons;
|
|
4456
4473
|
}
|
|
4457
4474
|
|
|
4458
|
-
/** @name PalletBalancesReasons (
|
|
4475
|
+
/** @name PalletBalancesReasons (506) */
|
|
4459
4476
|
interface PalletBalancesReasons extends Enum {
|
|
4460
4477
|
readonly isFee: boolean;
|
|
4461
4478
|
readonly isMisc: boolean;
|
|
@@ -4463,38 +4480,38 @@ declare module '@polkadot/types/lookup' {
|
|
|
4463
4480
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
4464
4481
|
}
|
|
4465
4482
|
|
|
4466
|
-
/** @name PalletBalancesReserveData (
|
|
4483
|
+
/** @name PalletBalancesReserveData (509) */
|
|
4467
4484
|
interface PalletBalancesReserveData extends Struct {
|
|
4468
4485
|
readonly id: U8aFixed;
|
|
4469
4486
|
readonly amount: u128;
|
|
4470
4487
|
}
|
|
4471
4488
|
|
|
4472
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
4489
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (512) */
|
|
4473
4490
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
4474
4491
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
4475
4492
|
readonly amount: u128;
|
|
4476
4493
|
}
|
|
4477
4494
|
|
|
4478
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
4495
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (515) */
|
|
4479
4496
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
4480
4497
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
4481
4498
|
readonly amount: u128;
|
|
4482
4499
|
}
|
|
4483
4500
|
|
|
4484
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
4501
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (516) */
|
|
4485
4502
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
4486
4503
|
readonly isBlockRewards: boolean;
|
|
4487
4504
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
4488
4505
|
readonly type: 'BlockRewards';
|
|
4489
4506
|
}
|
|
4490
4507
|
|
|
4491
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
4508
|
+
/** @name PalletBlockRewardsFreezeReason (517) */
|
|
4492
4509
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
4493
4510
|
readonly isMaturationPeriod: boolean;
|
|
4494
4511
|
readonly type: 'MaturationPeriod';
|
|
4495
4512
|
}
|
|
4496
4513
|
|
|
4497
|
-
/** @name PalletBalancesError (
|
|
4514
|
+
/** @name PalletBalancesError (519) */
|
|
4498
4515
|
interface PalletBalancesError extends Enum {
|
|
4499
4516
|
readonly isVestingBalance: boolean;
|
|
4500
4517
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -4523,7 +4540,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4523
4540
|
| 'DeltaZero';
|
|
4524
4541
|
}
|
|
4525
4542
|
|
|
4526
|
-
/** @name PalletTxPauseError (
|
|
4543
|
+
/** @name PalletTxPauseError (521) */
|
|
4527
4544
|
interface PalletTxPauseError extends Enum {
|
|
4528
4545
|
readonly isIsPaused: boolean;
|
|
4529
4546
|
readonly isIsUnpaused: boolean;
|
|
@@ -4532,40 +4549,40 @@ declare module '@polkadot/types/lookup' {
|
|
|
4532
4549
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
4533
4550
|
}
|
|
4534
4551
|
|
|
4535
|
-
/** @name PalletTransactionPaymentReleases (
|
|
4552
|
+
/** @name PalletTransactionPaymentReleases (522) */
|
|
4536
4553
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
4537
4554
|
readonly isV1Ancient: boolean;
|
|
4538
4555
|
readonly isV2: boolean;
|
|
4539
4556
|
readonly type: 'V1Ancient' | 'V2';
|
|
4540
4557
|
}
|
|
4541
4558
|
|
|
4542
|
-
/** @name FrameSupportStorageNoDrop (
|
|
4559
|
+
/** @name FrameSupportStorageNoDrop (523) */
|
|
4543
4560
|
interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
|
|
4544
4561
|
|
|
4545
|
-
/** @name FrameSupportTokensFungibleImbalance (
|
|
4562
|
+
/** @name FrameSupportTokensFungibleImbalance (524) */
|
|
4546
4563
|
interface FrameSupportTokensFungibleImbalance extends Struct {
|
|
4547
4564
|
readonly amount: u128;
|
|
4548
4565
|
}
|
|
4549
4566
|
|
|
4550
|
-
/** @name PalletUtilityError (
|
|
4567
|
+
/** @name PalletUtilityError (525) */
|
|
4551
4568
|
interface PalletUtilityError extends Enum {
|
|
4552
4569
|
readonly isTooManyCalls: boolean;
|
|
4553
4570
|
readonly type: 'TooManyCalls';
|
|
4554
4571
|
}
|
|
4555
4572
|
|
|
4556
|
-
/** @name PalletSudoError (
|
|
4573
|
+
/** @name PalletSudoError (526) */
|
|
4557
4574
|
interface PalletSudoError extends Enum {
|
|
4558
4575
|
readonly isRequireSudo: boolean;
|
|
4559
4576
|
readonly type: 'RequireSudo';
|
|
4560
4577
|
}
|
|
4561
4578
|
|
|
4562
|
-
/** @name PalletTreasuryFrameVaultCapital (
|
|
4579
|
+
/** @name PalletTreasuryFrameVaultCapital (527) */
|
|
4563
4580
|
interface PalletTreasuryFrameVaultCapital extends Struct {
|
|
4564
4581
|
readonly frameId: Compact<u64>;
|
|
4565
4582
|
readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
|
|
4566
4583
|
}
|
|
4567
4584
|
|
|
4568
|
-
/** @name PalletTreasuryVaultCapital (
|
|
4585
|
+
/** @name PalletTreasuryVaultCapital (529) */
|
|
4569
4586
|
interface PalletTreasuryVaultCapital extends Struct {
|
|
4570
4587
|
readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
|
|
4571
4588
|
readonly backfillBondsEligible: Compact<u32>;
|
|
@@ -4573,26 +4590,26 @@ declare module '@polkadot/types/lookup' {
|
|
|
4573
4590
|
readonly eligibleBonds: Compact<u32>;
|
|
4574
4591
|
}
|
|
4575
4592
|
|
|
4576
|
-
/** @name PalletTreasuryBondLotAllocation (
|
|
4593
|
+
/** @name PalletTreasuryBondLotAllocation (531) */
|
|
4577
4594
|
interface PalletTreasuryBondLotAllocation extends Struct {
|
|
4578
4595
|
readonly bondLotId: Compact<u64>;
|
|
4579
4596
|
readonly prorata: u128;
|
|
4580
4597
|
}
|
|
4581
4598
|
|
|
4582
|
-
/** @name PalletTreasuryFrameArgonotBondParticipants (
|
|
4599
|
+
/** @name PalletTreasuryFrameArgonotBondParticipants (536) */
|
|
4583
4600
|
interface PalletTreasuryFrameArgonotBondParticipants extends Struct {
|
|
4584
4601
|
readonly frameId: Compact<u64>;
|
|
4585
4602
|
readonly totalBonds: Compact<u32>;
|
|
4586
4603
|
readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
4587
4604
|
}
|
|
4588
4605
|
|
|
4589
|
-
/** @name PalletTreasuryBondLotSummary (
|
|
4606
|
+
/** @name PalletTreasuryBondLotSummary (538) */
|
|
4590
4607
|
interface PalletTreasuryBondLotSummary extends Struct {
|
|
4591
4608
|
readonly bondLotId: Compact<u64>;
|
|
4592
4609
|
readonly bonds: Compact<u32>;
|
|
4593
4610
|
}
|
|
4594
4611
|
|
|
4595
|
-
/** @name PalletTreasuryBondLot (
|
|
4612
|
+
/** @name PalletTreasuryBondLot (540) */
|
|
4596
4613
|
interface PalletTreasuryBondLot extends Struct {
|
|
4597
4614
|
readonly owner: AccountId32;
|
|
4598
4615
|
readonly program: PalletTreasuryBondProgram;
|
|
@@ -4607,7 +4624,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4607
4624
|
readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
|
|
4608
4625
|
}
|
|
4609
4626
|
|
|
4610
|
-
/** @name PalletTreasuryBondProgram (
|
|
4627
|
+
/** @name PalletTreasuryBondProgram (541) */
|
|
4611
4628
|
interface PalletTreasuryBondProgram extends Enum {
|
|
4612
4629
|
readonly isVault: boolean;
|
|
4613
4630
|
readonly asVault: {
|
|
@@ -4619,14 +4636,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4619
4636
|
readonly type: 'Vault' | 'Argonot';
|
|
4620
4637
|
}
|
|
4621
4638
|
|
|
4622
|
-
/** @name PalletTreasuryVaultBondState (
|
|
4639
|
+
/** @name PalletTreasuryVaultBondState (544) */
|
|
4623
4640
|
interface PalletTreasuryVaultBondState extends Struct {
|
|
4624
4641
|
readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
4625
4642
|
readonly backfillBonds: Compact<u32>;
|
|
4626
4643
|
readonly backfillBondsReserved: Compact<u32>;
|
|
4627
4644
|
}
|
|
4628
4645
|
|
|
4629
|
-
/** @name PalletTreasuryError (
|
|
4646
|
+
/** @name PalletTreasuryError (546) */
|
|
4630
4647
|
interface PalletTreasuryError extends Enum {
|
|
4631
4648
|
readonly isBondPurchaseRejected: boolean;
|
|
4632
4649
|
readonly isVaultNotAcceptingBondPurchases: boolean;
|
|
@@ -4671,13 +4688,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4671
4688
|
| 'NoPermissions';
|
|
4672
4689
|
}
|
|
4673
4690
|
|
|
4674
|
-
/** @name PalletFeeControlError (
|
|
4691
|
+
/** @name PalletFeeControlError (547) */
|
|
4675
4692
|
interface PalletFeeControlError extends Enum {
|
|
4676
4693
|
readonly isSponsoredFeeTooHigh: boolean;
|
|
4677
4694
|
readonly type: 'SponsoredFeeTooHigh';
|
|
4678
4695
|
}
|
|
4679
4696
|
|
|
4680
|
-
/** @name PalletOperationalAccountsOperationalAccount (
|
|
4697
|
+
/** @name PalletOperationalAccountsOperationalAccount (548) */
|
|
4681
4698
|
interface PalletOperationalAccountsOperationalAccount extends Struct {
|
|
4682
4699
|
readonly vaultAccount: AccountId32;
|
|
4683
4700
|
readonly miningAccount: AccountId32;
|
|
@@ -4700,13 +4717,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4700
4717
|
readonly isOperationallyCertified: bool;
|
|
4701
4718
|
}
|
|
4702
4719
|
|
|
4703
|
-
/** @name PalletOperationalAccountsRewardsConfig (
|
|
4720
|
+
/** @name PalletOperationalAccountsRewardsConfig (549) */
|
|
4704
4721
|
interface PalletOperationalAccountsRewardsConfig extends Struct {
|
|
4705
4722
|
readonly operationalCertificationReward: Compact<u128>;
|
|
4706
4723
|
readonly operationalCertificationBonusReward: Compact<u128>;
|
|
4707
4724
|
}
|
|
4708
4725
|
|
|
4709
|
-
/** @name PalletOperationalAccountsError (
|
|
4726
|
+
/** @name PalletOperationalAccountsError (550) */
|
|
4710
4727
|
interface PalletOperationalAccountsError extends Enum {
|
|
4711
4728
|
readonly isAlreadyRegistered: boolean;
|
|
4712
4729
|
readonly isInvalidRegistrationSubmitter: boolean;
|
|
@@ -4749,12 +4766,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
4749
4766
|
| 'UpstreamHasNoAvailableAccessCodes';
|
|
4750
4767
|
}
|
|
4751
4768
|
|
|
4752
|
-
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (
|
|
4769
|
+
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (551) */
|
|
4753
4770
|
interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
|
|
4754
4771
|
readonly slot: Compact<u64>;
|
|
4755
4772
|
}
|
|
4756
4773
|
|
|
4757
|
-
/** @name PalletEthereumVerifierExecutionHeaderAnchor (
|
|
4774
|
+
/** @name PalletEthereumVerifierExecutionHeaderAnchor (552) */
|
|
4758
4775
|
interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
|
|
4759
4776
|
readonly blockNumber: Compact<u64>;
|
|
4760
4777
|
readonly timestampMillis: Compact<u64>;
|
|
@@ -4764,44 +4781,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
4764
4781
|
readonly receiptsRoot: H256;
|
|
4765
4782
|
}
|
|
4766
4783
|
|
|
4767
|
-
/** @name PalletEthereumVerifierSyncCommitteePrepared (
|
|
4784
|
+
/** @name PalletEthereumVerifierSyncCommitteePrepared (553) */
|
|
4768
4785
|
interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
|
|
4769
4786
|
readonly root: H256;
|
|
4770
4787
|
readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
|
|
4771
4788
|
readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
|
|
4772
4789
|
}
|
|
4773
4790
|
|
|
4774
|
-
/** @name SnowbridgeMilagroBlsKeysPublicKey (
|
|
4791
|
+
/** @name SnowbridgeMilagroBlsKeysPublicKey (555) */
|
|
4775
4792
|
interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
|
|
4776
4793
|
readonly point: SnowbridgeAmclBls381Ecp;
|
|
4777
4794
|
}
|
|
4778
4795
|
|
|
4779
|
-
/** @name SnowbridgeAmclBls381Ecp (
|
|
4796
|
+
/** @name SnowbridgeAmclBls381Ecp (556) */
|
|
4780
4797
|
interface SnowbridgeAmclBls381Ecp extends Struct {
|
|
4781
4798
|
readonly x: SnowbridgeAmclBls381Fp;
|
|
4782
4799
|
readonly y: SnowbridgeAmclBls381Fp;
|
|
4783
4800
|
readonly z: SnowbridgeAmclBls381Fp;
|
|
4784
4801
|
}
|
|
4785
4802
|
|
|
4786
|
-
/** @name SnowbridgeAmclBls381Fp (
|
|
4803
|
+
/** @name SnowbridgeAmclBls381Fp (557) */
|
|
4787
4804
|
interface SnowbridgeAmclBls381Fp extends Struct {
|
|
4788
4805
|
readonly x: SnowbridgeAmclBls381Big;
|
|
4789
4806
|
readonly xes: i32;
|
|
4790
4807
|
}
|
|
4791
4808
|
|
|
4792
|
-
/** @name SnowbridgeAmclBls381Big (
|
|
4809
|
+
/** @name SnowbridgeAmclBls381Big (558) */
|
|
4793
4810
|
interface SnowbridgeAmclBls381Big extends Struct {
|
|
4794
4811
|
readonly w: Vec<i32>;
|
|
4795
4812
|
}
|
|
4796
4813
|
|
|
4797
|
-
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (
|
|
4814
|
+
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (562) */
|
|
4798
4815
|
interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
|
|
4799
4816
|
readonly isMainnet: boolean;
|
|
4800
4817
|
readonly isMinimal: boolean;
|
|
4801
4818
|
readonly type: 'Mainnet' | 'Minimal';
|
|
4802
4819
|
}
|
|
4803
4820
|
|
|
4804
|
-
/** @name PalletEthereumVerifierError (
|
|
4821
|
+
/** @name PalletEthereumVerifierError (563) */
|
|
4805
4822
|
interface PalletEthereumVerifierError extends Enum {
|
|
4806
4823
|
readonly isSkippedSyncCommitteePeriod: boolean;
|
|
4807
4824
|
readonly isSyncCommitteeUpdateRequired: boolean;
|
|
@@ -4854,7 +4871,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4854
4871
|
| 'Halted';
|
|
4855
4872
|
}
|
|
4856
4873
|
|
|
4857
|
-
/** @name PalletCrosschainTransferAccountTransferTotals (
|
|
4874
|
+
/** @name PalletCrosschainTransferAccountTransferTotals (564) */
|
|
4858
4875
|
interface PalletCrosschainTransferAccountTransferTotals extends Struct {
|
|
4859
4876
|
readonly microgonsIn: u128;
|
|
4860
4877
|
readonly microgonsOut: u128;
|
|
@@ -4866,21 +4883,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4866
4883
|
readonly argonotTransfersOutCount: Compact<u32>;
|
|
4867
4884
|
}
|
|
4868
4885
|
|
|
4869
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (
|
|
4886
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (566) */
|
|
4870
4887
|
interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
|
|
4871
4888
|
readonly epochMicrogonsPerArgonot: u128;
|
|
4872
4889
|
readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
|
|
4873
4890
|
readonly totalWeight: u128;
|
|
4874
4891
|
}
|
|
4875
4892
|
|
|
4876
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (
|
|
4893
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (568) */
|
|
4877
4894
|
interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
|
|
4878
4895
|
readonly accountId: AccountId32;
|
|
4879
4896
|
readonly signer: H160;
|
|
4880
4897
|
readonly weight: u128;
|
|
4881
4898
|
}
|
|
4882
4899
|
|
|
4883
|
-
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (
|
|
4900
|
+
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (573) */
|
|
4884
4901
|
interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
|
|
4885
4902
|
readonly approvingCouncilHash: H256;
|
|
4886
4903
|
readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
|
|
@@ -4892,7 +4909,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4892
4909
|
readonly signatures: BTreeMap<H160, U8aFixed>;
|
|
4893
4910
|
}
|
|
4894
4911
|
|
|
4895
|
-
/** @name PalletCrosschainTransferMintingAuthority (
|
|
4912
|
+
/** @name PalletCrosschainTransferMintingAuthority (578) */
|
|
4896
4913
|
interface PalletCrosschainTransferMintingAuthority extends Struct {
|
|
4897
4914
|
readonly accountId: AccountId32;
|
|
4898
4915
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -4909,7 +4926,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4909
4926
|
readonly deactivationApprovalQueueNonce: Option<u64>;
|
|
4910
4927
|
}
|
|
4911
4928
|
|
|
4912
|
-
/** @name PalletCrosschainTransferMintingAuthorityState (
|
|
4929
|
+
/** @name PalletCrosschainTransferMintingAuthorityState (579) */
|
|
4913
4930
|
interface PalletCrosschainTransferMintingAuthorityState extends Enum {
|
|
4914
4931
|
readonly isPendingActivation: boolean;
|
|
4915
4932
|
readonly isActive: boolean;
|
|
@@ -4917,7 +4934,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4917
4934
|
readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
|
|
4918
4935
|
}
|
|
4919
4936
|
|
|
4920
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (
|
|
4937
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (581) */
|
|
4921
4938
|
interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
|
|
4922
4939
|
readonly argonAccountId: AccountId32;
|
|
4923
4940
|
readonly argonTransferNonce: Compact<u64>;
|
|
@@ -4936,7 +4953,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4936
4953
|
readonly state: PalletCrosschainTransferTransferOutTransferOutState;
|
|
4937
4954
|
}
|
|
4938
4955
|
|
|
4939
|
-
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (
|
|
4956
|
+
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (583) */
|
|
4940
4957
|
interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
|
|
4941
4958
|
readonly microgonCollateral: u128;
|
|
4942
4959
|
readonly micronotCollateral: u128;
|
|
@@ -4944,27 +4961,27 @@ declare module '@polkadot/types/lookup' {
|
|
|
4944
4961
|
readonly signature: U8aFixed;
|
|
4945
4962
|
}
|
|
4946
4963
|
|
|
4947
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutState (
|
|
4964
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutState (587) */
|
|
4948
4965
|
interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
|
|
4949
4966
|
readonly isStarted: boolean;
|
|
4950
4967
|
readonly isReady: boolean;
|
|
4951
4968
|
readonly type: 'Started' | 'Ready';
|
|
4952
4969
|
}
|
|
4953
4970
|
|
|
4954
|
-
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (
|
|
4971
|
+
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (589) */
|
|
4955
4972
|
interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
|
|
4956
4973
|
readonly transferId: H256;
|
|
4957
4974
|
readonly remainingCollateral: u128;
|
|
4958
4975
|
readonly remainingMintingAuthorityTip: u128;
|
|
4959
4976
|
}
|
|
4960
4977
|
|
|
4961
|
-
/** @name PalletCrosschainTransferSourceChainCirculation (
|
|
4978
|
+
/** @name PalletCrosschainTransferSourceChainCirculation (591) */
|
|
4962
4979
|
interface PalletCrosschainTransferSourceChainCirculation extends Struct {
|
|
4963
4980
|
readonly argonCirculation: u128;
|
|
4964
4981
|
readonly argonotCirculation: u128;
|
|
4965
4982
|
}
|
|
4966
4983
|
|
|
4967
|
-
/** @name PalletCrosschainTransferError (
|
|
4984
|
+
/** @name PalletCrosschainTransferError (592) */
|
|
4968
4985
|
interface PalletCrosschainTransferError extends Enum {
|
|
4969
4986
|
readonly isInvalidTransferToArgonActivity: boolean;
|
|
4970
4987
|
readonly isNoGatewayProofBlocksProvided: boolean;
|
|
@@ -5079,7 +5096,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
5079
5096
|
| 'CouncilSignerRotationPending';
|
|
5080
5097
|
}
|
|
5081
5098
|
|
|
5082
|
-
/** @name PalletBootstrapError (
|
|
5099
|
+
/** @name PalletBootstrapError (594) */
|
|
5083
5100
|
interface PalletBootstrapError extends Enum {
|
|
5084
5101
|
readonly isEncryptedPayloadTooLong: boolean;
|
|
5085
5102
|
readonly isInvalidRecoveryProof: boolean;
|
|
@@ -5090,45 +5107,45 @@ declare module '@polkadot/types/lookup' {
|
|
|
5090
5107
|
| 'EndpointOwnedByAnotherAccount';
|
|
5091
5108
|
}
|
|
5092
5109
|
|
|
5093
|
-
/** @name FrameSystemExtensionsAuthorizeCall (
|
|
5110
|
+
/** @name FrameSystemExtensionsAuthorizeCall (597) */
|
|
5094
5111
|
type FrameSystemExtensionsAuthorizeCall = Null;
|
|
5095
5112
|
|
|
5096
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
5113
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (598) */
|
|
5097
5114
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
5098
5115
|
|
|
5099
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
5116
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (599) */
|
|
5100
5117
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
5101
5118
|
|
|
5102
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
5119
|
+
/** @name FrameSystemExtensionsCheckTxVersion (600) */
|
|
5103
5120
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
5104
5121
|
|
|
5105
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
5122
|
+
/** @name FrameSystemExtensionsCheckGenesis (601) */
|
|
5106
5123
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
5107
5124
|
|
|
5108
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
5125
|
+
/** @name FrameSystemExtensionsCheckNonce (604) */
|
|
5109
5126
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
|
|
5110
5127
|
|
|
5111
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
5128
|
+
/** @name FrameSystemExtensionsCheckWeight (605) */
|
|
5112
5129
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
5113
5130
|
|
|
5114
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
5131
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (606) */
|
|
5115
5132
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
|
|
5116
5133
|
|
|
5117
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
5134
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (607) */
|
|
5118
5135
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
5119
5136
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
5120
5137
|
}
|
|
5121
5138
|
|
|
5122
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
5139
|
+
/** @name FrameMetadataHashExtensionMode (608) */
|
|
5123
5140
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
5124
5141
|
readonly isDisabled: boolean;
|
|
5125
5142
|
readonly isEnabled: boolean;
|
|
5126
5143
|
readonly type: 'Disabled' | 'Enabled';
|
|
5127
5144
|
}
|
|
5128
5145
|
|
|
5129
|
-
/** @name FrameSystemExtensionsWeightReclaim (
|
|
5146
|
+
/** @name FrameSystemExtensionsWeightReclaim (609) */
|
|
5130
5147
|
type FrameSystemExtensionsWeightReclaim = Null;
|
|
5131
5148
|
|
|
5132
|
-
/** @name ArgonRuntimeRuntime (
|
|
5149
|
+
/** @name ArgonRuntimeRuntime (611) */
|
|
5133
5150
|
type ArgonRuntimeRuntime = Null;
|
|
5134
5151
|
} // declare module
|