@argonprotocol/mainchain 1.0.3 → 1.0.5
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/lib/cjs/interfaces/augment-api-consts.d.ts +4 -0
- package/lib/cjs/interfaces/augment-api-errors.d.ts +8 -0
- package/lib/cjs/interfaces/augment-api-events.d.ts +13 -0
- package/lib/cjs/interfaces/augment-api-query.d.ts +5 -2
- package/lib/cjs/interfaces/augment-types.d.ts +2 -1
- package/lib/cjs/interfaces/lookup.d.ts +70 -55
- package/lib/cjs/interfaces/lookup.js +73 -58
- package/lib/cjs/interfaces/lookup.js.map +1 -1
- package/lib/cjs/interfaces/types-lookup.d.ts +79 -59
- package/lib/esm/interfaces/augment-api-consts.d.ts +4 -0
- package/lib/esm/interfaces/augment-api-errors.d.ts +8 -0
- package/lib/esm/interfaces/augment-api-events.d.ts +13 -0
- package/lib/esm/interfaces/augment-api-query.d.ts +5 -2
- package/lib/esm/interfaces/augment-types.d.ts +2 -1
- package/lib/esm/interfaces/lookup.d.ts +70 -55
- package/lib/esm/interfaces/lookup.js +73 -58
- package/lib/esm/interfaces/lookup.js.map +1 -1
- package/lib/esm/interfaces/types-lookup.d.ts +79 -59
- package/lib/tsconfig-cjs.tsbuildinfo +1 -1
- package/lib/tsconfig-types.tsbuildinfo +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/types/interfaces/augment-api-consts.d.ts +4 -0
- package/lib/types/interfaces/augment-api-errors.d.ts +8 -0
- package/lib/types/interfaces/augment-api-events.d.ts +13 -0
- package/lib/types/interfaces/augment-api-query.d.ts +5 -2
- package/lib/types/interfaces/augment-types.d.ts +2 -1
- package/lib/types/interfaces/lookup.d.ts +70 -55
- package/lib/types/interfaces/types-lookup.d.ts +79 -59
- package/package.json +5 -5
|
@@ -380,6 +380,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
380
380
|
readonly miningArgons: u128;
|
|
381
381
|
readonly securitizationPercent: u128;
|
|
382
382
|
} & Struct;
|
|
383
|
+
readonly isVaultMiningBondsIncreased: boolean;
|
|
384
|
+
readonly asVaultMiningBondsIncreased: {
|
|
385
|
+
readonly vaultId: u32;
|
|
386
|
+
readonly miningArgons: u128;
|
|
387
|
+
} & Struct;
|
|
388
|
+
readonly isVaultMiningBondsChangeScheduled: boolean;
|
|
389
|
+
readonly asVaultMiningBondsChangeScheduled: {
|
|
390
|
+
readonly vaultId: u32;
|
|
391
|
+
readonly changeBlock: u32;
|
|
392
|
+
} & Struct;
|
|
383
393
|
readonly isVaultTermsChangeScheduled: boolean;
|
|
384
394
|
readonly asVaultTermsChangeScheduled: {
|
|
385
395
|
readonly vaultId: u32;
|
|
@@ -400,7 +410,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
400
410
|
readonly asVaultBitcoinXpubChange: {
|
|
401
411
|
readonly vaultId: u32;
|
|
402
412
|
} & Struct;
|
|
403
|
-
readonly type: 'VaultCreated' | 'VaultModified' | 'VaultTermsChangeScheduled' | 'VaultTermsChanged' | 'VaultClosed' | 'VaultBitcoinXpubChange';
|
|
413
|
+
readonly type: 'VaultCreated' | 'VaultModified' | 'VaultMiningBondsIncreased' | 'VaultMiningBondsChangeScheduled' | 'VaultTermsChangeScheduled' | 'VaultTermsChanged' | 'VaultClosed' | 'VaultBitcoinXpubChange';
|
|
404
414
|
}
|
|
405
415
|
/** @name PalletBondEvent (59) */
|
|
406
416
|
interface PalletBondEvent extends Enum {
|
|
@@ -419,6 +429,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
419
429
|
readonly vaultId: u32;
|
|
420
430
|
readonly bondId: u64;
|
|
421
431
|
} & Struct;
|
|
432
|
+
readonly isBondModified: boolean;
|
|
433
|
+
readonly asBondModified: {
|
|
434
|
+
readonly vaultId: u32;
|
|
435
|
+
readonly bondId: u64;
|
|
436
|
+
readonly amount: u128;
|
|
437
|
+
} & Struct;
|
|
422
438
|
readonly isBondCanceled: boolean;
|
|
423
439
|
readonly asBondCanceled: {
|
|
424
440
|
readonly vaultId: u32;
|
|
@@ -468,7 +484,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
468
484
|
readonly utxoId: u64;
|
|
469
485
|
readonly error: SpRuntimeDispatchError;
|
|
470
486
|
} & Struct;
|
|
471
|
-
readonly type: 'BondCreated' | 'BondCompleted' | 'BondCanceled' | 'BitcoinBondBurned' | 'BitcoinUtxoCosignRequested' | 'BitcoinUtxoCosigned' | 'BitcoinCosignPastDue' | 'BondCompletionError' | 'CosignOverdueError';
|
|
487
|
+
readonly type: 'BondCreated' | 'BondCompleted' | 'BondModified' | 'BondCanceled' | 'BitcoinBondBurned' | 'BitcoinUtxoCosignRequested' | 'BitcoinUtxoCosigned' | 'BitcoinCosignPastDue' | 'BondCompletionError' | 'CosignOverdueError';
|
|
472
488
|
}
|
|
473
489
|
/** @name ArgonPrimitivesBondBondType (60) */
|
|
474
490
|
interface ArgonPrimitivesBondBondType extends Enum {
|
|
@@ -2417,6 +2433,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
2417
2433
|
readonly miningRewardSharingPercentTake: Compact<u128>;
|
|
2418
2434
|
readonly isClosed: bool;
|
|
2419
2435
|
readonly pendingTerms: Option<ITuple<[u32, ArgonPrimitivesBondVaultTerms]>>;
|
|
2436
|
+
readonly pendingMiningArgons: Option<ITuple<[u32, u128]>>;
|
|
2437
|
+
readonly pendingBitcoins: u128;
|
|
2420
2438
|
}
|
|
2421
2439
|
/** @name ArgonPrimitivesBondVaultArgons (345) */
|
|
2422
2440
|
interface ArgonPrimitivesBondVaultArgons extends Struct {
|
|
@@ -2425,7 +2443,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2425
2443
|
readonly bonded: Compact<u128>;
|
|
2426
2444
|
readonly baseFee: Compact<u128>;
|
|
2427
2445
|
}
|
|
2428
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
2446
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (351) */
|
|
2429
2447
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
2430
2448
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
2431
2449
|
readonly depth: Compact<u8>;
|
|
@@ -2434,13 +2452,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2434
2452
|
readonly chainCode: U8aFixed;
|
|
2435
2453
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
2436
2454
|
}
|
|
2437
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
2455
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (353) */
|
|
2438
2456
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
2439
2457
|
readonly isMain: boolean;
|
|
2440
2458
|
readonly isTest: boolean;
|
|
2441
2459
|
readonly type: 'Main' | 'Test';
|
|
2442
2460
|
}
|
|
2443
|
-
/** @name PalletVaultsError (
|
|
2461
|
+
/** @name PalletVaultsError (356) */
|
|
2444
2462
|
interface PalletVaultsError extends Enum {
|
|
2445
2463
|
readonly isBondNotFound: boolean;
|
|
2446
2464
|
readonly isNoMoreVaultIds: boolean;
|
|
@@ -2479,9 +2497,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2479
2497
|
readonly isInternalError: boolean;
|
|
2480
2498
|
readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
|
|
2481
2499
|
readonly isUnableToDecodeVaultBitcoinPubkey: boolean;
|
|
2482
|
-
readonly
|
|
2500
|
+
readonly isFundingChangeAlreadyScheduled: boolean;
|
|
2501
|
+
readonly type: 'BondNotFound' | 'NoMoreVaultIds' | 'NoMoreBondIds' | 'MinimumBondAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'InsufficientBitcoinsForMining' | 'AccountBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'VaultReductionBelowAllocatedFunds' | 'InvalidSecuritization' | 'ReusedVaultBitcoinXpub' | 'MaxSecuritizationPercentExceeded' | 'InvalidBondType' | 'BitcoinUtxoNotFound' | 'InsufficientSatoshisBonded' | 'NoBitcoinPricesAvailable' | 'InvalidBitcoinScript' | 'InvalidXpubkey' | 'WrongXpubNetwork' | 'UnsafeXpubkey' | 'UnableToDeriveVaultXpubChild' | 'BitcoinConversionFailed' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'FeeExceedsBondAmount' | 'NoVaultBitcoinPubkeysAvailable' | 'TermsModificationOverflow' | 'TermsChangeAlreadyScheduled' | 'InternalError' | 'UnableToGenerateVaultBitcoinPubkey' | 'UnableToDecodeVaultBitcoinPubkey' | 'FundingChangeAlreadyScheduled';
|
|
2483
2502
|
}
|
|
2484
|
-
/** @name ArgonPrimitivesBond (
|
|
2503
|
+
/** @name ArgonPrimitivesBond (357) */
|
|
2485
2504
|
interface ArgonPrimitivesBond extends Struct {
|
|
2486
2505
|
readonly bondType: ArgonPrimitivesBondBondType;
|
|
2487
2506
|
readonly vaultId: Compact<u32>;
|
|
@@ -2493,7 +2512,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2493
2512
|
readonly startBlock: Compact<u32>;
|
|
2494
2513
|
readonly expiration: ArgonPrimitivesBondBondExpiration;
|
|
2495
2514
|
}
|
|
2496
|
-
/** @name PalletBondUtxoState (
|
|
2515
|
+
/** @name PalletBondUtxoState (360) */
|
|
2497
2516
|
interface PalletBondUtxoState extends Struct {
|
|
2498
2517
|
readonly bondId: Compact<u64>;
|
|
2499
2518
|
readonly satoshis: Compact<u64>;
|
|
@@ -2507,7 +2526,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2507
2526
|
readonly utxoScriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
2508
2527
|
readonly isVerified: bool;
|
|
2509
2528
|
}
|
|
2510
|
-
/** @name PalletBondUtxoCosignRequest (
|
|
2529
|
+
/** @name PalletBondUtxoCosignRequest (364) */
|
|
2511
2530
|
interface PalletBondUtxoCosignRequest extends Struct {
|
|
2512
2531
|
readonly bondId: Compact<u64>;
|
|
2513
2532
|
readonly vaultId: Compact<u32>;
|
|
@@ -2516,7 +2535,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2516
2535
|
readonly toScriptPubkey: Bytes;
|
|
2517
2536
|
readonly redemptionPrice: Compact<u128>;
|
|
2518
2537
|
}
|
|
2519
|
-
/** @name PalletBondError (
|
|
2538
|
+
/** @name PalletBondError (368) */
|
|
2520
2539
|
interface PalletBondError extends Enum {
|
|
2521
2540
|
readonly isBondNotFound: boolean;
|
|
2522
2541
|
readonly isNoMoreBondIds: boolean;
|
|
@@ -2550,7 +2569,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2550
2569
|
readonly asGenericBondError: ArgonPrimitivesBondBondError;
|
|
2551
2570
|
readonly type: 'BondNotFound' | 'NoMoreBondIds' | 'MinimumBondAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'InsufficientBitcoinsForMining' | 'AccountWouldGoBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'BondRedemptionNotLocked' | 'BitcoinUnlockInitiationDeadlinePassed' | 'BitcoinFeeTooHigh' | 'InvalidBondType' | 'BitcoinUtxoNotFound' | 'BitcoinUnableToBeDecodedForUnlock' | 'BitcoinSignatureUnableToBeDecoded' | 'BitcoinPubkeyUnableToBeDecoded' | 'BitcoinInvalidCosignature' | 'InsufficientSatoshisBonded' | 'NoBitcoinPricesAvailable' | 'InvalidBitcoinScript' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'FeeExceedsBondAmount' | 'GenericBondError';
|
|
2552
2571
|
}
|
|
2553
|
-
/** @name PalletNotariesError (
|
|
2572
|
+
/** @name PalletNotariesError (380) */
|
|
2554
2573
|
interface PalletNotariesError extends Enum {
|
|
2555
2574
|
readonly isProposalNotFound: boolean;
|
|
2556
2575
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -2563,7 +2582,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2563
2582
|
readonly isInvalidNotary: boolean;
|
|
2564
2583
|
readonly type: 'ProposalNotFound' | 'MaxNotariesExceeded' | 'MaxProposalsPerBlockExceeded' | 'NotAnActiveNotary' | 'InvalidNotaryOperator' | 'NoMoreNotaryIds' | 'EffectiveTickTooSoon' | 'TooManyKeys' | 'InvalidNotary';
|
|
2565
2584
|
}
|
|
2566
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
2585
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (384) */
|
|
2567
2586
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
2568
2587
|
readonly notebookNumber: Compact<u32>;
|
|
2569
2588
|
readonly tick: Compact<u64>;
|
|
@@ -2571,7 +2590,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2571
2590
|
readonly secretHash: H256;
|
|
2572
2591
|
readonly parentSecret: Option<H256>;
|
|
2573
2592
|
}
|
|
2574
|
-
/** @name PalletNotebookError (
|
|
2593
|
+
/** @name PalletNotebookError (387) */
|
|
2575
2594
|
interface PalletNotebookError extends Enum {
|
|
2576
2595
|
readonly isDuplicateNotebookNumber: boolean;
|
|
2577
2596
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -2589,17 +2608,17 @@ declare module '@polkadot/types/lookup' {
|
|
|
2589
2608
|
readonly isInvalidNotaryOperator: boolean;
|
|
2590
2609
|
readonly type: 'DuplicateNotebookNumber' | 'MissingNotebookNumber' | 'NotebookTickAlreadyUsed' | 'InvalidNotebookSignature' | 'InvalidSecretProvided' | 'CouldNotDecodeNotebook' | 'DuplicateNotebookDigest' | 'MissingNotebookDigest' | 'InvalidNotebookDigest' | 'MultipleNotebookInherentsProvided' | 'InternalError' | 'NotebookSubmittedForLockedNotary' | 'InvalidReprocessNotebook' | 'InvalidNotaryOperator';
|
|
2591
2610
|
}
|
|
2592
|
-
/** @name PalletChainTransferQueuedTransferOut (
|
|
2611
|
+
/** @name PalletChainTransferQueuedTransferOut (388) */
|
|
2593
2612
|
interface PalletChainTransferQueuedTransferOut extends Struct {
|
|
2594
2613
|
readonly accountId: AccountId32;
|
|
2595
2614
|
readonly amount: u128;
|
|
2596
2615
|
readonly expirationTick: u64;
|
|
2597
2616
|
readonly notaryId: u32;
|
|
2598
2617
|
}
|
|
2599
|
-
/** @name FrameSupportPalletId (
|
|
2618
|
+
/** @name FrameSupportPalletId (394) */
|
|
2600
2619
|
interface FrameSupportPalletId extends U8aFixed {
|
|
2601
2620
|
}
|
|
2602
|
-
/** @name PalletChainTransferError (
|
|
2621
|
+
/** @name PalletChainTransferError (395) */
|
|
2603
2622
|
interface PalletChainTransferError extends Enum {
|
|
2604
2623
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
2605
2624
|
readonly isInsufficientFunds: boolean;
|
|
@@ -2609,7 +2628,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2609
2628
|
readonly isInvalidNotaryUsedForTransfer: boolean;
|
|
2610
2629
|
readonly type: 'MaxBlockTransfersExceeded' | 'InsufficientFunds' | 'InsufficientNotarizedFunds' | 'InvalidOrDuplicatedLocalchainTransfer' | 'NotebookIncludesExpiredLocalchainTransfer' | 'InvalidNotaryUsedForTransfer';
|
|
2611
2630
|
}
|
|
2612
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
2631
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (400) */
|
|
2613
2632
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
2614
2633
|
readonly notaryId: Compact<u32>;
|
|
2615
2634
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2617,12 +2636,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
2617
2636
|
readonly blockVotesCount: Compact<u32>;
|
|
2618
2637
|
readonly blockVotingPower: Compact<u128>;
|
|
2619
2638
|
}
|
|
2620
|
-
/** @name PalletBlockSealSpecError (
|
|
2639
|
+
/** @name PalletBlockSealSpecError (405) */
|
|
2621
2640
|
interface PalletBlockSealSpecError extends Enum {
|
|
2622
2641
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
2623
2642
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
2624
2643
|
}
|
|
2625
|
-
/** @name PalletDomainsError (
|
|
2644
|
+
/** @name PalletDomainsError (407) */
|
|
2626
2645
|
interface PalletDomainsError extends Enum {
|
|
2627
2646
|
readonly isDomainNotRegistered: boolean;
|
|
2628
2647
|
readonly isNotDomainOwner: boolean;
|
|
@@ -2631,7 +2650,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2631
2650
|
readonly isAccountDecodingError: boolean;
|
|
2632
2651
|
readonly type: 'DomainNotRegistered' | 'NotDomainOwner' | 'FailedToAddToAddressHistory' | 'FailedToAddExpiringDomain' | 'AccountDecodingError';
|
|
2633
2652
|
}
|
|
2634
|
-
/** @name PalletPriceIndexError (
|
|
2653
|
+
/** @name PalletPriceIndexError (408) */
|
|
2635
2654
|
interface PalletPriceIndexError extends Enum {
|
|
2636
2655
|
readonly isNotAuthorizedOperator: boolean;
|
|
2637
2656
|
readonly isMissingValue: boolean;
|
|
@@ -2639,7 +2658,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2639
2658
|
readonly isMaxPriceChangePerTickExceeded: boolean;
|
|
2640
2659
|
readonly type: 'NotAuthorizedOperator' | 'MissingValue' | 'PricesTooOld' | 'MaxPriceChangePerTickExceeded';
|
|
2641
2660
|
}
|
|
2642
|
-
/** @name PalletGrandpaStoredState (
|
|
2661
|
+
/** @name PalletGrandpaStoredState (409) */
|
|
2643
2662
|
interface PalletGrandpaStoredState extends Enum {
|
|
2644
2663
|
readonly isLive: boolean;
|
|
2645
2664
|
readonly isPendingPause: boolean;
|
|
@@ -2655,14 +2674,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2655
2674
|
} & Struct;
|
|
2656
2675
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
2657
2676
|
}
|
|
2658
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
2677
|
+
/** @name PalletGrandpaStoredPendingChange (410) */
|
|
2659
2678
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
2660
2679
|
readonly scheduledAt: u32;
|
|
2661
2680
|
readonly delay: u32;
|
|
2662
2681
|
readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
|
|
2663
2682
|
readonly forced: Option<u32>;
|
|
2664
2683
|
}
|
|
2665
|
-
/** @name PalletGrandpaError (
|
|
2684
|
+
/** @name PalletGrandpaError (413) */
|
|
2666
2685
|
interface PalletGrandpaError extends Enum {
|
|
2667
2686
|
readonly isPauseFailed: boolean;
|
|
2668
2687
|
readonly isResumeFailed: boolean;
|
|
@@ -2673,13 +2692,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2673
2692
|
readonly isDuplicateOffenceReport: boolean;
|
|
2674
2693
|
readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
|
|
2675
2694
|
}
|
|
2676
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
2695
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (414) */
|
|
2677
2696
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
2678
2697
|
readonly blockAuthorAccountId: AccountId32;
|
|
2679
2698
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
2680
2699
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
2681
2700
|
}
|
|
2682
|
-
/** @name PalletBlockSealError (
|
|
2701
|
+
/** @name PalletBlockSealError (418) */
|
|
2683
2702
|
interface PalletBlockSealError extends Enum {
|
|
2684
2703
|
readonly isInvalidVoteSealStrength: boolean;
|
|
2685
2704
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -2699,45 +2718,46 @@ declare module '@polkadot/types/lookup' {
|
|
|
2699
2718
|
readonly isBlockVoteInvalidSignature: boolean;
|
|
2700
2719
|
readonly isInvalidForkPowerParent: boolean;
|
|
2701
2720
|
readonly isBlockSealDecodeError: boolean;
|
|
2702
|
-
readonly
|
|
2721
|
+
readonly isInvalidComputeBlockTick: boolean;
|
|
2722
|
+
readonly type: 'InvalidVoteSealStrength' | 'InvalidSubmitter' | 'UnableToDecodeVoteAccount' | 'UnregisteredBlockAuthor' | 'InvalidBlockVoteProof' | 'NoGrandparentVoteMinimum' | 'DuplicateBlockSealProvided' | 'InsufficientVotingPower' | 'ParentVotingKeyNotFound' | 'InvalidVoteGrandparentHash' | 'IneligibleNotebookUsed' | 'NoEligibleVotingRoot' | 'CouldNotDecodeVote' | 'MaxNotebooksAtTickExceeded' | 'NoClosestMinerFoundForVote' | 'BlockVoteInvalidSignature' | 'InvalidForkPowerParent' | 'BlockSealDecodeError' | 'InvalidComputeBlockTick';
|
|
2703
2723
|
}
|
|
2704
|
-
/** @name PalletBlockRewardsError (
|
|
2724
|
+
/** @name PalletBlockRewardsError (421) */
|
|
2705
2725
|
type PalletBlockRewardsError = Null;
|
|
2706
|
-
/** @name PalletMintMintAction (
|
|
2726
|
+
/** @name PalletMintMintAction (426) */
|
|
2707
2727
|
interface PalletMintMintAction extends Struct {
|
|
2708
2728
|
readonly argonBurned: u128;
|
|
2709
2729
|
readonly argonMinted: u128;
|
|
2710
2730
|
readonly bitcoinMinted: u128;
|
|
2711
2731
|
}
|
|
2712
|
-
/** @name PalletMintError (
|
|
2732
|
+
/** @name PalletMintError (427) */
|
|
2713
2733
|
interface PalletMintError extends Enum {
|
|
2714
2734
|
readonly isTooManyPendingMints: boolean;
|
|
2715
2735
|
readonly type: 'TooManyPendingMints';
|
|
2716
2736
|
}
|
|
2717
|
-
/** @name PalletBalancesBalanceLock (
|
|
2737
|
+
/** @name PalletBalancesBalanceLock (429) */
|
|
2718
2738
|
interface PalletBalancesBalanceLock extends Struct {
|
|
2719
2739
|
readonly id: U8aFixed;
|
|
2720
2740
|
readonly amount: u128;
|
|
2721
2741
|
readonly reasons: PalletBalancesReasons;
|
|
2722
2742
|
}
|
|
2723
|
-
/** @name PalletBalancesReasons (
|
|
2743
|
+
/** @name PalletBalancesReasons (430) */
|
|
2724
2744
|
interface PalletBalancesReasons extends Enum {
|
|
2725
2745
|
readonly isFee: boolean;
|
|
2726
2746
|
readonly isMisc: boolean;
|
|
2727
2747
|
readonly isAll: boolean;
|
|
2728
2748
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
2729
2749
|
}
|
|
2730
|
-
/** @name PalletBalancesReserveData (
|
|
2750
|
+
/** @name PalletBalancesReserveData (433) */
|
|
2731
2751
|
interface PalletBalancesReserveData extends Struct {
|
|
2732
2752
|
readonly id: U8aFixed;
|
|
2733
2753
|
readonly amount: u128;
|
|
2734
2754
|
}
|
|
2735
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
2755
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (436) */
|
|
2736
2756
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
2737
2757
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
2738
2758
|
readonly amount: u128;
|
|
2739
2759
|
}
|
|
2740
|
-
/** @name ArgonRuntimeRuntimeHoldReason (
|
|
2760
|
+
/** @name ArgonRuntimeRuntimeHoldReason (437) */
|
|
2741
2761
|
interface ArgonRuntimeRuntimeHoldReason extends Enum {
|
|
2742
2762
|
readonly isMiningSlot: boolean;
|
|
2743
2763
|
readonly asMiningSlot: PalletMiningSlotHoldReason;
|
|
@@ -2749,44 +2769,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
2749
2769
|
readonly asBlockRewards: PalletBlockRewardsHoldReason;
|
|
2750
2770
|
readonly type: 'MiningSlot' | 'Vaults' | 'Bonds' | 'BlockRewards';
|
|
2751
2771
|
}
|
|
2752
|
-
/** @name PalletMiningSlotHoldReason (
|
|
2772
|
+
/** @name PalletMiningSlotHoldReason (438) */
|
|
2753
2773
|
interface PalletMiningSlotHoldReason extends Enum {
|
|
2754
2774
|
readonly isRegisterAsMiner: boolean;
|
|
2755
2775
|
readonly type: 'RegisterAsMiner';
|
|
2756
2776
|
}
|
|
2757
|
-
/** @name PalletVaultsHoldReason (
|
|
2777
|
+
/** @name PalletVaultsHoldReason (439) */
|
|
2758
2778
|
interface PalletVaultsHoldReason extends Enum {
|
|
2759
2779
|
readonly isEnterVault: boolean;
|
|
2760
2780
|
readonly isBondFee: boolean;
|
|
2761
2781
|
readonly type: 'EnterVault' | 'BondFee';
|
|
2762
2782
|
}
|
|
2763
|
-
/** @name PalletBondHoldReason (
|
|
2783
|
+
/** @name PalletBondHoldReason (440) */
|
|
2764
2784
|
interface PalletBondHoldReason extends Enum {
|
|
2765
2785
|
readonly isUnlockingBitcoin: boolean;
|
|
2766
2786
|
readonly type: 'UnlockingBitcoin';
|
|
2767
2787
|
}
|
|
2768
|
-
/** @name PalletBlockRewardsHoldReason (
|
|
2788
|
+
/** @name PalletBlockRewardsHoldReason (441) */
|
|
2769
2789
|
interface PalletBlockRewardsHoldReason extends Enum {
|
|
2770
2790
|
readonly isMaturationPeriod: boolean;
|
|
2771
2791
|
readonly type: 'MaturationPeriod';
|
|
2772
2792
|
}
|
|
2773
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
2793
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (444) */
|
|
2774
2794
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
2775
2795
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
2776
2796
|
readonly amount: u128;
|
|
2777
2797
|
}
|
|
2778
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
2798
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (445) */
|
|
2779
2799
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
2780
2800
|
readonly isBlockRewards: boolean;
|
|
2781
2801
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
2782
2802
|
readonly type: 'BlockRewards';
|
|
2783
2803
|
}
|
|
2784
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
2804
|
+
/** @name PalletBlockRewardsFreezeReason (446) */
|
|
2785
2805
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
2786
2806
|
readonly isMaturationPeriod: boolean;
|
|
2787
2807
|
readonly type: 'MaturationPeriod';
|
|
2788
2808
|
}
|
|
2789
|
-
/** @name PalletBalancesError (
|
|
2809
|
+
/** @name PalletBalancesError (448) */
|
|
2790
2810
|
interface PalletBalancesError extends Enum {
|
|
2791
2811
|
readonly isVestingBalance: boolean;
|
|
2792
2812
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -2802,7 +2822,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2802
2822
|
readonly isDeltaZero: boolean;
|
|
2803
2823
|
readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
|
|
2804
2824
|
}
|
|
2805
|
-
/** @name PalletTxPauseError (
|
|
2825
|
+
/** @name PalletTxPauseError (450) */
|
|
2806
2826
|
interface PalletTxPauseError extends Enum {
|
|
2807
2827
|
readonly isIsPaused: boolean;
|
|
2808
2828
|
readonly isIsUnpaused: boolean;
|
|
@@ -2810,23 +2830,23 @@ declare module '@polkadot/types/lookup' {
|
|
|
2810
2830
|
readonly isNotFound: boolean;
|
|
2811
2831
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
2812
2832
|
}
|
|
2813
|
-
/** @name PalletTransactionPaymentReleases (
|
|
2833
|
+
/** @name PalletTransactionPaymentReleases (451) */
|
|
2814
2834
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
2815
2835
|
readonly isV1Ancient: boolean;
|
|
2816
2836
|
readonly isV2: boolean;
|
|
2817
2837
|
readonly type: 'V1Ancient' | 'V2';
|
|
2818
2838
|
}
|
|
2819
|
-
/** @name PalletUtilityError (
|
|
2839
|
+
/** @name PalletUtilityError (452) */
|
|
2820
2840
|
interface PalletUtilityError extends Enum {
|
|
2821
2841
|
readonly isTooManyCalls: boolean;
|
|
2822
2842
|
readonly type: 'TooManyCalls';
|
|
2823
2843
|
}
|
|
2824
|
-
/** @name PalletSudoError (
|
|
2844
|
+
/** @name PalletSudoError (453) */
|
|
2825
2845
|
interface PalletSudoError extends Enum {
|
|
2826
2846
|
readonly isRequireSudo: boolean;
|
|
2827
2847
|
readonly type: 'RequireSudo';
|
|
2828
2848
|
}
|
|
2829
|
-
/** @name PalletIsmpError (
|
|
2849
|
+
/** @name PalletIsmpError (454) */
|
|
2830
2850
|
interface PalletIsmpError extends Enum {
|
|
2831
2851
|
readonly isInvalidMessage: boolean;
|
|
2832
2852
|
readonly isMessageNotFound: boolean;
|
|
@@ -2835,9 +2855,9 @@ declare module '@polkadot/types/lookup' {
|
|
|
2835
2855
|
readonly isChallengePeriodUpdateFailed: boolean;
|
|
2836
2856
|
readonly type: 'InvalidMessage' | 'MessageNotFound' | 'ConsensusClientCreationFailed' | 'UnbondingPeriodUpdateFailed' | 'ChallengePeriodUpdateFailed';
|
|
2837
2857
|
}
|
|
2838
|
-
/** @name PalletHyperbridgeError (
|
|
2858
|
+
/** @name PalletHyperbridgeError (455) */
|
|
2839
2859
|
type PalletHyperbridgeError = Null;
|
|
2840
|
-
/** @name PalletTokenGatewayError (
|
|
2860
|
+
/** @name PalletTokenGatewayError (456) */
|
|
2841
2861
|
interface PalletTokenGatewayError extends Enum {
|
|
2842
2862
|
readonly isUnregisteredAsset: boolean;
|
|
2843
2863
|
readonly isAssetTeleportError: boolean;
|
|
@@ -2850,32 +2870,32 @@ declare module '@polkadot/types/lookup' {
|
|
|
2850
2870
|
readonly isNotAssetOwner: boolean;
|
|
2851
2871
|
readonly type: 'UnregisteredAsset' | 'AssetTeleportError' | 'CoprocessorNotConfigured' | 'DispatchError' | 'AssetCreationError' | 'AssetDecimalsNotFound' | 'NotInitialized' | 'UnknownAsset' | 'NotAssetOwner';
|
|
2852
2872
|
}
|
|
2853
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
2873
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (459) */
|
|
2854
2874
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
2855
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
2875
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (460) */
|
|
2856
2876
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
2857
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
2877
|
+
/** @name FrameSystemExtensionsCheckTxVersion (461) */
|
|
2858
2878
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
2859
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
2879
|
+
/** @name FrameSystemExtensionsCheckGenesis (462) */
|
|
2860
2880
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
2861
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
2881
|
+
/** @name FrameSystemExtensionsCheckNonce (465) */
|
|
2862
2882
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
|
|
2863
2883
|
}
|
|
2864
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
2884
|
+
/** @name FrameSystemExtensionsCheckWeight (466) */
|
|
2865
2885
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
2866
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
2886
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (467) */
|
|
2867
2887
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
|
|
2868
2888
|
}
|
|
2869
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
2889
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (468) */
|
|
2870
2890
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
2871
2891
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
2872
2892
|
}
|
|
2873
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
2893
|
+
/** @name FrameMetadataHashExtensionMode (469) */
|
|
2874
2894
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
2875
2895
|
readonly isDisabled: boolean;
|
|
2876
2896
|
readonly isEnabled: boolean;
|
|
2877
2897
|
readonly type: 'Disabled' | 'Enabled';
|
|
2878
2898
|
}
|
|
2879
|
-
/** @name ArgonRuntimeRuntime (
|
|
2899
|
+
/** @name ArgonRuntimeRuntime (471) */
|
|
2880
2900
|
type ArgonRuntimeRuntime = Null;
|
|
2881
2901
|
}
|