@argonprotocol/mainchain 1.4.7 → 1.4.8-dev.fe6d442d
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 +260 -176
- package/browser/index.js +102 -28
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +125 -48
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +260 -176
- package/lib/index.d.ts +260 -176
- package/lib/index.js +104 -27
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +10 -16
- package/src/interfaces/augment-api-errors.ts +24 -0
- package/src/interfaces/augment-api-query.ts +21 -0
- package/src/interfaces/augment-api-tx.ts +31 -13
- package/src/interfaces/lookup.ts +170 -140
- package/src/interfaces/registry.ts +4 -0
- package/src/interfaces/types-lookup.ts +179 -144
|
@@ -405,7 +405,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
405
405
|
readonly isMiningBidRealPaysFee: boolean;
|
|
406
406
|
readonly isBitcoin: boolean;
|
|
407
407
|
readonly isVaultAdmin: boolean;
|
|
408
|
-
readonly
|
|
408
|
+
readonly isVaultDelegate: boolean;
|
|
409
409
|
readonly type:
|
|
410
410
|
| 'Any'
|
|
411
411
|
| 'NonTransfer'
|
|
@@ -414,7 +414,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
414
414
|
| 'MiningBidRealPaysFee'
|
|
415
415
|
| 'Bitcoin'
|
|
416
416
|
| 'VaultAdmin'
|
|
417
|
-
| '
|
|
417
|
+
| 'VaultDelegate';
|
|
418
418
|
}
|
|
419
419
|
|
|
420
420
|
/** @name PalletProxyDepositKind (40) */
|
|
@@ -2584,8 +2584,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
2584
2584
|
readonly asCollect: {
|
|
2585
2585
|
readonly vaultId: u32;
|
|
2586
2586
|
} & Struct;
|
|
2587
|
-
readonly
|
|
2588
|
-
readonly
|
|
2587
|
+
readonly isSetDelegateAccount: boolean;
|
|
2588
|
+
readonly asSetDelegateAccount: {
|
|
2589
2589
|
readonly delegateAccountId: Option<AccountId32>;
|
|
2590
2590
|
} & Struct;
|
|
2591
2591
|
readonly isSetName: boolean;
|
|
@@ -2603,7 +2603,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2603
2603
|
| 'Close'
|
|
2604
2604
|
| 'ReplaceBitcoinXpub'
|
|
2605
2605
|
| 'Collect'
|
|
2606
|
-
| '
|
|
2606
|
+
| 'SetDelegateAccount'
|
|
2607
2607
|
| 'SetName'
|
|
2608
2608
|
| 'SetCommittedArgonots';
|
|
2609
2609
|
}
|
|
@@ -2612,6 +2612,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2612
2612
|
interface PalletVaultsVaultConfig extends Struct {
|
|
2613
2613
|
readonly terms: ArgonPrimitivesVaultVaultTerms;
|
|
2614
2614
|
readonly name: Option<Bytes>;
|
|
2615
|
+
readonly delegateAccountId: Option<AccountId32>;
|
|
2615
2616
|
readonly securitization: Compact<u128>;
|
|
2616
2617
|
readonly bitcoinXpubkey: ArgonPrimitivesBitcoinOpaqueBitcoinXpub;
|
|
2617
2618
|
readonly securitizationRatio: Compact<u128>;
|
|
@@ -2622,6 +2623,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2622
2623
|
readonly bitcoinAnnualPercentRate: Compact<u128>;
|
|
2623
2624
|
readonly bitcoinBaseFee: Compact<u128>;
|
|
2624
2625
|
readonly treasuryProfitSharing: Compact<Permill>;
|
|
2626
|
+
readonly treasuryBonusProfitSharing: Compact<Permill>;
|
|
2625
2627
|
}
|
|
2626
2628
|
|
|
2627
2629
|
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (212) */
|
|
@@ -2965,7 +2967,11 @@ declare module '@polkadot/types/lookup' {
|
|
|
2965
2967
|
readonly asSetBlockRewardsPaused: {
|
|
2966
2968
|
readonly paused: bool;
|
|
2967
2969
|
} & Struct;
|
|
2968
|
-
readonly
|
|
2970
|
+
readonly isSetBlockVoterRewardsEnabled: boolean;
|
|
2971
|
+
readonly asSetBlockVoterRewardsEnabled: {
|
|
2972
|
+
readonly enabled: bool;
|
|
2973
|
+
} & Struct;
|
|
2974
|
+
readonly type: 'SetBlockRewardsPaused' | 'SetBlockVoterRewardsEnabled';
|
|
2969
2975
|
}
|
|
2970
2976
|
|
|
2971
2977
|
/** @name PalletMintCall (262) */
|
|
@@ -3130,6 +3136,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3130
3136
|
readonly asBuyBonds: {
|
|
3131
3137
|
readonly vaultId: u32;
|
|
3132
3138
|
readonly bonds: u32;
|
|
3139
|
+
readonly bonusApproval: Option<ArgonPrimitivesVaultTreasuryBonusApprovalProof>;
|
|
3133
3140
|
} & Struct;
|
|
3134
3141
|
readonly isLiquidateBondLot: boolean;
|
|
3135
3142
|
readonly asLiquidateBondLot: {
|
|
@@ -3138,7 +3145,15 @@ declare module '@polkadot/types/lookup' {
|
|
|
3138
3145
|
readonly type: 'BuyBonds' | 'LiquidateBondLot';
|
|
3139
3146
|
}
|
|
3140
3147
|
|
|
3141
|
-
/** @name
|
|
3148
|
+
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (272) */
|
|
3149
|
+
interface ArgonPrimitivesVaultTreasuryBonusApprovalProof extends Struct {
|
|
3150
|
+
readonly vaultId: Compact<u32>;
|
|
3151
|
+
readonly beneficiary: AccountId32;
|
|
3152
|
+
readonly expiresAtFrame: Compact<u64>;
|
|
3153
|
+
readonly signature: SpRuntimeMultiSignature;
|
|
3154
|
+
}
|
|
3155
|
+
|
|
3156
|
+
/** @name PalletOperationalAccountsCall (273) */
|
|
3142
3157
|
interface PalletOperationalAccountsCall extends Enum {
|
|
3143
3158
|
readonly isRegister: boolean;
|
|
3144
3159
|
readonly asRegister: {
|
|
@@ -3174,14 +3189,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3174
3189
|
| 'ClaimRewards';
|
|
3175
3190
|
}
|
|
3176
3191
|
|
|
3177
|
-
/** @name PalletOperationalAccountsRegistration (
|
|
3192
|
+
/** @name PalletOperationalAccountsRegistration (274) */
|
|
3178
3193
|
interface PalletOperationalAccountsRegistration extends Enum {
|
|
3179
3194
|
readonly isV1: boolean;
|
|
3180
3195
|
readonly asV1: PalletOperationalAccountsRegistrationV1;
|
|
3181
3196
|
readonly type: 'V1';
|
|
3182
3197
|
}
|
|
3183
3198
|
|
|
3184
|
-
/** @name PalletOperationalAccountsRegistrationV1 (
|
|
3199
|
+
/** @name PalletOperationalAccountsRegistrationV1 (275) */
|
|
3185
3200
|
interface PalletOperationalAccountsRegistrationV1 extends Struct {
|
|
3186
3201
|
readonly operationalAccount: AccountId32;
|
|
3187
3202
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
@@ -3195,15 +3210,15 @@ declare module '@polkadot/types/lookup' {
|
|
|
3195
3210
|
readonly referralProof: Option<PalletOperationalAccountsReferralProof>;
|
|
3196
3211
|
}
|
|
3197
3212
|
|
|
3198
|
-
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (
|
|
3213
|
+
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (276) */
|
|
3199
3214
|
interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {}
|
|
3200
3215
|
|
|
3201
|
-
/** @name PalletOperationalAccountsAccountOwnershipProof (
|
|
3216
|
+
/** @name PalletOperationalAccountsAccountOwnershipProof (277) */
|
|
3202
3217
|
interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
|
|
3203
3218
|
readonly signature: SpRuntimeMultiSignature;
|
|
3204
3219
|
}
|
|
3205
3220
|
|
|
3206
|
-
/** @name PalletOperationalAccountsReferralProof (
|
|
3221
|
+
/** @name PalletOperationalAccountsReferralProof (279) */
|
|
3207
3222
|
interface PalletOperationalAccountsReferralProof extends Struct {
|
|
3208
3223
|
readonly referralCode: U8aFixed;
|
|
3209
3224
|
readonly referralSignature: U8aFixed;
|
|
@@ -3212,7 +3227,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3212
3227
|
readonly sponsorSignature: SpRuntimeMultiSignature;
|
|
3213
3228
|
}
|
|
3214
3229
|
|
|
3215
|
-
/** @name PalletOperationalAccountsOperationalProgressPatch (
|
|
3230
|
+
/** @name PalletOperationalAccountsOperationalProgressPatch (280) */
|
|
3216
3231
|
interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
|
|
3217
3232
|
readonly hasUniswapTransfer: Option<bool>;
|
|
3218
3233
|
readonly vaultCreated: Option<bool>;
|
|
@@ -3221,7 +3236,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3221
3236
|
readonly observedMiningSeatTotal: Option<u32>;
|
|
3222
3237
|
}
|
|
3223
3238
|
|
|
3224
|
-
/** @name PalletEthereumVerifierCall (
|
|
3239
|
+
/** @name PalletEthereumVerifierCall (282) */
|
|
3225
3240
|
interface PalletEthereumVerifierCall extends Enum {
|
|
3226
3241
|
readonly isForceCheckpoint: boolean;
|
|
3227
3242
|
readonly asForceCheckpoint: {
|
|
@@ -3249,7 +3264,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3249
3264
|
| 'SetOperatingMode';
|
|
3250
3265
|
}
|
|
3251
3266
|
|
|
3252
|
-
/** @name PalletEthereumVerifierCheckpointUpdate (
|
|
3267
|
+
/** @name PalletEthereumVerifierCheckpointUpdate (283) */
|
|
3253
3268
|
interface PalletEthereumVerifierCheckpointUpdate extends Struct {
|
|
3254
3269
|
readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3255
3270
|
readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
@@ -3258,7 +3273,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3258
3273
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3259
3274
|
}
|
|
3260
3275
|
|
|
3261
|
-
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (
|
|
3276
|
+
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (284) */
|
|
3262
3277
|
interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
|
|
3263
3278
|
readonly slot: u64;
|
|
3264
3279
|
readonly proposerIndex: u64;
|
|
@@ -3267,22 +3282,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3267
3282
|
readonly bodyRoot: H256;
|
|
3268
3283
|
}
|
|
3269
3284
|
|
|
3270
|
-
/** @name PalletEthereumVerifierSyncCommittee (
|
|
3285
|
+
/** @name PalletEthereumVerifierSyncCommittee (285) */
|
|
3271
3286
|
interface PalletEthereumVerifierSyncCommittee extends Struct {
|
|
3272
3287
|
readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
|
|
3273
3288
|
readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
|
|
3274
3289
|
}
|
|
3275
3290
|
|
|
3276
|
-
/** @name SnowbridgeBeaconPrimitivesPublicKey (
|
|
3291
|
+
/** @name SnowbridgeBeaconPrimitivesPublicKey (287) */
|
|
3277
3292
|
interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
|
|
3278
3293
|
|
|
3279
|
-
/** @name PalletEthereumVerifierExecutionHeaderProof (
|
|
3294
|
+
/** @name PalletEthereumVerifierExecutionHeaderProof (291) */
|
|
3280
3295
|
interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
|
|
3281
3296
|
readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
|
|
3282
3297
|
readonly executionBranch: Vec<H256>;
|
|
3283
3298
|
}
|
|
3284
3299
|
|
|
3285
|
-
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (
|
|
3300
|
+
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (292) */
|
|
3286
3301
|
interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
|
|
3287
3302
|
readonly isCapella: boolean;
|
|
3288
3303
|
readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
|
|
@@ -3291,7 +3306,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3291
3306
|
readonly type: 'Capella' | 'Deneb';
|
|
3292
3307
|
}
|
|
3293
3308
|
|
|
3294
|
-
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (
|
|
3309
|
+
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (293) */
|
|
3295
3310
|
interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
|
|
3296
3311
|
readonly parentHash: H256;
|
|
3297
3312
|
readonly feeRecipient: H160;
|
|
@@ -3310,7 +3325,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3310
3325
|
readonly withdrawalsRoot: H256;
|
|
3311
3326
|
}
|
|
3312
3327
|
|
|
3313
|
-
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (
|
|
3328
|
+
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (294) */
|
|
3314
3329
|
interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
|
|
3315
3330
|
readonly parentHash: H256;
|
|
3316
3331
|
readonly feeRecipient: H160;
|
|
@@ -3331,7 +3346,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3331
3346
|
readonly excessBlobGas: u64;
|
|
3332
3347
|
}
|
|
3333
3348
|
|
|
3334
|
-
/** @name PalletEthereumVerifierForkVersions (
|
|
3349
|
+
/** @name PalletEthereumVerifierForkVersions (295) */
|
|
3335
3350
|
interface PalletEthereumVerifierForkVersions extends Struct {
|
|
3336
3351
|
readonly genesis: PalletEthereumVerifierFork;
|
|
3337
3352
|
readonly altair: PalletEthereumVerifierFork;
|
|
@@ -3342,13 +3357,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3342
3357
|
readonly fulu: PalletEthereumVerifierFork;
|
|
3343
3358
|
}
|
|
3344
3359
|
|
|
3345
|
-
/** @name PalletEthereumVerifierFork (
|
|
3360
|
+
/** @name PalletEthereumVerifierFork (296) */
|
|
3346
3361
|
interface PalletEthereumVerifierFork extends Struct {
|
|
3347
3362
|
readonly version: U8aFixed;
|
|
3348
3363
|
readonly epoch: Compact<u64>;
|
|
3349
3364
|
}
|
|
3350
3365
|
|
|
3351
|
-
/** @name PalletEthereumVerifierUpdate (
|
|
3366
|
+
/** @name PalletEthereumVerifierUpdate (297) */
|
|
3352
3367
|
interface PalletEthereumVerifierUpdate extends Struct {
|
|
3353
3368
|
readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3354
3369
|
readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
|
|
@@ -3359,22 +3374,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3359
3374
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3360
3375
|
}
|
|
3361
3376
|
|
|
3362
|
-
/** @name PalletEthereumVerifierSyncAggregate (
|
|
3377
|
+
/** @name PalletEthereumVerifierSyncAggregate (298) */
|
|
3363
3378
|
interface PalletEthereumVerifierSyncAggregate extends Struct {
|
|
3364
3379
|
readonly syncCommitteeBits: Bytes;
|
|
3365
3380
|
readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
|
|
3366
3381
|
}
|
|
3367
3382
|
|
|
3368
|
-
/** @name SnowbridgeBeaconPrimitivesSignature (
|
|
3383
|
+
/** @name SnowbridgeBeaconPrimitivesSignature (300) */
|
|
3369
3384
|
interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
|
|
3370
3385
|
|
|
3371
|
-
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (
|
|
3386
|
+
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (303) */
|
|
3372
3387
|
interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
|
|
3373
3388
|
readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
3374
3389
|
readonly nextSyncCommitteeBranch: Vec<H256>;
|
|
3375
3390
|
}
|
|
3376
3391
|
|
|
3377
|
-
/** @name PalletCrosschainTransferCall (
|
|
3392
|
+
/** @name PalletCrosschainTransferCall (304) */
|
|
3378
3393
|
interface PalletCrosschainTransferCall extends Enum {
|
|
3379
3394
|
readonly isSetChainConfig: boolean;
|
|
3380
3395
|
readonly asSetChainConfig: {
|
|
@@ -3464,7 +3479,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3464
3479
|
| 'CollateralizeTransfer';
|
|
3465
3480
|
}
|
|
3466
3481
|
|
|
3467
|
-
/** @name PalletCrosschainTransferChainConfig (
|
|
3482
|
+
/** @name PalletCrosschainTransferChainConfig (305) */
|
|
3468
3483
|
interface PalletCrosschainTransferChainConfig extends Enum {
|
|
3469
3484
|
readonly isEvm: boolean;
|
|
3470
3485
|
readonly asEvm: {
|
|
@@ -3476,7 +3491,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3476
3491
|
readonly type: 'Evm';
|
|
3477
3492
|
}
|
|
3478
3493
|
|
|
3479
|
-
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (
|
|
3494
|
+
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (307) */
|
|
3480
3495
|
interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
|
|
3481
3496
|
readonly activationGasCost: Compact<u128>;
|
|
3482
3497
|
readonly signatureGasCost: Compact<u128>;
|
|
@@ -3484,56 +3499,56 @@ declare module '@polkadot/types/lookup' {
|
|
|
3484
3499
|
readonly estimatedMicrogonsPerEth: u128;
|
|
3485
3500
|
}
|
|
3486
3501
|
|
|
3487
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (
|
|
3502
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (310) */
|
|
3488
3503
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
|
|
3489
3504
|
readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
|
|
3490
3505
|
readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
|
|
3491
3506
|
}
|
|
3492
3507
|
|
|
3493
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (
|
|
3508
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (311) */
|
|
3494
3509
|
interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
|
|
3495
3510
|
readonly anchorBlockHash: H256;
|
|
3496
3511
|
readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
|
|
3497
3512
|
}
|
|
3498
3513
|
|
|
3499
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (
|
|
3514
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (313) */
|
|
3500
3515
|
interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
|
|
3501
3516
|
readonly rlp: Bytes;
|
|
3502
3517
|
}
|
|
3503
3518
|
|
|
3504
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (
|
|
3519
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (317) */
|
|
3505
3520
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
|
|
3506
3521
|
readonly targetBlockNumber: Compact<u64>;
|
|
3507
3522
|
readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
|
|
3508
3523
|
readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
|
|
3509
3524
|
}
|
|
3510
3525
|
|
|
3511
|
-
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (
|
|
3526
|
+
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (318) */
|
|
3512
3527
|
interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
|
|
3513
3528
|
readonly nodes: Vec<Bytes>;
|
|
3514
3529
|
readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
|
|
3515
3530
|
}
|
|
3516
3531
|
|
|
3517
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (
|
|
3532
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (322) */
|
|
3518
3533
|
interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
|
|
3519
3534
|
readonly transactionIndex: Compact<u64>;
|
|
3520
3535
|
readonly nodeIndexes: Vec<u16>;
|
|
3521
3536
|
}
|
|
3522
3537
|
|
|
3523
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (
|
|
3538
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (327) */
|
|
3524
3539
|
interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
|
|
3525
3540
|
readonly transactionIndex: Compact<u64>;
|
|
3526
3541
|
readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
|
|
3527
3542
|
}
|
|
3528
3543
|
|
|
3529
|
-
/** @name ArgonPrimitivesEthereumEthereumLog (
|
|
3544
|
+
/** @name ArgonPrimitivesEthereumEthereumLog (328) */
|
|
3530
3545
|
interface ArgonPrimitivesEthereumEthereumLog extends Struct {
|
|
3531
3546
|
readonly address: H160;
|
|
3532
3547
|
readonly topics: Vec<H256>;
|
|
3533
3548
|
readonly data: Bytes;
|
|
3534
3549
|
}
|
|
3535
3550
|
|
|
3536
|
-
/** @name PalletMultisigError (
|
|
3551
|
+
/** @name PalletMultisigError (334) */
|
|
3537
3552
|
interface PalletMultisigError extends Enum {
|
|
3538
3553
|
readonly isMinimumThreshold: boolean;
|
|
3539
3554
|
readonly isAlreadyApproved: boolean;
|
|
@@ -3566,21 +3581,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3566
3581
|
| 'AlreadyStored';
|
|
3567
3582
|
}
|
|
3568
3583
|
|
|
3569
|
-
/** @name PalletProxyProxyDefinition (
|
|
3584
|
+
/** @name PalletProxyProxyDefinition (337) */
|
|
3570
3585
|
interface PalletProxyProxyDefinition extends Struct {
|
|
3571
3586
|
readonly delegate: AccountId32;
|
|
3572
3587
|
readonly proxyType: ArgonRuntimeProxyType;
|
|
3573
3588
|
readonly delay: u32;
|
|
3574
3589
|
}
|
|
3575
3590
|
|
|
3576
|
-
/** @name PalletProxyAnnouncement (
|
|
3591
|
+
/** @name PalletProxyAnnouncement (341) */
|
|
3577
3592
|
interface PalletProxyAnnouncement extends Struct {
|
|
3578
3593
|
readonly real: AccountId32;
|
|
3579
3594
|
readonly callHash: H256;
|
|
3580
3595
|
readonly height: u32;
|
|
3581
3596
|
}
|
|
3582
3597
|
|
|
3583
|
-
/** @name PalletProxyError (
|
|
3598
|
+
/** @name PalletProxyError (343) */
|
|
3584
3599
|
interface PalletProxyError extends Enum {
|
|
3585
3600
|
readonly isTooMany: boolean;
|
|
3586
3601
|
readonly isNotFound: boolean;
|
|
@@ -3601,16 +3616,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
3601
3616
|
| 'NoSelfProxy';
|
|
3602
3617
|
}
|
|
3603
3618
|
|
|
3604
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
3619
|
+
/** @name ArgonPrimitivesTickTicker (344) */
|
|
3605
3620
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
3606
3621
|
readonly tickDurationMillis: Compact<u64>;
|
|
3607
3622
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
3608
3623
|
}
|
|
3609
3624
|
|
|
3610
|
-
/** @name PalletTicksError (
|
|
3625
|
+
/** @name PalletTicksError (346) */
|
|
3611
3626
|
type PalletTicksError = Null;
|
|
3612
3627
|
|
|
3613
|
-
/** @name PalletMiningSlotMinerNonceScoring (
|
|
3628
|
+
/** @name PalletMiningSlotMinerNonceScoring (349) */
|
|
3614
3629
|
interface PalletMiningSlotMinerNonceScoring extends Struct {
|
|
3615
3630
|
readonly nonce: U256;
|
|
3616
3631
|
readonly lastWinBlock: Option<u32>;
|
|
@@ -3618,7 +3633,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3618
3633
|
readonly frameStartBlocksWonSurplus: i16;
|
|
3619
3634
|
}
|
|
3620
3635
|
|
|
3621
|
-
/** @name ArgonPrimitivesBlockSealMiningBidStats (
|
|
3636
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (361) */
|
|
3622
3637
|
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
3623
3638
|
readonly bidsCount: u32;
|
|
3624
3639
|
readonly bidAmountMin: u128;
|
|
@@ -3626,14 +3641,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3626
3641
|
readonly bidAmountSum: u128;
|
|
3627
3642
|
}
|
|
3628
3643
|
|
|
3629
|
-
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (
|
|
3644
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (365) */
|
|
3630
3645
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
3631
3646
|
readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
|
|
3632
3647
|
readonly ticksBetweenSlots: Compact<u64>;
|
|
3633
3648
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
3634
3649
|
}
|
|
3635
3650
|
|
|
3636
|
-
/** @name PalletMiningSlotError (
|
|
3651
|
+
/** @name PalletMiningSlotError (375) */
|
|
3637
3652
|
interface PalletMiningSlotError extends Enum {
|
|
3638
3653
|
readonly isSlotNotTakingBids: boolean;
|
|
3639
3654
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -3658,7 +3673,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3658
3673
|
| 'UnrecoverableHold';
|
|
3659
3674
|
}
|
|
3660
3675
|
|
|
3661
|
-
/** @name ArgonPrimitivesBitcoinUtxoValue (
|
|
3676
|
+
/** @name ArgonPrimitivesBitcoinUtxoValue (376) */
|
|
3662
3677
|
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
3663
3678
|
readonly utxoId: u64;
|
|
3664
3679
|
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
@@ -3667,7 +3682,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3667
3682
|
readonly watchForSpentUntilHeight: Compact<u64>;
|
|
3668
3683
|
}
|
|
3669
3684
|
|
|
3670
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (
|
|
3685
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (377) */
|
|
3671
3686
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
3672
3687
|
readonly isP2wsh: boolean;
|
|
3673
3688
|
readonly asP2wsh: {
|
|
@@ -3676,7 +3691,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3676
3691
|
readonly type: 'P2wsh';
|
|
3677
3692
|
}
|
|
3678
3693
|
|
|
3679
|
-
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (
|
|
3694
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (386) */
|
|
3680
3695
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
3681
3696
|
readonly isBitcoin: boolean;
|
|
3682
3697
|
readonly isTestnet: boolean;
|
|
@@ -3685,7 +3700,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3685
3700
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
3686
3701
|
}
|
|
3687
3702
|
|
|
3688
|
-
/** @name PalletBitcoinUtxosError (
|
|
3703
|
+
/** @name PalletBitcoinUtxosError (387) */
|
|
3689
3704
|
interface PalletBitcoinUtxosError extends Enum {
|
|
3690
3705
|
readonly isNoPermissions: boolean;
|
|
3691
3706
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -3720,10 +3735,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
3720
3735
|
| 'LockAlreadyFunded';
|
|
3721
3736
|
}
|
|
3722
3737
|
|
|
3723
|
-
/** @name ArgonPrimitivesVault (
|
|
3738
|
+
/** @name ArgonPrimitivesVault (388) */
|
|
3724
3739
|
interface ArgonPrimitivesVault extends Struct {
|
|
3725
3740
|
readonly operatorAccountId: AccountId32;
|
|
3726
|
-
readonly
|
|
3741
|
+
readonly delegateAccountId: Option<AccountId32>;
|
|
3727
3742
|
readonly name: Option<Bytes>;
|
|
3728
3743
|
readonly lastNameChangeTick: Option<u64>;
|
|
3729
3744
|
readonly securitization: Compact<u128>;
|
|
@@ -3741,13 +3756,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3741
3756
|
readonly operationalMinimumReleaseTick: Option<u64>;
|
|
3742
3757
|
}
|
|
3743
3758
|
|
|
3744
|
-
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (
|
|
3759
|
+
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (395) */
|
|
3745
3760
|
interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
|
|
3746
3761
|
readonly committedMicronots: Compact<u128>;
|
|
3747
3762
|
readonly encumberedMicronots: Compact<u128>;
|
|
3748
3763
|
}
|
|
3749
3764
|
|
|
3750
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
3765
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (397) */
|
|
3751
3766
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
3752
3767
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
3753
3768
|
readonly depth: Compact<u8>;
|
|
@@ -3757,14 +3772,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3757
3772
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
3758
3773
|
}
|
|
3759
3774
|
|
|
3760
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
3775
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (399) */
|
|
3761
3776
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
3762
3777
|
readonly isMain: boolean;
|
|
3763
3778
|
readonly isTest: boolean;
|
|
3764
3779
|
readonly type: 'Main' | 'Test';
|
|
3765
3780
|
}
|
|
3766
3781
|
|
|
3767
|
-
/** @name PalletVaultsVaultFrameRevenue (
|
|
3782
|
+
/** @name PalletVaultsVaultFrameRevenue (408) */
|
|
3768
3783
|
interface PalletVaultsVaultFrameRevenue extends Struct {
|
|
3769
3784
|
readonly frameId: Compact<u64>;
|
|
3770
3785
|
readonly bitcoinLockFeeRevenue: Compact<u128>;
|
|
@@ -3784,7 +3799,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3784
3799
|
readonly uncollectedRevenue: Compact<u128>;
|
|
3785
3800
|
}
|
|
3786
3801
|
|
|
3787
|
-
/** @name PalletVaultsRecentCapacityDrop (
|
|
3802
|
+
/** @name PalletVaultsRecentCapacityDrop (411) */
|
|
3788
3803
|
interface PalletVaultsRecentCapacityDrop extends Struct {
|
|
3789
3804
|
readonly blockNumber: Compact<u32>;
|
|
3790
3805
|
readonly availableBeforeDrop: Compact<u128>;
|
|
@@ -3792,7 +3807,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3792
3807
|
readonly noFeeFailuresUsed: Compact<u32>;
|
|
3793
3808
|
}
|
|
3794
3809
|
|
|
3795
|
-
/** @name PalletVaultsError (
|
|
3810
|
+
/** @name PalletVaultsError (413) */
|
|
3796
3811
|
interface PalletVaultsError extends Enum {
|
|
3797
3812
|
readonly isNoMoreVaultIds: boolean;
|
|
3798
3813
|
readonly isInsufficientFunds: boolean;
|
|
@@ -3820,6 +3835,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3820
3835
|
readonly isInternalError: boolean;
|
|
3821
3836
|
readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
|
|
3822
3837
|
readonly isFundingChangeAlreadyScheduled: boolean;
|
|
3838
|
+
readonly isInvalidBondSharingTerms: boolean;
|
|
3823
3839
|
readonly isInvalidVaultName: boolean;
|
|
3824
3840
|
readonly isPendingCosignsBeforeCollect: boolean;
|
|
3825
3841
|
readonly isPendingOrphanedUtxoCosignsBeforeCollect: boolean;
|
|
@@ -3853,6 +3869,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3853
3869
|
| 'InternalError'
|
|
3854
3870
|
| 'UnableToGenerateVaultBitcoinPubkey'
|
|
3855
3871
|
| 'FundingChangeAlreadyScheduled'
|
|
3872
|
+
| 'InvalidBondSharingTerms'
|
|
3856
3873
|
| 'InvalidVaultName'
|
|
3857
3874
|
| 'PendingCosignsBeforeCollect'
|
|
3858
3875
|
| 'PendingOrphanedUtxoCosignsBeforeCollect'
|
|
@@ -3861,7 +3878,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3861
3878
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
3862
3879
|
}
|
|
3863
3880
|
|
|
3864
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
3881
|
+
/** @name PalletBitcoinLocksLockedBitcoin (414) */
|
|
3865
3882
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
3866
3883
|
readonly vaultId: Compact<u32>;
|
|
3867
3884
|
readonly liquidityPromised: Compact<u128>;
|
|
@@ -3885,7 +3902,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3885
3902
|
readonly createdAtArgonBlock: Compact<u32>;
|
|
3886
3903
|
}
|
|
3887
3904
|
|
|
3888
|
-
/** @name PalletBitcoinLocksLockReleaseRequest (
|
|
3905
|
+
/** @name PalletBitcoinLocksLockReleaseRequest (417) */
|
|
3889
3906
|
interface PalletBitcoinLocksLockReleaseRequest extends Struct {
|
|
3890
3907
|
readonly utxoId: Compact<u64>;
|
|
3891
3908
|
readonly vaultId: Compact<u32>;
|
|
@@ -3895,7 +3912,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3895
3912
|
readonly redemptionAmount: Compact<u128>;
|
|
3896
3913
|
}
|
|
3897
3914
|
|
|
3898
|
-
/** @name PalletBitcoinLocksOrphanedUtxo (
|
|
3915
|
+
/** @name PalletBitcoinLocksOrphanedUtxo (419) */
|
|
3899
3916
|
interface PalletBitcoinLocksOrphanedUtxo extends Struct {
|
|
3900
3917
|
readonly utxoId: Compact<u64>;
|
|
3901
3918
|
readonly vaultId: Compact<u32>;
|
|
@@ -3904,14 +3921,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3904
3921
|
readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
|
|
3905
3922
|
}
|
|
3906
3923
|
|
|
3907
|
-
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (
|
|
3924
|
+
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (421) */
|
|
3908
3925
|
interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
|
|
3909
3926
|
readonly bitcoinNetworkFee: u64;
|
|
3910
3927
|
readonly toScriptPubkey: Bytes;
|
|
3911
3928
|
readonly createdAtArgonBlockNumber: u32;
|
|
3912
3929
|
}
|
|
3913
3930
|
|
|
3914
|
-
/** @name PalletBitcoinLocksError (
|
|
3931
|
+
/** @name PalletBitcoinLocksError (428) */
|
|
3915
3932
|
interface PalletBitcoinLocksError extends Enum {
|
|
3916
3933
|
readonly isInsufficientFunds: boolean;
|
|
3917
3934
|
readonly isInsufficientVaultFunds: boolean;
|
|
@@ -3987,7 +4004,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3987
4004
|
| 'MaxOrphanedUtxoReleaseRequestsExceeded';
|
|
3988
4005
|
}
|
|
3989
4006
|
|
|
3990
|
-
/** @name ArgonPrimitivesVaultVaultError (
|
|
4007
|
+
/** @name ArgonPrimitivesVaultVaultError (429) */
|
|
3991
4008
|
interface ArgonPrimitivesVaultVaultError extends Enum {
|
|
3992
4009
|
readonly isVaultClosed: boolean;
|
|
3993
4010
|
readonly isAccountWouldBeBelowMinimum: boolean;
|
|
@@ -4018,7 +4035,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4018
4035
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
4019
4036
|
}
|
|
4020
4037
|
|
|
4021
|
-
/** @name PalletNotariesError (
|
|
4038
|
+
/** @name PalletNotariesError (441) */
|
|
4022
4039
|
interface PalletNotariesError extends Enum {
|
|
4023
4040
|
readonly isProposalNotFound: boolean;
|
|
4024
4041
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -4041,7 +4058,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4041
4058
|
| 'InvalidNotary';
|
|
4042
4059
|
}
|
|
4043
4060
|
|
|
4044
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
4061
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (445) */
|
|
4045
4062
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
4046
4063
|
readonly notebookNumber: Compact<u32>;
|
|
4047
4064
|
readonly tick: Compact<u64>;
|
|
@@ -4050,7 +4067,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4050
4067
|
readonly parentSecret: Option<H256>;
|
|
4051
4068
|
}
|
|
4052
4069
|
|
|
4053
|
-
/** @name PalletNotebookError (
|
|
4070
|
+
/** @name PalletNotebookError (448) */
|
|
4054
4071
|
interface PalletNotebookError extends Enum {
|
|
4055
4072
|
readonly isDuplicateNotebookNumber: boolean;
|
|
4056
4073
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -4085,7 +4102,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4085
4102
|
| 'InvalidNotebookSubmissionTick';
|
|
4086
4103
|
}
|
|
4087
4104
|
|
|
4088
|
-
/** @name PalletLocalchainTransferQueuedTransferOut (
|
|
4105
|
+
/** @name PalletLocalchainTransferQueuedTransferOut (449) */
|
|
4089
4106
|
interface PalletLocalchainTransferQueuedTransferOut extends Struct {
|
|
4090
4107
|
readonly accountId: AccountId32;
|
|
4091
4108
|
readonly amount: u128;
|
|
@@ -4093,10 +4110,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4093
4110
|
readonly notaryId: u32;
|
|
4094
4111
|
}
|
|
4095
4112
|
|
|
4096
|
-
/** @name FrameSupportPalletId (
|
|
4113
|
+
/** @name FrameSupportPalletId (451) */
|
|
4097
4114
|
interface FrameSupportPalletId extends U8aFixed {}
|
|
4098
4115
|
|
|
4099
|
-
/** @name PalletLocalchainTransferError (
|
|
4116
|
+
/** @name PalletLocalchainTransferError (452) */
|
|
4100
4117
|
interface PalletLocalchainTransferError extends Enum {
|
|
4101
4118
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
4102
4119
|
readonly isInsufficientFunds: boolean;
|
|
@@ -4117,7 +4134,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4117
4134
|
| 'NoAvailableTransferId';
|
|
4118
4135
|
}
|
|
4119
4136
|
|
|
4120
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
4137
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (456) */
|
|
4121
4138
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
4122
4139
|
readonly notaryId: Compact<u32>;
|
|
4123
4140
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -4126,13 +4143,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4126
4143
|
readonly blockVotingPower: Compact<u128>;
|
|
4127
4144
|
}
|
|
4128
4145
|
|
|
4129
|
-
/** @name PalletBlockSealSpecError (
|
|
4146
|
+
/** @name PalletBlockSealSpecError (461) */
|
|
4130
4147
|
interface PalletBlockSealSpecError extends Enum {
|
|
4131
4148
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
4132
4149
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
4133
4150
|
}
|
|
4134
4151
|
|
|
4135
|
-
/** @name PalletDomainsError (
|
|
4152
|
+
/** @name PalletDomainsError (463) */
|
|
4136
4153
|
interface PalletDomainsError extends Enum {
|
|
4137
4154
|
readonly isDomainNotRegistered: boolean;
|
|
4138
4155
|
readonly isNotDomainOwner: boolean;
|
|
@@ -4147,14 +4164,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4147
4164
|
| 'AccountDecodingError';
|
|
4148
4165
|
}
|
|
4149
4166
|
|
|
4150
|
-
/** @name PalletPriceIndexCpiMeasurementBucket (
|
|
4167
|
+
/** @name PalletPriceIndexCpiMeasurementBucket (465) */
|
|
4151
4168
|
interface PalletPriceIndexCpiMeasurementBucket extends Struct {
|
|
4152
4169
|
readonly tickRange: ITuple<[u64, u64]>;
|
|
4153
4170
|
readonly totalCpi: i128;
|
|
4154
4171
|
readonly measurementsCount: u32;
|
|
4155
4172
|
}
|
|
4156
4173
|
|
|
4157
|
-
/** @name
|
|
4174
|
+
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (469) */
|
|
4175
|
+
interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
|
|
4176
|
+
readonly frameId: Compact<u64>;
|
|
4177
|
+
readonly totalMicrogonsPerArgonot: Compact<u128>;
|
|
4178
|
+
readonly sampleCount: Compact<u32>;
|
|
4179
|
+
}
|
|
4180
|
+
|
|
4181
|
+
/** @name PalletPriceIndexError (470) */
|
|
4158
4182
|
interface PalletPriceIndexError extends Enum {
|
|
4159
4183
|
readonly isNotAuthorizedOperator: boolean;
|
|
4160
4184
|
readonly isMissingValue: boolean;
|
|
@@ -4167,7 +4191,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4167
4191
|
| 'MaxPriceChangePerTickExceeded';
|
|
4168
4192
|
}
|
|
4169
4193
|
|
|
4170
|
-
/** @name PalletGrandpaStoredState (
|
|
4194
|
+
/** @name PalletGrandpaStoredState (471) */
|
|
4171
4195
|
interface PalletGrandpaStoredState extends Enum {
|
|
4172
4196
|
readonly isLive: boolean;
|
|
4173
4197
|
readonly isPendingPause: boolean;
|
|
@@ -4184,7 +4208,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4184
4208
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
4185
4209
|
}
|
|
4186
4210
|
|
|
4187
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
4211
|
+
/** @name PalletGrandpaStoredPendingChange (472) */
|
|
4188
4212
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
4189
4213
|
readonly scheduledAt: u32;
|
|
4190
4214
|
readonly delay: u32;
|
|
@@ -4192,7 +4216,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4192
4216
|
readonly forced: Option<u32>;
|
|
4193
4217
|
}
|
|
4194
4218
|
|
|
4195
|
-
/** @name PalletGrandpaError (
|
|
4219
|
+
/** @name PalletGrandpaError (474) */
|
|
4196
4220
|
interface PalletGrandpaError extends Enum {
|
|
4197
4221
|
readonly isPauseFailed: boolean;
|
|
4198
4222
|
readonly isResumeFailed: boolean;
|
|
@@ -4211,14 +4235,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4211
4235
|
| 'DuplicateOffenceReport';
|
|
4212
4236
|
}
|
|
4213
4237
|
|
|
4214
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
4238
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (475) */
|
|
4215
4239
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
4216
4240
|
readonly blockAuthorAccountId: AccountId32;
|
|
4217
4241
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
4218
4242
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
4219
4243
|
}
|
|
4220
4244
|
|
|
4221
|
-
/** @name PalletBlockSealError (
|
|
4245
|
+
/** @name PalletBlockSealError (477) */
|
|
4222
4246
|
interface PalletBlockSealError extends Enum {
|
|
4223
4247
|
readonly isInvalidVoteSealStrength: boolean;
|
|
4224
4248
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -4265,30 +4289,30 @@ declare module '@polkadot/types/lookup' {
|
|
|
4265
4289
|
| 'DuplicateVoteBlockAtTick';
|
|
4266
4290
|
}
|
|
4267
4291
|
|
|
4268
|
-
/** @name PalletBlockRewardsError (
|
|
4292
|
+
/** @name PalletBlockRewardsError (481) */
|
|
4269
4293
|
type PalletBlockRewardsError = Null;
|
|
4270
4294
|
|
|
4271
|
-
/** @name PalletMintMintAction (
|
|
4295
|
+
/** @name PalletMintMintAction (487) */
|
|
4272
4296
|
interface PalletMintMintAction extends Struct {
|
|
4273
4297
|
readonly argonBurned: u128;
|
|
4274
4298
|
readonly argonMinted: u128;
|
|
4275
4299
|
readonly bitcoinMinted: u128;
|
|
4276
4300
|
}
|
|
4277
4301
|
|
|
4278
|
-
/** @name PalletMintError (
|
|
4302
|
+
/** @name PalletMintError (488) */
|
|
4279
4303
|
interface PalletMintError extends Enum {
|
|
4280
4304
|
readonly isTooManyPendingMints: boolean;
|
|
4281
4305
|
readonly type: 'TooManyPendingMints';
|
|
4282
4306
|
}
|
|
4283
4307
|
|
|
4284
|
-
/** @name PalletBalancesBalanceLock (
|
|
4308
|
+
/** @name PalletBalancesBalanceLock (490) */
|
|
4285
4309
|
interface PalletBalancesBalanceLock extends Struct {
|
|
4286
4310
|
readonly id: U8aFixed;
|
|
4287
4311
|
readonly amount: u128;
|
|
4288
4312
|
readonly reasons: PalletBalancesReasons;
|
|
4289
4313
|
}
|
|
4290
4314
|
|
|
4291
|
-
/** @name PalletBalancesReasons (
|
|
4315
|
+
/** @name PalletBalancesReasons (491) */
|
|
4292
4316
|
interface PalletBalancesReasons extends Enum {
|
|
4293
4317
|
readonly isFee: boolean;
|
|
4294
4318
|
readonly isMisc: boolean;
|
|
@@ -4296,38 +4320,38 @@ declare module '@polkadot/types/lookup' {
|
|
|
4296
4320
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
4297
4321
|
}
|
|
4298
4322
|
|
|
4299
|
-
/** @name PalletBalancesReserveData (
|
|
4323
|
+
/** @name PalletBalancesReserveData (494) */
|
|
4300
4324
|
interface PalletBalancesReserveData extends Struct {
|
|
4301
4325
|
readonly id: U8aFixed;
|
|
4302
4326
|
readonly amount: u128;
|
|
4303
4327
|
}
|
|
4304
4328
|
|
|
4305
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
4329
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (497) */
|
|
4306
4330
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
4307
4331
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
4308
4332
|
readonly amount: u128;
|
|
4309
4333
|
}
|
|
4310
4334
|
|
|
4311
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
4335
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (500) */
|
|
4312
4336
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
4313
4337
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
4314
4338
|
readonly amount: u128;
|
|
4315
4339
|
}
|
|
4316
4340
|
|
|
4317
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
4341
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (501) */
|
|
4318
4342
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
4319
4343
|
readonly isBlockRewards: boolean;
|
|
4320
4344
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
4321
4345
|
readonly type: 'BlockRewards';
|
|
4322
4346
|
}
|
|
4323
4347
|
|
|
4324
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
4348
|
+
/** @name PalletBlockRewardsFreezeReason (502) */
|
|
4325
4349
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
4326
4350
|
readonly isMaturationPeriod: boolean;
|
|
4327
4351
|
readonly type: 'MaturationPeriod';
|
|
4328
4352
|
}
|
|
4329
4353
|
|
|
4330
|
-
/** @name PalletBalancesError (
|
|
4354
|
+
/** @name PalletBalancesError (504) */
|
|
4331
4355
|
interface PalletBalancesError extends Enum {
|
|
4332
4356
|
readonly isVestingBalance: boolean;
|
|
4333
4357
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -4356,7 +4380,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4356
4380
|
| 'DeltaZero';
|
|
4357
4381
|
}
|
|
4358
4382
|
|
|
4359
|
-
/** @name PalletTxPauseError (
|
|
4383
|
+
/** @name PalletTxPauseError (506) */
|
|
4360
4384
|
interface PalletTxPauseError extends Enum {
|
|
4361
4385
|
readonly isIsPaused: boolean;
|
|
4362
4386
|
readonly isIsUnpaused: boolean;
|
|
@@ -4365,57 +4389,58 @@ declare module '@polkadot/types/lookup' {
|
|
|
4365
4389
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
4366
4390
|
}
|
|
4367
4391
|
|
|
4368
|
-
/** @name PalletTransactionPaymentReleases (
|
|
4392
|
+
/** @name PalletTransactionPaymentReleases (507) */
|
|
4369
4393
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
4370
4394
|
readonly isV1Ancient: boolean;
|
|
4371
4395
|
readonly isV2: boolean;
|
|
4372
4396
|
readonly type: 'V1Ancient' | 'V2';
|
|
4373
4397
|
}
|
|
4374
4398
|
|
|
4375
|
-
/** @name FrameSupportStorageNoDrop (
|
|
4399
|
+
/** @name FrameSupportStorageNoDrop (508) */
|
|
4376
4400
|
interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
|
|
4377
4401
|
|
|
4378
|
-
/** @name FrameSupportTokensFungibleImbalance (
|
|
4402
|
+
/** @name FrameSupportTokensFungibleImbalance (509) */
|
|
4379
4403
|
interface FrameSupportTokensFungibleImbalance extends Struct {
|
|
4380
4404
|
readonly amount: u128;
|
|
4381
4405
|
}
|
|
4382
4406
|
|
|
4383
|
-
/** @name PalletUtilityError (
|
|
4407
|
+
/** @name PalletUtilityError (510) */
|
|
4384
4408
|
interface PalletUtilityError extends Enum {
|
|
4385
4409
|
readonly isTooManyCalls: boolean;
|
|
4386
4410
|
readonly type: 'TooManyCalls';
|
|
4387
4411
|
}
|
|
4388
4412
|
|
|
4389
|
-
/** @name PalletSudoError (
|
|
4413
|
+
/** @name PalletSudoError (511) */
|
|
4390
4414
|
interface PalletSudoError extends Enum {
|
|
4391
4415
|
readonly isRequireSudo: boolean;
|
|
4392
4416
|
readonly type: 'RequireSudo';
|
|
4393
4417
|
}
|
|
4394
4418
|
|
|
4395
|
-
/** @name PalletTreasuryFrameVaultCapital (
|
|
4419
|
+
/** @name PalletTreasuryFrameVaultCapital (512) */
|
|
4396
4420
|
interface PalletTreasuryFrameVaultCapital extends Struct {
|
|
4397
4421
|
readonly frameId: Compact<u64>;
|
|
4398
4422
|
readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
|
|
4399
4423
|
}
|
|
4400
4424
|
|
|
4401
|
-
/** @name PalletTreasuryVaultCapital (
|
|
4425
|
+
/** @name PalletTreasuryVaultCapital (514) */
|
|
4402
4426
|
interface PalletTreasuryVaultCapital extends Struct {
|
|
4403
4427
|
readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
|
|
4404
4428
|
readonly eligibleBonds: Compact<u32>;
|
|
4405
|
-
readonly vaultSharingPercent: Compact<Permill>;
|
|
4406
4429
|
}
|
|
4407
4430
|
|
|
4408
|
-
/** @name PalletTreasuryBondLotAllocation (
|
|
4431
|
+
/** @name PalletTreasuryBondLotAllocation (516) */
|
|
4409
4432
|
interface PalletTreasuryBondLotAllocation extends Struct {
|
|
4410
4433
|
readonly bondLotId: Compact<u64>;
|
|
4411
4434
|
readonly prorata: u128;
|
|
4412
4435
|
}
|
|
4413
4436
|
|
|
4414
|
-
/** @name PalletTreasuryBondLot (
|
|
4437
|
+
/** @name PalletTreasuryBondLot (521) */
|
|
4415
4438
|
interface PalletTreasuryBondLot extends Struct {
|
|
4416
4439
|
readonly owner: AccountId32;
|
|
4417
4440
|
readonly vaultId: Compact<u32>;
|
|
4418
4441
|
readonly bonds: Compact<u32>;
|
|
4442
|
+
readonly sharingPercent: Compact<Permill>;
|
|
4443
|
+
readonly bonusPercent: Compact<Permill>;
|
|
4419
4444
|
readonly createdFrameId: Compact<u64>;
|
|
4420
4445
|
readonly participatedFrames: Compact<u32>;
|
|
4421
4446
|
readonly lastFrameEarningsFrameId: Option<u64>;
|
|
@@ -4425,13 +4450,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4425
4450
|
readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
|
|
4426
4451
|
}
|
|
4427
4452
|
|
|
4428
|
-
/** @name PalletTreasuryBondLotSummary (
|
|
4453
|
+
/** @name PalletTreasuryBondLotSummary (526) */
|
|
4429
4454
|
interface PalletTreasuryBondLotSummary extends Struct {
|
|
4430
4455
|
readonly bondLotId: Compact<u64>;
|
|
4431
4456
|
readonly bonds: Compact<u32>;
|
|
4432
4457
|
}
|
|
4433
4458
|
|
|
4434
|
-
/** @name PalletTreasuryError (
|
|
4459
|
+
/** @name PalletTreasuryError (529) */
|
|
4435
4460
|
interface PalletTreasuryError extends Enum {
|
|
4436
4461
|
readonly isBondPurchaseRejected: boolean;
|
|
4437
4462
|
readonly isVaultNotAcceptingBondPurchases: boolean;
|
|
@@ -4444,6 +4469,11 @@ declare module '@polkadot/types/lookup' {
|
|
|
4444
4469
|
readonly isBondLotAlreadyReleasing: boolean;
|
|
4445
4470
|
readonly isBondPurchaseAboveSecurity: boolean;
|
|
4446
4471
|
readonly isActiveBondAmountBelowEncumberedBacking: boolean;
|
|
4472
|
+
readonly isBonusApprovalWrongVault: boolean;
|
|
4473
|
+
readonly isBonusApprovalWrongAccount: boolean;
|
|
4474
|
+
readonly isBonusApprovalExpired: boolean;
|
|
4475
|
+
readonly isBonusApprovalExistingBondLot: boolean;
|
|
4476
|
+
readonly isInvalidBonusApprovalSignature: boolean;
|
|
4447
4477
|
readonly type:
|
|
4448
4478
|
| 'BondPurchaseRejected'
|
|
4449
4479
|
| 'VaultNotAcceptingBondPurchases'
|
|
@@ -4455,16 +4485,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4455
4485
|
| 'NotBondLotOwner'
|
|
4456
4486
|
| 'BondLotAlreadyReleasing'
|
|
4457
4487
|
| 'BondPurchaseAboveSecurity'
|
|
4458
|
-
| 'ActiveBondAmountBelowEncumberedBacking'
|
|
4488
|
+
| 'ActiveBondAmountBelowEncumberedBacking'
|
|
4489
|
+
| 'BonusApprovalWrongVault'
|
|
4490
|
+
| 'BonusApprovalWrongAccount'
|
|
4491
|
+
| 'BonusApprovalExpired'
|
|
4492
|
+
| 'BonusApprovalExistingBondLot'
|
|
4493
|
+
| 'InvalidBonusApprovalSignature';
|
|
4459
4494
|
}
|
|
4460
4495
|
|
|
4461
|
-
/** @name PalletFeeControlError (
|
|
4496
|
+
/** @name PalletFeeControlError (530) */
|
|
4462
4497
|
interface PalletFeeControlError extends Enum {
|
|
4463
4498
|
readonly isSponsoredFeeTooHigh: boolean;
|
|
4464
4499
|
readonly type: 'SponsoredFeeTooHigh';
|
|
4465
4500
|
}
|
|
4466
4501
|
|
|
4467
|
-
/** @name PalletOperationalAccountsOperationalAccount (
|
|
4502
|
+
/** @name PalletOperationalAccountsOperationalAccount (531) */
|
|
4468
4503
|
interface PalletOperationalAccountsOperationalAccount extends Struct {
|
|
4469
4504
|
readonly vaultAccount: AccountId32;
|
|
4470
4505
|
readonly miningFundingAccount: AccountId32;
|
|
@@ -4487,13 +4522,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4487
4522
|
readonly isOperational: bool;
|
|
4488
4523
|
}
|
|
4489
4524
|
|
|
4490
|
-
/** @name PalletOperationalAccountsRewardsConfig (
|
|
4525
|
+
/** @name PalletOperationalAccountsRewardsConfig (533) */
|
|
4491
4526
|
interface PalletOperationalAccountsRewardsConfig extends Struct {
|
|
4492
4527
|
readonly operationalReferralReward: Compact<u128>;
|
|
4493
4528
|
readonly referralBonusReward: Compact<u128>;
|
|
4494
4529
|
}
|
|
4495
4530
|
|
|
4496
|
-
/** @name PalletOperationalAccountsError (
|
|
4531
|
+
/** @name PalletOperationalAccountsError (535) */
|
|
4497
4532
|
interface PalletOperationalAccountsError extends Enum {
|
|
4498
4533
|
readonly isAlreadyRegistered: boolean;
|
|
4499
4534
|
readonly isInvalidRegistrationSubmitter: boolean;
|
|
@@ -4532,12 +4567,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
4532
4567
|
| 'NotEligibleForActivation';
|
|
4533
4568
|
}
|
|
4534
4569
|
|
|
4535
|
-
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (
|
|
4570
|
+
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (536) */
|
|
4536
4571
|
interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
|
|
4537
4572
|
readonly slot: Compact<u64>;
|
|
4538
4573
|
}
|
|
4539
4574
|
|
|
4540
|
-
/** @name PalletEthereumVerifierExecutionHeaderAnchor (
|
|
4575
|
+
/** @name PalletEthereumVerifierExecutionHeaderAnchor (537) */
|
|
4541
4576
|
interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
|
|
4542
4577
|
readonly blockNumber: Compact<u64>;
|
|
4543
4578
|
readonly timestampMillis: Compact<u64>;
|
|
@@ -4547,44 +4582,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
4547
4582
|
readonly receiptsRoot: H256;
|
|
4548
4583
|
}
|
|
4549
4584
|
|
|
4550
|
-
/** @name PalletEthereumVerifierSyncCommitteePrepared (
|
|
4585
|
+
/** @name PalletEthereumVerifierSyncCommitteePrepared (538) */
|
|
4551
4586
|
interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
|
|
4552
4587
|
readonly root: H256;
|
|
4553
4588
|
readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
|
|
4554
4589
|
readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
|
|
4555
4590
|
}
|
|
4556
4591
|
|
|
4557
|
-
/** @name SnowbridgeMilagroBlsKeysPublicKey (
|
|
4592
|
+
/** @name SnowbridgeMilagroBlsKeysPublicKey (540) */
|
|
4558
4593
|
interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
|
|
4559
4594
|
readonly point: SnowbridgeAmclBls381Ecp;
|
|
4560
4595
|
}
|
|
4561
4596
|
|
|
4562
|
-
/** @name SnowbridgeAmclBls381Ecp (
|
|
4597
|
+
/** @name SnowbridgeAmclBls381Ecp (541) */
|
|
4563
4598
|
interface SnowbridgeAmclBls381Ecp extends Struct {
|
|
4564
4599
|
readonly x: SnowbridgeAmclBls381Fp;
|
|
4565
4600
|
readonly y: SnowbridgeAmclBls381Fp;
|
|
4566
4601
|
readonly z: SnowbridgeAmclBls381Fp;
|
|
4567
4602
|
}
|
|
4568
4603
|
|
|
4569
|
-
/** @name SnowbridgeAmclBls381Fp (
|
|
4604
|
+
/** @name SnowbridgeAmclBls381Fp (542) */
|
|
4570
4605
|
interface SnowbridgeAmclBls381Fp extends Struct {
|
|
4571
4606
|
readonly x: SnowbridgeAmclBls381Big;
|
|
4572
4607
|
readonly xes: i32;
|
|
4573
4608
|
}
|
|
4574
4609
|
|
|
4575
|
-
/** @name SnowbridgeAmclBls381Big (
|
|
4610
|
+
/** @name SnowbridgeAmclBls381Big (543) */
|
|
4576
4611
|
interface SnowbridgeAmclBls381Big extends Struct {
|
|
4577
4612
|
readonly w: Vec<i32>;
|
|
4578
4613
|
}
|
|
4579
4614
|
|
|
4580
|
-
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (
|
|
4615
|
+
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (547) */
|
|
4581
4616
|
interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
|
|
4582
4617
|
readonly isMainnet: boolean;
|
|
4583
4618
|
readonly isMinimal: boolean;
|
|
4584
4619
|
readonly type: 'Mainnet' | 'Minimal';
|
|
4585
4620
|
}
|
|
4586
4621
|
|
|
4587
|
-
/** @name PalletEthereumVerifierError (
|
|
4622
|
+
/** @name PalletEthereumVerifierError (548) */
|
|
4588
4623
|
interface PalletEthereumVerifierError extends Enum {
|
|
4589
4624
|
readonly isSkippedSyncCommitteePeriod: boolean;
|
|
4590
4625
|
readonly isSyncCommitteeUpdateRequired: boolean;
|
|
@@ -4637,21 +4672,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4637
4672
|
| 'Halted';
|
|
4638
4673
|
}
|
|
4639
4674
|
|
|
4640
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (
|
|
4675
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (550) */
|
|
4641
4676
|
interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
|
|
4642
4677
|
readonly epochMicrogonsPerArgonot: u128;
|
|
4643
4678
|
readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
|
|
4644
4679
|
readonly totalWeight: u128;
|
|
4645
4680
|
}
|
|
4646
4681
|
|
|
4647
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (
|
|
4682
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (552) */
|
|
4648
4683
|
interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
|
|
4649
4684
|
readonly accountId: AccountId32;
|
|
4650
4685
|
readonly signer: H160;
|
|
4651
4686
|
readonly weight: u128;
|
|
4652
4687
|
}
|
|
4653
4688
|
|
|
4654
|
-
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (
|
|
4689
|
+
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (557) */
|
|
4655
4690
|
interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
|
|
4656
4691
|
readonly approvingCouncilHash: H256;
|
|
4657
4692
|
readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
|
|
@@ -4663,7 +4698,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4663
4698
|
readonly signatures: BTreeMap<H160, U8aFixed>;
|
|
4664
4699
|
}
|
|
4665
4700
|
|
|
4666
|
-
/** @name PalletCrosschainTransferMintingAuthority (
|
|
4701
|
+
/** @name PalletCrosschainTransferMintingAuthority (562) */
|
|
4667
4702
|
interface PalletCrosschainTransferMintingAuthority extends Struct {
|
|
4668
4703
|
readonly accountId: AccountId32;
|
|
4669
4704
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -4680,7 +4715,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4680
4715
|
readonly deactivationApprovalQueueNonce: Option<u64>;
|
|
4681
4716
|
}
|
|
4682
4717
|
|
|
4683
|
-
/** @name PalletCrosschainTransferMintingAuthorityState (
|
|
4718
|
+
/** @name PalletCrosschainTransferMintingAuthorityState (563) */
|
|
4684
4719
|
interface PalletCrosschainTransferMintingAuthorityState extends Enum {
|
|
4685
4720
|
readonly isPendingActivation: boolean;
|
|
4686
4721
|
readonly isActive: boolean;
|
|
@@ -4688,7 +4723,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4688
4723
|
readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
|
|
4689
4724
|
}
|
|
4690
4725
|
|
|
4691
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (
|
|
4726
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (565) */
|
|
4692
4727
|
interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
|
|
4693
4728
|
readonly argonAccountId: AccountId32;
|
|
4694
4729
|
readonly argonTransferNonce: Compact<u64>;
|
|
@@ -4707,7 +4742,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4707
4742
|
readonly state: PalletCrosschainTransferTransferOutTransferOutState;
|
|
4708
4743
|
}
|
|
4709
4744
|
|
|
4710
|
-
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (
|
|
4745
|
+
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (567) */
|
|
4711
4746
|
interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
|
|
4712
4747
|
readonly microgonCollateral: u128;
|
|
4713
4748
|
readonly micronotCollateral: u128;
|
|
@@ -4715,27 +4750,27 @@ declare module '@polkadot/types/lookup' {
|
|
|
4715
4750
|
readonly signature: U8aFixed;
|
|
4716
4751
|
}
|
|
4717
4752
|
|
|
4718
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutState (
|
|
4753
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutState (571) */
|
|
4719
4754
|
interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
|
|
4720
4755
|
readonly isStarted: boolean;
|
|
4721
4756
|
readonly isReady: boolean;
|
|
4722
4757
|
readonly type: 'Started' | 'Ready';
|
|
4723
4758
|
}
|
|
4724
4759
|
|
|
4725
|
-
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (
|
|
4760
|
+
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (573) */
|
|
4726
4761
|
interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
|
|
4727
4762
|
readonly transferId: H256;
|
|
4728
4763
|
readonly remainingCollateral: u128;
|
|
4729
4764
|
readonly remainingMintingAuthorityTip: u128;
|
|
4730
4765
|
}
|
|
4731
4766
|
|
|
4732
|
-
/** @name PalletCrosschainTransferSourceChainCirculation (
|
|
4767
|
+
/** @name PalletCrosschainTransferSourceChainCirculation (575) */
|
|
4733
4768
|
interface PalletCrosschainTransferSourceChainCirculation extends Struct {
|
|
4734
4769
|
readonly argonCirculation: u128;
|
|
4735
4770
|
readonly argonotCirculation: u128;
|
|
4736
4771
|
}
|
|
4737
4772
|
|
|
4738
|
-
/** @name PalletCrosschainTransferError (
|
|
4773
|
+
/** @name PalletCrosschainTransferError (576) */
|
|
4739
4774
|
interface PalletCrosschainTransferError extends Enum {
|
|
4740
4775
|
readonly isInvalidTransferToArgonActivity: boolean;
|
|
4741
4776
|
readonly isNoGatewayProofBlocksProvided: boolean;
|
|
@@ -4848,45 +4883,45 @@ declare module '@polkadot/types/lookup' {
|
|
|
4848
4883
|
| 'TooManyPendingTransferOuts';
|
|
4849
4884
|
}
|
|
4850
4885
|
|
|
4851
|
-
/** @name FrameSystemExtensionsAuthorizeCall (
|
|
4886
|
+
/** @name FrameSystemExtensionsAuthorizeCall (579) */
|
|
4852
4887
|
type FrameSystemExtensionsAuthorizeCall = Null;
|
|
4853
4888
|
|
|
4854
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
4889
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (580) */
|
|
4855
4890
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
4856
4891
|
|
|
4857
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
4892
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (581) */
|
|
4858
4893
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
4859
4894
|
|
|
4860
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
4895
|
+
/** @name FrameSystemExtensionsCheckTxVersion (582) */
|
|
4861
4896
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
4862
4897
|
|
|
4863
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
4898
|
+
/** @name FrameSystemExtensionsCheckGenesis (583) */
|
|
4864
4899
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
4865
4900
|
|
|
4866
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
4901
|
+
/** @name FrameSystemExtensionsCheckNonce (586) */
|
|
4867
4902
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
|
|
4868
4903
|
|
|
4869
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
4904
|
+
/** @name FrameSystemExtensionsCheckWeight (587) */
|
|
4870
4905
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
4871
4906
|
|
|
4872
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
4907
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (588) */
|
|
4873
4908
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
|
|
4874
4909
|
|
|
4875
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
4910
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (589) */
|
|
4876
4911
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
4877
4912
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
4878
4913
|
}
|
|
4879
4914
|
|
|
4880
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
4915
|
+
/** @name FrameMetadataHashExtensionMode (590) */
|
|
4881
4916
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
4882
4917
|
readonly isDisabled: boolean;
|
|
4883
4918
|
readonly isEnabled: boolean;
|
|
4884
4919
|
readonly type: 'Disabled' | 'Enabled';
|
|
4885
4920
|
}
|
|
4886
4921
|
|
|
4887
|
-
/** @name FrameSystemExtensionsWeightReclaim (
|
|
4922
|
+
/** @name FrameSystemExtensionsWeightReclaim (591) */
|
|
4888
4923
|
type FrameSystemExtensionsWeightReclaim = Null;
|
|
4889
4924
|
|
|
4890
|
-
/** @name ArgonRuntimeRuntime (
|
|
4925
|
+
/** @name ArgonRuntimeRuntime (593) */
|
|
4891
4926
|
type ArgonRuntimeRuntime = Null;
|
|
4892
4927
|
} // declare module
|