@argonprotocol/mainchain 1.4.3-dev.caca6309 → 1.4.3-dev.d84b1cb0
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 +150 -128
- package/browser/index.js +64 -127
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +66 -133
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +150 -128
- package/lib/index.d.ts +150 -128
- package/lib/index.js +65 -132
- package/lib/index.js.map +1 -1
- package/package.json +2 -5
- package/src/interfaces/augment-api-consts.ts +4 -4
- package/src/interfaces/augment-api-errors.ts +5 -0
- package/src/interfaces/augment-api-query.ts +12 -3
- package/src/interfaces/lookup.ts +126 -118
- package/src/interfaces/registry.ts +8 -6
- package/src/interfaces/types-lookup.ts +128 -117
- package/lib/chunk-3KFMHNNJ.cjs +0 -706
- package/lib/chunk-3KFMHNNJ.cjs.map +0 -1
- package/lib/chunk-D3FCDADJ.cjs +0 -175
- package/lib/chunk-D3FCDADJ.cjs.map +0 -1
- package/lib/chunk-RF6NOJOR.js +0 -706
- package/lib/chunk-RF6NOJOR.js.map +0 -1
- package/lib/chunk-YPXWOFUS.js +0 -175
- package/lib/chunk-YPXWOFUS.js.map +0 -1
- package/lib/lib-CU2JUZW6.cjs +0 -403
- package/lib/lib-CU2JUZW6.cjs.map +0 -1
- package/lib/lib-P3PEMYOB.js +0 -403
- package/lib/lib-P3PEMYOB.js.map +0 -1
- package/lib/setPreset-NCTHSXWD.js +0 -15
- package/lib/setPreset-NCTHSXWD.js.map +0 -1
- package/lib/setPreset-XHOPATBO.cjs +0 -15
- package/lib/setPreset-XHOPATBO.cjs.map +0 -1
|
@@ -3015,7 +3015,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3015
3015
|
/** @name PalletEthereumVerifierCheckpointUpdate (276) */
|
|
3016
3016
|
interface PalletEthereumVerifierCheckpointUpdate extends Struct {
|
|
3017
3017
|
readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3018
|
-
readonly currentSyncCommittee:
|
|
3018
|
+
readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
3019
3019
|
readonly currentSyncCommitteeBranch: Vec<H256>;
|
|
3020
3020
|
readonly validatorsRoot: H256;
|
|
3021
3021
|
}
|
|
@@ -3029,8 +3029,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
3029
3029
|
readonly bodyRoot: H256;
|
|
3030
3030
|
}
|
|
3031
3031
|
|
|
3032
|
-
/** @name
|
|
3033
|
-
interface
|
|
3032
|
+
/** @name PalletEthereumVerifierSyncCommittee (278) */
|
|
3033
|
+
interface PalletEthereumVerifierSyncCommittee extends Struct {
|
|
3034
3034
|
readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
|
|
3035
3035
|
readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
|
|
3036
3036
|
}
|
|
@@ -3038,7 +3038,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3038
3038
|
/** @name SnowbridgeBeaconPrimitivesPublicKey (280) */
|
|
3039
3039
|
interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
|
|
3040
3040
|
|
|
3041
|
-
/** @name PalletEthereumVerifierForkVersions (
|
|
3041
|
+
/** @name PalletEthereumVerifierForkVersions (284) */
|
|
3042
3042
|
interface PalletEthereumVerifierForkVersions extends Struct {
|
|
3043
3043
|
readonly genesis: PalletEthereumVerifierFork;
|
|
3044
3044
|
readonly altair: PalletEthereumVerifierFork;
|
|
@@ -3049,45 +3049,45 @@ declare module '@polkadot/types/lookup' {
|
|
|
3049
3049
|
readonly fulu: PalletEthereumVerifierFork;
|
|
3050
3050
|
}
|
|
3051
3051
|
|
|
3052
|
-
/** @name PalletEthereumVerifierFork (
|
|
3052
|
+
/** @name PalletEthereumVerifierFork (285) */
|
|
3053
3053
|
interface PalletEthereumVerifierFork extends Struct {
|
|
3054
3054
|
readonly version: U8aFixed;
|
|
3055
3055
|
readonly epoch: Compact<u64>;
|
|
3056
3056
|
}
|
|
3057
3057
|
|
|
3058
|
-
/** @name PalletEthereumVerifierUpdate (
|
|
3058
|
+
/** @name PalletEthereumVerifierUpdate (286) */
|
|
3059
3059
|
interface PalletEthereumVerifierUpdate extends Struct {
|
|
3060
3060
|
readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3061
|
-
readonly syncAggregate:
|
|
3061
|
+
readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
|
|
3062
3062
|
readonly signatureSlot: Compact<u64>;
|
|
3063
3063
|
readonly nextSyncCommitteeUpdate: Option<PalletEthereumVerifierNextSyncCommitteeUpdate>;
|
|
3064
3064
|
readonly finalizedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3065
3065
|
readonly finalityBranch: Vec<H256>;
|
|
3066
3066
|
}
|
|
3067
3067
|
|
|
3068
|
-
/** @name
|
|
3069
|
-
interface
|
|
3070
|
-
readonly syncCommitteeBits:
|
|
3068
|
+
/** @name PalletEthereumVerifierSyncAggregate (287) */
|
|
3069
|
+
interface PalletEthereumVerifierSyncAggregate extends Struct {
|
|
3070
|
+
readonly syncCommitteeBits: Bytes;
|
|
3071
3071
|
readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
|
|
3072
3072
|
}
|
|
3073
3073
|
|
|
3074
|
-
/** @name SnowbridgeBeaconPrimitivesSignature (
|
|
3074
|
+
/** @name SnowbridgeBeaconPrimitivesSignature (289) */
|
|
3075
3075
|
interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
|
|
3076
3076
|
|
|
3077
|
-
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (
|
|
3077
|
+
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (292) */
|
|
3078
3078
|
interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
|
|
3079
|
-
readonly nextSyncCommittee:
|
|
3079
|
+
readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
3080
3080
|
readonly nextSyncCommitteeBranch: Vec<H256>;
|
|
3081
3081
|
}
|
|
3082
3082
|
|
|
3083
|
-
/** @name PalletEthereumVerifierExecutionProof (
|
|
3083
|
+
/** @name PalletEthereumVerifierExecutionProof (293) */
|
|
3084
3084
|
interface PalletEthereumVerifierExecutionProof extends Struct {
|
|
3085
3085
|
readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3086
3086
|
readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
|
|
3087
3087
|
readonly executionBranch: Vec<H256>;
|
|
3088
3088
|
}
|
|
3089
3089
|
|
|
3090
|
-
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (
|
|
3090
|
+
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (294) */
|
|
3091
3091
|
interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
|
|
3092
3092
|
readonly isCapella: boolean;
|
|
3093
3093
|
readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
|
|
@@ -3096,7 +3096,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3096
3096
|
readonly type: 'Capella' | 'Deneb';
|
|
3097
3097
|
}
|
|
3098
3098
|
|
|
3099
|
-
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (
|
|
3099
|
+
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (295) */
|
|
3100
3100
|
interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
|
|
3101
3101
|
readonly parentHash: H256;
|
|
3102
3102
|
readonly feeRecipient: H160;
|
|
@@ -3115,7 +3115,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3115
3115
|
readonly withdrawalsRoot: H256;
|
|
3116
3116
|
}
|
|
3117
3117
|
|
|
3118
|
-
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (
|
|
3118
|
+
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (296) */
|
|
3119
3119
|
interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
|
|
3120
3120
|
readonly parentHash: H256;
|
|
3121
3121
|
readonly feeRecipient: H160;
|
|
@@ -3136,7 +3136,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3136
3136
|
readonly excessBlobGas: u64;
|
|
3137
3137
|
}
|
|
3138
3138
|
|
|
3139
|
-
/** @name PalletCrosschainTransferCall (
|
|
3139
|
+
/** @name PalletCrosschainTransferCall (297) */
|
|
3140
3140
|
interface PalletCrosschainTransferCall extends Enum {
|
|
3141
3141
|
readonly isSetChainConfig: boolean;
|
|
3142
3142
|
readonly asSetChainConfig: {
|
|
@@ -3149,7 +3149,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3149
3149
|
readonly type: 'SetChainConfig' | 'ProveTransfer';
|
|
3150
3150
|
}
|
|
3151
3151
|
|
|
3152
|
-
/** @name PalletCrosschainTransferChainConfig (
|
|
3152
|
+
/** @name PalletCrosschainTransferChainConfig (298) */
|
|
3153
3153
|
interface PalletCrosschainTransferChainConfig extends Enum {
|
|
3154
3154
|
readonly isEthereum: boolean;
|
|
3155
3155
|
readonly asEthereum: {
|
|
@@ -3162,7 +3162,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3162
3162
|
readonly type: 'Ethereum';
|
|
3163
3163
|
}
|
|
3164
3164
|
|
|
3165
|
-
/** @name PalletCrosschainTransferTransferProof (
|
|
3165
|
+
/** @name PalletCrosschainTransferTransferProof (300) */
|
|
3166
3166
|
interface PalletCrosschainTransferTransferProof extends Enum {
|
|
3167
3167
|
readonly isEthereum: boolean;
|
|
3168
3168
|
readonly asEthereum: {
|
|
@@ -3173,37 +3173,37 @@ declare module '@polkadot/types/lookup' {
|
|
|
3173
3173
|
readonly type: 'Ethereum';
|
|
3174
3174
|
}
|
|
3175
3175
|
|
|
3176
|
-
/** @name ArgonPrimitivesEthereumEthereumLog (
|
|
3176
|
+
/** @name ArgonPrimitivesEthereumEthereumLog (301) */
|
|
3177
3177
|
interface ArgonPrimitivesEthereumEthereumLog extends Struct {
|
|
3178
3178
|
readonly address: H160;
|
|
3179
3179
|
readonly topics: Vec<H256>;
|
|
3180
3180
|
readonly data: Bytes;
|
|
3181
3181
|
}
|
|
3182
3182
|
|
|
3183
|
-
/** @name ArgonPrimitivesEthereumEthereumProof (
|
|
3183
|
+
/** @name ArgonPrimitivesEthereumEthereumProof (304) */
|
|
3184
3184
|
interface ArgonPrimitivesEthereumEthereumProof extends Struct {
|
|
3185
3185
|
readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
|
|
3186
3186
|
readonly receiptProof: ArgonPrimitivesEthereumEthereumReceiptProof;
|
|
3187
3187
|
}
|
|
3188
3188
|
|
|
3189
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (
|
|
3189
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (305) */
|
|
3190
3190
|
interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
|
|
3191
3191
|
readonly anchorBlockHash: H256;
|
|
3192
3192
|
readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
|
|
3193
3193
|
}
|
|
3194
3194
|
|
|
3195
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (
|
|
3195
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (307) */
|
|
3196
3196
|
interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
|
|
3197
3197
|
readonly rlp: Bytes;
|
|
3198
3198
|
}
|
|
3199
3199
|
|
|
3200
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptProof (
|
|
3200
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptProof (310) */
|
|
3201
3201
|
interface ArgonPrimitivesEthereumEthereumReceiptProof extends Struct {
|
|
3202
3202
|
readonly transactionIndex: Compact<u64>;
|
|
3203
3203
|
readonly nodes: Vec<Bytes>;
|
|
3204
3204
|
}
|
|
3205
3205
|
|
|
3206
|
-
/** @name PalletMultisigError (
|
|
3206
|
+
/** @name PalletMultisigError (314) */
|
|
3207
3207
|
interface PalletMultisigError extends Enum {
|
|
3208
3208
|
readonly isMinimumThreshold: boolean;
|
|
3209
3209
|
readonly isAlreadyApproved: boolean;
|
|
@@ -3236,21 +3236,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3236
3236
|
| 'AlreadyStored';
|
|
3237
3237
|
}
|
|
3238
3238
|
|
|
3239
|
-
/** @name PalletProxyProxyDefinition (
|
|
3239
|
+
/** @name PalletProxyProxyDefinition (317) */
|
|
3240
3240
|
interface PalletProxyProxyDefinition extends Struct {
|
|
3241
3241
|
readonly delegate: AccountId32;
|
|
3242
3242
|
readonly proxyType: ArgonRuntimeProxyType;
|
|
3243
3243
|
readonly delay: u32;
|
|
3244
3244
|
}
|
|
3245
3245
|
|
|
3246
|
-
/** @name PalletProxyAnnouncement (
|
|
3246
|
+
/** @name PalletProxyAnnouncement (321) */
|
|
3247
3247
|
interface PalletProxyAnnouncement extends Struct {
|
|
3248
3248
|
readonly real: AccountId32;
|
|
3249
3249
|
readonly callHash: H256;
|
|
3250
3250
|
readonly height: u32;
|
|
3251
3251
|
}
|
|
3252
3252
|
|
|
3253
|
-
/** @name PalletProxyError (
|
|
3253
|
+
/** @name PalletProxyError (323) */
|
|
3254
3254
|
interface PalletProxyError extends Enum {
|
|
3255
3255
|
readonly isTooMany: boolean;
|
|
3256
3256
|
readonly isNotFound: boolean;
|
|
@@ -3271,16 +3271,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
3271
3271
|
| 'NoSelfProxy';
|
|
3272
3272
|
}
|
|
3273
3273
|
|
|
3274
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
3274
|
+
/** @name ArgonPrimitivesTickTicker (324) */
|
|
3275
3275
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
3276
3276
|
readonly tickDurationMillis: Compact<u64>;
|
|
3277
3277
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
3278
3278
|
}
|
|
3279
3279
|
|
|
3280
|
-
/** @name PalletTicksError (
|
|
3280
|
+
/** @name PalletTicksError (326) */
|
|
3281
3281
|
type PalletTicksError = Null;
|
|
3282
3282
|
|
|
3283
|
-
/** @name PalletMiningSlotMinerNonceScoring (
|
|
3283
|
+
/** @name PalletMiningSlotMinerNonceScoring (329) */
|
|
3284
3284
|
interface PalletMiningSlotMinerNonceScoring extends Struct {
|
|
3285
3285
|
readonly nonce: U256;
|
|
3286
3286
|
readonly lastWinBlock: Option<u32>;
|
|
@@ -3288,7 +3288,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3288
3288
|
readonly frameStartBlocksWonSurplus: i16;
|
|
3289
3289
|
}
|
|
3290
3290
|
|
|
3291
|
-
/** @name ArgonPrimitivesBlockSealMiningBidStats (
|
|
3291
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (341) */
|
|
3292
3292
|
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
3293
3293
|
readonly bidsCount: u32;
|
|
3294
3294
|
readonly bidAmountMin: u128;
|
|
@@ -3296,14 +3296,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3296
3296
|
readonly bidAmountSum: u128;
|
|
3297
3297
|
}
|
|
3298
3298
|
|
|
3299
|
-
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (
|
|
3299
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (345) */
|
|
3300
3300
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
3301
3301
|
readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
|
|
3302
3302
|
readonly ticksBetweenSlots: Compact<u64>;
|
|
3303
3303
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
3304
3304
|
}
|
|
3305
3305
|
|
|
3306
|
-
/** @name PalletMiningSlotError (
|
|
3306
|
+
/** @name PalletMiningSlotError (356) */
|
|
3307
3307
|
interface PalletMiningSlotError extends Enum {
|
|
3308
3308
|
readonly isSlotNotTakingBids: boolean;
|
|
3309
3309
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -3328,7 +3328,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3328
3328
|
| 'UnrecoverableHold';
|
|
3329
3329
|
}
|
|
3330
3330
|
|
|
3331
|
-
/** @name ArgonPrimitivesBitcoinUtxoValue (
|
|
3331
|
+
/** @name ArgonPrimitivesBitcoinUtxoValue (357) */
|
|
3332
3332
|
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
3333
3333
|
readonly utxoId: u64;
|
|
3334
3334
|
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
@@ -3337,7 +3337,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3337
3337
|
readonly watchForSpentUntilHeight: Compact<u64>;
|
|
3338
3338
|
}
|
|
3339
3339
|
|
|
3340
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (
|
|
3340
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (358) */
|
|
3341
3341
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
3342
3342
|
readonly isP2wsh: boolean;
|
|
3343
3343
|
readonly asP2wsh: {
|
|
@@ -3346,7 +3346,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3346
3346
|
readonly type: 'P2wsh';
|
|
3347
3347
|
}
|
|
3348
3348
|
|
|
3349
|
-
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (
|
|
3349
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (367) */
|
|
3350
3350
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
3351
3351
|
readonly isBitcoin: boolean;
|
|
3352
3352
|
readonly isTestnet: boolean;
|
|
@@ -3355,7 +3355,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3355
3355
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
3356
3356
|
}
|
|
3357
3357
|
|
|
3358
|
-
/** @name PalletBitcoinUtxosError (
|
|
3358
|
+
/** @name PalletBitcoinUtxosError (368) */
|
|
3359
3359
|
interface PalletBitcoinUtxosError extends Enum {
|
|
3360
3360
|
readonly isNoPermissions: boolean;
|
|
3361
3361
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -3390,7 +3390,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3390
3390
|
| 'LockAlreadyFunded';
|
|
3391
3391
|
}
|
|
3392
3392
|
|
|
3393
|
-
/** @name ArgonPrimitivesVault (
|
|
3393
|
+
/** @name ArgonPrimitivesVault (369) */
|
|
3394
3394
|
interface ArgonPrimitivesVault extends Struct {
|
|
3395
3395
|
readonly operatorAccountId: AccountId32;
|
|
3396
3396
|
readonly bitcoinLockDelegateAccount: Option<AccountId32>;
|
|
@@ -3411,7 +3411,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3411
3411
|
readonly operationalMinimumReleaseTick: Option<u64>;
|
|
3412
3412
|
}
|
|
3413
3413
|
|
|
3414
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
3414
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (377) */
|
|
3415
3415
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
3416
3416
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
3417
3417
|
readonly depth: Compact<u8>;
|
|
@@ -3421,14 +3421,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3421
3421
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
3422
3422
|
}
|
|
3423
3423
|
|
|
3424
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
3424
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (379) */
|
|
3425
3425
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
3426
3426
|
readonly isMain: boolean;
|
|
3427
3427
|
readonly isTest: boolean;
|
|
3428
3428
|
readonly type: 'Main' | 'Test';
|
|
3429
3429
|
}
|
|
3430
3430
|
|
|
3431
|
-
/** @name PalletVaultsVaultFrameRevenue (
|
|
3431
|
+
/** @name PalletVaultsVaultFrameRevenue (388) */
|
|
3432
3432
|
interface PalletVaultsVaultFrameRevenue extends Struct {
|
|
3433
3433
|
readonly frameId: Compact<u64>;
|
|
3434
3434
|
readonly bitcoinLockFeeRevenue: Compact<u128>;
|
|
@@ -3448,7 +3448,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3448
3448
|
readonly uncollectedRevenue: Compact<u128>;
|
|
3449
3449
|
}
|
|
3450
3450
|
|
|
3451
|
-
/** @name PalletVaultsRecentCapacityDrop (
|
|
3451
|
+
/** @name PalletVaultsRecentCapacityDrop (391) */
|
|
3452
3452
|
interface PalletVaultsRecentCapacityDrop extends Struct {
|
|
3453
3453
|
readonly blockNumber: Compact<u32>;
|
|
3454
3454
|
readonly availableBeforeDrop: Compact<u128>;
|
|
@@ -3456,7 +3456,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3456
3456
|
readonly noFeeFailuresUsed: Compact<u32>;
|
|
3457
3457
|
}
|
|
3458
3458
|
|
|
3459
|
-
/** @name PalletVaultsError (
|
|
3459
|
+
/** @name PalletVaultsError (393) */
|
|
3460
3460
|
interface PalletVaultsError extends Enum {
|
|
3461
3461
|
readonly isNoMoreVaultIds: boolean;
|
|
3462
3462
|
readonly isInsufficientFunds: boolean;
|
|
@@ -3521,7 +3521,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3521
3521
|
| 'AccountAlreadyHasVault';
|
|
3522
3522
|
}
|
|
3523
3523
|
|
|
3524
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
3524
|
+
/** @name PalletBitcoinLocksLockedBitcoin (394) */
|
|
3525
3525
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
3526
3526
|
readonly vaultId: Compact<u32>;
|
|
3527
3527
|
readonly liquidityPromised: Compact<u128>;
|
|
@@ -3545,7 +3545,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3545
3545
|
readonly createdAtArgonBlock: Compact<u32>;
|
|
3546
3546
|
}
|
|
3547
3547
|
|
|
3548
|
-
/** @name PalletBitcoinLocksLockReleaseRequest (
|
|
3548
|
+
/** @name PalletBitcoinLocksLockReleaseRequest (397) */
|
|
3549
3549
|
interface PalletBitcoinLocksLockReleaseRequest extends Struct {
|
|
3550
3550
|
readonly utxoId: Compact<u64>;
|
|
3551
3551
|
readonly vaultId: Compact<u32>;
|
|
@@ -3555,7 +3555,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3555
3555
|
readonly redemptionPrice: Compact<u128>;
|
|
3556
3556
|
}
|
|
3557
3557
|
|
|
3558
|
-
/** @name PalletBitcoinLocksOrphanedUtxo (
|
|
3558
|
+
/** @name PalletBitcoinLocksOrphanedUtxo (399) */
|
|
3559
3559
|
interface PalletBitcoinLocksOrphanedUtxo extends Struct {
|
|
3560
3560
|
readonly utxoId: Compact<u64>;
|
|
3561
3561
|
readonly vaultId: Compact<u32>;
|
|
@@ -3564,14 +3564,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3564
3564
|
readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
|
|
3565
3565
|
}
|
|
3566
3566
|
|
|
3567
|
-
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (
|
|
3567
|
+
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (401) */
|
|
3568
3568
|
interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
|
|
3569
3569
|
readonly bitcoinNetworkFee: u64;
|
|
3570
3570
|
readonly toScriptPubkey: Bytes;
|
|
3571
3571
|
readonly createdAtArgonBlockNumber: u32;
|
|
3572
3572
|
}
|
|
3573
3573
|
|
|
3574
|
-
/** @name PalletBitcoinLocksError (
|
|
3574
|
+
/** @name PalletBitcoinLocksError (408) */
|
|
3575
3575
|
interface PalletBitcoinLocksError extends Enum {
|
|
3576
3576
|
readonly isInsufficientFunds: boolean;
|
|
3577
3577
|
readonly isInsufficientVaultFunds: boolean;
|
|
@@ -3647,7 +3647,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3647
3647
|
| 'MaxOrphanedUtxoReleaseRequestsExceeded';
|
|
3648
3648
|
}
|
|
3649
3649
|
|
|
3650
|
-
/** @name ArgonPrimitivesVaultVaultError (
|
|
3650
|
+
/** @name ArgonPrimitivesVaultVaultError (409) */
|
|
3651
3651
|
interface ArgonPrimitivesVaultVaultError extends Enum {
|
|
3652
3652
|
readonly isVaultClosed: boolean;
|
|
3653
3653
|
readonly isAccountWouldBeBelowMinimum: boolean;
|
|
@@ -3676,7 +3676,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3676
3676
|
| 'VaultNotYetActive';
|
|
3677
3677
|
}
|
|
3678
3678
|
|
|
3679
|
-
/** @name PalletNotariesError (
|
|
3679
|
+
/** @name PalletNotariesError (421) */
|
|
3680
3680
|
interface PalletNotariesError extends Enum {
|
|
3681
3681
|
readonly isProposalNotFound: boolean;
|
|
3682
3682
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -3699,7 +3699,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3699
3699
|
| 'InvalidNotary';
|
|
3700
3700
|
}
|
|
3701
3701
|
|
|
3702
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
3702
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (425) */
|
|
3703
3703
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
3704
3704
|
readonly notebookNumber: Compact<u32>;
|
|
3705
3705
|
readonly tick: Compact<u64>;
|
|
@@ -3708,7 +3708,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3708
3708
|
readonly parentSecret: Option<H256>;
|
|
3709
3709
|
}
|
|
3710
3710
|
|
|
3711
|
-
/** @name PalletNotebookError (
|
|
3711
|
+
/** @name PalletNotebookError (428) */
|
|
3712
3712
|
interface PalletNotebookError extends Enum {
|
|
3713
3713
|
readonly isDuplicateNotebookNumber: boolean;
|
|
3714
3714
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -3743,7 +3743,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3743
3743
|
| 'InvalidNotebookSubmissionTick';
|
|
3744
3744
|
}
|
|
3745
3745
|
|
|
3746
|
-
/** @name PalletLocalchainTransferQueuedTransferOut (
|
|
3746
|
+
/** @name PalletLocalchainTransferQueuedTransferOut (429) */
|
|
3747
3747
|
interface PalletLocalchainTransferQueuedTransferOut extends Struct {
|
|
3748
3748
|
readonly accountId: AccountId32;
|
|
3749
3749
|
readonly amount: u128;
|
|
@@ -3751,10 +3751,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
3751
3751
|
readonly notaryId: u32;
|
|
3752
3752
|
}
|
|
3753
3753
|
|
|
3754
|
-
/** @name FrameSupportPalletId (
|
|
3754
|
+
/** @name FrameSupportPalletId (431) */
|
|
3755
3755
|
interface FrameSupportPalletId extends U8aFixed {}
|
|
3756
3756
|
|
|
3757
|
-
/** @name PalletLocalchainTransferError (
|
|
3757
|
+
/** @name PalletLocalchainTransferError (432) */
|
|
3758
3758
|
interface PalletLocalchainTransferError extends Enum {
|
|
3759
3759
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
3760
3760
|
readonly isInsufficientFunds: boolean;
|
|
@@ -3775,7 +3775,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3775
3775
|
| 'NoAvailableTransferId';
|
|
3776
3776
|
}
|
|
3777
3777
|
|
|
3778
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
3778
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (436) */
|
|
3779
3779
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
3780
3780
|
readonly notaryId: Compact<u32>;
|
|
3781
3781
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -3784,13 +3784,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3784
3784
|
readonly blockVotingPower: Compact<u128>;
|
|
3785
3785
|
}
|
|
3786
3786
|
|
|
3787
|
-
/** @name PalletBlockSealSpecError (
|
|
3787
|
+
/** @name PalletBlockSealSpecError (441) */
|
|
3788
3788
|
interface PalletBlockSealSpecError extends Enum {
|
|
3789
3789
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
3790
3790
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
3791
3791
|
}
|
|
3792
3792
|
|
|
3793
|
-
/** @name PalletDomainsError (
|
|
3793
|
+
/** @name PalletDomainsError (443) */
|
|
3794
3794
|
interface PalletDomainsError extends Enum {
|
|
3795
3795
|
readonly isDomainNotRegistered: boolean;
|
|
3796
3796
|
readonly isNotDomainOwner: boolean;
|
|
@@ -3805,14 +3805,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3805
3805
|
| 'AccountDecodingError';
|
|
3806
3806
|
}
|
|
3807
3807
|
|
|
3808
|
-
/** @name PalletPriceIndexCpiMeasurementBucket (
|
|
3808
|
+
/** @name PalletPriceIndexCpiMeasurementBucket (445) */
|
|
3809
3809
|
interface PalletPriceIndexCpiMeasurementBucket extends Struct {
|
|
3810
3810
|
readonly tickRange: ITuple<[u64, u64]>;
|
|
3811
3811
|
readonly totalCpi: i128;
|
|
3812
3812
|
readonly measurementsCount: u32;
|
|
3813
3813
|
}
|
|
3814
3814
|
|
|
3815
|
-
/** @name PalletPriceIndexError (
|
|
3815
|
+
/** @name PalletPriceIndexError (447) */
|
|
3816
3816
|
interface PalletPriceIndexError extends Enum {
|
|
3817
3817
|
readonly isNotAuthorizedOperator: boolean;
|
|
3818
3818
|
readonly isMissingValue: boolean;
|
|
@@ -3825,7 +3825,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3825
3825
|
| 'MaxPriceChangePerTickExceeded';
|
|
3826
3826
|
}
|
|
3827
3827
|
|
|
3828
|
-
/** @name PalletGrandpaStoredState (
|
|
3828
|
+
/** @name PalletGrandpaStoredState (448) */
|
|
3829
3829
|
interface PalletGrandpaStoredState extends Enum {
|
|
3830
3830
|
readonly isLive: boolean;
|
|
3831
3831
|
readonly isPendingPause: boolean;
|
|
@@ -3842,7 +3842,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3842
3842
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
3843
3843
|
}
|
|
3844
3844
|
|
|
3845
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
3845
|
+
/** @name PalletGrandpaStoredPendingChange (449) */
|
|
3846
3846
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
3847
3847
|
readonly scheduledAt: u32;
|
|
3848
3848
|
readonly delay: u32;
|
|
@@ -3850,7 +3850,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3850
3850
|
readonly forced: Option<u32>;
|
|
3851
3851
|
}
|
|
3852
3852
|
|
|
3853
|
-
/** @name PalletGrandpaError (
|
|
3853
|
+
/** @name PalletGrandpaError (451) */
|
|
3854
3854
|
interface PalletGrandpaError extends Enum {
|
|
3855
3855
|
readonly isPauseFailed: boolean;
|
|
3856
3856
|
readonly isResumeFailed: boolean;
|
|
@@ -3869,14 +3869,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3869
3869
|
| 'DuplicateOffenceReport';
|
|
3870
3870
|
}
|
|
3871
3871
|
|
|
3872
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
3872
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (452) */
|
|
3873
3873
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
3874
3874
|
readonly blockAuthorAccountId: AccountId32;
|
|
3875
3875
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
3876
3876
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
3877
3877
|
}
|
|
3878
3878
|
|
|
3879
|
-
/** @name PalletBlockSealError (
|
|
3879
|
+
/** @name PalletBlockSealError (454) */
|
|
3880
3880
|
interface PalletBlockSealError extends Enum {
|
|
3881
3881
|
readonly isInvalidVoteSealStrength: boolean;
|
|
3882
3882
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -3923,30 +3923,30 @@ declare module '@polkadot/types/lookup' {
|
|
|
3923
3923
|
| 'DuplicateVoteBlockAtTick';
|
|
3924
3924
|
}
|
|
3925
3925
|
|
|
3926
|
-
/** @name PalletBlockRewardsError (
|
|
3926
|
+
/** @name PalletBlockRewardsError (458) */
|
|
3927
3927
|
type PalletBlockRewardsError = Null;
|
|
3928
3928
|
|
|
3929
|
-
/** @name PalletMintMintAction (
|
|
3929
|
+
/** @name PalletMintMintAction (464) */
|
|
3930
3930
|
interface PalletMintMintAction extends Struct {
|
|
3931
3931
|
readonly argonBurned: u128;
|
|
3932
3932
|
readonly argonMinted: u128;
|
|
3933
3933
|
readonly bitcoinMinted: u128;
|
|
3934
3934
|
}
|
|
3935
3935
|
|
|
3936
|
-
/** @name PalletMintError (
|
|
3936
|
+
/** @name PalletMintError (465) */
|
|
3937
3937
|
interface PalletMintError extends Enum {
|
|
3938
3938
|
readonly isTooManyPendingMints: boolean;
|
|
3939
3939
|
readonly type: 'TooManyPendingMints';
|
|
3940
3940
|
}
|
|
3941
3941
|
|
|
3942
|
-
/** @name PalletBalancesBalanceLock (
|
|
3942
|
+
/** @name PalletBalancesBalanceLock (467) */
|
|
3943
3943
|
interface PalletBalancesBalanceLock extends Struct {
|
|
3944
3944
|
readonly id: U8aFixed;
|
|
3945
3945
|
readonly amount: u128;
|
|
3946
3946
|
readonly reasons: PalletBalancesReasons;
|
|
3947
3947
|
}
|
|
3948
3948
|
|
|
3949
|
-
/** @name PalletBalancesReasons (
|
|
3949
|
+
/** @name PalletBalancesReasons (468) */
|
|
3950
3950
|
interface PalletBalancesReasons extends Enum {
|
|
3951
3951
|
readonly isFee: boolean;
|
|
3952
3952
|
readonly isMisc: boolean;
|
|
@@ -3954,38 +3954,38 @@ declare module '@polkadot/types/lookup' {
|
|
|
3954
3954
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
3955
3955
|
}
|
|
3956
3956
|
|
|
3957
|
-
/** @name PalletBalancesReserveData (
|
|
3957
|
+
/** @name PalletBalancesReserveData (471) */
|
|
3958
3958
|
interface PalletBalancesReserveData extends Struct {
|
|
3959
3959
|
readonly id: U8aFixed;
|
|
3960
3960
|
readonly amount: u128;
|
|
3961
3961
|
}
|
|
3962
3962
|
|
|
3963
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
3963
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (474) */
|
|
3964
3964
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
3965
3965
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
3966
3966
|
readonly amount: u128;
|
|
3967
3967
|
}
|
|
3968
3968
|
|
|
3969
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
3969
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (477) */
|
|
3970
3970
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
3971
3971
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
3972
3972
|
readonly amount: u128;
|
|
3973
3973
|
}
|
|
3974
3974
|
|
|
3975
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
3975
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (478) */
|
|
3976
3976
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
3977
3977
|
readonly isBlockRewards: boolean;
|
|
3978
3978
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
3979
3979
|
readonly type: 'BlockRewards';
|
|
3980
3980
|
}
|
|
3981
3981
|
|
|
3982
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
3982
|
+
/** @name PalletBlockRewardsFreezeReason (479) */
|
|
3983
3983
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
3984
3984
|
readonly isMaturationPeriod: boolean;
|
|
3985
3985
|
readonly type: 'MaturationPeriod';
|
|
3986
3986
|
}
|
|
3987
3987
|
|
|
3988
|
-
/** @name PalletBalancesError (
|
|
3988
|
+
/** @name PalletBalancesError (481) */
|
|
3989
3989
|
interface PalletBalancesError extends Enum {
|
|
3990
3990
|
readonly isVestingBalance: boolean;
|
|
3991
3991
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -4014,7 +4014,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4014
4014
|
| 'DeltaZero';
|
|
4015
4015
|
}
|
|
4016
4016
|
|
|
4017
|
-
/** @name PalletTxPauseError (
|
|
4017
|
+
/** @name PalletTxPauseError (483) */
|
|
4018
4018
|
interface PalletTxPauseError extends Enum {
|
|
4019
4019
|
readonly isIsPaused: boolean;
|
|
4020
4020
|
readonly isIsUnpaused: boolean;
|
|
@@ -4023,53 +4023,53 @@ declare module '@polkadot/types/lookup' {
|
|
|
4023
4023
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
4024
4024
|
}
|
|
4025
4025
|
|
|
4026
|
-
/** @name PalletTransactionPaymentReleases (
|
|
4026
|
+
/** @name PalletTransactionPaymentReleases (484) */
|
|
4027
4027
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
4028
4028
|
readonly isV1Ancient: boolean;
|
|
4029
4029
|
readonly isV2: boolean;
|
|
4030
4030
|
readonly type: 'V1Ancient' | 'V2';
|
|
4031
4031
|
}
|
|
4032
4032
|
|
|
4033
|
-
/** @name FrameSupportStorageNoDrop (
|
|
4033
|
+
/** @name FrameSupportStorageNoDrop (485) */
|
|
4034
4034
|
interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
|
|
4035
4035
|
|
|
4036
|
-
/** @name FrameSupportTokensFungibleImbalance (
|
|
4036
|
+
/** @name FrameSupportTokensFungibleImbalance (486) */
|
|
4037
4037
|
interface FrameSupportTokensFungibleImbalance extends Struct {
|
|
4038
4038
|
readonly amount: u128;
|
|
4039
4039
|
}
|
|
4040
4040
|
|
|
4041
|
-
/** @name PalletUtilityError (
|
|
4041
|
+
/** @name PalletUtilityError (487) */
|
|
4042
4042
|
interface PalletUtilityError extends Enum {
|
|
4043
4043
|
readonly isTooManyCalls: boolean;
|
|
4044
4044
|
readonly type: 'TooManyCalls';
|
|
4045
4045
|
}
|
|
4046
4046
|
|
|
4047
|
-
/** @name PalletSudoError (
|
|
4047
|
+
/** @name PalletSudoError (488) */
|
|
4048
4048
|
interface PalletSudoError extends Enum {
|
|
4049
4049
|
readonly isRequireSudo: boolean;
|
|
4050
4050
|
readonly type: 'RequireSudo';
|
|
4051
4051
|
}
|
|
4052
4052
|
|
|
4053
|
-
/** @name PalletTreasuryFrameVaultCapital (
|
|
4053
|
+
/** @name PalletTreasuryFrameVaultCapital (489) */
|
|
4054
4054
|
interface PalletTreasuryFrameVaultCapital extends Struct {
|
|
4055
4055
|
readonly frameId: Compact<u64>;
|
|
4056
4056
|
readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
|
|
4057
4057
|
}
|
|
4058
4058
|
|
|
4059
|
-
/** @name PalletTreasuryVaultCapital (
|
|
4059
|
+
/** @name PalletTreasuryVaultCapital (491) */
|
|
4060
4060
|
interface PalletTreasuryVaultCapital extends Struct {
|
|
4061
4061
|
readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
|
|
4062
4062
|
readonly eligibleBonds: Compact<u32>;
|
|
4063
4063
|
readonly vaultSharingPercent: Compact<Permill>;
|
|
4064
4064
|
}
|
|
4065
4065
|
|
|
4066
|
-
/** @name PalletTreasuryBondLotAllocation (
|
|
4066
|
+
/** @name PalletTreasuryBondLotAllocation (493) */
|
|
4067
4067
|
interface PalletTreasuryBondLotAllocation extends Struct {
|
|
4068
4068
|
readonly bondLotId: Compact<u64>;
|
|
4069
4069
|
readonly prorata: u128;
|
|
4070
4070
|
}
|
|
4071
4071
|
|
|
4072
|
-
/** @name PalletTreasuryBondLot (
|
|
4072
|
+
/** @name PalletTreasuryBondLot (498) */
|
|
4073
4073
|
interface PalletTreasuryBondLot extends Struct {
|
|
4074
4074
|
readonly owner: AccountId32;
|
|
4075
4075
|
readonly vaultId: Compact<u32>;
|
|
@@ -4083,13 +4083,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4083
4083
|
readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
|
|
4084
4084
|
}
|
|
4085
4085
|
|
|
4086
|
-
/** @name PalletTreasuryBondLotSummary (
|
|
4086
|
+
/** @name PalletTreasuryBondLotSummary (503) */
|
|
4087
4087
|
interface PalletTreasuryBondLotSummary extends Struct {
|
|
4088
4088
|
readonly bondLotId: Compact<u64>;
|
|
4089
4089
|
readonly bonds: Compact<u32>;
|
|
4090
4090
|
}
|
|
4091
4091
|
|
|
4092
|
-
/** @name PalletTreasuryError (
|
|
4092
|
+
/** @name PalletTreasuryError (505) */
|
|
4093
4093
|
interface PalletTreasuryError extends Enum {
|
|
4094
4094
|
readonly isBondPurchaseRejected: boolean;
|
|
4095
4095
|
readonly isVaultNotAcceptingBondPurchases: boolean;
|
|
@@ -4114,13 +4114,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4114
4114
|
| 'BondPurchaseAboveSecurity';
|
|
4115
4115
|
}
|
|
4116
4116
|
|
|
4117
|
-
/** @name PalletFeeControlError (
|
|
4117
|
+
/** @name PalletFeeControlError (506) */
|
|
4118
4118
|
interface PalletFeeControlError extends Enum {
|
|
4119
4119
|
readonly isSponsoredFeeTooHigh: boolean;
|
|
4120
4120
|
readonly type: 'SponsoredFeeTooHigh';
|
|
4121
4121
|
}
|
|
4122
4122
|
|
|
4123
|
-
/** @name PalletOperationalAccountsOperationalAccount (
|
|
4123
|
+
/** @name PalletOperationalAccountsOperationalAccount (507) */
|
|
4124
4124
|
interface PalletOperationalAccountsOperationalAccount extends Struct {
|
|
4125
4125
|
readonly vaultAccount: AccountId32;
|
|
4126
4126
|
readonly miningFundingAccount: AccountId32;
|
|
@@ -4143,13 +4143,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4143
4143
|
readonly isOperational: bool;
|
|
4144
4144
|
}
|
|
4145
4145
|
|
|
4146
|
-
/** @name PalletOperationalAccountsRewardsConfig (
|
|
4146
|
+
/** @name PalletOperationalAccountsRewardsConfig (509) */
|
|
4147
4147
|
interface PalletOperationalAccountsRewardsConfig extends Struct {
|
|
4148
4148
|
readonly operationalReferralReward: Compact<u128>;
|
|
4149
4149
|
readonly referralBonusReward: Compact<u128>;
|
|
4150
4150
|
}
|
|
4151
4151
|
|
|
4152
|
-
/** @name PalletOperationalAccountsError (
|
|
4152
|
+
/** @name PalletOperationalAccountsError (511) */
|
|
4153
4153
|
interface PalletOperationalAccountsError extends Enum {
|
|
4154
4154
|
readonly isAlreadyRegistered: boolean;
|
|
4155
4155
|
readonly isInvalidRegistrationSubmitter: boolean;
|
|
@@ -4188,12 +4188,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
4188
4188
|
| 'NotEligibleForActivation';
|
|
4189
4189
|
}
|
|
4190
4190
|
|
|
4191
|
-
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (
|
|
4191
|
+
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (512) */
|
|
4192
4192
|
interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
|
|
4193
4193
|
readonly slot: Compact<u64>;
|
|
4194
4194
|
}
|
|
4195
4195
|
|
|
4196
|
-
/** @name PalletEthereumVerifierExecutionHeaderAnchor (
|
|
4196
|
+
/** @name PalletEthereumVerifierExecutionHeaderAnchor (513) */
|
|
4197
4197
|
interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
|
|
4198
4198
|
readonly blockNumber: Compact<u64>;
|
|
4199
4199
|
readonly blockHash: H256;
|
|
@@ -4201,37 +4201,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
4201
4201
|
readonly receiptsRoot: H256;
|
|
4202
4202
|
}
|
|
4203
4203
|
|
|
4204
|
-
/** @name
|
|
4205
|
-
interface
|
|
4204
|
+
/** @name PalletEthereumVerifierSyncCommitteePrepared (514) */
|
|
4205
|
+
interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
|
|
4206
4206
|
readonly root: H256;
|
|
4207
4207
|
readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
|
|
4208
4208
|
readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
|
|
4209
4209
|
}
|
|
4210
4210
|
|
|
4211
|
-
/** @name SnowbridgeMilagroBlsKeysPublicKey (
|
|
4211
|
+
/** @name SnowbridgeMilagroBlsKeysPublicKey (516) */
|
|
4212
4212
|
interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
|
|
4213
4213
|
readonly point: SnowbridgeAmclBls381Ecp;
|
|
4214
4214
|
}
|
|
4215
4215
|
|
|
4216
|
-
/** @name SnowbridgeAmclBls381Ecp (
|
|
4216
|
+
/** @name SnowbridgeAmclBls381Ecp (517) */
|
|
4217
4217
|
interface SnowbridgeAmclBls381Ecp extends Struct {
|
|
4218
4218
|
readonly x: SnowbridgeAmclBls381Fp;
|
|
4219
4219
|
readonly y: SnowbridgeAmclBls381Fp;
|
|
4220
4220
|
readonly z: SnowbridgeAmclBls381Fp;
|
|
4221
4221
|
}
|
|
4222
4222
|
|
|
4223
|
-
/** @name SnowbridgeAmclBls381Fp (
|
|
4223
|
+
/** @name SnowbridgeAmclBls381Fp (518) */
|
|
4224
4224
|
interface SnowbridgeAmclBls381Fp extends Struct {
|
|
4225
4225
|
readonly x: SnowbridgeAmclBls381Big;
|
|
4226
4226
|
readonly xes: i32;
|
|
4227
4227
|
}
|
|
4228
4228
|
|
|
4229
|
-
/** @name SnowbridgeAmclBls381Big (
|
|
4229
|
+
/** @name SnowbridgeAmclBls381Big (519) */
|
|
4230
4230
|
interface SnowbridgeAmclBls381Big extends Struct {
|
|
4231
4231
|
readonly w: Vec<i32>;
|
|
4232
4232
|
}
|
|
4233
4233
|
|
|
4234
|
-
/** @name
|
|
4234
|
+
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (523) */
|
|
4235
|
+
interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
|
|
4236
|
+
readonly isMainnet: boolean;
|
|
4237
|
+
readonly isMinimal: boolean;
|
|
4238
|
+
readonly type: 'Mainnet' | 'Minimal';
|
|
4239
|
+
}
|
|
4240
|
+
|
|
4241
|
+
/** @name PalletEthereumVerifierError (524) */
|
|
4235
4242
|
interface PalletEthereumVerifierError extends Enum {
|
|
4236
4243
|
readonly isSkippedSyncCommitteePeriod: boolean;
|
|
4237
4244
|
readonly isSyncCommitteeUpdateRequired: boolean;
|
|
@@ -4250,6 +4257,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4250
4257
|
readonly isExpectedFinalizedHeaderNotStored: boolean;
|
|
4251
4258
|
readonly isBlsPreparePublicKeysFailed: boolean;
|
|
4252
4259
|
readonly isBlsVerificationFailed: boolean;
|
|
4260
|
+
readonly isUnexpectedBeaconPreset: boolean;
|
|
4253
4261
|
readonly isInvalidUpdateSlot: boolean;
|
|
4254
4262
|
readonly isInvalidSyncCommitteeUpdate: boolean;
|
|
4255
4263
|
readonly isHalted: boolean;
|
|
@@ -4271,12 +4279,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4271
4279
|
| 'ExpectedFinalizedHeaderNotStored'
|
|
4272
4280
|
| 'BlsPreparePublicKeysFailed'
|
|
4273
4281
|
| 'BlsVerificationFailed'
|
|
4282
|
+
| 'UnexpectedBeaconPreset'
|
|
4274
4283
|
| 'InvalidUpdateSlot'
|
|
4275
4284
|
| 'InvalidSyncCommitteeUpdate'
|
|
4276
4285
|
| 'Halted';
|
|
4277
4286
|
}
|
|
4278
4287
|
|
|
4279
|
-
/** @name PalletCrosschainTransferError (
|
|
4288
|
+
/** @name PalletCrosschainTransferError (526) */
|
|
4280
4289
|
interface PalletCrosschainTransferError extends Enum {
|
|
4281
4290
|
readonly isInvalidEthereumEvent: boolean;
|
|
4282
4291
|
readonly isInvalidProof: boolean;
|
|
@@ -4288,6 +4297,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4288
4297
|
readonly isUnexpectedNonce: boolean;
|
|
4289
4298
|
readonly isInvalidChainConfig: boolean;
|
|
4290
4299
|
readonly isInsufficientLiquidity: boolean;
|
|
4300
|
+
readonly isInsufficientBurnAmountForFee: boolean;
|
|
4291
4301
|
readonly type:
|
|
4292
4302
|
| 'InvalidEthereumEvent'
|
|
4293
4303
|
| 'InvalidProof'
|
|
@@ -4298,48 +4308,49 @@ declare module '@polkadot/types/lookup' {
|
|
|
4298
4308
|
| 'UnsupportedToken'
|
|
4299
4309
|
| 'UnexpectedNonce'
|
|
4300
4310
|
| 'InvalidChainConfig'
|
|
4301
|
-
| 'InsufficientLiquidity'
|
|
4311
|
+
| 'InsufficientLiquidity'
|
|
4312
|
+
| 'InsufficientBurnAmountForFee';
|
|
4302
4313
|
}
|
|
4303
4314
|
|
|
4304
|
-
/** @name FrameSystemExtensionsAuthorizeCall (
|
|
4315
|
+
/** @name FrameSystemExtensionsAuthorizeCall (529) */
|
|
4305
4316
|
type FrameSystemExtensionsAuthorizeCall = Null;
|
|
4306
4317
|
|
|
4307
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
4318
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (530) */
|
|
4308
4319
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
4309
4320
|
|
|
4310
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
4321
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (531) */
|
|
4311
4322
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
4312
4323
|
|
|
4313
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
4324
|
+
/** @name FrameSystemExtensionsCheckTxVersion (532) */
|
|
4314
4325
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
4315
4326
|
|
|
4316
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
4327
|
+
/** @name FrameSystemExtensionsCheckGenesis (533) */
|
|
4317
4328
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
4318
4329
|
|
|
4319
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
4330
|
+
/** @name FrameSystemExtensionsCheckNonce (536) */
|
|
4320
4331
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
|
|
4321
4332
|
|
|
4322
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
4333
|
+
/** @name FrameSystemExtensionsCheckWeight (537) */
|
|
4323
4334
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
4324
4335
|
|
|
4325
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
4336
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (538) */
|
|
4326
4337
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
|
|
4327
4338
|
|
|
4328
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
4339
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (539) */
|
|
4329
4340
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
4330
4341
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
4331
4342
|
}
|
|
4332
4343
|
|
|
4333
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
4344
|
+
/** @name FrameMetadataHashExtensionMode (540) */
|
|
4334
4345
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
4335
4346
|
readonly isDisabled: boolean;
|
|
4336
4347
|
readonly isEnabled: boolean;
|
|
4337
4348
|
readonly type: 'Disabled' | 'Enabled';
|
|
4338
4349
|
}
|
|
4339
4350
|
|
|
4340
|
-
/** @name FrameSystemExtensionsWeightReclaim (
|
|
4351
|
+
/** @name FrameSystemExtensionsWeightReclaim (541) */
|
|
4341
4352
|
type FrameSystemExtensionsWeightReclaim = Null;
|
|
4342
4353
|
|
|
4343
|
-
/** @name ArgonRuntimeRuntime (
|
|
4354
|
+
/** @name ArgonRuntimeRuntime (543) */
|
|
4344
4355
|
type ArgonRuntimeRuntime = Null;
|
|
4345
4356
|
} // declare module
|