@argonprotocol/mainchain 1.4.9-dev.fdaf0dc8 → 1.4.10
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 +249 -278
- package/browser/index.js +100 -22
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +123 -46
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +249 -278
- package/lib/index.d.ts +249 -278
- package/lib/index.js +99 -22
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +26 -26
- package/src/interfaces/augment-api-errors.ts +22 -30
- package/src/interfaces/augment-api-events.ts +13 -21
- package/src/interfaces/augment-api-query.ts +2 -3
- package/src/interfaces/augment-api-runtime.ts +0 -1
- package/src/interfaces/augment-api-tx.ts +5 -12
- package/src/interfaces/augment-api.ts +0 -1
- package/src/interfaces/augment-types.ts +0 -1
- package/src/interfaces/lookup.ts +167 -173
- package/src/interfaces/registry.ts +2 -1
- package/src/interfaces/types-lookup.ts +179 -190
|
@@ -1796,19 +1796,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1796
1796
|
readonly operationalAccount: AccountId32;
|
|
1797
1797
|
readonly vaultAccount: AccountId32;
|
|
1798
1798
|
readonly miningAccount: AccountId32;
|
|
1799
|
-
readonly
|
|
1799
|
+
readonly upstreamAccount: Option<AccountId32>;
|
|
1800
1800
|
} & Struct;
|
|
1801
|
-
readonly
|
|
1802
|
-
readonly
|
|
1801
|
+
readonly isAccountMeetsMinimums: boolean;
|
|
1802
|
+
readonly asAccountMeetsMinimums: {
|
|
1803
1803
|
readonly account: AccountId32;
|
|
1804
|
-
readonly referrer: AccountId32;
|
|
1805
1804
|
} & Struct;
|
|
1806
|
-
readonly
|
|
1807
|
-
readonly
|
|
1808
|
-
readonly account: AccountId32;
|
|
1809
|
-
} & Struct;
|
|
1810
|
-
readonly isAccountWentOperational: boolean;
|
|
1811
|
-
readonly asAccountWentOperational: {
|
|
1805
|
+
readonly isAccountOperationallyCertified: boolean;
|
|
1806
|
+
readonly asAccountOperationallyCertified: {
|
|
1812
1807
|
readonly account: AccountId32;
|
|
1813
1808
|
} & Struct;
|
|
1814
1809
|
readonly isOperationalRewardEarned: boolean;
|
|
@@ -1826,14 +1821,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1826
1821
|
} & Struct;
|
|
1827
1822
|
readonly isRewardsConfigUpdated: boolean;
|
|
1828
1823
|
readonly asRewardsConfigUpdated: {
|
|
1829
|
-
readonly
|
|
1830
|
-
readonly
|
|
1824
|
+
readonly operationalCertificationReward: u128;
|
|
1825
|
+
readonly operationalCertificationBonusReward: u128;
|
|
1831
1826
|
} & Struct;
|
|
1832
1827
|
readonly isOperationalProgressForced: boolean;
|
|
1833
1828
|
readonly asOperationalProgressForced: {
|
|
1834
1829
|
readonly account: AccountId32;
|
|
1835
1830
|
readonly updateOperationalProgress: bool;
|
|
1836
|
-
readonly
|
|
1831
|
+
readonly meetsMinimums: bool;
|
|
1837
1832
|
readonly uniswapArgonTransfersInAmount: u128;
|
|
1838
1833
|
readonly accountBitcoinAmount: u128;
|
|
1839
1834
|
readonly accountVaultBondAmount: u128;
|
|
@@ -1843,14 +1838,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
1843
1838
|
} & Struct;
|
|
1844
1839
|
readonly isEncryptedServerUpdated: boolean;
|
|
1845
1840
|
readonly asEncryptedServerUpdated: {
|
|
1846
|
-
readonly
|
|
1841
|
+
readonly upstreamAccount: AccountId32;
|
|
1847
1842
|
readonly downstreamAccount: AccountId32;
|
|
1848
1843
|
} & Struct;
|
|
1849
1844
|
readonly type:
|
|
1850
1845
|
| 'OperationalAccountRegistered'
|
|
1851
|
-
| '
|
|
1852
|
-
| '
|
|
1853
|
-
| 'AccountWentOperational'
|
|
1846
|
+
| 'AccountMeetsMinimums'
|
|
1847
|
+
| 'AccountOperationallyCertified'
|
|
1854
1848
|
| 'OperationalRewardEarned'
|
|
1855
1849
|
| 'OperationalRewardsClaimed'
|
|
1856
1850
|
| 'RewardsConfigUpdated'
|
|
@@ -1860,9 +1854,9 @@ declare module '@polkadot/types/lookup' {
|
|
|
1860
1854
|
|
|
1861
1855
|
/** @name ArgonPrimitivesProvidersOperationalRewardKind (126) */
|
|
1862
1856
|
interface ArgonPrimitivesProvidersOperationalRewardKind extends Enum {
|
|
1863
|
-
readonly
|
|
1864
|
-
readonly
|
|
1865
|
-
readonly type: '
|
|
1857
|
+
readonly isCertification: boolean;
|
|
1858
|
+
readonly isOperationalCertificationBonus: boolean;
|
|
1859
|
+
readonly type: 'Certification' | 'OperationalCertificationBonus';
|
|
1866
1860
|
}
|
|
1867
1861
|
|
|
1868
1862
|
/** @name PalletEthereumVerifierEvent (127) */
|
|
@@ -3197,14 +3191,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
3197
3191
|
readonly asRegister: {
|
|
3198
3192
|
readonly registration: PalletOperationalAccountsRegistration;
|
|
3199
3193
|
} & Struct;
|
|
3200
|
-
readonly isUpgradeAccount: boolean;
|
|
3201
|
-
readonly asUpgradeAccount: {
|
|
3202
|
-
readonly accountId: AccountId32;
|
|
3203
|
-
} & Struct;
|
|
3204
3194
|
readonly isSetRewardConfig: boolean;
|
|
3205
3195
|
readonly asSetRewardConfig: {
|
|
3206
|
-
readonly
|
|
3207
|
-
readonly
|
|
3196
|
+
readonly operationalCertificationReward: u128;
|
|
3197
|
+
readonly operationalCertificationBonusReward: u128;
|
|
3208
3198
|
} & Struct;
|
|
3209
3199
|
readonly isForceSetProgress: boolean;
|
|
3210
3200
|
readonly asForceSetProgress: {
|
|
@@ -3224,7 +3214,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
3224
3214
|
} & Struct;
|
|
3225
3215
|
readonly type:
|
|
3226
3216
|
| 'Register'
|
|
3227
|
-
| 'UpgradeAccount'
|
|
3228
3217
|
| 'SetRewardConfig'
|
|
3229
3218
|
| 'ForceSetProgress'
|
|
3230
3219
|
| 'SetEncryptedServerForDownstreamAccount'
|
|
@@ -3248,7 +3237,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3248
3237
|
readonly miningAccount: AccountId32;
|
|
3249
3238
|
readonly vaultAccountProof: PalletOperationalAccountsAccountOwnershipProof;
|
|
3250
3239
|
readonly miningAccountProof: PalletOperationalAccountsAccountOwnershipProof;
|
|
3251
|
-
readonly
|
|
3240
|
+
readonly accessProof: Option<PalletOperationalAccountsUpstreamAccessProof>;
|
|
3252
3241
|
}
|
|
3253
3242
|
|
|
3254
3243
|
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (277) */
|
|
@@ -3259,7 +3248,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3259
3248
|
readonly signature: SpRuntimeMultiSignature;
|
|
3260
3249
|
}
|
|
3261
3250
|
|
|
3262
|
-
/** @name
|
|
3251
|
+
/** @name PalletOperationalAccountsUpstreamAccessProof (280) */
|
|
3252
|
+
interface PalletOperationalAccountsUpstreamAccessProof extends Struct {
|
|
3253
|
+
readonly upstreamAccount: AccountId32;
|
|
3254
|
+
readonly signature: SpRuntimeMultiSignature;
|
|
3255
|
+
}
|
|
3256
|
+
|
|
3257
|
+
/** @name PalletOperationalAccountsOperationalProgressPatch (281) */
|
|
3263
3258
|
interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
|
|
3264
3259
|
readonly uniswapArgonTransfersInAmount: Option<u128>;
|
|
3265
3260
|
readonly accountBitcoinAmount: Option<u128>;
|
|
@@ -3269,7 +3264,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3269
3264
|
readonly miningSeatCount: Option<u32>;
|
|
3270
3265
|
}
|
|
3271
3266
|
|
|
3272
|
-
/** @name PalletEthereumVerifierCall (
|
|
3267
|
+
/** @name PalletEthereumVerifierCall (283) */
|
|
3273
3268
|
interface PalletEthereumVerifierCall extends Enum {
|
|
3274
3269
|
readonly isForceCheckpoint: boolean;
|
|
3275
3270
|
readonly asForceCheckpoint: {
|
|
@@ -3297,7 +3292,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3297
3292
|
| 'SetOperatingMode';
|
|
3298
3293
|
}
|
|
3299
3294
|
|
|
3300
|
-
/** @name PalletEthereumVerifierCheckpointUpdate (
|
|
3295
|
+
/** @name PalletEthereumVerifierCheckpointUpdate (284) */
|
|
3301
3296
|
interface PalletEthereumVerifierCheckpointUpdate extends Struct {
|
|
3302
3297
|
readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3303
3298
|
readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
@@ -3306,7 +3301,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3306
3301
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3307
3302
|
}
|
|
3308
3303
|
|
|
3309
|
-
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (
|
|
3304
|
+
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (285) */
|
|
3310
3305
|
interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
|
|
3311
3306
|
readonly slot: u64;
|
|
3312
3307
|
readonly proposerIndex: u64;
|
|
@@ -3315,22 +3310,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3315
3310
|
readonly bodyRoot: H256;
|
|
3316
3311
|
}
|
|
3317
3312
|
|
|
3318
|
-
/** @name PalletEthereumVerifierSyncCommittee (
|
|
3313
|
+
/** @name PalletEthereumVerifierSyncCommittee (286) */
|
|
3319
3314
|
interface PalletEthereumVerifierSyncCommittee extends Struct {
|
|
3320
3315
|
readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
|
|
3321
3316
|
readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
|
|
3322
3317
|
}
|
|
3323
3318
|
|
|
3324
|
-
/** @name SnowbridgeBeaconPrimitivesPublicKey (
|
|
3319
|
+
/** @name SnowbridgeBeaconPrimitivesPublicKey (288) */
|
|
3325
3320
|
interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
|
|
3326
3321
|
|
|
3327
|
-
/** @name PalletEthereumVerifierExecutionHeaderProof (
|
|
3322
|
+
/** @name PalletEthereumVerifierExecutionHeaderProof (292) */
|
|
3328
3323
|
interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
|
|
3329
3324
|
readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
|
|
3330
3325
|
readonly executionBranch: Vec<H256>;
|
|
3331
3326
|
}
|
|
3332
3327
|
|
|
3333
|
-
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (
|
|
3328
|
+
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (293) */
|
|
3334
3329
|
interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
|
|
3335
3330
|
readonly isCapella: boolean;
|
|
3336
3331
|
readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
|
|
@@ -3339,7 +3334,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3339
3334
|
readonly type: 'Capella' | 'Deneb';
|
|
3340
3335
|
}
|
|
3341
3336
|
|
|
3342
|
-
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (
|
|
3337
|
+
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (294) */
|
|
3343
3338
|
interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
|
|
3344
3339
|
readonly parentHash: H256;
|
|
3345
3340
|
readonly feeRecipient: H160;
|
|
@@ -3358,7 +3353,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3358
3353
|
readonly withdrawalsRoot: H256;
|
|
3359
3354
|
}
|
|
3360
3355
|
|
|
3361
|
-
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (
|
|
3356
|
+
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (295) */
|
|
3362
3357
|
interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
|
|
3363
3358
|
readonly parentHash: H256;
|
|
3364
3359
|
readonly feeRecipient: H160;
|
|
@@ -3379,7 +3374,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3379
3374
|
readonly excessBlobGas: u64;
|
|
3380
3375
|
}
|
|
3381
3376
|
|
|
3382
|
-
/** @name PalletEthereumVerifierForkVersions (
|
|
3377
|
+
/** @name PalletEthereumVerifierForkVersions (296) */
|
|
3383
3378
|
interface PalletEthereumVerifierForkVersions extends Struct {
|
|
3384
3379
|
readonly genesis: PalletEthereumVerifierFork;
|
|
3385
3380
|
readonly altair: PalletEthereumVerifierFork;
|
|
@@ -3390,13 +3385,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3390
3385
|
readonly fulu: PalletEthereumVerifierFork;
|
|
3391
3386
|
}
|
|
3392
3387
|
|
|
3393
|
-
/** @name PalletEthereumVerifierFork (
|
|
3388
|
+
/** @name PalletEthereumVerifierFork (297) */
|
|
3394
3389
|
interface PalletEthereumVerifierFork extends Struct {
|
|
3395
3390
|
readonly version: U8aFixed;
|
|
3396
3391
|
readonly epoch: Compact<u64>;
|
|
3397
3392
|
}
|
|
3398
3393
|
|
|
3399
|
-
/** @name PalletEthereumVerifierUpdate (
|
|
3394
|
+
/** @name PalletEthereumVerifierUpdate (298) */
|
|
3400
3395
|
interface PalletEthereumVerifierUpdate extends Struct {
|
|
3401
3396
|
readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3402
3397
|
readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
|
|
@@ -3407,22 +3402,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3407
3402
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3408
3403
|
}
|
|
3409
3404
|
|
|
3410
|
-
/** @name PalletEthereumVerifierSyncAggregate (
|
|
3405
|
+
/** @name PalletEthereumVerifierSyncAggregate (299) */
|
|
3411
3406
|
interface PalletEthereumVerifierSyncAggregate extends Struct {
|
|
3412
3407
|
readonly syncCommitteeBits: Bytes;
|
|
3413
3408
|
readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
|
|
3414
3409
|
}
|
|
3415
3410
|
|
|
3416
|
-
/** @name SnowbridgeBeaconPrimitivesSignature (
|
|
3411
|
+
/** @name SnowbridgeBeaconPrimitivesSignature (301) */
|
|
3417
3412
|
interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
|
|
3418
3413
|
|
|
3419
|
-
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (
|
|
3414
|
+
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (304) */
|
|
3420
3415
|
interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
|
|
3421
3416
|
readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
3422
3417
|
readonly nextSyncCommitteeBranch: Vec<H256>;
|
|
3423
3418
|
}
|
|
3424
3419
|
|
|
3425
|
-
/** @name PalletCrosschainTransferCall (
|
|
3420
|
+
/** @name PalletCrosschainTransferCall (305) */
|
|
3426
3421
|
interface PalletCrosschainTransferCall extends Enum {
|
|
3427
3422
|
readonly isSetChainConfig: boolean;
|
|
3428
3423
|
readonly asSetChainConfig: {
|
|
@@ -3512,7 +3507,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3512
3507
|
| 'CollateralizeTransfer';
|
|
3513
3508
|
}
|
|
3514
3509
|
|
|
3515
|
-
/** @name PalletCrosschainTransferChainConfig (
|
|
3510
|
+
/** @name PalletCrosschainTransferChainConfig (306) */
|
|
3516
3511
|
interface PalletCrosschainTransferChainConfig extends Enum {
|
|
3517
3512
|
readonly isEvm: boolean;
|
|
3518
3513
|
readonly asEvm: {
|
|
@@ -3524,7 +3519,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3524
3519
|
readonly type: 'Evm';
|
|
3525
3520
|
}
|
|
3526
3521
|
|
|
3527
|
-
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (
|
|
3522
|
+
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (308) */
|
|
3528
3523
|
interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
|
|
3529
3524
|
readonly activationGasCost: Compact<u128>;
|
|
3530
3525
|
readonly signatureGasCost: Compact<u128>;
|
|
@@ -3532,56 +3527,56 @@ declare module '@polkadot/types/lookup' {
|
|
|
3532
3527
|
readonly estimatedMicrogonsPerEth: u128;
|
|
3533
3528
|
}
|
|
3534
3529
|
|
|
3535
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (
|
|
3530
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (311) */
|
|
3536
3531
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
|
|
3537
3532
|
readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
|
|
3538
3533
|
readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
|
|
3539
3534
|
}
|
|
3540
3535
|
|
|
3541
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (
|
|
3536
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (312) */
|
|
3542
3537
|
interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
|
|
3543
3538
|
readonly anchorBlockHash: H256;
|
|
3544
3539
|
readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
|
|
3545
3540
|
}
|
|
3546
3541
|
|
|
3547
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (
|
|
3542
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (314) */
|
|
3548
3543
|
interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
|
|
3549
3544
|
readonly rlp: Bytes;
|
|
3550
3545
|
}
|
|
3551
3546
|
|
|
3552
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (
|
|
3547
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (318) */
|
|
3553
3548
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
|
|
3554
3549
|
readonly targetBlockNumber: Compact<u64>;
|
|
3555
3550
|
readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
|
|
3556
3551
|
readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
|
|
3557
3552
|
}
|
|
3558
3553
|
|
|
3559
|
-
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (
|
|
3554
|
+
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (319) */
|
|
3560
3555
|
interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
|
|
3561
3556
|
readonly nodes: Vec<Bytes>;
|
|
3562
3557
|
readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
|
|
3563
3558
|
}
|
|
3564
3559
|
|
|
3565
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (
|
|
3560
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (323) */
|
|
3566
3561
|
interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
|
|
3567
3562
|
readonly transactionIndex: Compact<u64>;
|
|
3568
3563
|
readonly nodeIndexes: Vec<u16>;
|
|
3569
3564
|
}
|
|
3570
3565
|
|
|
3571
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (
|
|
3566
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (328) */
|
|
3572
3567
|
interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
|
|
3573
3568
|
readonly transactionIndex: Compact<u64>;
|
|
3574
3569
|
readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
|
|
3575
3570
|
}
|
|
3576
3571
|
|
|
3577
|
-
/** @name ArgonPrimitivesEthereumEthereumLog (
|
|
3572
|
+
/** @name ArgonPrimitivesEthereumEthereumLog (329) */
|
|
3578
3573
|
interface ArgonPrimitivesEthereumEthereumLog extends Struct {
|
|
3579
3574
|
readonly address: H160;
|
|
3580
3575
|
readonly topics: Vec<H256>;
|
|
3581
3576
|
readonly data: Bytes;
|
|
3582
3577
|
}
|
|
3583
3578
|
|
|
3584
|
-
/** @name PalletMultisigError (
|
|
3579
|
+
/** @name PalletMultisigError (335) */
|
|
3585
3580
|
interface PalletMultisigError extends Enum {
|
|
3586
3581
|
readonly isMinimumThreshold: boolean;
|
|
3587
3582
|
readonly isAlreadyApproved: boolean;
|
|
@@ -3614,21 +3609,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3614
3609
|
| 'AlreadyStored';
|
|
3615
3610
|
}
|
|
3616
3611
|
|
|
3617
|
-
/** @name PalletProxyProxyDefinition (
|
|
3612
|
+
/** @name PalletProxyProxyDefinition (338) */
|
|
3618
3613
|
interface PalletProxyProxyDefinition extends Struct {
|
|
3619
3614
|
readonly delegate: AccountId32;
|
|
3620
3615
|
readonly proxyType: ArgonRuntimeProxyType;
|
|
3621
3616
|
readonly delay: u32;
|
|
3622
3617
|
}
|
|
3623
3618
|
|
|
3624
|
-
/** @name PalletProxyAnnouncement (
|
|
3619
|
+
/** @name PalletProxyAnnouncement (342) */
|
|
3625
3620
|
interface PalletProxyAnnouncement extends Struct {
|
|
3626
3621
|
readonly real: AccountId32;
|
|
3627
3622
|
readonly callHash: H256;
|
|
3628
3623
|
readonly height: u32;
|
|
3629
3624
|
}
|
|
3630
3625
|
|
|
3631
|
-
/** @name PalletProxyError (
|
|
3626
|
+
/** @name PalletProxyError (344) */
|
|
3632
3627
|
interface PalletProxyError extends Enum {
|
|
3633
3628
|
readonly isTooMany: boolean;
|
|
3634
3629
|
readonly isNotFound: boolean;
|
|
@@ -3649,16 +3644,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
3649
3644
|
| 'NoSelfProxy';
|
|
3650
3645
|
}
|
|
3651
3646
|
|
|
3652
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
3647
|
+
/** @name ArgonPrimitivesTickTicker (345) */
|
|
3653
3648
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
3654
3649
|
readonly tickDurationMillis: Compact<u64>;
|
|
3655
3650
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
3656
3651
|
}
|
|
3657
3652
|
|
|
3658
|
-
/** @name PalletTicksError (
|
|
3653
|
+
/** @name PalletTicksError (347) */
|
|
3659
3654
|
type PalletTicksError = Null;
|
|
3660
3655
|
|
|
3661
|
-
/** @name PalletMiningSlotMinerNonceScoring (
|
|
3656
|
+
/** @name PalletMiningSlotMinerNonceScoring (350) */
|
|
3662
3657
|
interface PalletMiningSlotMinerNonceScoring extends Struct {
|
|
3663
3658
|
readonly nonce: U256;
|
|
3664
3659
|
readonly lastWinBlock: Option<u32>;
|
|
@@ -3666,7 +3661,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3666
3661
|
readonly frameStartBlocksWonSurplus: i16;
|
|
3667
3662
|
}
|
|
3668
3663
|
|
|
3669
|
-
/** @name ArgonPrimitivesBlockSealMiningBidStats (
|
|
3664
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (362) */
|
|
3670
3665
|
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
3671
3666
|
readonly bidsCount: u32;
|
|
3672
3667
|
readonly bidAmountMin: u128;
|
|
@@ -3674,14 +3669,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3674
3669
|
readonly bidAmountSum: u128;
|
|
3675
3670
|
}
|
|
3676
3671
|
|
|
3677
|
-
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (
|
|
3672
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (366) */
|
|
3678
3673
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
3679
3674
|
readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
|
|
3680
3675
|
readonly ticksBetweenSlots: Compact<u64>;
|
|
3681
3676
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
3682
3677
|
}
|
|
3683
3678
|
|
|
3684
|
-
/** @name PalletMiningSlotError (
|
|
3679
|
+
/** @name PalletMiningSlotError (376) */
|
|
3685
3680
|
interface PalletMiningSlotError extends Enum {
|
|
3686
3681
|
readonly isSlotNotTakingBids: boolean;
|
|
3687
3682
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -3708,7 +3703,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3708
3703
|
| 'UnrecoverableHold';
|
|
3709
3704
|
}
|
|
3710
3705
|
|
|
3711
|
-
/** @name ArgonPrimitivesBitcoinUtxoValue (
|
|
3706
|
+
/** @name ArgonPrimitivesBitcoinUtxoValue (377) */
|
|
3712
3707
|
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
3713
3708
|
readonly utxoId: u64;
|
|
3714
3709
|
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
@@ -3717,7 +3712,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3717
3712
|
readonly watchForSpentUntilHeight: Compact<u64>;
|
|
3718
3713
|
}
|
|
3719
3714
|
|
|
3720
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (
|
|
3715
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (378) */
|
|
3721
3716
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
3722
3717
|
readonly isP2wsh: boolean;
|
|
3723
3718
|
readonly asP2wsh: {
|
|
@@ -3726,7 +3721,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3726
3721
|
readonly type: 'P2wsh';
|
|
3727
3722
|
}
|
|
3728
3723
|
|
|
3729
|
-
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (
|
|
3724
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (387) */
|
|
3730
3725
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
3731
3726
|
readonly isBitcoin: boolean;
|
|
3732
3727
|
readonly isTestnet: boolean;
|
|
@@ -3735,7 +3730,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3735
3730
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
3736
3731
|
}
|
|
3737
3732
|
|
|
3738
|
-
/** @name PalletBitcoinUtxosError (
|
|
3733
|
+
/** @name PalletBitcoinUtxosError (388) */
|
|
3739
3734
|
interface PalletBitcoinUtxosError extends Enum {
|
|
3740
3735
|
readonly isNoPermissions: boolean;
|
|
3741
3736
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -3770,7 +3765,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3770
3765
|
| 'LockAlreadyFunded';
|
|
3771
3766
|
}
|
|
3772
3767
|
|
|
3773
|
-
/** @name ArgonPrimitivesVault (
|
|
3768
|
+
/** @name ArgonPrimitivesVault (389) */
|
|
3774
3769
|
interface ArgonPrimitivesVault extends Struct {
|
|
3775
3770
|
readonly operatorAccountId: AccountId32;
|
|
3776
3771
|
readonly delegateAccountId: Option<AccountId32>;
|
|
@@ -3791,13 +3786,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3791
3786
|
readonly operationalMinimumReleaseTick: Option<u64>;
|
|
3792
3787
|
}
|
|
3793
3788
|
|
|
3794
|
-
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (
|
|
3789
|
+
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (396) */
|
|
3795
3790
|
interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
|
|
3796
3791
|
readonly committedMicronots: Compact<u128>;
|
|
3797
3792
|
readonly encumberedMicronots: Compact<u128>;
|
|
3798
3793
|
}
|
|
3799
3794
|
|
|
3800
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
3795
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (398) */
|
|
3801
3796
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
3802
3797
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
3803
3798
|
readonly depth: Compact<u8>;
|
|
@@ -3807,14 +3802,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3807
3802
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
3808
3803
|
}
|
|
3809
3804
|
|
|
3810
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
3805
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (400) */
|
|
3811
3806
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
3812
3807
|
readonly isMain: boolean;
|
|
3813
3808
|
readonly isTest: boolean;
|
|
3814
3809
|
readonly type: 'Main' | 'Test';
|
|
3815
3810
|
}
|
|
3816
3811
|
|
|
3817
|
-
/** @name PalletVaultsVaultFrameRevenue (
|
|
3812
|
+
/** @name PalletVaultsVaultFrameRevenue (409) */
|
|
3818
3813
|
interface PalletVaultsVaultFrameRevenue extends Struct {
|
|
3819
3814
|
readonly frameId: Compact<u64>;
|
|
3820
3815
|
readonly bitcoinLockFeeRevenue: Compact<u128>;
|
|
@@ -3834,7 +3829,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3834
3829
|
readonly uncollectedRevenue: Compact<u128>;
|
|
3835
3830
|
}
|
|
3836
3831
|
|
|
3837
|
-
/** @name PalletVaultsRecentCapacityDrop (
|
|
3832
|
+
/** @name PalletVaultsRecentCapacityDrop (412) */
|
|
3838
3833
|
interface PalletVaultsRecentCapacityDrop extends Struct {
|
|
3839
3834
|
readonly blockNumber: Compact<u32>;
|
|
3840
3835
|
readonly availableBeforeDrop: Compact<u128>;
|
|
@@ -3842,7 +3837,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3842
3837
|
readonly noFeeFailuresUsed: Compact<u32>;
|
|
3843
3838
|
}
|
|
3844
3839
|
|
|
3845
|
-
/** @name PalletVaultsError (
|
|
3840
|
+
/** @name PalletVaultsError (414) */
|
|
3846
3841
|
interface PalletVaultsError extends Enum {
|
|
3847
3842
|
readonly isNoMoreVaultIds: boolean;
|
|
3848
3843
|
readonly isInsufficientFunds: boolean;
|
|
@@ -3915,7 +3910,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3915
3910
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
3916
3911
|
}
|
|
3917
3912
|
|
|
3918
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
3913
|
+
/** @name PalletBitcoinLocksLockedBitcoin (415) */
|
|
3919
3914
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
3920
3915
|
readonly vaultId: Compact<u32>;
|
|
3921
3916
|
readonly liquidityPromised: Compact<u128>;
|
|
@@ -3939,7 +3934,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3939
3934
|
readonly createdAtArgonBlock: Compact<u32>;
|
|
3940
3935
|
}
|
|
3941
3936
|
|
|
3942
|
-
/** @name PalletBitcoinLocksLockReleaseRequest (
|
|
3937
|
+
/** @name PalletBitcoinLocksLockReleaseRequest (419) */
|
|
3943
3938
|
interface PalletBitcoinLocksLockReleaseRequest extends Struct {
|
|
3944
3939
|
readonly utxoId: Compact<u64>;
|
|
3945
3940
|
readonly vaultId: Compact<u32>;
|
|
@@ -3949,7 +3944,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3949
3944
|
readonly redemptionAmount: Compact<u128>;
|
|
3950
3945
|
}
|
|
3951
3946
|
|
|
3952
|
-
/** @name PalletBitcoinLocksOrphanedUtxo (
|
|
3947
|
+
/** @name PalletBitcoinLocksOrphanedUtxo (421) */
|
|
3953
3948
|
interface PalletBitcoinLocksOrphanedUtxo extends Struct {
|
|
3954
3949
|
readonly utxoId: Compact<u64>;
|
|
3955
3950
|
readonly vaultId: Compact<u32>;
|
|
@@ -3958,14 +3953,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3958
3953
|
readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
|
|
3959
3954
|
}
|
|
3960
3955
|
|
|
3961
|
-
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (
|
|
3956
|
+
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (423) */
|
|
3962
3957
|
interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
|
|
3963
3958
|
readonly bitcoinNetworkFee: u64;
|
|
3964
3959
|
readonly toScriptPubkey: Bytes;
|
|
3965
3960
|
readonly createdAtArgonBlockNumber: u32;
|
|
3966
3961
|
}
|
|
3967
3962
|
|
|
3968
|
-
/** @name PalletBitcoinLocksError (
|
|
3963
|
+
/** @name PalletBitcoinLocksError (430) */
|
|
3969
3964
|
interface PalletBitcoinLocksError extends Enum {
|
|
3970
3965
|
readonly isInsufficientFunds: boolean;
|
|
3971
3966
|
readonly isInsufficientVaultFunds: boolean;
|
|
@@ -4041,7 +4036,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4041
4036
|
| 'MaxOrphanedUtxoReleaseRequestsExceeded';
|
|
4042
4037
|
}
|
|
4043
4038
|
|
|
4044
|
-
/** @name ArgonPrimitivesVaultVaultError (
|
|
4039
|
+
/** @name ArgonPrimitivesVaultVaultError (431) */
|
|
4045
4040
|
interface ArgonPrimitivesVaultVaultError extends Enum {
|
|
4046
4041
|
readonly isVaultClosed: boolean;
|
|
4047
4042
|
readonly isAccountWouldBeBelowMinimum: boolean;
|
|
@@ -4072,7 +4067,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4072
4067
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
4073
4068
|
}
|
|
4074
4069
|
|
|
4075
|
-
/** @name PalletNotariesError (
|
|
4070
|
+
/** @name PalletNotariesError (443) */
|
|
4076
4071
|
interface PalletNotariesError extends Enum {
|
|
4077
4072
|
readonly isProposalNotFound: boolean;
|
|
4078
4073
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -4095,7 +4090,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4095
4090
|
| 'InvalidNotary';
|
|
4096
4091
|
}
|
|
4097
4092
|
|
|
4098
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
4093
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (447) */
|
|
4099
4094
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
4100
4095
|
readonly notebookNumber: Compact<u32>;
|
|
4101
4096
|
readonly tick: Compact<u64>;
|
|
@@ -4104,7 +4099,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4104
4099
|
readonly parentSecret: Option<H256>;
|
|
4105
4100
|
}
|
|
4106
4101
|
|
|
4107
|
-
/** @name PalletNotebookError (
|
|
4102
|
+
/** @name PalletNotebookError (450) */
|
|
4108
4103
|
interface PalletNotebookError extends Enum {
|
|
4109
4104
|
readonly isDuplicateNotebookNumber: boolean;
|
|
4110
4105
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -4139,7 +4134,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4139
4134
|
| 'InvalidNotebookSubmissionTick';
|
|
4140
4135
|
}
|
|
4141
4136
|
|
|
4142
|
-
/** @name PalletLocalchainTransferQueuedTransferOut (
|
|
4137
|
+
/** @name PalletLocalchainTransferQueuedTransferOut (451) */
|
|
4143
4138
|
interface PalletLocalchainTransferQueuedTransferOut extends Struct {
|
|
4144
4139
|
readonly accountId: AccountId32;
|
|
4145
4140
|
readonly amount: u128;
|
|
@@ -4147,10 +4142,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4147
4142
|
readonly notaryId: u32;
|
|
4148
4143
|
}
|
|
4149
4144
|
|
|
4150
|
-
/** @name FrameSupportPalletId (
|
|
4145
|
+
/** @name FrameSupportPalletId (453) */
|
|
4151
4146
|
interface FrameSupportPalletId extends U8aFixed {}
|
|
4152
4147
|
|
|
4153
|
-
/** @name PalletLocalchainTransferError (
|
|
4148
|
+
/** @name PalletLocalchainTransferError (454) */
|
|
4154
4149
|
interface PalletLocalchainTransferError extends Enum {
|
|
4155
4150
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
4156
4151
|
readonly isInsufficientFunds: boolean;
|
|
@@ -4171,7 +4166,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4171
4166
|
| 'NoAvailableTransferId';
|
|
4172
4167
|
}
|
|
4173
4168
|
|
|
4174
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
4169
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (458) */
|
|
4175
4170
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
4176
4171
|
readonly notaryId: Compact<u32>;
|
|
4177
4172
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -4180,13 +4175,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4180
4175
|
readonly blockVotingPower: Compact<u128>;
|
|
4181
4176
|
}
|
|
4182
4177
|
|
|
4183
|
-
/** @name PalletBlockSealSpecError (
|
|
4178
|
+
/** @name PalletBlockSealSpecError (463) */
|
|
4184
4179
|
interface PalletBlockSealSpecError extends Enum {
|
|
4185
4180
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
4186
4181
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
4187
4182
|
}
|
|
4188
4183
|
|
|
4189
|
-
/** @name PalletDomainsError (
|
|
4184
|
+
/** @name PalletDomainsError (465) */
|
|
4190
4185
|
interface PalletDomainsError extends Enum {
|
|
4191
4186
|
readonly isDomainNotRegistered: boolean;
|
|
4192
4187
|
readonly isNotDomainOwner: boolean;
|
|
@@ -4201,21 +4196,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4201
4196
|
| 'AccountDecodingError';
|
|
4202
4197
|
}
|
|
4203
4198
|
|
|
4204
|
-
/** @name PalletPriceIndexCpiMeasurementBucket (
|
|
4199
|
+
/** @name PalletPriceIndexCpiMeasurementBucket (467) */
|
|
4205
4200
|
interface PalletPriceIndexCpiMeasurementBucket extends Struct {
|
|
4206
4201
|
readonly tickRange: ITuple<[u64, u64]>;
|
|
4207
4202
|
readonly totalCpi: i128;
|
|
4208
4203
|
readonly measurementsCount: u32;
|
|
4209
4204
|
}
|
|
4210
4205
|
|
|
4211
|
-
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (
|
|
4206
|
+
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (471) */
|
|
4212
4207
|
interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
|
|
4213
4208
|
readonly frameId: Compact<u64>;
|
|
4214
4209
|
readonly totalMicrogonsPerArgonot: Compact<u128>;
|
|
4215
4210
|
readonly sampleCount: Compact<u32>;
|
|
4216
4211
|
}
|
|
4217
4212
|
|
|
4218
|
-
/** @name PalletPriceIndexError (
|
|
4213
|
+
/** @name PalletPriceIndexError (472) */
|
|
4219
4214
|
interface PalletPriceIndexError extends Enum {
|
|
4220
4215
|
readonly isNotAuthorizedOperator: boolean;
|
|
4221
4216
|
readonly isMissingValue: boolean;
|
|
@@ -4228,7 +4223,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4228
4223
|
| 'MaxPriceChangePerTickExceeded';
|
|
4229
4224
|
}
|
|
4230
4225
|
|
|
4231
|
-
/** @name PalletGrandpaStoredState (
|
|
4226
|
+
/** @name PalletGrandpaStoredState (473) */
|
|
4232
4227
|
interface PalletGrandpaStoredState extends Enum {
|
|
4233
4228
|
readonly isLive: boolean;
|
|
4234
4229
|
readonly isPendingPause: boolean;
|
|
@@ -4245,7 +4240,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4245
4240
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
4246
4241
|
}
|
|
4247
4242
|
|
|
4248
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
4243
|
+
/** @name PalletGrandpaStoredPendingChange (474) */
|
|
4249
4244
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
4250
4245
|
readonly scheduledAt: u32;
|
|
4251
4246
|
readonly delay: u32;
|
|
@@ -4253,7 +4248,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4253
4248
|
readonly forced: Option<u32>;
|
|
4254
4249
|
}
|
|
4255
4250
|
|
|
4256
|
-
/** @name PalletGrandpaError (
|
|
4251
|
+
/** @name PalletGrandpaError (476) */
|
|
4257
4252
|
interface PalletGrandpaError extends Enum {
|
|
4258
4253
|
readonly isPauseFailed: boolean;
|
|
4259
4254
|
readonly isResumeFailed: boolean;
|
|
@@ -4272,14 +4267,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4272
4267
|
| 'DuplicateOffenceReport';
|
|
4273
4268
|
}
|
|
4274
4269
|
|
|
4275
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
4270
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (477) */
|
|
4276
4271
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
4277
4272
|
readonly blockAuthorAccountId: AccountId32;
|
|
4278
4273
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
4279
4274
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
4280
4275
|
}
|
|
4281
4276
|
|
|
4282
|
-
/** @name PalletBlockSealError (
|
|
4277
|
+
/** @name PalletBlockSealError (479) */
|
|
4283
4278
|
interface PalletBlockSealError extends Enum {
|
|
4284
4279
|
readonly isInvalidVoteSealStrength: boolean;
|
|
4285
4280
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -4326,10 +4321,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4326
4321
|
| 'DuplicateVoteBlockAtTick';
|
|
4327
4322
|
}
|
|
4328
4323
|
|
|
4329
|
-
/** @name PalletBlockRewardsError (
|
|
4324
|
+
/** @name PalletBlockRewardsError (483) */
|
|
4330
4325
|
type PalletBlockRewardsError = Null;
|
|
4331
4326
|
|
|
4332
|
-
/** @name PalletMintPendingMintUtxo (
|
|
4327
|
+
/** @name PalletMintPendingMintUtxo (484) */
|
|
4333
4328
|
interface PalletMintPendingMintUtxo extends Struct {
|
|
4334
4329
|
readonly utxoId: Compact<u64>;
|
|
4335
4330
|
readonly accountId: AccountId32;
|
|
@@ -4337,34 +4332,34 @@ declare module '@polkadot/types/lookup' {
|
|
|
4337
4332
|
readonly maxAmountPerFrame: Compact<u128>;
|
|
4338
4333
|
}
|
|
4339
4334
|
|
|
4340
|
-
/** @name PalletMintMintQueueCursor (
|
|
4335
|
+
/** @name PalletMintMintQueueCursor (486) */
|
|
4341
4336
|
interface PalletMintMintQueueCursor extends Struct {
|
|
4342
4337
|
readonly payoutStartIndex: Compact<u64>;
|
|
4343
4338
|
readonly payoutCursorIndex: Compact<u64>;
|
|
4344
4339
|
readonly payoutCursorFrameId: Option<u64>;
|
|
4345
4340
|
}
|
|
4346
4341
|
|
|
4347
|
-
/** @name PalletMintMintAction (
|
|
4342
|
+
/** @name PalletMintMintAction (489) */
|
|
4348
4343
|
interface PalletMintMintAction extends Struct {
|
|
4349
4344
|
readonly argonBurned: u128;
|
|
4350
4345
|
readonly argonMinted: u128;
|
|
4351
4346
|
readonly bitcoinMinted: u128;
|
|
4352
4347
|
}
|
|
4353
4348
|
|
|
4354
|
-
/** @name PalletMintError (
|
|
4349
|
+
/** @name PalletMintError (491) */
|
|
4355
4350
|
interface PalletMintError extends Enum {
|
|
4356
4351
|
readonly isTooManyPendingMints: boolean;
|
|
4357
4352
|
readonly type: 'TooManyPendingMints';
|
|
4358
4353
|
}
|
|
4359
4354
|
|
|
4360
|
-
/** @name PalletBalancesBalanceLock (
|
|
4355
|
+
/** @name PalletBalancesBalanceLock (493) */
|
|
4361
4356
|
interface PalletBalancesBalanceLock extends Struct {
|
|
4362
4357
|
readonly id: U8aFixed;
|
|
4363
4358
|
readonly amount: u128;
|
|
4364
4359
|
readonly reasons: PalletBalancesReasons;
|
|
4365
4360
|
}
|
|
4366
4361
|
|
|
4367
|
-
/** @name PalletBalancesReasons (
|
|
4362
|
+
/** @name PalletBalancesReasons (494) */
|
|
4368
4363
|
interface PalletBalancesReasons extends Enum {
|
|
4369
4364
|
readonly isFee: boolean;
|
|
4370
4365
|
readonly isMisc: boolean;
|
|
@@ -4372,38 +4367,38 @@ declare module '@polkadot/types/lookup' {
|
|
|
4372
4367
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
4373
4368
|
}
|
|
4374
4369
|
|
|
4375
|
-
/** @name PalletBalancesReserveData (
|
|
4370
|
+
/** @name PalletBalancesReserveData (497) */
|
|
4376
4371
|
interface PalletBalancesReserveData extends Struct {
|
|
4377
4372
|
readonly id: U8aFixed;
|
|
4378
4373
|
readonly amount: u128;
|
|
4379
4374
|
}
|
|
4380
4375
|
|
|
4381
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
4376
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (500) */
|
|
4382
4377
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
4383
4378
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
4384
4379
|
readonly amount: u128;
|
|
4385
4380
|
}
|
|
4386
4381
|
|
|
4387
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
4382
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (503) */
|
|
4388
4383
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
4389
4384
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
4390
4385
|
readonly amount: u128;
|
|
4391
4386
|
}
|
|
4392
4387
|
|
|
4393
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
4388
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (504) */
|
|
4394
4389
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
4395
4390
|
readonly isBlockRewards: boolean;
|
|
4396
4391
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
4397
4392
|
readonly type: 'BlockRewards';
|
|
4398
4393
|
}
|
|
4399
4394
|
|
|
4400
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
4395
|
+
/** @name PalletBlockRewardsFreezeReason (505) */
|
|
4401
4396
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
4402
4397
|
readonly isMaturationPeriod: boolean;
|
|
4403
4398
|
readonly type: 'MaturationPeriod';
|
|
4404
4399
|
}
|
|
4405
4400
|
|
|
4406
|
-
/** @name PalletBalancesError (
|
|
4401
|
+
/** @name PalletBalancesError (507) */
|
|
4407
4402
|
interface PalletBalancesError extends Enum {
|
|
4408
4403
|
readonly isVestingBalance: boolean;
|
|
4409
4404
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -4432,7 +4427,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4432
4427
|
| 'DeltaZero';
|
|
4433
4428
|
}
|
|
4434
4429
|
|
|
4435
|
-
/** @name PalletTxPauseError (
|
|
4430
|
+
/** @name PalletTxPauseError (509) */
|
|
4436
4431
|
interface PalletTxPauseError extends Enum {
|
|
4437
4432
|
readonly isIsPaused: boolean;
|
|
4438
4433
|
readonly isIsUnpaused: boolean;
|
|
@@ -4441,65 +4436,65 @@ declare module '@polkadot/types/lookup' {
|
|
|
4441
4436
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
4442
4437
|
}
|
|
4443
4438
|
|
|
4444
|
-
/** @name PalletTransactionPaymentReleases (
|
|
4439
|
+
/** @name PalletTransactionPaymentReleases (510) */
|
|
4445
4440
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
4446
4441
|
readonly isV1Ancient: boolean;
|
|
4447
4442
|
readonly isV2: boolean;
|
|
4448
4443
|
readonly type: 'V1Ancient' | 'V2';
|
|
4449
4444
|
}
|
|
4450
4445
|
|
|
4451
|
-
/** @name FrameSupportStorageNoDrop (
|
|
4446
|
+
/** @name FrameSupportStorageNoDrop (511) */
|
|
4452
4447
|
interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
|
|
4453
4448
|
|
|
4454
|
-
/** @name FrameSupportTokensFungibleImbalance (
|
|
4449
|
+
/** @name FrameSupportTokensFungibleImbalance (512) */
|
|
4455
4450
|
interface FrameSupportTokensFungibleImbalance extends Struct {
|
|
4456
4451
|
readonly amount: u128;
|
|
4457
4452
|
}
|
|
4458
4453
|
|
|
4459
|
-
/** @name PalletUtilityError (
|
|
4454
|
+
/** @name PalletUtilityError (513) */
|
|
4460
4455
|
interface PalletUtilityError extends Enum {
|
|
4461
4456
|
readonly isTooManyCalls: boolean;
|
|
4462
4457
|
readonly type: 'TooManyCalls';
|
|
4463
4458
|
}
|
|
4464
4459
|
|
|
4465
|
-
/** @name PalletSudoError (
|
|
4460
|
+
/** @name PalletSudoError (514) */
|
|
4466
4461
|
interface PalletSudoError extends Enum {
|
|
4467
4462
|
readonly isRequireSudo: boolean;
|
|
4468
4463
|
readonly type: 'RequireSudo';
|
|
4469
4464
|
}
|
|
4470
4465
|
|
|
4471
|
-
/** @name PalletTreasuryFrameVaultCapital (
|
|
4466
|
+
/** @name PalletTreasuryFrameVaultCapital (515) */
|
|
4472
4467
|
interface PalletTreasuryFrameVaultCapital extends Struct {
|
|
4473
4468
|
readonly frameId: Compact<u64>;
|
|
4474
4469
|
readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
|
|
4475
4470
|
}
|
|
4476
4471
|
|
|
4477
|
-
/** @name PalletTreasuryVaultCapital (
|
|
4472
|
+
/** @name PalletTreasuryVaultCapital (517) */
|
|
4478
4473
|
interface PalletTreasuryVaultCapital extends Struct {
|
|
4479
4474
|
readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
|
|
4480
4475
|
readonly eligibleBonds: Compact<u32>;
|
|
4481
4476
|
}
|
|
4482
4477
|
|
|
4483
|
-
/** @name PalletTreasuryBondLotAllocation (
|
|
4478
|
+
/** @name PalletTreasuryBondLotAllocation (519) */
|
|
4484
4479
|
interface PalletTreasuryBondLotAllocation extends Struct {
|
|
4485
4480
|
readonly bondLotId: Compact<u64>;
|
|
4486
4481
|
readonly prorata: u128;
|
|
4487
4482
|
}
|
|
4488
4483
|
|
|
4489
|
-
/** @name PalletTreasuryFrameArgonotBondParticipants (
|
|
4484
|
+
/** @name PalletTreasuryFrameArgonotBondParticipants (524) */
|
|
4490
4485
|
interface PalletTreasuryFrameArgonotBondParticipants extends Struct {
|
|
4491
4486
|
readonly frameId: Compact<u64>;
|
|
4492
4487
|
readonly totalBonds: Compact<u32>;
|
|
4493
4488
|
readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
4494
4489
|
}
|
|
4495
4490
|
|
|
4496
|
-
/** @name PalletTreasuryBondLotSummary (
|
|
4491
|
+
/** @name PalletTreasuryBondLotSummary (526) */
|
|
4497
4492
|
interface PalletTreasuryBondLotSummary extends Struct {
|
|
4498
4493
|
readonly bondLotId: Compact<u64>;
|
|
4499
4494
|
readonly bonds: Compact<u32>;
|
|
4500
4495
|
}
|
|
4501
4496
|
|
|
4502
|
-
/** @name PalletTreasuryBondLot (
|
|
4497
|
+
/** @name PalletTreasuryBondLot (528) */
|
|
4503
4498
|
interface PalletTreasuryBondLot extends Struct {
|
|
4504
4499
|
readonly owner: AccountId32;
|
|
4505
4500
|
readonly program: PalletTreasuryBondProgram;
|
|
@@ -4513,7 +4508,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4513
4508
|
readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
|
|
4514
4509
|
}
|
|
4515
4510
|
|
|
4516
|
-
/** @name PalletTreasuryBondProgram (
|
|
4511
|
+
/** @name PalletTreasuryBondProgram (529) */
|
|
4517
4512
|
interface PalletTreasuryBondProgram extends Enum {
|
|
4518
4513
|
readonly isVault: boolean;
|
|
4519
4514
|
readonly asVault: {
|
|
@@ -4525,7 +4520,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4525
4520
|
readonly type: 'Vault' | 'Argonot';
|
|
4526
4521
|
}
|
|
4527
4522
|
|
|
4528
|
-
/** @name PalletTreasuryError (
|
|
4523
|
+
/** @name PalletTreasuryError (533) */
|
|
4529
4524
|
interface PalletTreasuryError extends Enum {
|
|
4530
4525
|
readonly isBondPurchaseRejected: boolean;
|
|
4531
4526
|
readonly isVaultNotAcceptingBondPurchases: boolean;
|
|
@@ -4566,20 +4561,18 @@ declare module '@polkadot/types/lookup' {
|
|
|
4566
4561
|
| 'ArgonotBondPurchaseAboveCap';
|
|
4567
4562
|
}
|
|
4568
4563
|
|
|
4569
|
-
/** @name PalletFeeControlError (
|
|
4564
|
+
/** @name PalletFeeControlError (534) */
|
|
4570
4565
|
interface PalletFeeControlError extends Enum {
|
|
4571
4566
|
readonly isSponsoredFeeTooHigh: boolean;
|
|
4572
4567
|
readonly type: 'SponsoredFeeTooHigh';
|
|
4573
4568
|
}
|
|
4574
4569
|
|
|
4575
|
-
/** @name PalletOperationalAccountsOperationalAccount (
|
|
4570
|
+
/** @name PalletOperationalAccountsOperationalAccount (535) */
|
|
4576
4571
|
interface PalletOperationalAccountsOperationalAccount extends Struct {
|
|
4577
4572
|
readonly vaultAccount: AccountId32;
|
|
4578
4573
|
readonly miningAccount: AccountId32;
|
|
4579
4574
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
4580
|
-
readonly
|
|
4581
|
-
readonly isTreasuryCertified: bool;
|
|
4582
|
-
readonly isUpgradedToOperations: bool;
|
|
4575
|
+
readonly upstreamAccount: Option<AccountId32>;
|
|
4583
4576
|
readonly uniswapArgonTransfersInAmount: u128;
|
|
4584
4577
|
readonly accountBitcoinAmount: u128;
|
|
4585
4578
|
readonly accountVaultBondAmount: u128;
|
|
@@ -4588,22 +4581,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
4588
4581
|
readonly vaultBitcoinAppliedTotal: u128;
|
|
4589
4582
|
readonly miningSeatAccrual: Compact<u32>;
|
|
4590
4583
|
readonly miningSeatAppliedTotal: Compact<u32>;
|
|
4591
|
-
readonly
|
|
4592
|
-
readonly
|
|
4593
|
-
readonly
|
|
4584
|
+
readonly operationalCertificationsCount: Compact<u32>;
|
|
4585
|
+
readonly accessCodePending: bool;
|
|
4586
|
+
readonly availableAccessCodes: Compact<u32>;
|
|
4594
4587
|
readonly rewardsEarnedCount: Compact<u32>;
|
|
4595
4588
|
readonly rewardsEarnedAmount: u128;
|
|
4596
4589
|
readonly rewardsCollectedAmount: u128;
|
|
4597
4590
|
readonly isOperationallyCertified: bool;
|
|
4598
4591
|
}
|
|
4599
4592
|
|
|
4600
|
-
/** @name PalletOperationalAccountsRewardsConfig (
|
|
4593
|
+
/** @name PalletOperationalAccountsRewardsConfig (536) */
|
|
4601
4594
|
interface PalletOperationalAccountsRewardsConfig extends Struct {
|
|
4602
|
-
readonly
|
|
4603
|
-
readonly
|
|
4595
|
+
readonly operationalCertificationReward: Compact<u128>;
|
|
4596
|
+
readonly operationalCertificationBonusReward: Compact<u128>;
|
|
4604
4597
|
}
|
|
4605
4598
|
|
|
4606
|
-
/** @name PalletOperationalAccountsError (
|
|
4599
|
+
/** @name PalletOperationalAccountsError (538) */
|
|
4607
4600
|
interface PalletOperationalAccountsError extends Enum {
|
|
4608
4601
|
readonly isAlreadyRegistered: boolean;
|
|
4609
4602
|
readonly isInvalidRegistrationSubmitter: boolean;
|
|
@@ -4611,23 +4604,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4611
4604
|
readonly isInvalidAccountProof: boolean;
|
|
4612
4605
|
readonly isNotOperationalAccount: boolean;
|
|
4613
4606
|
readonly isRegistrationInviteRequired: boolean;
|
|
4614
|
-
readonly
|
|
4615
|
-
readonly
|
|
4616
|
-
readonly
|
|
4617
|
-
readonly
|
|
4618
|
-
readonly isAccountAlreadyUpgraded: boolean;
|
|
4619
|
-
readonly isNoAvailableUpgrades: boolean;
|
|
4620
|
-
readonly isCannotUpgradeSelf: boolean;
|
|
4607
|
+
readonly isInvalidAccessProof: boolean;
|
|
4608
|
+
readonly isUpstreamNotOperationalAccount: boolean;
|
|
4609
|
+
readonly isMinimumsNotMet: boolean;
|
|
4610
|
+
readonly isCannotGrantAccessToSelf: boolean;
|
|
4621
4611
|
readonly isNoProgressUpdateProvided: boolean;
|
|
4622
4612
|
readonly isEncryptedServerTooLong: boolean;
|
|
4623
|
-
readonly
|
|
4613
|
+
readonly isNotUpstreamOfDownstream: boolean;
|
|
4624
4614
|
readonly isNoPendingRewards: boolean;
|
|
4625
4615
|
readonly isRewardClaimBelowMinimum: boolean;
|
|
4626
4616
|
readonly isRewardClaimNotWholeArgon: boolean;
|
|
4627
4617
|
readonly isRewardClaimExceedsPending: boolean;
|
|
4628
4618
|
readonly isTreasuryInsufficientFunds: boolean;
|
|
4629
|
-
readonly
|
|
4619
|
+
readonly isAlreadyOperationallyCertified: boolean;
|
|
4630
4620
|
readonly isNotEligibleForActivation: boolean;
|
|
4621
|
+
readonly isUpstreamHasNoAvailableAccessCodes: boolean;
|
|
4631
4622
|
readonly type:
|
|
4632
4623
|
| 'AlreadyRegistered'
|
|
4633
4624
|
| 'InvalidRegistrationSubmitter'
|
|
@@ -4635,31 +4626,29 @@ declare module '@polkadot/types/lookup' {
|
|
|
4635
4626
|
| 'InvalidAccountProof'
|
|
4636
4627
|
| 'NotOperationalAccount'
|
|
4637
4628
|
| 'RegistrationInviteRequired'
|
|
4638
|
-
| '
|
|
4639
|
-
| '
|
|
4640
|
-
| '
|
|
4641
|
-
| '
|
|
4642
|
-
| 'AccountAlreadyUpgraded'
|
|
4643
|
-
| 'NoAvailableUpgrades'
|
|
4644
|
-
| 'CannotUpgradeSelf'
|
|
4629
|
+
| 'InvalidAccessProof'
|
|
4630
|
+
| 'UpstreamNotOperationalAccount'
|
|
4631
|
+
| 'MinimumsNotMet'
|
|
4632
|
+
| 'CannotGrantAccessToSelf'
|
|
4645
4633
|
| 'NoProgressUpdateProvided'
|
|
4646
4634
|
| 'EncryptedServerTooLong'
|
|
4647
|
-
| '
|
|
4635
|
+
| 'NotUpstreamOfDownstream'
|
|
4648
4636
|
| 'NoPendingRewards'
|
|
4649
4637
|
| 'RewardClaimBelowMinimum'
|
|
4650
4638
|
| 'RewardClaimNotWholeArgon'
|
|
4651
4639
|
| 'RewardClaimExceedsPending'
|
|
4652
4640
|
| 'TreasuryInsufficientFunds'
|
|
4653
|
-
| '
|
|
4654
|
-
| 'NotEligibleForActivation'
|
|
4641
|
+
| 'AlreadyOperationallyCertified'
|
|
4642
|
+
| 'NotEligibleForActivation'
|
|
4643
|
+
| 'UpstreamHasNoAvailableAccessCodes';
|
|
4655
4644
|
}
|
|
4656
4645
|
|
|
4657
|
-
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (
|
|
4646
|
+
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (539) */
|
|
4658
4647
|
interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
|
|
4659
4648
|
readonly slot: Compact<u64>;
|
|
4660
4649
|
}
|
|
4661
4650
|
|
|
4662
|
-
/** @name PalletEthereumVerifierExecutionHeaderAnchor (
|
|
4651
|
+
/** @name PalletEthereumVerifierExecutionHeaderAnchor (540) */
|
|
4663
4652
|
interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
|
|
4664
4653
|
readonly blockNumber: Compact<u64>;
|
|
4665
4654
|
readonly timestampMillis: Compact<u64>;
|
|
@@ -4669,44 +4658,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
4669
4658
|
readonly receiptsRoot: H256;
|
|
4670
4659
|
}
|
|
4671
4660
|
|
|
4672
|
-
/** @name PalletEthereumVerifierSyncCommitteePrepared (
|
|
4661
|
+
/** @name PalletEthereumVerifierSyncCommitteePrepared (541) */
|
|
4673
4662
|
interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
|
|
4674
4663
|
readonly root: H256;
|
|
4675
4664
|
readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
|
|
4676
4665
|
readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
|
|
4677
4666
|
}
|
|
4678
4667
|
|
|
4679
|
-
/** @name SnowbridgeMilagroBlsKeysPublicKey (
|
|
4668
|
+
/** @name SnowbridgeMilagroBlsKeysPublicKey (543) */
|
|
4680
4669
|
interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
|
|
4681
4670
|
readonly point: SnowbridgeAmclBls381Ecp;
|
|
4682
4671
|
}
|
|
4683
4672
|
|
|
4684
|
-
/** @name SnowbridgeAmclBls381Ecp (
|
|
4673
|
+
/** @name SnowbridgeAmclBls381Ecp (544) */
|
|
4685
4674
|
interface SnowbridgeAmclBls381Ecp extends Struct {
|
|
4686
4675
|
readonly x: SnowbridgeAmclBls381Fp;
|
|
4687
4676
|
readonly y: SnowbridgeAmclBls381Fp;
|
|
4688
4677
|
readonly z: SnowbridgeAmclBls381Fp;
|
|
4689
4678
|
}
|
|
4690
4679
|
|
|
4691
|
-
/** @name SnowbridgeAmclBls381Fp (
|
|
4680
|
+
/** @name SnowbridgeAmclBls381Fp (545) */
|
|
4692
4681
|
interface SnowbridgeAmclBls381Fp extends Struct {
|
|
4693
4682
|
readonly x: SnowbridgeAmclBls381Big;
|
|
4694
4683
|
readonly xes: i32;
|
|
4695
4684
|
}
|
|
4696
4685
|
|
|
4697
|
-
/** @name SnowbridgeAmclBls381Big (
|
|
4686
|
+
/** @name SnowbridgeAmclBls381Big (546) */
|
|
4698
4687
|
interface SnowbridgeAmclBls381Big extends Struct {
|
|
4699
4688
|
readonly w: Vec<i32>;
|
|
4700
4689
|
}
|
|
4701
4690
|
|
|
4702
|
-
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (
|
|
4691
|
+
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (550) */
|
|
4703
4692
|
interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
|
|
4704
4693
|
readonly isMainnet: boolean;
|
|
4705
4694
|
readonly isMinimal: boolean;
|
|
4706
4695
|
readonly type: 'Mainnet' | 'Minimal';
|
|
4707
4696
|
}
|
|
4708
4697
|
|
|
4709
|
-
/** @name PalletEthereumVerifierError (
|
|
4698
|
+
/** @name PalletEthereumVerifierError (551) */
|
|
4710
4699
|
interface PalletEthereumVerifierError extends Enum {
|
|
4711
4700
|
readonly isSkippedSyncCommitteePeriod: boolean;
|
|
4712
4701
|
readonly isSyncCommitteeUpdateRequired: boolean;
|
|
@@ -4759,7 +4748,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4759
4748
|
| 'Halted';
|
|
4760
4749
|
}
|
|
4761
4750
|
|
|
4762
|
-
/** @name PalletCrosschainTransferAccountTransferTotals (
|
|
4751
|
+
/** @name PalletCrosschainTransferAccountTransferTotals (552) */
|
|
4763
4752
|
interface PalletCrosschainTransferAccountTransferTotals extends Struct {
|
|
4764
4753
|
readonly microgonsIn: u128;
|
|
4765
4754
|
readonly microgonsOut: u128;
|
|
@@ -4771,21 +4760,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4771
4760
|
readonly argonotTransfersOutCount: Compact<u32>;
|
|
4772
4761
|
}
|
|
4773
4762
|
|
|
4774
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (
|
|
4763
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (554) */
|
|
4775
4764
|
interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
|
|
4776
4765
|
readonly epochMicrogonsPerArgonot: u128;
|
|
4777
4766
|
readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
|
|
4778
4767
|
readonly totalWeight: u128;
|
|
4779
4768
|
}
|
|
4780
4769
|
|
|
4781
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (
|
|
4770
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (556) */
|
|
4782
4771
|
interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
|
|
4783
4772
|
readonly accountId: AccountId32;
|
|
4784
4773
|
readonly signer: H160;
|
|
4785
4774
|
readonly weight: u128;
|
|
4786
4775
|
}
|
|
4787
4776
|
|
|
4788
|
-
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (
|
|
4777
|
+
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (561) */
|
|
4789
4778
|
interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
|
|
4790
4779
|
readonly approvingCouncilHash: H256;
|
|
4791
4780
|
readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
|
|
@@ -4797,7 +4786,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4797
4786
|
readonly signatures: BTreeMap<H160, U8aFixed>;
|
|
4798
4787
|
}
|
|
4799
4788
|
|
|
4800
|
-
/** @name PalletCrosschainTransferMintingAuthority (
|
|
4789
|
+
/** @name PalletCrosschainTransferMintingAuthority (566) */
|
|
4801
4790
|
interface PalletCrosschainTransferMintingAuthority extends Struct {
|
|
4802
4791
|
readonly accountId: AccountId32;
|
|
4803
4792
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -4814,7 +4803,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4814
4803
|
readonly deactivationApprovalQueueNonce: Option<u64>;
|
|
4815
4804
|
}
|
|
4816
4805
|
|
|
4817
|
-
/** @name PalletCrosschainTransferMintingAuthorityState (
|
|
4806
|
+
/** @name PalletCrosschainTransferMintingAuthorityState (567) */
|
|
4818
4807
|
interface PalletCrosschainTransferMintingAuthorityState extends Enum {
|
|
4819
4808
|
readonly isPendingActivation: boolean;
|
|
4820
4809
|
readonly isActive: boolean;
|
|
@@ -4822,7 +4811,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4822
4811
|
readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
|
|
4823
4812
|
}
|
|
4824
4813
|
|
|
4825
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (
|
|
4814
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (569) */
|
|
4826
4815
|
interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
|
|
4827
4816
|
readonly argonAccountId: AccountId32;
|
|
4828
4817
|
readonly argonTransferNonce: Compact<u64>;
|
|
@@ -4841,7 +4830,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4841
4830
|
readonly state: PalletCrosschainTransferTransferOutTransferOutState;
|
|
4842
4831
|
}
|
|
4843
4832
|
|
|
4844
|
-
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (
|
|
4833
|
+
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (571) */
|
|
4845
4834
|
interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
|
|
4846
4835
|
readonly microgonCollateral: u128;
|
|
4847
4836
|
readonly micronotCollateral: u128;
|
|
@@ -4849,27 +4838,27 @@ declare module '@polkadot/types/lookup' {
|
|
|
4849
4838
|
readonly signature: U8aFixed;
|
|
4850
4839
|
}
|
|
4851
4840
|
|
|
4852
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutState (
|
|
4841
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutState (575) */
|
|
4853
4842
|
interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
|
|
4854
4843
|
readonly isStarted: boolean;
|
|
4855
4844
|
readonly isReady: boolean;
|
|
4856
4845
|
readonly type: 'Started' | 'Ready';
|
|
4857
4846
|
}
|
|
4858
4847
|
|
|
4859
|
-
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (
|
|
4848
|
+
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (577) */
|
|
4860
4849
|
interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
|
|
4861
4850
|
readonly transferId: H256;
|
|
4862
4851
|
readonly remainingCollateral: u128;
|
|
4863
4852
|
readonly remainingMintingAuthorityTip: u128;
|
|
4864
4853
|
}
|
|
4865
4854
|
|
|
4866
|
-
/** @name PalletCrosschainTransferSourceChainCirculation (
|
|
4855
|
+
/** @name PalletCrosschainTransferSourceChainCirculation (579) */
|
|
4867
4856
|
interface PalletCrosschainTransferSourceChainCirculation extends Struct {
|
|
4868
4857
|
readonly argonCirculation: u128;
|
|
4869
4858
|
readonly argonotCirculation: u128;
|
|
4870
4859
|
}
|
|
4871
4860
|
|
|
4872
|
-
/** @name PalletCrosschainTransferError (
|
|
4861
|
+
/** @name PalletCrosschainTransferError (580) */
|
|
4873
4862
|
interface PalletCrosschainTransferError extends Enum {
|
|
4874
4863
|
readonly isInvalidTransferToArgonActivity: boolean;
|
|
4875
4864
|
readonly isNoGatewayProofBlocksProvided: boolean;
|
|
@@ -4982,45 +4971,45 @@ declare module '@polkadot/types/lookup' {
|
|
|
4982
4971
|
| 'TooManyPendingTransferOuts';
|
|
4983
4972
|
}
|
|
4984
4973
|
|
|
4985
|
-
/** @name FrameSystemExtensionsAuthorizeCall (
|
|
4974
|
+
/** @name FrameSystemExtensionsAuthorizeCall (583) */
|
|
4986
4975
|
type FrameSystemExtensionsAuthorizeCall = Null;
|
|
4987
4976
|
|
|
4988
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
4977
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (584) */
|
|
4989
4978
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
4990
4979
|
|
|
4991
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
4980
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (585) */
|
|
4992
4981
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
4993
4982
|
|
|
4994
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
4983
|
+
/** @name FrameSystemExtensionsCheckTxVersion (586) */
|
|
4995
4984
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
4996
4985
|
|
|
4997
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
4986
|
+
/** @name FrameSystemExtensionsCheckGenesis (587) */
|
|
4998
4987
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
4999
4988
|
|
|
5000
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
4989
|
+
/** @name FrameSystemExtensionsCheckNonce (590) */
|
|
5001
4990
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
|
|
5002
4991
|
|
|
5003
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
4992
|
+
/** @name FrameSystemExtensionsCheckWeight (591) */
|
|
5004
4993
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
5005
4994
|
|
|
5006
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
4995
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (592) */
|
|
5007
4996
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
|
|
5008
4997
|
|
|
5009
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
4998
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (593) */
|
|
5010
4999
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
5011
5000
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
5012
5001
|
}
|
|
5013
5002
|
|
|
5014
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
5003
|
+
/** @name FrameMetadataHashExtensionMode (594) */
|
|
5015
5004
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
5016
5005
|
readonly isDisabled: boolean;
|
|
5017
5006
|
readonly isEnabled: boolean;
|
|
5018
5007
|
readonly type: 'Disabled' | 'Enabled';
|
|
5019
5008
|
}
|
|
5020
5009
|
|
|
5021
|
-
/** @name FrameSystemExtensionsWeightReclaim (
|
|
5010
|
+
/** @name FrameSystemExtensionsWeightReclaim (595) */
|
|
5022
5011
|
type FrameSystemExtensionsWeightReclaim = Null;
|
|
5023
5012
|
|
|
5024
|
-
/** @name ArgonRuntimeRuntime (
|
|
5013
|
+
/** @name ArgonRuntimeRuntime (597) */
|
|
5025
5014
|
type ArgonRuntimeRuntime = Null;
|
|
5026
5015
|
} // declare module
|