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