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