@argonprotocol/mainchain 1.0.12 → 1.0.13
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/README.md +18 -15
- package/lib/cjs/WageProtector.d.ts +1 -1
- package/lib/cjs/WageProtector.js +3 -2
- package/lib/cjs/WageProtector.js.map +1 -1
- package/lib/cjs/__test__/WageProtector.test.js +2 -2
- package/lib/cjs/__test__/WageProtector.test.js.map +1 -1
- package/lib/cjs/examples/decodePkcs.js +3 -3
- package/lib/cjs/examples/decodePkcs.js.map +1 -1
- package/lib/cjs/examples/findSs58Formats.js +6 -1
- package/lib/cjs/examples/findSs58Formats.js.map +1 -1
- package/lib/cjs/index.d.ts +9 -9
- package/lib/cjs/index.js.map +1 -1
- package/lib/cjs/interfaces/augment-api-consts.d.ts +0 -6
- package/lib/cjs/interfaces/augment-api-errors.d.ts +8 -0
- package/lib/cjs/interfaces/augment-api-events.d.ts +678 -149
- package/lib/cjs/interfaces/augment-api-query.d.ts +334 -129
- package/lib/cjs/interfaces/augment-api-rpc.d.ts +1 -1
- package/lib/cjs/interfaces/augment-api-tx.d.ts +362 -96
- package/lib/cjs/interfaces/lookup.d.ts +63 -54
- package/lib/cjs/interfaces/lookup.js +653 -411
- package/lib/cjs/interfaces/lookup.js.map +1 -1
- package/lib/cjs/interfaces/types-lookup.d.ts +87 -61
- package/lib/esm/WageProtector.d.ts +1 -1
- package/lib/esm/WageProtector.js +3 -2
- package/lib/esm/WageProtector.js.map +1 -1
- package/lib/esm/__test__/WageProtector.test.js +3 -3
- package/lib/esm/__test__/WageProtector.test.js.map +1 -1
- package/lib/esm/examples/decodePkcs.js +8 -8
- package/lib/esm/examples/decodePkcs.js.map +1 -1
- package/lib/esm/examples/findSs58Formats.js +6 -1
- package/lib/esm/examples/findSs58Formats.js.map +1 -1
- package/lib/esm/index.d.ts +9 -9
- package/lib/esm/index.js +7 -7
- package/lib/esm/index.js.map +1 -1
- package/lib/esm/interfaces/augment-api-consts.d.ts +0 -6
- package/lib/esm/interfaces/augment-api-errors.d.ts +8 -0
- package/lib/esm/interfaces/augment-api-events.d.ts +678 -149
- package/lib/esm/interfaces/augment-api-query.d.ts +334 -129
- package/lib/esm/interfaces/augment-api-rpc.d.ts +1 -1
- package/lib/esm/interfaces/augment-api-tx.d.ts +362 -96
- package/lib/esm/interfaces/lookup.d.ts +63 -54
- package/lib/esm/interfaces/lookup.js +653 -411
- package/lib/esm/interfaces/lookup.js.map +1 -1
- package/lib/esm/interfaces/types-lookup.d.ts +87 -61
- package/lib/tsconfig-cjs.tsbuildinfo +1 -1
- package/lib/tsconfig-types.tsbuildinfo +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/types/WageProtector.d.ts +1 -1
- package/lib/types/index.d.ts +9 -9
- package/lib/types/interfaces/augment-api-consts.d.ts +0 -6
- package/lib/types/interfaces/augment-api-errors.d.ts +8 -0
- package/lib/types/interfaces/augment-api-events.d.ts +678 -149
- package/lib/types/interfaces/augment-api-query.d.ts +334 -129
- package/lib/types/interfaces/augment-api-rpc.d.ts +1 -1
- package/lib/types/interfaces/augment-api-tx.d.ts +362 -96
- package/lib/types/interfaces/lookup.d.ts +63 -54
- package/lib/types/interfaces/types-lookup.d.ts +87 -61
- package/package.json +1 -1
|
@@ -245,6 +245,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
245
245
|
readonly asNewMiners: {
|
|
246
246
|
readonly startIndex: u32;
|
|
247
247
|
readonly newMiners: Vec<ArgonPrimitivesBlockSealMiningRegistration>;
|
|
248
|
+
readonly cohortId: u64;
|
|
248
249
|
} & Struct;
|
|
249
250
|
readonly isSlotBidderAdded: boolean;
|
|
250
251
|
readonly asSlotBidderAdded: {
|
|
@@ -287,7 +288,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
287
288
|
readonly argonots: Compact<u128>;
|
|
288
289
|
readonly rewardSharing: Option<ArgonPrimitivesBlockSealRewardSharing>;
|
|
289
290
|
readonly authorityKeys: ArgonRuntimeSessionKeys;
|
|
290
|
-
readonly
|
|
291
|
+
readonly cohortId: Compact<u64>;
|
|
291
292
|
}
|
|
292
293
|
/** @name ArgonRuntimeSessionKeys (42) */
|
|
293
294
|
interface ArgonRuntimeSessionKeys extends Struct {
|
|
@@ -379,6 +380,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
379
380
|
readonly bondedArgons: u128;
|
|
380
381
|
readonly addedSecuritizationPercent: u128;
|
|
381
382
|
readonly operatorAccountId: AccountId32;
|
|
383
|
+
readonly activationTick: u64;
|
|
382
384
|
} & Struct;
|
|
383
385
|
readonly isVaultModified: boolean;
|
|
384
386
|
readonly asVaultModified: {
|
|
@@ -450,7 +452,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
450
452
|
readonly obligationId: u64;
|
|
451
453
|
readonly error: SpRuntimeDispatchError;
|
|
452
454
|
} & Struct;
|
|
453
|
-
readonly
|
|
455
|
+
readonly isObligationBaseFeeMaturationError: boolean;
|
|
456
|
+
readonly asObligationBaseFeeMaturationError: {
|
|
457
|
+
readonly obligationId: u64;
|
|
458
|
+
readonly baseFee: u128;
|
|
459
|
+
readonly vaultId: u32;
|
|
460
|
+
readonly error: SpRuntimeDispatchError;
|
|
461
|
+
} & Struct;
|
|
462
|
+
readonly type: 'VaultCreated' | 'VaultModified' | 'VaultBondedArgonsIncreased' | 'VaultBondedArgonsChangeScheduled' | 'VaultTermsChangeScheduled' | 'VaultTermsChanged' | 'VaultClosed' | 'VaultBitcoinXpubChange' | 'ObligationCreated' | 'ObligationCompleted' | 'ObligationModified' | 'ObligationCanceled' | 'ObligationCompletionError' | 'ObligationBaseFeeMaturationError';
|
|
454
463
|
}
|
|
455
464
|
/** @name ArgonPrimitivesVaultFundType (59) */
|
|
456
465
|
interface ArgonPrimitivesVaultFundType extends Enum {
|
|
@@ -1833,8 +1842,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1833
1842
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
|
1834
1843
|
readonly roundNumber: u64;
|
|
1835
1844
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
1836
|
-
readonly first: ITuple<[
|
|
1837
|
-
|
|
1845
|
+
readonly first: ITuple<[
|
|
1846
|
+
FinalityGrandpaPrevote,
|
|
1847
|
+
SpConsensusGrandpaAppSignature
|
|
1848
|
+
]>;
|
|
1849
|
+
readonly second: ITuple<[
|
|
1850
|
+
FinalityGrandpaPrevote,
|
|
1851
|
+
SpConsensusGrandpaAppSignature
|
|
1852
|
+
]>;
|
|
1838
1853
|
}
|
|
1839
1854
|
/** @name FinalityGrandpaPrevote (233) */
|
|
1840
1855
|
interface FinalityGrandpaPrevote extends Struct {
|
|
@@ -1848,8 +1863,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1848
1863
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
|
1849
1864
|
readonly roundNumber: u64;
|
|
1850
1865
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
1851
|
-
readonly first: ITuple<[
|
|
1852
|
-
|
|
1866
|
+
readonly first: ITuple<[
|
|
1867
|
+
FinalityGrandpaPrecommit,
|
|
1868
|
+
SpConsensusGrandpaAppSignature
|
|
1869
|
+
]>;
|
|
1870
|
+
readonly second: ITuple<[
|
|
1871
|
+
FinalityGrandpaPrecommit,
|
|
1872
|
+
SpConsensusGrandpaAppSignature
|
|
1873
|
+
]>;
|
|
1853
1874
|
}
|
|
1854
1875
|
/** @name FinalityGrandpaPrecommit (237) */
|
|
1855
1876
|
interface FinalityGrandpaPrecommit extends Struct {
|
|
@@ -2420,7 +2441,9 @@ declare module '@polkadot/types/lookup' {
|
|
|
2420
2441
|
readonly isInvalidBitcoinScript: boolean;
|
|
2421
2442
|
readonly isInternalError: boolean;
|
|
2422
2443
|
readonly isObligationCompletionError: boolean;
|
|
2423
|
-
readonly
|
|
2444
|
+
readonly isVaultNotYetActive: boolean;
|
|
2445
|
+
readonly isBaseFeeOverflow: boolean;
|
|
2446
|
+
readonly type: 'ObligationNotFound' | 'NoMoreObligationIds' | 'MinimumObligationAmountNotMet' | 'VaultClosed' | 'ExpirationAtBlockOverflow' | 'AccountWouldBeBelowMinimum' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'InsufficientBondedArgons' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'InvalidBitcoinScript' | 'InternalError' | 'ObligationCompletionError' | 'VaultNotYetActive' | 'BaseFeeOverflow';
|
|
2424
2447
|
}
|
|
2425
2448
|
/** @name ArgonPrimitivesBitcoinUtxoValue (338) */
|
|
2426
2449
|
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
@@ -2473,6 +2496,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2473
2496
|
readonly pendingTerms: Option<ITuple<[u64, ArgonPrimitivesVaultVaultTerms]>>;
|
|
2474
2497
|
readonly pendingBondedArgons: Option<ITuple<[u64, u128]>>;
|
|
2475
2498
|
readonly pendingBitcoins: u128;
|
|
2499
|
+
readonly activationTick: u64;
|
|
2476
2500
|
}
|
|
2477
2501
|
/** @name ArgonPrimitivesVaultVaultArgons (349) */
|
|
2478
2502
|
interface ArgonPrimitivesVaultVaultArgons extends Struct {
|
|
@@ -2496,7 +2520,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2496
2520
|
readonly isTest: boolean;
|
|
2497
2521
|
readonly type: 'Main' | 'Test';
|
|
2498
2522
|
}
|
|
2499
|
-
/** @name ArgonPrimitivesVaultObligation (
|
|
2523
|
+
/** @name ArgonPrimitivesVaultObligation (363) */
|
|
2500
2524
|
interface ArgonPrimitivesVaultObligation extends Struct {
|
|
2501
2525
|
readonly obligationId: Compact<u64>;
|
|
2502
2526
|
readonly fundType: ArgonPrimitivesVaultFundType;
|
|
@@ -2508,7 +2532,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2508
2532
|
readonly startTick: Compact<u64>;
|
|
2509
2533
|
readonly expiration: ArgonPrimitivesVaultObligationExpiration;
|
|
2510
2534
|
}
|
|
2511
|
-
/** @name PalletVaultsError (
|
|
2535
|
+
/** @name PalletVaultsError (366) */
|
|
2512
2536
|
interface PalletVaultsError extends Enum {
|
|
2513
2537
|
readonly isObligationNotFound: boolean;
|
|
2514
2538
|
readonly isNoMoreVaultIds: boolean;
|
|
@@ -2535,6 +2559,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2535
2559
|
readonly isHoldUnexpectedlyModified: boolean;
|
|
2536
2560
|
readonly isUnrecoverableHold: boolean;
|
|
2537
2561
|
readonly isVaultNotFound: boolean;
|
|
2562
|
+
readonly isVaultNotYetActive: boolean;
|
|
2538
2563
|
readonly isNoVaultBitcoinPubkeysAvailable: boolean;
|
|
2539
2564
|
readonly isTermsModificationOverflow: boolean;
|
|
2540
2565
|
readonly isTermsChangeAlreadyScheduled: boolean;
|
|
@@ -2542,9 +2567,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2542
2567
|
readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
|
|
2543
2568
|
readonly isFundingChangeAlreadyScheduled: boolean;
|
|
2544
2569
|
readonly isObligationCompletionError: boolean;
|
|
2545
|
-
readonly
|
|
2570
|
+
readonly isBaseFeeOverflow: boolean;
|
|
2571
|
+
readonly type: 'ObligationNotFound' | 'NoMoreVaultIds' | 'NoMoreObligationIds' | 'MinimumObligationAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'InsufficientBondedArgons' | 'AccountBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'VaultReductionBelowAllocatedFunds' | 'InvalidSecuritization' | 'ReusedVaultBitcoinXpub' | 'InvalidBitcoinScript' | 'InvalidXpubkey' | 'WrongXpubNetwork' | 'UnsafeXpubkey' | 'UnableToDeriveVaultXpubChild' | 'BitcoinConversionFailed' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'VaultNotYetActive' | 'NoVaultBitcoinPubkeysAvailable' | 'TermsModificationOverflow' | 'TermsChangeAlreadyScheduled' | 'InternalError' | 'UnableToGenerateVaultBitcoinPubkey' | 'FundingChangeAlreadyScheduled' | 'ObligationCompletionError' | 'BaseFeeOverflow';
|
|
2546
2572
|
}
|
|
2547
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
2573
|
+
/** @name PalletBitcoinLocksLockedBitcoin (367) */
|
|
2548
2574
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
2549
2575
|
readonly obligationId: Compact<u64>;
|
|
2550
2576
|
readonly vaultId: Compact<u32>;
|
|
@@ -2561,7 +2587,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2561
2587
|
readonly utxoScriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
2562
2588
|
readonly isVerified: bool;
|
|
2563
2589
|
}
|
|
2564
|
-
/** @name PalletBitcoinLocksLockReleaseRequest (
|
|
2590
|
+
/** @name PalletBitcoinLocksLockReleaseRequest (371) */
|
|
2565
2591
|
interface PalletBitcoinLocksLockReleaseRequest extends Struct {
|
|
2566
2592
|
readonly utxoId: Compact<u64>;
|
|
2567
2593
|
readonly obligationId: Compact<u64>;
|
|
@@ -2571,7 +2597,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2571
2597
|
readonly toScriptPubkey: Bytes;
|
|
2572
2598
|
readonly redemptionPrice: Compact<u128>;
|
|
2573
2599
|
}
|
|
2574
|
-
/** @name PalletBitcoinLocksError (
|
|
2600
|
+
/** @name PalletBitcoinLocksError (375) */
|
|
2575
2601
|
interface PalletBitcoinLocksError extends Enum {
|
|
2576
2602
|
readonly isObligationNotFound: boolean;
|
|
2577
2603
|
readonly isNoMoreObligationIds: boolean;
|
|
@@ -2606,7 +2632,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2606
2632
|
readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
|
|
2607
2633
|
readonly type: 'ObligationNotFound' | 'NoMoreObligationIds' | 'MinimumObligationAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'InsufficientBondedArgons' | 'AccountWouldGoBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'RedemptionNotLocked' | 'BitcoinReleaseInitiationDeadlinePassed' | 'BitcoinFeeTooHigh' | 'BitcoinUtxoNotFound' | 'BitcoinUnableToBeDecodedForRelease' | 'BitcoinSignatureUnableToBeDecoded' | 'BitcoinPubkeyUnableToBeDecoded' | 'BitcoinInvalidCosignature' | 'InsufficientSatoshisLocked' | 'NoBitcoinPricesAvailable' | 'InvalidBitcoinScript' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'GenericObligationError' | 'LockNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey';
|
|
2608
2634
|
}
|
|
2609
|
-
/** @name PalletNotariesError (
|
|
2635
|
+
/** @name PalletNotariesError (387) */
|
|
2610
2636
|
interface PalletNotariesError extends Enum {
|
|
2611
2637
|
readonly isProposalNotFound: boolean;
|
|
2612
2638
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -2619,7 +2645,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2619
2645
|
readonly isInvalidNotary: boolean;
|
|
2620
2646
|
readonly type: 'ProposalNotFound' | 'MaxNotariesExceeded' | 'MaxProposalsPerBlockExceeded' | 'NotAnActiveNotary' | 'InvalidNotaryOperator' | 'NoMoreNotaryIds' | 'EffectiveTickTooSoon' | 'TooManyKeys' | 'InvalidNotary';
|
|
2621
2647
|
}
|
|
2622
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
2648
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (391) */
|
|
2623
2649
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
2624
2650
|
readonly notebookNumber: Compact<u32>;
|
|
2625
2651
|
readonly tick: Compact<u64>;
|
|
@@ -2627,7 +2653,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2627
2653
|
readonly secretHash: H256;
|
|
2628
2654
|
readonly parentSecret: Option<H256>;
|
|
2629
2655
|
}
|
|
2630
|
-
/** @name PalletNotebookError (
|
|
2656
|
+
/** @name PalletNotebookError (394) */
|
|
2631
2657
|
interface PalletNotebookError extends Enum {
|
|
2632
2658
|
readonly isDuplicateNotebookNumber: boolean;
|
|
2633
2659
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -2646,17 +2672,17 @@ declare module '@polkadot/types/lookup' {
|
|
|
2646
2672
|
readonly isInvalidNotebookSubmissionTick: boolean;
|
|
2647
2673
|
readonly type: 'DuplicateNotebookNumber' | 'MissingNotebookNumber' | 'NotebookTickAlreadyUsed' | 'InvalidNotebookSignature' | 'InvalidSecretProvided' | 'CouldNotDecodeNotebook' | 'DuplicateNotebookDigest' | 'MissingNotebookDigest' | 'InvalidNotebookDigest' | 'MultipleNotebookInherentsProvided' | 'InternalError' | 'NotebookSubmittedForLockedNotary' | 'InvalidReprocessNotebook' | 'InvalidNotaryOperator' | 'InvalidNotebookSubmissionTick';
|
|
2648
2674
|
}
|
|
2649
|
-
/** @name PalletChainTransferQueuedTransferOut (
|
|
2675
|
+
/** @name PalletChainTransferQueuedTransferOut (395) */
|
|
2650
2676
|
interface PalletChainTransferQueuedTransferOut extends Struct {
|
|
2651
2677
|
readonly accountId: AccountId32;
|
|
2652
2678
|
readonly amount: u128;
|
|
2653
2679
|
readonly expirationTick: u64;
|
|
2654
2680
|
readonly notaryId: u32;
|
|
2655
2681
|
}
|
|
2656
|
-
/** @name FrameSupportPalletId (
|
|
2682
|
+
/** @name FrameSupportPalletId (401) */
|
|
2657
2683
|
interface FrameSupportPalletId extends U8aFixed {
|
|
2658
2684
|
}
|
|
2659
|
-
/** @name PalletChainTransferError (
|
|
2685
|
+
/** @name PalletChainTransferError (402) */
|
|
2660
2686
|
interface PalletChainTransferError extends Enum {
|
|
2661
2687
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
2662
2688
|
readonly isInsufficientFunds: boolean;
|
|
@@ -2666,7 +2692,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2666
2692
|
readonly isInvalidNotaryUsedForTransfer: boolean;
|
|
2667
2693
|
readonly type: 'MaxBlockTransfersExceeded' | 'InsufficientFunds' | 'InsufficientNotarizedFunds' | 'InvalidOrDuplicatedLocalchainTransfer' | 'NotebookIncludesExpiredLocalchainTransfer' | 'InvalidNotaryUsedForTransfer';
|
|
2668
2694
|
}
|
|
2669
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
2695
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (407) */
|
|
2670
2696
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
2671
2697
|
readonly notaryId: Compact<u32>;
|
|
2672
2698
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2674,12 +2700,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
2674
2700
|
readonly blockVotesCount: Compact<u32>;
|
|
2675
2701
|
readonly blockVotingPower: Compact<u128>;
|
|
2676
2702
|
}
|
|
2677
|
-
/** @name PalletBlockSealSpecError (
|
|
2703
|
+
/** @name PalletBlockSealSpecError (412) */
|
|
2678
2704
|
interface PalletBlockSealSpecError extends Enum {
|
|
2679
2705
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
2680
2706
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
2681
2707
|
}
|
|
2682
|
-
/** @name PalletDomainsError (
|
|
2708
|
+
/** @name PalletDomainsError (414) */
|
|
2683
2709
|
interface PalletDomainsError extends Enum {
|
|
2684
2710
|
readonly isDomainNotRegistered: boolean;
|
|
2685
2711
|
readonly isNotDomainOwner: boolean;
|
|
@@ -2688,7 +2714,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2688
2714
|
readonly isAccountDecodingError: boolean;
|
|
2689
2715
|
readonly type: 'DomainNotRegistered' | 'NotDomainOwner' | 'FailedToAddToAddressHistory' | 'FailedToAddExpiringDomain' | 'AccountDecodingError';
|
|
2690
2716
|
}
|
|
2691
|
-
/** @name PalletPriceIndexError (
|
|
2717
|
+
/** @name PalletPriceIndexError (415) */
|
|
2692
2718
|
interface PalletPriceIndexError extends Enum {
|
|
2693
2719
|
readonly isNotAuthorizedOperator: boolean;
|
|
2694
2720
|
readonly isMissingValue: boolean;
|
|
@@ -2696,7 +2722,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2696
2722
|
readonly isMaxPriceChangePerTickExceeded: boolean;
|
|
2697
2723
|
readonly type: 'NotAuthorizedOperator' | 'MissingValue' | 'PricesTooOld' | 'MaxPriceChangePerTickExceeded';
|
|
2698
2724
|
}
|
|
2699
|
-
/** @name PalletGrandpaStoredState (
|
|
2725
|
+
/** @name PalletGrandpaStoredState (416) */
|
|
2700
2726
|
interface PalletGrandpaStoredState extends Enum {
|
|
2701
2727
|
readonly isLive: boolean;
|
|
2702
2728
|
readonly isPendingPause: boolean;
|
|
@@ -2712,14 +2738,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2712
2738
|
} & Struct;
|
|
2713
2739
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
2714
2740
|
}
|
|
2715
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
2741
|
+
/** @name PalletGrandpaStoredPendingChange (417) */
|
|
2716
2742
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
2717
2743
|
readonly scheduledAt: u32;
|
|
2718
2744
|
readonly delay: u32;
|
|
2719
2745
|
readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
|
|
2720
2746
|
readonly forced: Option<u32>;
|
|
2721
2747
|
}
|
|
2722
|
-
/** @name PalletGrandpaError (
|
|
2748
|
+
/** @name PalletGrandpaError (420) */
|
|
2723
2749
|
interface PalletGrandpaError extends Enum {
|
|
2724
2750
|
readonly isPauseFailed: boolean;
|
|
2725
2751
|
readonly isResumeFailed: boolean;
|
|
@@ -2730,13 +2756,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2730
2756
|
readonly isDuplicateOffenceReport: boolean;
|
|
2731
2757
|
readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
|
|
2732
2758
|
}
|
|
2733
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
2759
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (421) */
|
|
2734
2760
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
2735
2761
|
readonly blockAuthorAccountId: AccountId32;
|
|
2736
2762
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
2737
2763
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
2738
2764
|
}
|
|
2739
|
-
/** @name PalletBlockSealError (
|
|
2765
|
+
/** @name PalletBlockSealError (425) */
|
|
2740
2766
|
interface PalletBlockSealError extends Enum {
|
|
2741
2767
|
readonly isInvalidVoteSealStrength: boolean;
|
|
2742
2768
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -2759,43 +2785,43 @@ declare module '@polkadot/types/lookup' {
|
|
|
2759
2785
|
readonly isInvalidComputeBlockTick: boolean;
|
|
2760
2786
|
readonly type: 'InvalidVoteSealStrength' | 'InvalidSubmitter' | 'UnableToDecodeVoteAccount' | 'UnregisteredBlockAuthor' | 'InvalidBlockVoteProof' | 'NoGrandparentVoteMinimum' | 'DuplicateBlockSealProvided' | 'InsufficientVotingPower' | 'ParentVotingKeyNotFound' | 'InvalidVoteGrandparentHash' | 'IneligibleNotebookUsed' | 'NoEligibleVotingRoot' | 'CouldNotDecodeVote' | 'MaxNotebooksAtTickExceeded' | 'NoClosestMinerFoundForVote' | 'BlockVoteInvalidSignature' | 'InvalidForkPowerParent' | 'BlockSealDecodeError' | 'InvalidComputeBlockTick';
|
|
2761
2787
|
}
|
|
2762
|
-
/** @name PalletBlockRewardsError (
|
|
2788
|
+
/** @name PalletBlockRewardsError (428) */
|
|
2763
2789
|
type PalletBlockRewardsError = Null;
|
|
2764
|
-
/** @name PalletMintMintAction (
|
|
2790
|
+
/** @name PalletMintMintAction (433) */
|
|
2765
2791
|
interface PalletMintMintAction extends Struct {
|
|
2766
2792
|
readonly argonBurned: u128;
|
|
2767
2793
|
readonly argonMinted: u128;
|
|
2768
2794
|
readonly bitcoinMinted: u128;
|
|
2769
2795
|
}
|
|
2770
|
-
/** @name PalletMintError (
|
|
2796
|
+
/** @name PalletMintError (434) */
|
|
2771
2797
|
interface PalletMintError extends Enum {
|
|
2772
2798
|
readonly isTooManyPendingMints: boolean;
|
|
2773
2799
|
readonly type: 'TooManyPendingMints';
|
|
2774
2800
|
}
|
|
2775
|
-
/** @name PalletBalancesBalanceLock (
|
|
2801
|
+
/** @name PalletBalancesBalanceLock (436) */
|
|
2776
2802
|
interface PalletBalancesBalanceLock extends Struct {
|
|
2777
2803
|
readonly id: U8aFixed;
|
|
2778
2804
|
readonly amount: u128;
|
|
2779
2805
|
readonly reasons: PalletBalancesReasons;
|
|
2780
2806
|
}
|
|
2781
|
-
/** @name PalletBalancesReasons (
|
|
2807
|
+
/** @name PalletBalancesReasons (437) */
|
|
2782
2808
|
interface PalletBalancesReasons extends Enum {
|
|
2783
2809
|
readonly isFee: boolean;
|
|
2784
2810
|
readonly isMisc: boolean;
|
|
2785
2811
|
readonly isAll: boolean;
|
|
2786
2812
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
2787
2813
|
}
|
|
2788
|
-
/** @name PalletBalancesReserveData (
|
|
2814
|
+
/** @name PalletBalancesReserveData (440) */
|
|
2789
2815
|
interface PalletBalancesReserveData extends Struct {
|
|
2790
2816
|
readonly id: U8aFixed;
|
|
2791
2817
|
readonly amount: u128;
|
|
2792
2818
|
}
|
|
2793
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
2819
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (443) */
|
|
2794
2820
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
2795
2821
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
2796
2822
|
readonly amount: u128;
|
|
2797
2823
|
}
|
|
2798
|
-
/** @name ArgonRuntimeRuntimeHoldReason (
|
|
2824
|
+
/** @name ArgonRuntimeRuntimeHoldReason (444) */
|
|
2799
2825
|
interface ArgonRuntimeRuntimeHoldReason extends Enum {
|
|
2800
2826
|
readonly isMiningSlot: boolean;
|
|
2801
2827
|
readonly asMiningSlot: PalletMiningSlotHoldReason;
|
|
@@ -2807,44 +2833,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
2807
2833
|
readonly asBlockRewards: PalletBlockRewardsHoldReason;
|
|
2808
2834
|
readonly type: 'MiningSlot' | 'Vaults' | 'BitcoinLocks' | 'BlockRewards';
|
|
2809
2835
|
}
|
|
2810
|
-
/** @name PalletMiningSlotHoldReason (
|
|
2836
|
+
/** @name PalletMiningSlotHoldReason (445) */
|
|
2811
2837
|
interface PalletMiningSlotHoldReason extends Enum {
|
|
2812
2838
|
readonly isRegisterAsMiner: boolean;
|
|
2813
2839
|
readonly type: 'RegisterAsMiner';
|
|
2814
2840
|
}
|
|
2815
|
-
/** @name PalletVaultsHoldReason (
|
|
2841
|
+
/** @name PalletVaultsHoldReason (446) */
|
|
2816
2842
|
interface PalletVaultsHoldReason extends Enum {
|
|
2817
2843
|
readonly isEnterVault: boolean;
|
|
2818
2844
|
readonly isObligationFee: boolean;
|
|
2819
2845
|
readonly type: 'EnterVault' | 'ObligationFee';
|
|
2820
2846
|
}
|
|
2821
|
-
/** @name PalletBitcoinLocksHoldReason (
|
|
2847
|
+
/** @name PalletBitcoinLocksHoldReason (447) */
|
|
2822
2848
|
interface PalletBitcoinLocksHoldReason extends Enum {
|
|
2823
2849
|
readonly isReleaseBitcoinLock: boolean;
|
|
2824
2850
|
readonly type: 'ReleaseBitcoinLock';
|
|
2825
2851
|
}
|
|
2826
|
-
/** @name PalletBlockRewardsHoldReason (
|
|
2852
|
+
/** @name PalletBlockRewardsHoldReason (448) */
|
|
2827
2853
|
interface PalletBlockRewardsHoldReason extends Enum {
|
|
2828
2854
|
readonly isMaturationPeriod: boolean;
|
|
2829
2855
|
readonly type: 'MaturationPeriod';
|
|
2830
2856
|
}
|
|
2831
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
2857
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (451) */
|
|
2832
2858
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
2833
2859
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
2834
2860
|
readonly amount: u128;
|
|
2835
2861
|
}
|
|
2836
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
2862
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (452) */
|
|
2837
2863
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
2838
2864
|
readonly isBlockRewards: boolean;
|
|
2839
2865
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
2840
2866
|
readonly type: 'BlockRewards';
|
|
2841
2867
|
}
|
|
2842
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
2868
|
+
/** @name PalletBlockRewardsFreezeReason (453) */
|
|
2843
2869
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
2844
2870
|
readonly isMaturationPeriod: boolean;
|
|
2845
2871
|
readonly type: 'MaturationPeriod';
|
|
2846
2872
|
}
|
|
2847
|
-
/** @name PalletBalancesError (
|
|
2873
|
+
/** @name PalletBalancesError (455) */
|
|
2848
2874
|
interface PalletBalancesError extends Enum {
|
|
2849
2875
|
readonly isVestingBalance: boolean;
|
|
2850
2876
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -2860,7 +2886,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2860
2886
|
readonly isDeltaZero: boolean;
|
|
2861
2887
|
readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
|
|
2862
2888
|
}
|
|
2863
|
-
/** @name PalletTxPauseError (
|
|
2889
|
+
/** @name PalletTxPauseError (457) */
|
|
2864
2890
|
interface PalletTxPauseError extends Enum {
|
|
2865
2891
|
readonly isIsPaused: boolean;
|
|
2866
2892
|
readonly isIsUnpaused: boolean;
|
|
@@ -2868,23 +2894,23 @@ declare module '@polkadot/types/lookup' {
|
|
|
2868
2894
|
readonly isNotFound: boolean;
|
|
2869
2895
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
2870
2896
|
}
|
|
2871
|
-
/** @name PalletTransactionPaymentReleases (
|
|
2897
|
+
/** @name PalletTransactionPaymentReleases (458) */
|
|
2872
2898
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
2873
2899
|
readonly isV1Ancient: boolean;
|
|
2874
2900
|
readonly isV2: boolean;
|
|
2875
2901
|
readonly type: 'V1Ancient' | 'V2';
|
|
2876
2902
|
}
|
|
2877
|
-
/** @name PalletUtilityError (
|
|
2903
|
+
/** @name PalletUtilityError (459) */
|
|
2878
2904
|
interface PalletUtilityError extends Enum {
|
|
2879
2905
|
readonly isTooManyCalls: boolean;
|
|
2880
2906
|
readonly type: 'TooManyCalls';
|
|
2881
2907
|
}
|
|
2882
|
-
/** @name PalletSudoError (
|
|
2908
|
+
/** @name PalletSudoError (460) */
|
|
2883
2909
|
interface PalletSudoError extends Enum {
|
|
2884
2910
|
readonly isRequireSudo: boolean;
|
|
2885
2911
|
readonly type: 'RequireSudo';
|
|
2886
2912
|
}
|
|
2887
|
-
/** @name PalletIsmpError (
|
|
2913
|
+
/** @name PalletIsmpError (461) */
|
|
2888
2914
|
interface PalletIsmpError extends Enum {
|
|
2889
2915
|
readonly isInvalidMessage: boolean;
|
|
2890
2916
|
readonly isMessageNotFound: boolean;
|
|
@@ -2893,9 +2919,9 @@ declare module '@polkadot/types/lookup' {
|
|
|
2893
2919
|
readonly isChallengePeriodUpdateFailed: boolean;
|
|
2894
2920
|
readonly type: 'InvalidMessage' | 'MessageNotFound' | 'ConsensusClientCreationFailed' | 'UnbondingPeriodUpdateFailed' | 'ChallengePeriodUpdateFailed';
|
|
2895
2921
|
}
|
|
2896
|
-
/** @name PalletHyperbridgeError (
|
|
2922
|
+
/** @name PalletHyperbridgeError (462) */
|
|
2897
2923
|
type PalletHyperbridgeError = Null;
|
|
2898
|
-
/** @name PalletTokenGatewayError (
|
|
2924
|
+
/** @name PalletTokenGatewayError (464) */
|
|
2899
2925
|
interface PalletTokenGatewayError extends Enum {
|
|
2900
2926
|
readonly isUnregisteredAsset: boolean;
|
|
2901
2927
|
readonly isAssetTeleportError: boolean;
|
|
@@ -2908,32 +2934,32 @@ declare module '@polkadot/types/lookup' {
|
|
|
2908
2934
|
readonly isNotAssetOwner: boolean;
|
|
2909
2935
|
readonly type: 'UnregisteredAsset' | 'AssetTeleportError' | 'CoprocessorNotConfigured' | 'DispatchError' | 'AssetCreationError' | 'AssetDecimalsNotFound' | 'NotInitialized' | 'UnknownAsset' | 'NotAssetOwner';
|
|
2910
2936
|
}
|
|
2911
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
2937
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (467) */
|
|
2912
2938
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
2913
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
2939
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (468) */
|
|
2914
2940
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
2915
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
2941
|
+
/** @name FrameSystemExtensionsCheckTxVersion (469) */
|
|
2916
2942
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
2917
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
2943
|
+
/** @name FrameSystemExtensionsCheckGenesis (470) */
|
|
2918
2944
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
2919
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
2945
|
+
/** @name FrameSystemExtensionsCheckNonce (473) */
|
|
2920
2946
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
|
|
2921
2947
|
}
|
|
2922
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
2948
|
+
/** @name FrameSystemExtensionsCheckWeight (474) */
|
|
2923
2949
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
2924
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
2950
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (475) */
|
|
2925
2951
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
|
|
2926
2952
|
}
|
|
2927
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
2953
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (476) */
|
|
2928
2954
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
2929
2955
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
2930
2956
|
}
|
|
2931
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
2957
|
+
/** @name FrameMetadataHashExtensionMode (477) */
|
|
2932
2958
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
2933
2959
|
readonly isDisabled: boolean;
|
|
2934
2960
|
readonly isEnabled: boolean;
|
|
2935
2961
|
readonly type: 'Disabled' | 'Enabled';
|
|
2936
2962
|
}
|
|
2937
|
-
/** @name ArgonRuntimeRuntime (
|
|
2963
|
+
/** @name ArgonRuntimeRuntime (479) */
|
|
2938
2964
|
type ArgonRuntimeRuntime = Null;
|
|
2939
2965
|
}
|