@argonprotocol/mainchain 1.4.9-dev.5b945a61 → 1.4.9-dev.608fbe23
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
package/browser/index.d.ts
CHANGED
|
@@ -450,58 +450,59 @@ declare module '@polkadot/api-base/types/consts' {
|
|
|
450
450
|
};
|
|
451
451
|
operationalAccounts: {
|
|
452
452
|
/**
|
|
453
|
-
* Additional argon amount (base units) required per follow-on
|
|
454
|
-
* operational
|
|
453
|
+
* Additional argon amount (base units) required per follow-on access code after an account
|
|
454
|
+
* becomes operational.
|
|
455
455
|
**/
|
|
456
|
-
|
|
456
|
+
bitcoinLockSizeForAccessCode: u128 & AugmentedConst<ApiType>;
|
|
457
457
|
/**
|
|
458
|
-
* Maximum number of available
|
|
458
|
+
* Maximum number of available access codes allowed at once.
|
|
459
459
|
**/
|
|
460
|
-
|
|
460
|
+
maxAvailableAccessCodes: u32 & AugmentedConst<ApiType>;
|
|
461
461
|
/**
|
|
462
462
|
* Maximum number of encrypted server bytes stored per network account.
|
|
463
463
|
**/
|
|
464
464
|
maxEncryptedServerLen: u32 & AugmentedConst<ApiType>;
|
|
465
465
|
/**
|
|
466
|
-
*
|
|
466
|
+
* Minimum bitcoin amount required to register.
|
|
467
467
|
**/
|
|
468
|
-
|
|
468
|
+
minimumBitcoin: u128 & AugmentedConst<ApiType>;
|
|
469
469
|
/**
|
|
470
|
-
*
|
|
470
|
+
* Minimum bond amount required to register.
|
|
471
471
|
**/
|
|
472
|
-
|
|
472
|
+
minimumBonds: u128 & AugmentedConst<ApiType>;
|
|
473
473
|
/**
|
|
474
|
-
*
|
|
474
|
+
* Minimum Uniswap transfer amount required to register.
|
|
475
475
|
**/
|
|
476
|
-
|
|
476
|
+
minimumUniswapTransfer: u128 & AugmentedConst<ApiType>;
|
|
477
477
|
/**
|
|
478
|
-
*
|
|
478
|
+
* Mining seats required to become operational.
|
|
479
479
|
**/
|
|
480
|
-
|
|
480
|
+
miningSeatsForOperational: u32 & AugmentedConst<ApiType>;
|
|
481
481
|
/**
|
|
482
|
-
*
|
|
482
|
+
* Mining seats required per follow-on access code after an account becomes
|
|
483
|
+
* operational.
|
|
483
484
|
**/
|
|
484
|
-
|
|
485
|
+
miningSeatsPerAccessCode: u32 & AugmentedConst<ApiType>;
|
|
485
486
|
/**
|
|
486
|
-
* Default bonus reward paid every operational
|
|
487
|
+
* Default bonus reward paid every operational certification threshold.
|
|
487
488
|
**/
|
|
488
|
-
|
|
489
|
+
operationalCertificationBonusReward: u128 & AugmentedConst<ApiType>;
|
|
489
490
|
/**
|
|
490
|
-
*
|
|
491
|
+
* Default reward paid when an account becomes operationally certified.
|
|
491
492
|
**/
|
|
492
|
-
|
|
493
|
+
operationalCertificationReward: u128 & AugmentedConst<ApiType>;
|
|
493
494
|
/**
|
|
494
|
-
*
|
|
495
|
+
* Number of operational certifications required per bonus reward.
|
|
495
496
|
**/
|
|
496
|
-
|
|
497
|
+
operationalCertificationsPerBonusReward: u32 & AugmentedConst<ApiType>;
|
|
497
498
|
/**
|
|
498
|
-
* Minimum
|
|
499
|
+
* Minimum total Uniswap transfer amount required for operational certification.
|
|
499
500
|
**/
|
|
500
|
-
|
|
501
|
+
operationalMinimumUniswapTransfer: u128 & AugmentedConst<ApiType>;
|
|
501
502
|
/**
|
|
502
|
-
* Minimum
|
|
503
|
+
* Minimum vault securitization required to become operational.
|
|
503
504
|
**/
|
|
504
|
-
|
|
505
|
+
operationalMinimumVaultSecuritization: u128 & AugmentedConst<ApiType>;
|
|
505
506
|
};
|
|
506
507
|
ownership: {
|
|
507
508
|
/**
|
|
@@ -1547,7 +1548,7 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
1547
1548
|
**/
|
|
1548
1549
|
InvalidBidAmount: AugmentedError<ApiType>;
|
|
1549
1550
|
/**
|
|
1550
|
-
* Mining slot bidding currently requires prior operational-account
|
|
1551
|
+
* Mining slot bidding currently requires a prior operational-account upgrade.
|
|
1551
1552
|
**/
|
|
1552
1553
|
OperationalAccountRegistrationRequired: AugmentedError<ApiType>;
|
|
1553
1554
|
/**
|
|
@@ -1731,25 +1732,25 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
1731
1732
|
**/
|
|
1732
1733
|
AccountAlreadyLinked: AugmentedError<ApiType>;
|
|
1733
1734
|
/**
|
|
1734
|
-
* The
|
|
1735
|
+
* The account is already operationally certified.
|
|
1735
1736
|
**/
|
|
1736
|
-
|
|
1737
|
-
/**
|
|
1738
|
-
* The account is already operational.
|
|
1739
|
-
**/
|
|
1740
|
-
AlreadyOperational: AugmentedError<ApiType>;
|
|
1737
|
+
AlreadyOperationallyCertified: AugmentedError<ApiType>;
|
|
1741
1738
|
/**
|
|
1742
1739
|
* The caller already registered an operational account.
|
|
1743
1740
|
**/
|
|
1744
1741
|
AlreadyRegistered: AugmentedError<ApiType>;
|
|
1745
1742
|
/**
|
|
1746
|
-
* An account cannot
|
|
1743
|
+
* An account cannot grant access to itself.
|
|
1747
1744
|
**/
|
|
1748
|
-
|
|
1745
|
+
CannotGrantAccessToSelf: AugmentedError<ApiType>;
|
|
1749
1746
|
/**
|
|
1750
1747
|
* The encrypted server payload exceeds the configured max length.
|
|
1751
1748
|
**/
|
|
1752
1749
|
EncryptedServerTooLong: AugmentedError<ApiType>;
|
|
1750
|
+
/**
|
|
1751
|
+
* The upstream access proof is invalid.
|
|
1752
|
+
**/
|
|
1753
|
+
InvalidAccessProof: AugmentedError<ApiType>;
|
|
1753
1754
|
/**
|
|
1754
1755
|
* One of the linked account ownership proofs is invalid.
|
|
1755
1756
|
**/
|
|
@@ -1759,9 +1760,9 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
1759
1760
|
**/
|
|
1760
1761
|
InvalidRegistrationSubmitter: AugmentedError<ApiType>;
|
|
1761
1762
|
/**
|
|
1762
|
-
* The requested
|
|
1763
|
+
* The requested account does not currently satisfy the minimums.
|
|
1763
1764
|
**/
|
|
1764
|
-
|
|
1765
|
+
MinimumsNotMet: AugmentedError<ApiType>;
|
|
1765
1766
|
/**
|
|
1766
1767
|
* The operational account has no pending rewards to claim.
|
|
1767
1768
|
**/
|
|
@@ -1779,21 +1780,9 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
1779
1780
|
**/
|
|
1780
1781
|
NotOperationalAccount: AugmentedError<ApiType>;
|
|
1781
1782
|
/**
|
|
1782
|
-
* The caller is not the
|
|
1783
|
-
**/
|
|
1784
|
-
NotReferrerOfAccount: AugmentedError<ApiType>;
|
|
1785
|
-
/**
|
|
1786
|
-
* The requested account has not reached treasury certification.
|
|
1783
|
+
* The caller is not the upstream account for the requested downstream account.
|
|
1787
1784
|
**/
|
|
1788
|
-
|
|
1789
|
-
/**
|
|
1790
|
-
* The requested referrer does not have a registered operational account.
|
|
1791
|
-
**/
|
|
1792
|
-
ReferrerNotOperationalAccount: AugmentedError<ApiType>;
|
|
1793
|
-
/**
|
|
1794
|
-
* The requested referrer does not match the referrer recorded during registration.
|
|
1795
|
-
**/
|
|
1796
|
-
RegisteredReferrerMismatch: AugmentedError<ApiType>;
|
|
1785
|
+
NotUpstreamOfDownstream: AugmentedError<ApiType>;
|
|
1797
1786
|
/**
|
|
1798
1787
|
* A valid invite is required to register an operational account.
|
|
1799
1788
|
**/
|
|
@@ -1810,14 +1799,18 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
1810
1799
|
* Reward claims must be whole Argon increments.
|
|
1811
1800
|
**/
|
|
1812
1801
|
RewardClaimNotWholeArgon: AugmentedError<ApiType>;
|
|
1813
|
-
/**
|
|
1814
|
-
* The requested account no longer satisfies treasury certification requirements.
|
|
1815
|
-
**/
|
|
1816
|
-
TreasuryCertificationNoLongerMet: AugmentedError<ApiType>;
|
|
1817
1802
|
/**
|
|
1818
1803
|
* The treasury does not currently have enough available reserves for the claim.
|
|
1819
1804
|
**/
|
|
1820
1805
|
TreasuryInsufficientFunds: AugmentedError<ApiType>;
|
|
1806
|
+
/**
|
|
1807
|
+
* The requested upstream account does not have any available access codes.
|
|
1808
|
+
**/
|
|
1809
|
+
UpstreamHasNoAvailableAccessCodes: AugmentedError<ApiType>;
|
|
1810
|
+
/**
|
|
1811
|
+
* The requested upstream account does not have a registered operational account.
|
|
1812
|
+
**/
|
|
1813
|
+
UpstreamNotOperationalAccount: AugmentedError<ApiType>;
|
|
1821
1814
|
};
|
|
1822
1815
|
ownership: {
|
|
1823
1816
|
/**
|
|
@@ -2136,7 +2129,7 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
2136
2129
|
**/
|
|
2137
2130
|
NoVaultBitcoinPubkeysAvailable: AugmentedError<ApiType>;
|
|
2138
2131
|
/**
|
|
2139
|
-
* Vault creation currently requires prior operational-account
|
|
2132
|
+
* Vault creation currently requires a prior operational-account upgrade.
|
|
2140
2133
|
**/
|
|
2141
2134
|
OperationalAccountRegistrationRequired: AugmentedError<ApiType>;
|
|
2142
2135
|
/**
|
|
@@ -3492,39 +3485,29 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3492
3485
|
};
|
|
3493
3486
|
operationalAccounts: {
|
|
3494
3487
|
/**
|
|
3495
|
-
* Account has
|
|
3488
|
+
* Account has met the registration minimums.
|
|
3496
3489
|
**/
|
|
3497
|
-
|
|
3490
|
+
AccountMeetsMinimums: AugmentedEvent<ApiType, [
|
|
3498
3491
|
account: AccountId32
|
|
3499
3492
|
], {
|
|
3500
3493
|
account: AccountId32;
|
|
3501
3494
|
}>;
|
|
3502
3495
|
/**
|
|
3503
|
-
*
|
|
3504
|
-
**/
|
|
3505
|
-
AccountUpgradeGranted: AugmentedEvent<ApiType, [
|
|
3506
|
-
account: AccountId32,
|
|
3507
|
-
referrer: AccountId32
|
|
3508
|
-
], {
|
|
3509
|
-
account: AccountId32;
|
|
3510
|
-
referrer: AccountId32;
|
|
3511
|
-
}>;
|
|
3512
|
-
/**
|
|
3513
|
-
* Account has become operational.
|
|
3496
|
+
* Account has become operationally certified.
|
|
3514
3497
|
**/
|
|
3515
|
-
|
|
3498
|
+
AccountOperationallyCertified: AugmentedEvent<ApiType, [
|
|
3516
3499
|
account: AccountId32
|
|
3517
3500
|
], {
|
|
3518
3501
|
account: AccountId32;
|
|
3519
3502
|
}>;
|
|
3520
3503
|
/**
|
|
3521
|
-
*
|
|
3504
|
+
* An upstream account updated the encrypted server payload for a downstream account.
|
|
3522
3505
|
**/
|
|
3523
3506
|
EncryptedServerUpdated: AugmentedEvent<ApiType, [
|
|
3524
|
-
|
|
3507
|
+
upstreamAccount: AccountId32,
|
|
3525
3508
|
downstreamAccount: AccountId32
|
|
3526
3509
|
], {
|
|
3527
|
-
|
|
3510
|
+
upstreamAccount: AccountId32;
|
|
3528
3511
|
downstreamAccount: AccountId32;
|
|
3529
3512
|
}>;
|
|
3530
3513
|
/**
|
|
@@ -3534,12 +3517,12 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3534
3517
|
operationalAccount: AccountId32,
|
|
3535
3518
|
vaultAccount: AccountId32,
|
|
3536
3519
|
miningAccount: AccountId32,
|
|
3537
|
-
|
|
3520
|
+
upstreamAccount: Option<AccountId32>
|
|
3538
3521
|
], {
|
|
3539
3522
|
operationalAccount: AccountId32;
|
|
3540
3523
|
vaultAccount: AccountId32;
|
|
3541
3524
|
miningAccount: AccountId32;
|
|
3542
|
-
|
|
3525
|
+
upstreamAccount: Option<AccountId32>;
|
|
3543
3526
|
}>;
|
|
3544
3527
|
/**
|
|
3545
3528
|
* Operational progress was forced by root.
|
|
@@ -3547,7 +3530,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3547
3530
|
OperationalProgressForced: AugmentedEvent<ApiType, [
|
|
3548
3531
|
account: AccountId32,
|
|
3549
3532
|
updateOperationalProgress: bool,
|
|
3550
|
-
|
|
3533
|
+
meetsMinimums: bool,
|
|
3551
3534
|
uniswapArgonTransfersInAmount: u128,
|
|
3552
3535
|
accountBitcoinAmount: u128,
|
|
3553
3536
|
accountVaultBondAmount: u128,
|
|
@@ -3557,7 +3540,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3557
3540
|
], {
|
|
3558
3541
|
account: AccountId32;
|
|
3559
3542
|
updateOperationalProgress: bool;
|
|
3560
|
-
|
|
3543
|
+
meetsMinimums: bool;
|
|
3561
3544
|
uniswapArgonTransfersInAmount: u128;
|
|
3562
3545
|
accountBitcoinAmount: u128;
|
|
3563
3546
|
accountVaultBondAmount: u128;
|
|
@@ -3595,11 +3578,11 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3595
3578
|
* Reward config values were updated.
|
|
3596
3579
|
**/
|
|
3597
3580
|
RewardsConfigUpdated: AugmentedEvent<ApiType, [
|
|
3598
|
-
|
|
3599
|
-
|
|
3581
|
+
operationalCertificationReward: u128,
|
|
3582
|
+
operationalCertificationBonusReward: u128
|
|
3600
3583
|
], {
|
|
3601
|
-
|
|
3602
|
-
|
|
3584
|
+
operationalCertificationReward: u128;
|
|
3585
|
+
operationalCertificationBonusReward: u128;
|
|
3603
3586
|
}>;
|
|
3604
3587
|
};
|
|
3605
3588
|
ownership: {
|
|
@@ -5331,7 +5314,7 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
5331
5314
|
};
|
|
5332
5315
|
operationalAccounts: {
|
|
5333
5316
|
/**
|
|
5334
|
-
* Opaque encrypted
|
|
5317
|
+
* Opaque encrypted upstream server payload keyed by the downstream account.
|
|
5335
5318
|
**/
|
|
5336
5319
|
encryptedServerByDownstreamAccount: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<Bytes>>, [
|
|
5337
5320
|
AccountId32
|
|
@@ -5339,7 +5322,7 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
5339
5322
|
/**
|
|
5340
5323
|
* Whether operational-account access is invite-only.
|
|
5341
5324
|
*
|
|
5342
|
-
* When enabled, registration requires
|
|
5325
|
+
* When enabled, registration requires an upstream invite and vault creation plus
|
|
5343
5326
|
* mining-slot bidding remain restricted to registered operational accounts.
|
|
5344
5327
|
*
|
|
5345
5328
|
* Existing live raw chain specs do not contain this key, so the default remains invite-only
|
|
@@ -6661,7 +6644,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6661
6644
|
/**
|
|
6662
6645
|
* Register vault and mining accounts for an operational account.
|
|
6663
6646
|
* Any account in the registration may submit the transaction.
|
|
6664
|
-
* When invite-only is enabled, the registration must include
|
|
6647
|
+
* When invite-only is enabled, the registration must include an upstream access proof.
|
|
6665
6648
|
**/
|
|
6666
6649
|
register: AugmentedSubmittable<(registration: PalletOperationalAccountsRegistration | {
|
|
6667
6650
|
V1: any;
|
|
@@ -6669,25 +6652,19 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6669
6652
|
PalletOperationalAccountsRegistration
|
|
6670
6653
|
]>;
|
|
6671
6654
|
/**
|
|
6672
|
-
* Store an opaque encrypted
|
|
6655
|
+
* Store an opaque encrypted upstream server payload for a downstream account.
|
|
6673
6656
|
**/
|
|
6674
6657
|
setEncryptedServerForDownstreamAccount: AugmentedSubmittable<(downstreamAccount: AccountId32 | string | Uint8Array, encryptedServer: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6675
6658
|
AccountId32,
|
|
6676
6659
|
Bytes
|
|
6677
6660
|
]>;
|
|
6678
6661
|
/**
|
|
6679
|
-
* Update reward amounts for operational accounts.
|
|
6662
|
+
* Update certification reward amounts for operational accounts.
|
|
6680
6663
|
**/
|
|
6681
|
-
setRewardConfig: AugmentedSubmittable<(
|
|
6664
|
+
setRewardConfig: AugmentedSubmittable<(operationalCertificationReward: u128 | AnyNumber | Uint8Array, operationalCertificationBonusReward: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6682
6665
|
u128,
|
|
6683
6666
|
u128
|
|
6684
6667
|
]>;
|
|
6685
|
-
/**
|
|
6686
|
-
* Grant a referrer upgrade to an already-registered operational account.
|
|
6687
|
-
**/
|
|
6688
|
-
upgradeAccount: AugmentedSubmittable<(accountId: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6689
|
-
AccountId32
|
|
6690
|
-
]>;
|
|
6691
6668
|
};
|
|
6692
6669
|
ownership: {
|
|
6693
6670
|
/**
|
|
@@ -11198,19 +11175,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
11198
11175
|
readonly operationalAccount: AccountId32;
|
|
11199
11176
|
readonly vaultAccount: AccountId32;
|
|
11200
11177
|
readonly miningAccount: AccountId32;
|
|
11201
|
-
readonly
|
|
11202
|
-
} & Struct;
|
|
11203
|
-
readonly isAccountUpgradeGranted: boolean;
|
|
11204
|
-
readonly asAccountUpgradeGranted: {
|
|
11205
|
-
readonly account: AccountId32;
|
|
11206
|
-
readonly referrer: AccountId32;
|
|
11178
|
+
readonly upstreamAccount: Option<AccountId32>;
|
|
11207
11179
|
} & Struct;
|
|
11208
|
-
readonly
|
|
11209
|
-
readonly
|
|
11180
|
+
readonly isAccountMeetsMinimums: boolean;
|
|
11181
|
+
readonly asAccountMeetsMinimums: {
|
|
11210
11182
|
readonly account: AccountId32;
|
|
11211
11183
|
} & Struct;
|
|
11212
|
-
readonly
|
|
11213
|
-
readonly
|
|
11184
|
+
readonly isAccountOperationallyCertified: boolean;
|
|
11185
|
+
readonly asAccountOperationallyCertified: {
|
|
11214
11186
|
readonly account: AccountId32;
|
|
11215
11187
|
} & Struct;
|
|
11216
11188
|
readonly isOperationalRewardEarned: boolean;
|
|
@@ -11228,14 +11200,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
11228
11200
|
} & Struct;
|
|
11229
11201
|
readonly isRewardsConfigUpdated: boolean;
|
|
11230
11202
|
readonly asRewardsConfigUpdated: {
|
|
11231
|
-
readonly
|
|
11232
|
-
readonly
|
|
11203
|
+
readonly operationalCertificationReward: u128;
|
|
11204
|
+
readonly operationalCertificationBonusReward: u128;
|
|
11233
11205
|
} & Struct;
|
|
11234
11206
|
readonly isOperationalProgressForced: boolean;
|
|
11235
11207
|
readonly asOperationalProgressForced: {
|
|
11236
11208
|
readonly account: AccountId32;
|
|
11237
11209
|
readonly updateOperationalProgress: bool;
|
|
11238
|
-
readonly
|
|
11210
|
+
readonly meetsMinimums: bool;
|
|
11239
11211
|
readonly uniswapArgonTransfersInAmount: u128;
|
|
11240
11212
|
readonly accountBitcoinAmount: u128;
|
|
11241
11213
|
readonly accountVaultBondAmount: u128;
|
|
@@ -11245,16 +11217,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
11245
11217
|
} & Struct;
|
|
11246
11218
|
readonly isEncryptedServerUpdated: boolean;
|
|
11247
11219
|
readonly asEncryptedServerUpdated: {
|
|
11248
|
-
readonly
|
|
11220
|
+
readonly upstreamAccount: AccountId32;
|
|
11249
11221
|
readonly downstreamAccount: AccountId32;
|
|
11250
11222
|
} & Struct;
|
|
11251
|
-
readonly type: 'OperationalAccountRegistered' | '
|
|
11223
|
+
readonly type: 'OperationalAccountRegistered' | 'AccountMeetsMinimums' | 'AccountOperationallyCertified' | 'OperationalRewardEarned' | 'OperationalRewardsClaimed' | 'RewardsConfigUpdated' | 'OperationalProgressForced' | 'EncryptedServerUpdated';
|
|
11252
11224
|
}
|
|
11253
11225
|
/** @name ArgonPrimitivesProvidersOperationalRewardKind (126) */
|
|
11254
11226
|
interface ArgonPrimitivesProvidersOperationalRewardKind extends Enum {
|
|
11255
|
-
readonly
|
|
11256
|
-
readonly
|
|
11257
|
-
readonly type: '
|
|
11227
|
+
readonly isCertification: boolean;
|
|
11228
|
+
readonly isOperationalCertificationBonus: boolean;
|
|
11229
|
+
readonly type: 'Certification' | 'OperationalCertificationBonus';
|
|
11258
11230
|
}
|
|
11259
11231
|
/** @name PalletEthereumVerifierEvent (127) */
|
|
11260
11232
|
interface PalletEthereumVerifierEvent extends Enum {
|
|
@@ -12380,14 +12352,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
12380
12352
|
readonly asRegister: {
|
|
12381
12353
|
readonly registration: PalletOperationalAccountsRegistration;
|
|
12382
12354
|
} & Struct;
|
|
12383
|
-
readonly isUpgradeAccount: boolean;
|
|
12384
|
-
readonly asUpgradeAccount: {
|
|
12385
|
-
readonly accountId: AccountId32;
|
|
12386
|
-
} & Struct;
|
|
12387
12355
|
readonly isSetRewardConfig: boolean;
|
|
12388
12356
|
readonly asSetRewardConfig: {
|
|
12389
|
-
readonly
|
|
12390
|
-
readonly
|
|
12357
|
+
readonly operationalCertificationReward: u128;
|
|
12358
|
+
readonly operationalCertificationBonusReward: u128;
|
|
12391
12359
|
} & Struct;
|
|
12392
12360
|
readonly isForceSetProgress: boolean;
|
|
12393
12361
|
readonly asForceSetProgress: {
|
|
@@ -12405,7 +12373,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12405
12373
|
readonly asClaimRewards: {
|
|
12406
12374
|
readonly amount: u128;
|
|
12407
12375
|
} & Struct;
|
|
12408
|
-
readonly type: 'Register' | '
|
|
12376
|
+
readonly type: 'Register' | 'SetRewardConfig' | 'ForceSetProgress' | 'SetEncryptedServerForDownstreamAccount' | 'Activate' | 'ClaimRewards';
|
|
12409
12377
|
}
|
|
12410
12378
|
/** @name PalletOperationalAccountsRegistration (275) */
|
|
12411
12379
|
interface PalletOperationalAccountsRegistration extends Enum {
|
|
@@ -12422,7 +12390,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12422
12390
|
readonly miningAccount: AccountId32;
|
|
12423
12391
|
readonly vaultAccountProof: PalletOperationalAccountsAccountOwnershipProof;
|
|
12424
12392
|
readonly miningAccountProof: PalletOperationalAccountsAccountOwnershipProof;
|
|
12425
|
-
readonly
|
|
12393
|
+
readonly accessProof: Option<PalletOperationalAccountsUpstreamAccessProof>;
|
|
12426
12394
|
}
|
|
12427
12395
|
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (277) */
|
|
12428
12396
|
interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {
|
|
@@ -12431,7 +12399,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
12431
12399
|
interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
|
|
12432
12400
|
readonly signature: SpRuntimeMultiSignature;
|
|
12433
12401
|
}
|
|
12434
|
-
/** @name
|
|
12402
|
+
/** @name PalletOperationalAccountsUpstreamAccessProof (280) */
|
|
12403
|
+
interface PalletOperationalAccountsUpstreamAccessProof extends Struct {
|
|
12404
|
+
readonly upstreamAccount: AccountId32;
|
|
12405
|
+
readonly signature: SpRuntimeMultiSignature;
|
|
12406
|
+
}
|
|
12407
|
+
/** @name PalletOperationalAccountsOperationalProgressPatch (281) */
|
|
12435
12408
|
interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
|
|
12436
12409
|
readonly uniswapArgonTransfersInAmount: Option<u128>;
|
|
12437
12410
|
readonly accountBitcoinAmount: Option<u128>;
|
|
@@ -12440,7 +12413,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12440
12413
|
readonly vaultBitcoinAmount: Option<u128>;
|
|
12441
12414
|
readonly miningSeatCount: Option<u32>;
|
|
12442
12415
|
}
|
|
12443
|
-
/** @name PalletEthereumVerifierCall (
|
|
12416
|
+
/** @name PalletEthereumVerifierCall (283) */
|
|
12444
12417
|
interface PalletEthereumVerifierCall extends Enum {
|
|
12445
12418
|
readonly isForceCheckpoint: boolean;
|
|
12446
12419
|
readonly asForceCheckpoint: {
|
|
@@ -12463,7 +12436,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12463
12436
|
} & Struct;
|
|
12464
12437
|
readonly type: 'ForceCheckpoint' | 'Submit' | 'ImportTrustedExecutionHeaderBackfill' | 'SetOperatingMode';
|
|
12465
12438
|
}
|
|
12466
|
-
/** @name PalletEthereumVerifierCheckpointUpdate (
|
|
12439
|
+
/** @name PalletEthereumVerifierCheckpointUpdate (284) */
|
|
12467
12440
|
interface PalletEthereumVerifierCheckpointUpdate extends Struct {
|
|
12468
12441
|
readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
12469
12442
|
readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
@@ -12471,7 +12444,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12471
12444
|
readonly validatorsRoot: H256;
|
|
12472
12445
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
12473
12446
|
}
|
|
12474
|
-
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (
|
|
12447
|
+
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (285) */
|
|
12475
12448
|
interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
|
|
12476
12449
|
readonly slot: u64;
|
|
12477
12450
|
readonly proposerIndex: u64;
|
|
@@ -12479,20 +12452,20 @@ declare module '@polkadot/types/lookup' {
|
|
|
12479
12452
|
readonly stateRoot: H256;
|
|
12480
12453
|
readonly bodyRoot: H256;
|
|
12481
12454
|
}
|
|
12482
|
-
/** @name PalletEthereumVerifierSyncCommittee (
|
|
12455
|
+
/** @name PalletEthereumVerifierSyncCommittee (286) */
|
|
12483
12456
|
interface PalletEthereumVerifierSyncCommittee extends Struct {
|
|
12484
12457
|
readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
|
|
12485
12458
|
readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
|
|
12486
12459
|
}
|
|
12487
|
-
/** @name SnowbridgeBeaconPrimitivesPublicKey (
|
|
12460
|
+
/** @name SnowbridgeBeaconPrimitivesPublicKey (288) */
|
|
12488
12461
|
interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {
|
|
12489
12462
|
}
|
|
12490
|
-
/** @name PalletEthereumVerifierExecutionHeaderProof (
|
|
12463
|
+
/** @name PalletEthereumVerifierExecutionHeaderProof (292) */
|
|
12491
12464
|
interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
|
|
12492
12465
|
readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
|
|
12493
12466
|
readonly executionBranch: Vec<H256>;
|
|
12494
12467
|
}
|
|
12495
|
-
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (
|
|
12468
|
+
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (293) */
|
|
12496
12469
|
interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
|
|
12497
12470
|
readonly isCapella: boolean;
|
|
12498
12471
|
readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
|
|
@@ -12500,7 +12473,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12500
12473
|
readonly asDeneb: SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader;
|
|
12501
12474
|
readonly type: 'Capella' | 'Deneb';
|
|
12502
12475
|
}
|
|
12503
|
-
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (
|
|
12476
|
+
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (294) */
|
|
12504
12477
|
interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
|
|
12505
12478
|
readonly parentHash: H256;
|
|
12506
12479
|
readonly feeRecipient: H160;
|
|
@@ -12518,7 +12491,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12518
12491
|
readonly transactionsRoot: H256;
|
|
12519
12492
|
readonly withdrawalsRoot: H256;
|
|
12520
12493
|
}
|
|
12521
|
-
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (
|
|
12494
|
+
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (295) */
|
|
12522
12495
|
interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
|
|
12523
12496
|
readonly parentHash: H256;
|
|
12524
12497
|
readonly feeRecipient: H160;
|
|
@@ -12538,7 +12511,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12538
12511
|
readonly blobGasUsed: u64;
|
|
12539
12512
|
readonly excessBlobGas: u64;
|
|
12540
12513
|
}
|
|
12541
|
-
/** @name PalletEthereumVerifierForkVersions (
|
|
12514
|
+
/** @name PalletEthereumVerifierForkVersions (296) */
|
|
12542
12515
|
interface PalletEthereumVerifierForkVersions extends Struct {
|
|
12543
12516
|
readonly genesis: PalletEthereumVerifierFork;
|
|
12544
12517
|
readonly altair: PalletEthereumVerifierFork;
|
|
@@ -12548,12 +12521,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
12548
12521
|
readonly electra: PalletEthereumVerifierFork;
|
|
12549
12522
|
readonly fulu: PalletEthereumVerifierFork;
|
|
12550
12523
|
}
|
|
12551
|
-
/** @name PalletEthereumVerifierFork (
|
|
12524
|
+
/** @name PalletEthereumVerifierFork (297) */
|
|
12552
12525
|
interface PalletEthereumVerifierFork extends Struct {
|
|
12553
12526
|
readonly version: U8aFixed;
|
|
12554
12527
|
readonly epoch: Compact<u64>;
|
|
12555
12528
|
}
|
|
12556
|
-
/** @name PalletEthereumVerifierUpdate (
|
|
12529
|
+
/** @name PalletEthereumVerifierUpdate (298) */
|
|
12557
12530
|
interface PalletEthereumVerifierUpdate extends Struct {
|
|
12558
12531
|
readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
12559
12532
|
readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
|
|
@@ -12563,20 +12536,20 @@ declare module '@polkadot/types/lookup' {
|
|
|
12563
12536
|
readonly finalityBranch: Vec<H256>;
|
|
12564
12537
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
12565
12538
|
}
|
|
12566
|
-
/** @name PalletEthereumVerifierSyncAggregate (
|
|
12539
|
+
/** @name PalletEthereumVerifierSyncAggregate (299) */
|
|
12567
12540
|
interface PalletEthereumVerifierSyncAggregate extends Struct {
|
|
12568
12541
|
readonly syncCommitteeBits: Bytes;
|
|
12569
12542
|
readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
|
|
12570
12543
|
}
|
|
12571
|
-
/** @name SnowbridgeBeaconPrimitivesSignature (
|
|
12544
|
+
/** @name SnowbridgeBeaconPrimitivesSignature (301) */
|
|
12572
12545
|
interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {
|
|
12573
12546
|
}
|
|
12574
|
-
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (
|
|
12547
|
+
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (304) */
|
|
12575
12548
|
interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
|
|
12576
12549
|
readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
12577
12550
|
readonly nextSyncCommitteeBranch: Vec<H256>;
|
|
12578
12551
|
}
|
|
12579
|
-
/** @name PalletCrosschainTransferCall (
|
|
12552
|
+
/** @name PalletCrosschainTransferCall (305) */
|
|
12580
12553
|
interface PalletCrosschainTransferCall extends Enum {
|
|
12581
12554
|
readonly isSetChainConfig: boolean;
|
|
12582
12555
|
readonly asSetChainConfig: {
|
|
@@ -12652,7 +12625,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12652
12625
|
} & Struct;
|
|
12653
12626
|
readonly type: 'SetChainConfig' | 'ForceSetGlobalIssuanceCouncil' | 'PauseGateway' | 'UnpauseGateway' | 'SetMinimumMintingAuthorityValue' | 'SetMintingAuthorityActivationRepaymentPricing' | 'RegisterCouncilSigner' | 'ApproveQueueEntries' | 'ProveGatewayActivity' | 'RegisterMintingAuthority' | 'DeactivateMintingAuthority' | 'TransferOut' | 'CollateralizeTransfer';
|
|
12654
12627
|
}
|
|
12655
|
-
/** @name PalletCrosschainTransferChainConfig (
|
|
12628
|
+
/** @name PalletCrosschainTransferChainConfig (306) */
|
|
12656
12629
|
interface PalletCrosschainTransferChainConfig extends Enum {
|
|
12657
12630
|
readonly isEvm: boolean;
|
|
12658
12631
|
readonly asEvm: {
|
|
@@ -12663,55 +12636,55 @@ declare module '@polkadot/types/lookup' {
|
|
|
12663
12636
|
} & Struct;
|
|
12664
12637
|
readonly type: 'Evm';
|
|
12665
12638
|
}
|
|
12666
|
-
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (
|
|
12639
|
+
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (308) */
|
|
12667
12640
|
interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
|
|
12668
12641
|
readonly activationGasCost: Compact<u128>;
|
|
12669
12642
|
readonly signatureGasCost: Compact<u128>;
|
|
12670
12643
|
readonly estimatedWeiPerGas: Compact<u128>;
|
|
12671
12644
|
readonly estimatedMicrogonsPerEth: u128;
|
|
12672
12645
|
}
|
|
12673
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (
|
|
12646
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (311) */
|
|
12674
12647
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
|
|
12675
12648
|
readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
|
|
12676
12649
|
readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
|
|
12677
12650
|
}
|
|
12678
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (
|
|
12651
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (312) */
|
|
12679
12652
|
interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
|
|
12680
12653
|
readonly anchorBlockHash: H256;
|
|
12681
12654
|
readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
|
|
12682
12655
|
}
|
|
12683
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (
|
|
12656
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (314) */
|
|
12684
12657
|
interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
|
|
12685
12658
|
readonly rlp: Bytes;
|
|
12686
12659
|
}
|
|
12687
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (
|
|
12660
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (318) */
|
|
12688
12661
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
|
|
12689
12662
|
readonly targetBlockNumber: Compact<u64>;
|
|
12690
12663
|
readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
|
|
12691
12664
|
readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
|
|
12692
12665
|
}
|
|
12693
|
-
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (
|
|
12666
|
+
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (319) */
|
|
12694
12667
|
interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
|
|
12695
12668
|
readonly nodes: Vec<Bytes>;
|
|
12696
12669
|
readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
|
|
12697
12670
|
}
|
|
12698
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (
|
|
12671
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (323) */
|
|
12699
12672
|
interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
|
|
12700
12673
|
readonly transactionIndex: Compact<u64>;
|
|
12701
12674
|
readonly nodeIndexes: Vec<u16>;
|
|
12702
12675
|
}
|
|
12703
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (
|
|
12676
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (328) */
|
|
12704
12677
|
interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
|
|
12705
12678
|
readonly transactionIndex: Compact<u64>;
|
|
12706
12679
|
readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
|
|
12707
12680
|
}
|
|
12708
|
-
/** @name ArgonPrimitivesEthereumEthereumLog (
|
|
12681
|
+
/** @name ArgonPrimitivesEthereumEthereumLog (329) */
|
|
12709
12682
|
interface ArgonPrimitivesEthereumEthereumLog extends Struct {
|
|
12710
12683
|
readonly address: H160;
|
|
12711
12684
|
readonly topics: Vec<H256>;
|
|
12712
12685
|
readonly data: Bytes;
|
|
12713
12686
|
}
|
|
12714
|
-
/** @name PalletMultisigError (
|
|
12687
|
+
/** @name PalletMultisigError (335) */
|
|
12715
12688
|
interface PalletMultisigError extends Enum {
|
|
12716
12689
|
readonly isMinimumThreshold: boolean;
|
|
12717
12690
|
readonly isAlreadyApproved: boolean;
|
|
@@ -12729,19 +12702,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
12729
12702
|
readonly isAlreadyStored: boolean;
|
|
12730
12703
|
readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored';
|
|
12731
12704
|
}
|
|
12732
|
-
/** @name PalletProxyProxyDefinition (
|
|
12705
|
+
/** @name PalletProxyProxyDefinition (338) */
|
|
12733
12706
|
interface PalletProxyProxyDefinition extends Struct {
|
|
12734
12707
|
readonly delegate: AccountId32;
|
|
12735
12708
|
readonly proxyType: ArgonRuntimeProxyType;
|
|
12736
12709
|
readonly delay: u32;
|
|
12737
12710
|
}
|
|
12738
|
-
/** @name PalletProxyAnnouncement (
|
|
12711
|
+
/** @name PalletProxyAnnouncement (342) */
|
|
12739
12712
|
interface PalletProxyAnnouncement extends Struct {
|
|
12740
12713
|
readonly real: AccountId32;
|
|
12741
12714
|
readonly callHash: H256;
|
|
12742
12715
|
readonly height: u32;
|
|
12743
12716
|
}
|
|
12744
|
-
/** @name PalletProxyError (
|
|
12717
|
+
/** @name PalletProxyError (344) */
|
|
12745
12718
|
interface PalletProxyError extends Enum {
|
|
12746
12719
|
readonly isTooMany: boolean;
|
|
12747
12720
|
readonly isNotFound: boolean;
|
|
@@ -12753,34 +12726,34 @@ declare module '@polkadot/types/lookup' {
|
|
|
12753
12726
|
readonly isNoSelfProxy: boolean;
|
|
12754
12727
|
readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy';
|
|
12755
12728
|
}
|
|
12756
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
12729
|
+
/** @name ArgonPrimitivesTickTicker (345) */
|
|
12757
12730
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
12758
12731
|
readonly tickDurationMillis: Compact<u64>;
|
|
12759
12732
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
12760
12733
|
}
|
|
12761
|
-
/** @name PalletTicksError (
|
|
12734
|
+
/** @name PalletTicksError (347) */
|
|
12762
12735
|
type PalletTicksError = Null;
|
|
12763
|
-
/** @name PalletMiningSlotMinerNonceScoring (
|
|
12736
|
+
/** @name PalletMiningSlotMinerNonceScoring (350) */
|
|
12764
12737
|
interface PalletMiningSlotMinerNonceScoring extends Struct {
|
|
12765
12738
|
readonly nonce: U256;
|
|
12766
12739
|
readonly lastWinBlock: Option<u32>;
|
|
12767
12740
|
readonly blocksWonInFrame: u16;
|
|
12768
12741
|
readonly frameStartBlocksWonSurplus: i16;
|
|
12769
12742
|
}
|
|
12770
|
-
/** @name ArgonPrimitivesBlockSealMiningBidStats (
|
|
12743
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (362) */
|
|
12771
12744
|
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
12772
12745
|
readonly bidsCount: u32;
|
|
12773
12746
|
readonly bidAmountMin: u128;
|
|
12774
12747
|
readonly bidAmountMax: u128;
|
|
12775
12748
|
readonly bidAmountSum: u128;
|
|
12776
12749
|
}
|
|
12777
|
-
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (
|
|
12750
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (366) */
|
|
12778
12751
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
12779
12752
|
readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
|
|
12780
12753
|
readonly ticksBetweenSlots: Compact<u64>;
|
|
12781
12754
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
12782
12755
|
}
|
|
12783
|
-
/** @name PalletMiningSlotError (
|
|
12756
|
+
/** @name PalletMiningSlotError (376) */
|
|
12784
12757
|
interface PalletMiningSlotError extends Enum {
|
|
12785
12758
|
readonly isSlotNotTakingBids: boolean;
|
|
12786
12759
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -12795,7 +12768,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12795
12768
|
readonly isUnrecoverableHold: boolean;
|
|
12796
12769
|
readonly type: 'SlotNotTakingBids' | 'TooManyBlockRegistrants' | 'InsufficientOwnershipTokens' | 'BidTooLow' | 'CannotRegisterOverlappingSessions' | 'CannotChangeFundingAccount' | 'InsufficientFunds' | 'BidCannotBeReduced' | 'InvalidBidAmount' | 'OperationalAccountRegistrationRequired' | 'UnrecoverableHold';
|
|
12797
12770
|
}
|
|
12798
|
-
/** @name ArgonPrimitivesBitcoinUtxoValue (
|
|
12771
|
+
/** @name ArgonPrimitivesBitcoinUtxoValue (377) */
|
|
12799
12772
|
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
12800
12773
|
readonly utxoId: u64;
|
|
12801
12774
|
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
@@ -12803,7 +12776,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12803
12776
|
readonly submittedAtHeight: Compact<u64>;
|
|
12804
12777
|
readonly watchForSpentUntilHeight: Compact<u64>;
|
|
12805
12778
|
}
|
|
12806
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (
|
|
12779
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (378) */
|
|
12807
12780
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
12808
12781
|
readonly isP2wsh: boolean;
|
|
12809
12782
|
readonly asP2wsh: {
|
|
@@ -12811,7 +12784,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12811
12784
|
} & Struct;
|
|
12812
12785
|
readonly type: 'P2wsh';
|
|
12813
12786
|
}
|
|
12814
|
-
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (
|
|
12787
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (387) */
|
|
12815
12788
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
12816
12789
|
readonly isBitcoin: boolean;
|
|
12817
12790
|
readonly isTestnet: boolean;
|
|
@@ -12819,7 +12792,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12819
12792
|
readonly isRegtest: boolean;
|
|
12820
12793
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
12821
12794
|
}
|
|
12822
|
-
/** @name PalletBitcoinUtxosError (
|
|
12795
|
+
/** @name PalletBitcoinUtxosError (388) */
|
|
12823
12796
|
interface PalletBitcoinUtxosError extends Enum {
|
|
12824
12797
|
readonly isNoPermissions: boolean;
|
|
12825
12798
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -12838,7 +12811,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12838
12811
|
readonly isLockAlreadyFunded: boolean;
|
|
12839
12812
|
readonly type: 'NoPermissions' | 'NoBitcoinConfirmedBlock' | 'InsufficientBitcoinAmount' | 'NoBitcoinPricesAvailable' | 'ScriptPubkeyConflict' | 'UtxoNotLocked' | 'RedemptionsUnavailable' | 'InvalidBitcoinSyncHeight' | 'BitcoinHeightNotConfirmed' | 'MaxUtxosExceeded' | 'InvalidBitcoinScript' | 'DuplicateUtxoId' | 'MaxCandidateUtxosExceeded' | 'UtxoNotCandidate' | 'LockAlreadyFunded';
|
|
12840
12813
|
}
|
|
12841
|
-
/** @name ArgonPrimitivesVault (
|
|
12814
|
+
/** @name ArgonPrimitivesVault (389) */
|
|
12842
12815
|
interface ArgonPrimitivesVault extends Struct {
|
|
12843
12816
|
readonly operatorAccountId: AccountId32;
|
|
12844
12817
|
readonly delegateAccountId: Option<AccountId32>;
|
|
@@ -12858,12 +12831,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
12858
12831
|
readonly openedTick: Compact<u64>;
|
|
12859
12832
|
readonly operationalMinimumReleaseTick: Option<u64>;
|
|
12860
12833
|
}
|
|
12861
|
-
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (
|
|
12834
|
+
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (396) */
|
|
12862
12835
|
interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
|
|
12863
12836
|
readonly committedMicronots: Compact<u128>;
|
|
12864
12837
|
readonly encumberedMicronots: Compact<u128>;
|
|
12865
12838
|
}
|
|
12866
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
12839
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (398) */
|
|
12867
12840
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
12868
12841
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
12869
12842
|
readonly depth: Compact<u8>;
|
|
@@ -12872,13 +12845,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
12872
12845
|
readonly chainCode: U8aFixed;
|
|
12873
12846
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
12874
12847
|
}
|
|
12875
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
12848
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (400) */
|
|
12876
12849
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
12877
12850
|
readonly isMain: boolean;
|
|
12878
12851
|
readonly isTest: boolean;
|
|
12879
12852
|
readonly type: 'Main' | 'Test';
|
|
12880
12853
|
}
|
|
12881
|
-
/** @name PalletVaultsVaultFrameRevenue (
|
|
12854
|
+
/** @name PalletVaultsVaultFrameRevenue (409) */
|
|
12882
12855
|
interface PalletVaultsVaultFrameRevenue extends Struct {
|
|
12883
12856
|
readonly frameId: Compact<u64>;
|
|
12884
12857
|
readonly bitcoinLockFeeRevenue: Compact<u128>;
|
|
@@ -12897,14 +12870,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
12897
12870
|
readonly treasuryExternalCapital: Compact<u128>;
|
|
12898
12871
|
readonly uncollectedRevenue: Compact<u128>;
|
|
12899
12872
|
}
|
|
12900
|
-
/** @name PalletVaultsRecentCapacityDrop (
|
|
12873
|
+
/** @name PalletVaultsRecentCapacityDrop (412) */
|
|
12901
12874
|
interface PalletVaultsRecentCapacityDrop extends Struct {
|
|
12902
12875
|
readonly blockNumber: Compact<u32>;
|
|
12903
12876
|
readonly availableBeforeDrop: Compact<u128>;
|
|
12904
12877
|
readonly availableAfterDrop: Compact<u128>;
|
|
12905
12878
|
readonly noFeeFailuresUsed: Compact<u32>;
|
|
12906
12879
|
}
|
|
12907
|
-
/** @name PalletVaultsError (
|
|
12880
|
+
/** @name PalletVaultsError (414) */
|
|
12908
12881
|
interface PalletVaultsError extends Enum {
|
|
12909
12882
|
readonly isNoMoreVaultIds: boolean;
|
|
12910
12883
|
readonly isInsufficientFunds: boolean;
|
|
@@ -12942,7 +12915,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12942
12915
|
readonly isCommittedArgonotsBelowEncumberedBacking: boolean;
|
|
12943
12916
|
readonly type: 'NoMoreVaultIds' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'AccountBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'VaultReductionBelowSecuritization' | 'InvalidSecuritization' | 'ReusedVaultBitcoinXpub' | 'InvalidBitcoinScript' | 'InvalidXpubkey' | 'WrongXpubNetwork' | 'UnsafeXpubkey' | 'UnableToDeriveVaultXpubChild' | 'BitcoinConversionFailed' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'VaultNotYetActive' | 'NoVaultBitcoinPubkeysAvailable' | 'TermsModificationOverflow' | 'TermsChangeAlreadyScheduled' | 'InternalError' | 'UnableToGenerateVaultBitcoinPubkey' | 'FundingChangeAlreadyScheduled' | 'InvalidBondSharingTerms' | 'InvalidVaultName' | 'PendingCosignsBeforeCollect' | 'PendingOrphanedUtxoCosignsBeforeCollect' | 'OverdueCollectBlockersBeforeCollect' | 'AccountAlreadyHasVault' | 'OperationalAccountRegistrationRequired' | 'CommittedArgonotsBelowEncumberedBacking';
|
|
12944
12917
|
}
|
|
12945
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
12918
|
+
/** @name PalletBitcoinLocksLockedBitcoin (415) */
|
|
12946
12919
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
12947
12920
|
readonly vaultId: Compact<u32>;
|
|
12948
12921
|
readonly liquidityPromised: Compact<u128>;
|
|
@@ -12965,7 +12938,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12965
12938
|
readonly fundHoldExtensions: BTreeMap<u64, u128>;
|
|
12966
12939
|
readonly createdAtArgonBlock: Compact<u32>;
|
|
12967
12940
|
}
|
|
12968
|
-
/** @name PalletBitcoinLocksLockReleaseRequest (
|
|
12941
|
+
/** @name PalletBitcoinLocksLockReleaseRequest (419) */
|
|
12969
12942
|
interface PalletBitcoinLocksLockReleaseRequest extends Struct {
|
|
12970
12943
|
readonly utxoId: Compact<u64>;
|
|
12971
12944
|
readonly vaultId: Compact<u32>;
|
|
@@ -12974,7 +12947,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
12974
12947
|
readonly toScriptPubkey: Bytes;
|
|
12975
12948
|
readonly redemptionAmount: Compact<u128>;
|
|
12976
12949
|
}
|
|
12977
|
-
/** @name PalletBitcoinLocksOrphanedUtxo (
|
|
12950
|
+
/** @name PalletBitcoinLocksOrphanedUtxo (421) */
|
|
12978
12951
|
interface PalletBitcoinLocksOrphanedUtxo extends Struct {
|
|
12979
12952
|
readonly utxoId: Compact<u64>;
|
|
12980
12953
|
readonly vaultId: Compact<u32>;
|
|
@@ -12982,13 +12955,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
12982
12955
|
readonly recordedArgonBlockNumber: Compact<u32>;
|
|
12983
12956
|
readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
|
|
12984
12957
|
}
|
|
12985
|
-
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (
|
|
12958
|
+
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (423) */
|
|
12986
12959
|
interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
|
|
12987
12960
|
readonly bitcoinNetworkFee: u64;
|
|
12988
12961
|
readonly toScriptPubkey: Bytes;
|
|
12989
12962
|
readonly createdAtArgonBlockNumber: u32;
|
|
12990
12963
|
}
|
|
12991
|
-
/** @name PalletBitcoinLocksError (
|
|
12964
|
+
/** @name PalletBitcoinLocksError (430) */
|
|
12992
12965
|
interface PalletBitcoinLocksError extends Enum {
|
|
12993
12966
|
readonly isInsufficientFunds: boolean;
|
|
12994
12967
|
readonly isInsufficientVaultFunds: boolean;
|
|
@@ -13028,7 +13001,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13028
13001
|
readonly isMaxOrphanedUtxoReleaseRequestsExceeded: boolean;
|
|
13029
13002
|
readonly type: 'InsufficientFunds' | 'InsufficientVaultFunds' | 'AccountWouldGoBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'RedemptionNotLocked' | 'BitcoinReleaseInitiationDeadlinePassed' | 'BitcoinFeeTooHigh' | 'BitcoinUtxoNotFound' | 'BitcoinUnableToBeDecodedForRelease' | 'BitcoinSignatureUnableToBeDecoded' | 'BitcoinPubkeyUnableToBeDecoded' | 'BitcoinInvalidCosignature' | 'InsufficientSatoshisLocked' | 'NoBitcoinPricesAvailable' | 'InvalidBitcoinScript' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'GenericVaultError' | 'LockNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'VaultNotYetActive' | 'ExpirationAtBlockOverflow' | 'NoRatchetingAvailable' | 'LockInProcessOfRelease' | 'LockPendingFunding' | 'OverflowError' | 'IneligibleMicrogonRateRequested' | 'OrphanedUtxoFundingConflict' | 'OrphanedUtxoReleaseRequested' | 'FundingUtxoCannotBeReleased' | 'MaxOrphanedUtxoReleaseRequestsExceeded';
|
|
13030
13003
|
}
|
|
13031
|
-
/** @name ArgonPrimitivesVaultVaultError (
|
|
13004
|
+
/** @name ArgonPrimitivesVaultVaultError (431) */
|
|
13032
13005
|
interface ArgonPrimitivesVaultVaultError extends Enum {
|
|
13033
13006
|
readonly isVaultClosed: boolean;
|
|
13034
13007
|
readonly isAccountWouldBeBelowMinimum: boolean;
|
|
@@ -13045,7 +13018,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13045
13018
|
readonly isCommittedArgonotsBelowEncumberedBacking: boolean;
|
|
13046
13019
|
readonly type: 'VaultClosed' | 'AccountWouldBeBelowMinimum' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'InvalidBitcoinScript' | 'InternalError' | 'VaultNotYetActive' | 'CommittedArgonotsBelowEncumberedBacking';
|
|
13047
13020
|
}
|
|
13048
|
-
/** @name PalletNotariesError (
|
|
13021
|
+
/** @name PalletNotariesError (443) */
|
|
13049
13022
|
interface PalletNotariesError extends Enum {
|
|
13050
13023
|
readonly isProposalNotFound: boolean;
|
|
13051
13024
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -13058,7 +13031,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13058
13031
|
readonly isInvalidNotary: boolean;
|
|
13059
13032
|
readonly type: 'ProposalNotFound' | 'MaxNotariesExceeded' | 'MaxProposalsPerBlockExceeded' | 'NotAnActiveNotary' | 'InvalidNotaryOperator' | 'NoMoreNotaryIds' | 'EffectiveTickTooSoon' | 'TooManyKeys' | 'InvalidNotary';
|
|
13060
13033
|
}
|
|
13061
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
13034
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (447) */
|
|
13062
13035
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
13063
13036
|
readonly notebookNumber: Compact<u32>;
|
|
13064
13037
|
readonly tick: Compact<u64>;
|
|
@@ -13066,7 +13039,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13066
13039
|
readonly secretHash: H256;
|
|
13067
13040
|
readonly parentSecret: Option<H256>;
|
|
13068
13041
|
}
|
|
13069
|
-
/** @name PalletNotebookError (
|
|
13042
|
+
/** @name PalletNotebookError (450) */
|
|
13070
13043
|
interface PalletNotebookError extends Enum {
|
|
13071
13044
|
readonly isDuplicateNotebookNumber: boolean;
|
|
13072
13045
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -13085,17 +13058,17 @@ declare module '@polkadot/types/lookup' {
|
|
|
13085
13058
|
readonly isInvalidNotebookSubmissionTick: boolean;
|
|
13086
13059
|
readonly type: 'DuplicateNotebookNumber' | 'MissingNotebookNumber' | 'NotebookTickAlreadyUsed' | 'InvalidNotebookSignature' | 'InvalidSecretProvided' | 'CouldNotDecodeNotebook' | 'DuplicateNotebookDigest' | 'MissingNotebookDigest' | 'InvalidNotebookDigest' | 'MultipleNotebookInherentsProvided' | 'InternalError' | 'NotebookSubmittedForLockedNotary' | 'InvalidReprocessNotebook' | 'InvalidNotaryOperator' | 'InvalidNotebookSubmissionTick';
|
|
13087
13060
|
}
|
|
13088
|
-
/** @name PalletLocalchainTransferQueuedTransferOut (
|
|
13061
|
+
/** @name PalletLocalchainTransferQueuedTransferOut (451) */
|
|
13089
13062
|
interface PalletLocalchainTransferQueuedTransferOut extends Struct {
|
|
13090
13063
|
readonly accountId: AccountId32;
|
|
13091
13064
|
readonly amount: u128;
|
|
13092
13065
|
readonly expirationTick: u64;
|
|
13093
13066
|
readonly notaryId: u32;
|
|
13094
13067
|
}
|
|
13095
|
-
/** @name FrameSupportPalletId (
|
|
13068
|
+
/** @name FrameSupportPalletId (453) */
|
|
13096
13069
|
interface FrameSupportPalletId extends U8aFixed {
|
|
13097
13070
|
}
|
|
13098
|
-
/** @name PalletLocalchainTransferError (
|
|
13071
|
+
/** @name PalletLocalchainTransferError (454) */
|
|
13099
13072
|
interface PalletLocalchainTransferError extends Enum {
|
|
13100
13073
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
13101
13074
|
readonly isInsufficientFunds: boolean;
|
|
@@ -13107,7 +13080,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13107
13080
|
readonly isNoAvailableTransferId: boolean;
|
|
13108
13081
|
readonly type: 'MaxBlockTransfersExceeded' | 'InsufficientFunds' | 'InsufficientNotarizedFunds' | 'InvalidOrDuplicatedLocalchainTransfer' | 'NotebookIncludesExpiredLocalchainTransfer' | 'InvalidNotaryUsedForTransfer' | 'NotaryLockedForTransfer' | 'NoAvailableTransferId';
|
|
13109
13082
|
}
|
|
13110
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
13083
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (458) */
|
|
13111
13084
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
13112
13085
|
readonly notaryId: Compact<u32>;
|
|
13113
13086
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -13115,12 +13088,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
13115
13088
|
readonly blockVotesCount: Compact<u32>;
|
|
13116
13089
|
readonly blockVotingPower: Compact<u128>;
|
|
13117
13090
|
}
|
|
13118
|
-
/** @name PalletBlockSealSpecError (
|
|
13091
|
+
/** @name PalletBlockSealSpecError (463) */
|
|
13119
13092
|
interface PalletBlockSealSpecError extends Enum {
|
|
13120
13093
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
13121
13094
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
13122
13095
|
}
|
|
13123
|
-
/** @name PalletDomainsError (
|
|
13096
|
+
/** @name PalletDomainsError (465) */
|
|
13124
13097
|
interface PalletDomainsError extends Enum {
|
|
13125
13098
|
readonly isDomainNotRegistered: boolean;
|
|
13126
13099
|
readonly isNotDomainOwner: boolean;
|
|
@@ -13129,19 +13102,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
13129
13102
|
readonly isAccountDecodingError: boolean;
|
|
13130
13103
|
readonly type: 'DomainNotRegistered' | 'NotDomainOwner' | 'FailedToAddToAddressHistory' | 'FailedToAddExpiringDomain' | 'AccountDecodingError';
|
|
13131
13104
|
}
|
|
13132
|
-
/** @name PalletPriceIndexCpiMeasurementBucket (
|
|
13105
|
+
/** @name PalletPriceIndexCpiMeasurementBucket (467) */
|
|
13133
13106
|
interface PalletPriceIndexCpiMeasurementBucket extends Struct {
|
|
13134
13107
|
readonly tickRange: ITuple<[u64, u64]>;
|
|
13135
13108
|
readonly totalCpi: i128;
|
|
13136
13109
|
readonly measurementsCount: u32;
|
|
13137
13110
|
}
|
|
13138
|
-
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (
|
|
13111
|
+
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (471) */
|
|
13139
13112
|
interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
|
|
13140
13113
|
readonly frameId: Compact<u64>;
|
|
13141
13114
|
readonly totalMicrogonsPerArgonot: Compact<u128>;
|
|
13142
13115
|
readonly sampleCount: Compact<u32>;
|
|
13143
13116
|
}
|
|
13144
|
-
/** @name PalletPriceIndexError (
|
|
13117
|
+
/** @name PalletPriceIndexError (472) */
|
|
13145
13118
|
interface PalletPriceIndexError extends Enum {
|
|
13146
13119
|
readonly isNotAuthorizedOperator: boolean;
|
|
13147
13120
|
readonly isMissingValue: boolean;
|
|
@@ -13149,7 +13122,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13149
13122
|
readonly isMaxPriceChangePerTickExceeded: boolean;
|
|
13150
13123
|
readonly type: 'NotAuthorizedOperator' | 'MissingValue' | 'PricesTooOld' | 'MaxPriceChangePerTickExceeded';
|
|
13151
13124
|
}
|
|
13152
|
-
/** @name PalletGrandpaStoredState (
|
|
13125
|
+
/** @name PalletGrandpaStoredState (473) */
|
|
13153
13126
|
interface PalletGrandpaStoredState extends Enum {
|
|
13154
13127
|
readonly isLive: boolean;
|
|
13155
13128
|
readonly isPendingPause: boolean;
|
|
@@ -13165,14 +13138,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
13165
13138
|
} & Struct;
|
|
13166
13139
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
13167
13140
|
}
|
|
13168
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
13141
|
+
/** @name PalletGrandpaStoredPendingChange (474) */
|
|
13169
13142
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
13170
13143
|
readonly scheduledAt: u32;
|
|
13171
13144
|
readonly delay: u32;
|
|
13172
13145
|
readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
|
|
13173
13146
|
readonly forced: Option<u32>;
|
|
13174
13147
|
}
|
|
13175
|
-
/** @name PalletGrandpaError (
|
|
13148
|
+
/** @name PalletGrandpaError (476) */
|
|
13176
13149
|
interface PalletGrandpaError extends Enum {
|
|
13177
13150
|
readonly isPauseFailed: boolean;
|
|
13178
13151
|
readonly isResumeFailed: boolean;
|
|
@@ -13183,13 +13156,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
13183
13156
|
readonly isDuplicateOffenceReport: boolean;
|
|
13184
13157
|
readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
|
|
13185
13158
|
}
|
|
13186
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
13159
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (477) */
|
|
13187
13160
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
13188
13161
|
readonly blockAuthorAccountId: AccountId32;
|
|
13189
13162
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
13190
13163
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
13191
13164
|
}
|
|
13192
|
-
/** @name PalletBlockSealError (
|
|
13165
|
+
/** @name PalletBlockSealError (479) */
|
|
13193
13166
|
interface PalletBlockSealError extends Enum {
|
|
13194
13167
|
readonly isInvalidVoteSealStrength: boolean;
|
|
13195
13168
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -13214,72 +13187,72 @@ declare module '@polkadot/types/lookup' {
|
|
|
13214
13187
|
readonly isDuplicateVoteBlockAtTick: boolean;
|
|
13215
13188
|
readonly type: 'InvalidVoteSealStrength' | 'InvalidSubmitter' | 'UnableToDecodeVoteAccount' | 'UnregisteredBlockAuthor' | 'InvalidBlockVoteProof' | 'NoGrandparentVoteMinimum' | 'DuplicateBlockSealProvided' | 'InsufficientVotingPower' | 'ParentVotingKeyNotFound' | 'InvalidVoteGrandparentHash' | 'IneligibleNotebookUsed' | 'NoEligibleVotingRoot' | 'CouldNotDecodeVote' | 'MaxNotebooksAtTickExceeded' | 'NoClosestMinerFoundForVote' | 'BlockVoteInvalidSignature' | 'InvalidForkPowerParent' | 'BlockSealDecodeError' | 'InvalidComputeBlockTick' | 'InvalidMinerNonceScore' | 'DuplicateVoteBlockAtTick';
|
|
13216
13189
|
}
|
|
13217
|
-
/** @name PalletBlockRewardsError (
|
|
13190
|
+
/** @name PalletBlockRewardsError (483) */
|
|
13218
13191
|
type PalletBlockRewardsError = Null;
|
|
13219
|
-
/** @name PalletMintPendingMintUtxo (
|
|
13192
|
+
/** @name PalletMintPendingMintUtxo (484) */
|
|
13220
13193
|
interface PalletMintPendingMintUtxo extends Struct {
|
|
13221
13194
|
readonly utxoId: Compact<u64>;
|
|
13222
13195
|
readonly accountId: AccountId32;
|
|
13223
13196
|
readonly remainingAmount: Compact<u128>;
|
|
13224
13197
|
readonly maxAmountPerFrame: Compact<u128>;
|
|
13225
13198
|
}
|
|
13226
|
-
/** @name PalletMintMintQueueCursor (
|
|
13199
|
+
/** @name PalletMintMintQueueCursor (486) */
|
|
13227
13200
|
interface PalletMintMintQueueCursor extends Struct {
|
|
13228
13201
|
readonly payoutStartIndex: Compact<u64>;
|
|
13229
13202
|
readonly payoutCursorIndex: Compact<u64>;
|
|
13230
13203
|
readonly payoutCursorFrameId: Option<u64>;
|
|
13231
13204
|
}
|
|
13232
|
-
/** @name PalletMintMintAction (
|
|
13205
|
+
/** @name PalletMintMintAction (489) */
|
|
13233
13206
|
interface PalletMintMintAction extends Struct {
|
|
13234
13207
|
readonly argonBurned: u128;
|
|
13235
13208
|
readonly argonMinted: u128;
|
|
13236
13209
|
readonly bitcoinMinted: u128;
|
|
13237
13210
|
}
|
|
13238
|
-
/** @name PalletMintError (
|
|
13211
|
+
/** @name PalletMintError (491) */
|
|
13239
13212
|
interface PalletMintError extends Enum {
|
|
13240
13213
|
readonly isTooManyPendingMints: boolean;
|
|
13241
13214
|
readonly type: 'TooManyPendingMints';
|
|
13242
13215
|
}
|
|
13243
|
-
/** @name PalletBalancesBalanceLock (
|
|
13216
|
+
/** @name PalletBalancesBalanceLock (493) */
|
|
13244
13217
|
interface PalletBalancesBalanceLock extends Struct {
|
|
13245
13218
|
readonly id: U8aFixed;
|
|
13246
13219
|
readonly amount: u128;
|
|
13247
13220
|
readonly reasons: PalletBalancesReasons;
|
|
13248
13221
|
}
|
|
13249
|
-
/** @name PalletBalancesReasons (
|
|
13222
|
+
/** @name PalletBalancesReasons (494) */
|
|
13250
13223
|
interface PalletBalancesReasons extends Enum {
|
|
13251
13224
|
readonly isFee: boolean;
|
|
13252
13225
|
readonly isMisc: boolean;
|
|
13253
13226
|
readonly isAll: boolean;
|
|
13254
13227
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
13255
13228
|
}
|
|
13256
|
-
/** @name PalletBalancesReserveData (
|
|
13229
|
+
/** @name PalletBalancesReserveData (497) */
|
|
13257
13230
|
interface PalletBalancesReserveData extends Struct {
|
|
13258
13231
|
readonly id: U8aFixed;
|
|
13259
13232
|
readonly amount: u128;
|
|
13260
13233
|
}
|
|
13261
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
13234
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (500) */
|
|
13262
13235
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
13263
13236
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
13264
13237
|
readonly amount: u128;
|
|
13265
13238
|
}
|
|
13266
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
13239
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (503) */
|
|
13267
13240
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
13268
13241
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
13269
13242
|
readonly amount: u128;
|
|
13270
13243
|
}
|
|
13271
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
13244
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (504) */
|
|
13272
13245
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
13273
13246
|
readonly isBlockRewards: boolean;
|
|
13274
13247
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
13275
13248
|
readonly type: 'BlockRewards';
|
|
13276
13249
|
}
|
|
13277
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
13250
|
+
/** @name PalletBlockRewardsFreezeReason (505) */
|
|
13278
13251
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
13279
13252
|
readonly isMaturationPeriod: boolean;
|
|
13280
13253
|
readonly type: 'MaturationPeriod';
|
|
13281
13254
|
}
|
|
13282
|
-
/** @name PalletBalancesError (
|
|
13255
|
+
/** @name PalletBalancesError (507) */
|
|
13283
13256
|
interface PalletBalancesError extends Enum {
|
|
13284
13257
|
readonly isVestingBalance: boolean;
|
|
13285
13258
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -13295,7 +13268,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13295
13268
|
readonly isDeltaZero: boolean;
|
|
13296
13269
|
readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
|
|
13297
13270
|
}
|
|
13298
|
-
/** @name PalletTxPauseError (
|
|
13271
|
+
/** @name PalletTxPauseError (509) */
|
|
13299
13272
|
interface PalletTxPauseError extends Enum {
|
|
13300
13273
|
readonly isIsPaused: boolean;
|
|
13301
13274
|
readonly isIsUnpaused: boolean;
|
|
@@ -13303,56 +13276,56 @@ declare module '@polkadot/types/lookup' {
|
|
|
13303
13276
|
readonly isNotFound: boolean;
|
|
13304
13277
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
13305
13278
|
}
|
|
13306
|
-
/** @name PalletTransactionPaymentReleases (
|
|
13279
|
+
/** @name PalletTransactionPaymentReleases (510) */
|
|
13307
13280
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
13308
13281
|
readonly isV1Ancient: boolean;
|
|
13309
13282
|
readonly isV2: boolean;
|
|
13310
13283
|
readonly type: 'V1Ancient' | 'V2';
|
|
13311
13284
|
}
|
|
13312
|
-
/** @name FrameSupportStorageNoDrop (
|
|
13285
|
+
/** @name FrameSupportStorageNoDrop (511) */
|
|
13313
13286
|
interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {
|
|
13314
13287
|
}
|
|
13315
|
-
/** @name FrameSupportTokensFungibleImbalance (
|
|
13288
|
+
/** @name FrameSupportTokensFungibleImbalance (512) */
|
|
13316
13289
|
interface FrameSupportTokensFungibleImbalance extends Struct {
|
|
13317
13290
|
readonly amount: u128;
|
|
13318
13291
|
}
|
|
13319
|
-
/** @name PalletUtilityError (
|
|
13292
|
+
/** @name PalletUtilityError (513) */
|
|
13320
13293
|
interface PalletUtilityError extends Enum {
|
|
13321
13294
|
readonly isTooManyCalls: boolean;
|
|
13322
13295
|
readonly type: 'TooManyCalls';
|
|
13323
13296
|
}
|
|
13324
|
-
/** @name PalletSudoError (
|
|
13297
|
+
/** @name PalletSudoError (514) */
|
|
13325
13298
|
interface PalletSudoError extends Enum {
|
|
13326
13299
|
readonly isRequireSudo: boolean;
|
|
13327
13300
|
readonly type: 'RequireSudo';
|
|
13328
13301
|
}
|
|
13329
|
-
/** @name PalletTreasuryFrameVaultCapital (
|
|
13302
|
+
/** @name PalletTreasuryFrameVaultCapital (515) */
|
|
13330
13303
|
interface PalletTreasuryFrameVaultCapital extends Struct {
|
|
13331
13304
|
readonly frameId: Compact<u64>;
|
|
13332
13305
|
readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
|
|
13333
13306
|
}
|
|
13334
|
-
/** @name PalletTreasuryVaultCapital (
|
|
13307
|
+
/** @name PalletTreasuryVaultCapital (517) */
|
|
13335
13308
|
interface PalletTreasuryVaultCapital extends Struct {
|
|
13336
13309
|
readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
|
|
13337
13310
|
readonly eligibleBonds: Compact<u32>;
|
|
13338
13311
|
}
|
|
13339
|
-
/** @name PalletTreasuryBondLotAllocation (
|
|
13312
|
+
/** @name PalletTreasuryBondLotAllocation (519) */
|
|
13340
13313
|
interface PalletTreasuryBondLotAllocation extends Struct {
|
|
13341
13314
|
readonly bondLotId: Compact<u64>;
|
|
13342
13315
|
readonly prorata: u128;
|
|
13343
13316
|
}
|
|
13344
|
-
/** @name PalletTreasuryFrameArgonotBondParticipants (
|
|
13317
|
+
/** @name PalletTreasuryFrameArgonotBondParticipants (524) */
|
|
13345
13318
|
interface PalletTreasuryFrameArgonotBondParticipants extends Struct {
|
|
13346
13319
|
readonly frameId: Compact<u64>;
|
|
13347
13320
|
readonly totalBonds: Compact<u32>;
|
|
13348
13321
|
readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
13349
13322
|
}
|
|
13350
|
-
/** @name PalletTreasuryBondLotSummary (
|
|
13323
|
+
/** @name PalletTreasuryBondLotSummary (526) */
|
|
13351
13324
|
interface PalletTreasuryBondLotSummary extends Struct {
|
|
13352
13325
|
readonly bondLotId: Compact<u64>;
|
|
13353
13326
|
readonly bonds: Compact<u32>;
|
|
13354
13327
|
}
|
|
13355
|
-
/** @name PalletTreasuryBondLot (
|
|
13328
|
+
/** @name PalletTreasuryBondLot (528) */
|
|
13356
13329
|
interface PalletTreasuryBondLot extends Struct {
|
|
13357
13330
|
readonly owner: AccountId32;
|
|
13358
13331
|
readonly program: PalletTreasuryBondProgram;
|
|
@@ -13365,7 +13338,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13365
13338
|
readonly releaseFrameId: Option<u64>;
|
|
13366
13339
|
readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
|
|
13367
13340
|
}
|
|
13368
|
-
/** @name PalletTreasuryBondProgram (
|
|
13341
|
+
/** @name PalletTreasuryBondProgram (529) */
|
|
13369
13342
|
interface PalletTreasuryBondProgram extends Enum {
|
|
13370
13343
|
readonly isVault: boolean;
|
|
13371
13344
|
readonly asVault: {
|
|
@@ -13376,7 +13349,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13376
13349
|
readonly isArgonot: boolean;
|
|
13377
13350
|
readonly type: 'Vault' | 'Argonot';
|
|
13378
13351
|
}
|
|
13379
|
-
/** @name PalletTreasuryError (
|
|
13352
|
+
/** @name PalletTreasuryError (533) */
|
|
13380
13353
|
interface PalletTreasuryError extends Enum {
|
|
13381
13354
|
readonly isBondPurchaseRejected: boolean;
|
|
13382
13355
|
readonly isVaultNotAcceptingBondPurchases: boolean;
|
|
@@ -13398,19 +13371,17 @@ declare module '@polkadot/types/lookup' {
|
|
|
13398
13371
|
readonly isArgonotBondPurchaseAboveCap: boolean;
|
|
13399
13372
|
readonly type: 'BondPurchaseRejected' | 'VaultNotAcceptingBondPurchases' | 'BondPurchaseBelowMinimum' | 'InternalError' | 'MaxAcceptedBondLotsExceeded' | 'MaxPendingBondReleasesExceeded' | 'BondLotNotFound' | 'NotBondLotOwner' | 'BondLotAlreadyReleasing' | 'BondPurchaseAboveSecurity' | 'ActiveBondAmountBelowEncumberedBacking' | 'BonusApprovalWrongVault' | 'BonusApprovalWrongAccount' | 'BonusApprovalExpired' | 'BonusApprovalExistingBondLot' | 'InvalidBonusApprovalSignature' | 'ArgonotBondPurchaseBelowCutoff' | 'ArgonotBondPurchaseAboveCap';
|
|
13400
13373
|
}
|
|
13401
|
-
/** @name PalletFeeControlError (
|
|
13374
|
+
/** @name PalletFeeControlError (534) */
|
|
13402
13375
|
interface PalletFeeControlError extends Enum {
|
|
13403
13376
|
readonly isSponsoredFeeTooHigh: boolean;
|
|
13404
13377
|
readonly type: 'SponsoredFeeTooHigh';
|
|
13405
13378
|
}
|
|
13406
|
-
/** @name PalletOperationalAccountsOperationalAccount (
|
|
13379
|
+
/** @name PalletOperationalAccountsOperationalAccount (535) */
|
|
13407
13380
|
interface PalletOperationalAccountsOperationalAccount extends Struct {
|
|
13408
13381
|
readonly vaultAccount: AccountId32;
|
|
13409
13382
|
readonly miningAccount: AccountId32;
|
|
13410
13383
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
13411
|
-
readonly
|
|
13412
|
-
readonly isTreasuryCertified: bool;
|
|
13413
|
-
readonly isUpgradedToOperations: bool;
|
|
13384
|
+
readonly upstreamAccount: Option<AccountId32>;
|
|
13414
13385
|
readonly uniswapArgonTransfersInAmount: u128;
|
|
13415
13386
|
readonly accountBitcoinAmount: u128;
|
|
13416
13387
|
readonly accountVaultBondAmount: u128;
|
|
@@ -13419,20 +13390,20 @@ declare module '@polkadot/types/lookup' {
|
|
|
13419
13390
|
readonly vaultBitcoinAppliedTotal: u128;
|
|
13420
13391
|
readonly miningSeatAccrual: Compact<u32>;
|
|
13421
13392
|
readonly miningSeatAppliedTotal: Compact<u32>;
|
|
13422
|
-
readonly
|
|
13423
|
-
readonly
|
|
13424
|
-
readonly
|
|
13393
|
+
readonly operationalCertificationsCount: Compact<u32>;
|
|
13394
|
+
readonly accessCodePending: bool;
|
|
13395
|
+
readonly availableAccessCodes: Compact<u32>;
|
|
13425
13396
|
readonly rewardsEarnedCount: Compact<u32>;
|
|
13426
13397
|
readonly rewardsEarnedAmount: u128;
|
|
13427
13398
|
readonly rewardsCollectedAmount: u128;
|
|
13428
13399
|
readonly isOperationallyCertified: bool;
|
|
13429
13400
|
}
|
|
13430
|
-
/** @name PalletOperationalAccountsRewardsConfig (
|
|
13401
|
+
/** @name PalletOperationalAccountsRewardsConfig (536) */
|
|
13431
13402
|
interface PalletOperationalAccountsRewardsConfig extends Struct {
|
|
13432
|
-
readonly
|
|
13433
|
-
readonly
|
|
13403
|
+
readonly operationalCertificationReward: Compact<u128>;
|
|
13404
|
+
readonly operationalCertificationBonusReward: Compact<u128>;
|
|
13434
13405
|
}
|
|
13435
|
-
/** @name PalletOperationalAccountsError (
|
|
13406
|
+
/** @name PalletOperationalAccountsError (538) */
|
|
13436
13407
|
interface PalletOperationalAccountsError extends Enum {
|
|
13437
13408
|
readonly isAlreadyRegistered: boolean;
|
|
13438
13409
|
readonly isInvalidRegistrationSubmitter: boolean;
|
|
@@ -13440,30 +13411,28 @@ declare module '@polkadot/types/lookup' {
|
|
|
13440
13411
|
readonly isInvalidAccountProof: boolean;
|
|
13441
13412
|
readonly isNotOperationalAccount: boolean;
|
|
13442
13413
|
readonly isRegistrationInviteRequired: boolean;
|
|
13443
|
-
readonly
|
|
13444
|
-
readonly
|
|
13445
|
-
readonly
|
|
13446
|
-
readonly
|
|
13447
|
-
readonly isAccountAlreadyUpgraded: boolean;
|
|
13448
|
-
readonly isNoAvailableUpgrades: boolean;
|
|
13449
|
-
readonly isCannotUpgradeSelf: boolean;
|
|
13414
|
+
readonly isInvalidAccessProof: boolean;
|
|
13415
|
+
readonly isUpstreamNotOperationalAccount: boolean;
|
|
13416
|
+
readonly isMinimumsNotMet: boolean;
|
|
13417
|
+
readonly isCannotGrantAccessToSelf: boolean;
|
|
13450
13418
|
readonly isNoProgressUpdateProvided: boolean;
|
|
13451
13419
|
readonly isEncryptedServerTooLong: boolean;
|
|
13452
|
-
readonly
|
|
13420
|
+
readonly isNotUpstreamOfDownstream: boolean;
|
|
13453
13421
|
readonly isNoPendingRewards: boolean;
|
|
13454
13422
|
readonly isRewardClaimBelowMinimum: boolean;
|
|
13455
13423
|
readonly isRewardClaimNotWholeArgon: boolean;
|
|
13456
13424
|
readonly isRewardClaimExceedsPending: boolean;
|
|
13457
13425
|
readonly isTreasuryInsufficientFunds: boolean;
|
|
13458
|
-
readonly
|
|
13426
|
+
readonly isAlreadyOperationallyCertified: boolean;
|
|
13459
13427
|
readonly isNotEligibleForActivation: boolean;
|
|
13460
|
-
readonly
|
|
13428
|
+
readonly isUpstreamHasNoAvailableAccessCodes: boolean;
|
|
13429
|
+
readonly type: 'AlreadyRegistered' | 'InvalidRegistrationSubmitter' | 'AccountAlreadyLinked' | 'InvalidAccountProof' | 'NotOperationalAccount' | 'RegistrationInviteRequired' | 'InvalidAccessProof' | 'UpstreamNotOperationalAccount' | 'MinimumsNotMet' | 'CannotGrantAccessToSelf' | 'NoProgressUpdateProvided' | 'EncryptedServerTooLong' | 'NotUpstreamOfDownstream' | 'NoPendingRewards' | 'RewardClaimBelowMinimum' | 'RewardClaimNotWholeArgon' | 'RewardClaimExceedsPending' | 'TreasuryInsufficientFunds' | 'AlreadyOperationallyCertified' | 'NotEligibleForActivation' | 'UpstreamHasNoAvailableAccessCodes';
|
|
13461
13430
|
}
|
|
13462
|
-
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (
|
|
13431
|
+
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (539) */
|
|
13463
13432
|
interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
|
|
13464
13433
|
readonly slot: Compact<u64>;
|
|
13465
13434
|
}
|
|
13466
|
-
/** @name PalletEthereumVerifierExecutionHeaderAnchor (
|
|
13435
|
+
/** @name PalletEthereumVerifierExecutionHeaderAnchor (540) */
|
|
13467
13436
|
interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
|
|
13468
13437
|
readonly blockNumber: Compact<u64>;
|
|
13469
13438
|
readonly timestampMillis: Compact<u64>;
|
|
@@ -13472,38 +13441,38 @@ declare module '@polkadot/types/lookup' {
|
|
|
13472
13441
|
readonly stateRoot: H256;
|
|
13473
13442
|
readonly receiptsRoot: H256;
|
|
13474
13443
|
}
|
|
13475
|
-
/** @name PalletEthereumVerifierSyncCommitteePrepared (
|
|
13444
|
+
/** @name PalletEthereumVerifierSyncCommitteePrepared (541) */
|
|
13476
13445
|
interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
|
|
13477
13446
|
readonly root: H256;
|
|
13478
13447
|
readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
|
|
13479
13448
|
readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
|
|
13480
13449
|
}
|
|
13481
|
-
/** @name SnowbridgeMilagroBlsKeysPublicKey (
|
|
13450
|
+
/** @name SnowbridgeMilagroBlsKeysPublicKey (543) */
|
|
13482
13451
|
interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
|
|
13483
13452
|
readonly point: SnowbridgeAmclBls381Ecp;
|
|
13484
13453
|
}
|
|
13485
|
-
/** @name SnowbridgeAmclBls381Ecp (
|
|
13454
|
+
/** @name SnowbridgeAmclBls381Ecp (544) */
|
|
13486
13455
|
interface SnowbridgeAmclBls381Ecp extends Struct {
|
|
13487
13456
|
readonly x: SnowbridgeAmclBls381Fp;
|
|
13488
13457
|
readonly y: SnowbridgeAmclBls381Fp;
|
|
13489
13458
|
readonly z: SnowbridgeAmclBls381Fp;
|
|
13490
13459
|
}
|
|
13491
|
-
/** @name SnowbridgeAmclBls381Fp (
|
|
13460
|
+
/** @name SnowbridgeAmclBls381Fp (545) */
|
|
13492
13461
|
interface SnowbridgeAmclBls381Fp extends Struct {
|
|
13493
13462
|
readonly x: SnowbridgeAmclBls381Big;
|
|
13494
13463
|
readonly xes: i32;
|
|
13495
13464
|
}
|
|
13496
|
-
/** @name SnowbridgeAmclBls381Big (
|
|
13465
|
+
/** @name SnowbridgeAmclBls381Big (546) */
|
|
13497
13466
|
interface SnowbridgeAmclBls381Big extends Struct {
|
|
13498
13467
|
readonly w: Vec<i32>;
|
|
13499
13468
|
}
|
|
13500
|
-
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (
|
|
13469
|
+
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (550) */
|
|
13501
13470
|
interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
|
|
13502
13471
|
readonly isMainnet: boolean;
|
|
13503
13472
|
readonly isMinimal: boolean;
|
|
13504
13473
|
readonly type: 'Mainnet' | 'Minimal';
|
|
13505
13474
|
}
|
|
13506
|
-
/** @name PalletEthereumVerifierError (
|
|
13475
|
+
/** @name PalletEthereumVerifierError (551) */
|
|
13507
13476
|
interface PalletEthereumVerifierError extends Enum {
|
|
13508
13477
|
readonly isSkippedSyncCommitteePeriod: boolean;
|
|
13509
13478
|
readonly isSyncCommitteeUpdateRequired: boolean;
|
|
@@ -13531,7 +13500,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13531
13500
|
readonly isHalted: boolean;
|
|
13532
13501
|
readonly type: 'SkippedSyncCommitteePeriod' | 'SyncCommitteeUpdateRequired' | 'IrrelevantUpdate' | 'NotBootstrapped' | 'SyncCommitteeParticipantsNotSupermajority' | 'InvalidHeaderMerkleProof' | 'InvalidSyncCommitteeMerkleProof' | 'InvalidExecutionHeaderProof' | 'InvalidFinalizedHeaderGap' | 'InvalidBackfillHeaderRoot' | 'ExecutionHeaderAnchorAlreadyImported' | 'ExecutionHeaderAnchorNotHistorical' | 'HeaderHashTreeRootFailed' | 'BlockBodyHashTreeRootFailed' | 'SyncCommitteeHashTreeRootFailed' | 'SigningRootHashTreeRootFailed' | 'ForkDataHashTreeRootFailed' | 'ExpectedFinalizedHeaderNotStored' | 'BlsPreparePublicKeysFailed' | 'BlsVerificationFailed' | 'UnexpectedBeaconPreset' | 'InvalidUpdateSlot' | 'InvalidSyncCommitteeUpdate' | 'Halted';
|
|
13533
13502
|
}
|
|
13534
|
-
/** @name PalletCrosschainTransferAccountTransferTotals (
|
|
13503
|
+
/** @name PalletCrosschainTransferAccountTransferTotals (552) */
|
|
13535
13504
|
interface PalletCrosschainTransferAccountTransferTotals extends Struct {
|
|
13536
13505
|
readonly microgonsIn: u128;
|
|
13537
13506
|
readonly microgonsOut: u128;
|
|
@@ -13542,19 +13511,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
13542
13511
|
readonly argonotTransfersInCount: Compact<u32>;
|
|
13543
13512
|
readonly argonotTransfersOutCount: Compact<u32>;
|
|
13544
13513
|
}
|
|
13545
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (
|
|
13514
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (554) */
|
|
13546
13515
|
interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
|
|
13547
13516
|
readonly epochMicrogonsPerArgonot: u128;
|
|
13548
13517
|
readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
|
|
13549
13518
|
readonly totalWeight: u128;
|
|
13550
13519
|
}
|
|
13551
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (
|
|
13520
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (556) */
|
|
13552
13521
|
interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
|
|
13553
13522
|
readonly accountId: AccountId32;
|
|
13554
13523
|
readonly signer: H160;
|
|
13555
13524
|
readonly weight: u128;
|
|
13556
13525
|
}
|
|
13557
|
-
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (
|
|
13526
|
+
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (561) */
|
|
13558
13527
|
interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
|
|
13559
13528
|
readonly approvingCouncilHash: H256;
|
|
13560
13529
|
readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
|
|
@@ -13565,7 +13534,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
13565
13534
|
readonly approvedTotalWeight: u128;
|
|
13566
13535
|
readonly signatures: BTreeMap<H160, U8aFixed>;
|
|
13567
13536
|
}
|
|
13568
|
-
/** @name PalletCrosschainTransferMintingAuthority (
|
|
13537
|
+
/** @name PalletCrosschainTransferMintingAuthority (566) */
|
|
13569
13538
|
interface PalletCrosschainTransferMintingAuthority extends Struct {
|
|
13570
13539
|
readonly accountId: AccountId32;
|
|
13571
13540
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -13581,14 +13550,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
13581
13550
|
readonly activationSignatureRepaymentQuote: Compact<u128>;
|
|
13582
13551
|
readonly deactivationApprovalQueueNonce: Option<u64>;
|
|
13583
13552
|
}
|
|
13584
|
-
/** @name PalletCrosschainTransferMintingAuthorityState (
|
|
13553
|
+
/** @name PalletCrosschainTransferMintingAuthorityState (567) */
|
|
13585
13554
|
interface PalletCrosschainTransferMintingAuthorityState extends Enum {
|
|
13586
13555
|
readonly isPendingActivation: boolean;
|
|
13587
13556
|
readonly isActive: boolean;
|
|
13588
13557
|
readonly isDeactivating: boolean;
|
|
13589
13558
|
readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
|
|
13590
13559
|
}
|
|
13591
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (
|
|
13560
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (569) */
|
|
13592
13561
|
interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
|
|
13593
13562
|
readonly argonAccountId: AccountId32;
|
|
13594
13563
|
readonly argonTransferNonce: Compact<u64>;
|
|
@@ -13603,31 +13572,31 @@ declare module '@polkadot/types/lookup' {
|
|
|
13603
13572
|
readonly mintingAuthorityCollateralBySigner: BTreeMap<H160, PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation>;
|
|
13604
13573
|
readonly state: PalletCrosschainTransferTransferOutTransferOutState;
|
|
13605
13574
|
}
|
|
13606
|
-
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (
|
|
13575
|
+
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (571) */
|
|
13607
13576
|
interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
|
|
13608
13577
|
readonly microgonCollateral: u128;
|
|
13609
13578
|
readonly micronotCollateral: u128;
|
|
13610
13579
|
readonly collateralShare: u128;
|
|
13611
13580
|
readonly signature: U8aFixed;
|
|
13612
13581
|
}
|
|
13613
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutState (
|
|
13582
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutState (575) */
|
|
13614
13583
|
interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
|
|
13615
13584
|
readonly isStarted: boolean;
|
|
13616
13585
|
readonly isReady: boolean;
|
|
13617
13586
|
readonly type: 'Started' | 'Ready';
|
|
13618
13587
|
}
|
|
13619
|
-
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (
|
|
13588
|
+
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (577) */
|
|
13620
13589
|
interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
|
|
13621
13590
|
readonly transferId: H256;
|
|
13622
13591
|
readonly remainingCollateral: u128;
|
|
13623
13592
|
readonly remainingMintingAuthorityTip: u128;
|
|
13624
13593
|
}
|
|
13625
|
-
/** @name PalletCrosschainTransferSourceChainCirculation (
|
|
13594
|
+
/** @name PalletCrosschainTransferSourceChainCirculation (579) */
|
|
13626
13595
|
interface PalletCrosschainTransferSourceChainCirculation extends Struct {
|
|
13627
13596
|
readonly argonCirculation: u128;
|
|
13628
13597
|
readonly argonotCirculation: u128;
|
|
13629
13598
|
}
|
|
13630
|
-
/** @name PalletCrosschainTransferError (
|
|
13599
|
+
/** @name PalletCrosschainTransferError (580) */
|
|
13631
13600
|
interface PalletCrosschainTransferError extends Enum {
|
|
13632
13601
|
readonly isInvalidTransferToArgonActivity: boolean;
|
|
13633
13602
|
readonly isNoGatewayProofBlocksProvided: boolean;
|
|
@@ -13685,37 +13654,37 @@ declare module '@polkadot/types/lookup' {
|
|
|
13685
13654
|
readonly isTooManyPendingTransferOuts: boolean;
|
|
13686
13655
|
readonly type: 'InvalidTransferToArgonActivity' | 'NoGatewayProofBlocksProvided' | 'NoGatewayActivitiesProvided' | 'InvalidProof' | 'UnsupportedSource' | 'UnsupportedGateway' | 'UnsupportedToken' | 'UnexpectedPreviousGatewayActivityNonce' | 'UnexpectedGatewayActivityNonce' | 'InvalidChainConfig' | 'InsufficientLiquidity' | 'MintingAuthorityNotFound' | 'MintingAuthorityMismatch' | 'UnexpectedMintingAuthorityState' | 'UnknownOwnerVault' | 'InvalidMintingAuthoritySigningKey' | 'MintingAuthorityAlreadyRegistered' | 'InvalidMintingAuthoritySigningKeyProof' | 'InvalidMintingAuthorityCollateral' | 'GlobalIssuanceCouncilNotFound' | 'InvalidGlobalIssuanceCouncil' | 'DuplicateGlobalIssuanceCouncilSigner' | 'DuplicateGlobalIssuanceCouncilAccount' | 'InvalidCouncilSignerProof' | 'GlobalIssuanceCouncilMemberNotFound' | 'CouncilSignerNotRegistered' | 'CouncilApprovalQueueEntryNotFound' | 'CouncilApprovalAlreadyRecorded' | 'InvalidForceSetAfterNonce' | 'CannotForceSetQuorumApprovedQueueEntry' | 'InvalidCouncilApprovalSignature' | 'NoCouncilApprovalSignaturesProvided' | 'InsufficientCommittedMicrogonCollateral' | 'InsufficientCommittedArgonotCollateral' | 'InvalidMintingAuthorityDeactivationSignature' | 'InvalidMicrogonsPerArgonot' | 'MintingAuthorityCollateralBelowMinimum' | 'InvalidMintingAuthorityActivationRepaymentPricing' | 'MissingMintingAuthorityActivationRepaymentPricing' | 'InvalidGatewayActivity' | 'GatewaySyncPaused' | 'InvalidTransferOutAmount' | 'InvalidTransferOutRecipient' | 'MissingVerifiedExecutionBlock' | 'StaleVerifiedExecutionBlock' | 'TransferOutNotFound' | 'TransferOutAlreadyReady' | 'TransferOutExpired' | 'InvalidTransferCollateral' | 'InvalidTransferCollateralUpdate' | 'InvalidTransferCollateralSignature' | 'InsufficientMintingAuthorityCollateral' | 'TransferCollateralIncrementTooSmall' | 'TooManyPendingTransferOuts';
|
|
13687
13656
|
}
|
|
13688
|
-
/** @name FrameSystemExtensionsAuthorizeCall (
|
|
13657
|
+
/** @name FrameSystemExtensionsAuthorizeCall (583) */
|
|
13689
13658
|
type FrameSystemExtensionsAuthorizeCall = Null;
|
|
13690
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
13659
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (584) */
|
|
13691
13660
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
13692
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
13661
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (585) */
|
|
13693
13662
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
13694
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
13663
|
+
/** @name FrameSystemExtensionsCheckTxVersion (586) */
|
|
13695
13664
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
13696
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
13665
|
+
/** @name FrameSystemExtensionsCheckGenesis (587) */
|
|
13697
13666
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
13698
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
13667
|
+
/** @name FrameSystemExtensionsCheckNonce (590) */
|
|
13699
13668
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
|
|
13700
13669
|
}
|
|
13701
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
13670
|
+
/** @name FrameSystemExtensionsCheckWeight (591) */
|
|
13702
13671
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
13703
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
13672
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (592) */
|
|
13704
13673
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
|
|
13705
13674
|
}
|
|
13706
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
13675
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (593) */
|
|
13707
13676
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
13708
13677
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
13709
13678
|
}
|
|
13710
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
13679
|
+
/** @name FrameMetadataHashExtensionMode (594) */
|
|
13711
13680
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
13712
13681
|
readonly isDisabled: boolean;
|
|
13713
13682
|
readonly isEnabled: boolean;
|
|
13714
13683
|
readonly type: 'Disabled' | 'Enabled';
|
|
13715
13684
|
}
|
|
13716
|
-
/** @name FrameSystemExtensionsWeightReclaim (
|
|
13685
|
+
/** @name FrameSystemExtensionsWeightReclaim (595) */
|
|
13717
13686
|
type FrameSystemExtensionsWeightReclaim = Null;
|
|
13718
|
-
/** @name ArgonRuntimeRuntime (
|
|
13687
|
+
/** @name ArgonRuntimeRuntime (597) */
|
|
13719
13688
|
type ArgonRuntimeRuntime = Null;
|
|
13720
13689
|
}
|
|
13721
13690
|
|
|
@@ -13808,6 +13777,12 @@ type IBigIntLike = bigint | {
|
|
|
13808
13777
|
};
|
|
13809
13778
|
|
|
13810
13779
|
type ITxProgressCallback = (progressToInBlock: number, result?: TxResult) => void;
|
|
13780
|
+
type IBlockInclusion = {
|
|
13781
|
+
blockHash: Uint8Array;
|
|
13782
|
+
blockNumber?: number;
|
|
13783
|
+
extrinsicIndex: number;
|
|
13784
|
+
events: GenericEvent[];
|
|
13785
|
+
};
|
|
13811
13786
|
declare class TxResult {
|
|
13812
13787
|
#private;
|
|
13813
13788
|
protected readonly client: ArgonClient;
|
|
@@ -13857,14 +13832,10 @@ declare class TxResult {
|
|
|
13857
13832
|
accountAddress: string;
|
|
13858
13833
|
nonce: number;
|
|
13859
13834
|
});
|
|
13860
|
-
setSeenInBlock(block:
|
|
13861
|
-
|
|
13862
|
-
blockNumber?: number;
|
|
13863
|
-
extrinsicIndex: number;
|
|
13864
|
-
events: GenericEvent[];
|
|
13865
|
-
}): Promise<void>;
|
|
13866
|
-
setFinalized(): void;
|
|
13835
|
+
setSeenInBlock(block: IBlockInclusion): Promise<void>;
|
|
13836
|
+
setFinalized(): Promise<void>;
|
|
13867
13837
|
onSubscriptionResult(result: ISubmittableResult): void;
|
|
13838
|
+
private publishSeenInBlock;
|
|
13868
13839
|
private updateProgress;
|
|
13869
13840
|
private parseEvents;
|
|
13870
13841
|
}
|