@argonprotocol/mainchain 1.0.4 → 1.0.6
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 +12 -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 +74 -59
- package/lib/cjs/interfaces/lookup.js.map +1 -1
- package/lib/cjs/interfaces/types-lookup.d.ts +81 -60
- package/lib/esm/interfaces/augment-api-consts.d.ts +4 -0
- package/lib/esm/interfaces/augment-api-errors.d.ts +12 -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 +74 -59
- package/lib/esm/interfaces/lookup.js.map +1 -1
- package/lib/esm/interfaces/types-lookup.d.ts +81 -60
- 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 +12 -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 +81 -60
- 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;
|
|
@@ -2587,19 +2606,20 @@ declare module '@polkadot/types/lookup' {
|
|
|
2587
2606
|
readonly isNotebookSubmittedForLockedNotary: boolean;
|
|
2588
2607
|
readonly isInvalidReprocessNotebook: boolean;
|
|
2589
2608
|
readonly isInvalidNotaryOperator: boolean;
|
|
2590
|
-
readonly
|
|
2609
|
+
readonly isInvalidNotebookSubmissionTick: boolean;
|
|
2610
|
+
readonly type: 'DuplicateNotebookNumber' | 'MissingNotebookNumber' | 'NotebookTickAlreadyUsed' | 'InvalidNotebookSignature' | 'InvalidSecretProvided' | 'CouldNotDecodeNotebook' | 'DuplicateNotebookDigest' | 'MissingNotebookDigest' | 'InvalidNotebookDigest' | 'MultipleNotebookInherentsProvided' | 'InternalError' | 'NotebookSubmittedForLockedNotary' | 'InvalidReprocessNotebook' | 'InvalidNotaryOperator' | 'InvalidNotebookSubmissionTick';
|
|
2591
2611
|
}
|
|
2592
|
-
/** @name PalletChainTransferQueuedTransferOut (
|
|
2612
|
+
/** @name PalletChainTransferQueuedTransferOut (388) */
|
|
2593
2613
|
interface PalletChainTransferQueuedTransferOut extends Struct {
|
|
2594
2614
|
readonly accountId: AccountId32;
|
|
2595
2615
|
readonly amount: u128;
|
|
2596
2616
|
readonly expirationTick: u64;
|
|
2597
2617
|
readonly notaryId: u32;
|
|
2598
2618
|
}
|
|
2599
|
-
/** @name FrameSupportPalletId (
|
|
2619
|
+
/** @name FrameSupportPalletId (394) */
|
|
2600
2620
|
interface FrameSupportPalletId extends U8aFixed {
|
|
2601
2621
|
}
|
|
2602
|
-
/** @name PalletChainTransferError (
|
|
2622
|
+
/** @name PalletChainTransferError (395) */
|
|
2603
2623
|
interface PalletChainTransferError extends Enum {
|
|
2604
2624
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
2605
2625
|
readonly isInsufficientFunds: boolean;
|
|
@@ -2609,7 +2629,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2609
2629
|
readonly isInvalidNotaryUsedForTransfer: boolean;
|
|
2610
2630
|
readonly type: 'MaxBlockTransfersExceeded' | 'InsufficientFunds' | 'InsufficientNotarizedFunds' | 'InvalidOrDuplicatedLocalchainTransfer' | 'NotebookIncludesExpiredLocalchainTransfer' | 'InvalidNotaryUsedForTransfer';
|
|
2611
2631
|
}
|
|
2612
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
2632
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (400) */
|
|
2613
2633
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
2614
2634
|
readonly notaryId: Compact<u32>;
|
|
2615
2635
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2617,12 +2637,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
2617
2637
|
readonly blockVotesCount: Compact<u32>;
|
|
2618
2638
|
readonly blockVotingPower: Compact<u128>;
|
|
2619
2639
|
}
|
|
2620
|
-
/** @name PalletBlockSealSpecError (
|
|
2640
|
+
/** @name PalletBlockSealSpecError (405) */
|
|
2621
2641
|
interface PalletBlockSealSpecError extends Enum {
|
|
2622
2642
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
2623
2643
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
2624
2644
|
}
|
|
2625
|
-
/** @name PalletDomainsError (
|
|
2645
|
+
/** @name PalletDomainsError (407) */
|
|
2626
2646
|
interface PalletDomainsError extends Enum {
|
|
2627
2647
|
readonly isDomainNotRegistered: boolean;
|
|
2628
2648
|
readonly isNotDomainOwner: boolean;
|
|
@@ -2631,7 +2651,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2631
2651
|
readonly isAccountDecodingError: boolean;
|
|
2632
2652
|
readonly type: 'DomainNotRegistered' | 'NotDomainOwner' | 'FailedToAddToAddressHistory' | 'FailedToAddExpiringDomain' | 'AccountDecodingError';
|
|
2633
2653
|
}
|
|
2634
|
-
/** @name PalletPriceIndexError (
|
|
2654
|
+
/** @name PalletPriceIndexError (408) */
|
|
2635
2655
|
interface PalletPriceIndexError extends Enum {
|
|
2636
2656
|
readonly isNotAuthorizedOperator: boolean;
|
|
2637
2657
|
readonly isMissingValue: boolean;
|
|
@@ -2639,7 +2659,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2639
2659
|
readonly isMaxPriceChangePerTickExceeded: boolean;
|
|
2640
2660
|
readonly type: 'NotAuthorizedOperator' | 'MissingValue' | 'PricesTooOld' | 'MaxPriceChangePerTickExceeded';
|
|
2641
2661
|
}
|
|
2642
|
-
/** @name PalletGrandpaStoredState (
|
|
2662
|
+
/** @name PalletGrandpaStoredState (409) */
|
|
2643
2663
|
interface PalletGrandpaStoredState extends Enum {
|
|
2644
2664
|
readonly isLive: boolean;
|
|
2645
2665
|
readonly isPendingPause: boolean;
|
|
@@ -2655,14 +2675,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2655
2675
|
} & Struct;
|
|
2656
2676
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
2657
2677
|
}
|
|
2658
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
2678
|
+
/** @name PalletGrandpaStoredPendingChange (410) */
|
|
2659
2679
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
2660
2680
|
readonly scheduledAt: u32;
|
|
2661
2681
|
readonly delay: u32;
|
|
2662
2682
|
readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
|
|
2663
2683
|
readonly forced: Option<u32>;
|
|
2664
2684
|
}
|
|
2665
|
-
/** @name PalletGrandpaError (
|
|
2685
|
+
/** @name PalletGrandpaError (413) */
|
|
2666
2686
|
interface PalletGrandpaError extends Enum {
|
|
2667
2687
|
readonly isPauseFailed: boolean;
|
|
2668
2688
|
readonly isResumeFailed: boolean;
|
|
@@ -2673,13 +2693,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2673
2693
|
readonly isDuplicateOffenceReport: boolean;
|
|
2674
2694
|
readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
|
|
2675
2695
|
}
|
|
2676
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
2696
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (414) */
|
|
2677
2697
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
2678
2698
|
readonly blockAuthorAccountId: AccountId32;
|
|
2679
2699
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
2680
2700
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
2681
2701
|
}
|
|
2682
|
-
/** @name PalletBlockSealError (
|
|
2702
|
+
/** @name PalletBlockSealError (418) */
|
|
2683
2703
|
interface PalletBlockSealError extends Enum {
|
|
2684
2704
|
readonly isInvalidVoteSealStrength: boolean;
|
|
2685
2705
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -2699,45 +2719,46 @@ declare module '@polkadot/types/lookup' {
|
|
|
2699
2719
|
readonly isBlockVoteInvalidSignature: boolean;
|
|
2700
2720
|
readonly isInvalidForkPowerParent: boolean;
|
|
2701
2721
|
readonly isBlockSealDecodeError: boolean;
|
|
2702
|
-
readonly
|
|
2722
|
+
readonly isInvalidComputeBlockTick: boolean;
|
|
2723
|
+
readonly type: 'InvalidVoteSealStrength' | 'InvalidSubmitter' | 'UnableToDecodeVoteAccount' | 'UnregisteredBlockAuthor' | 'InvalidBlockVoteProof' | 'NoGrandparentVoteMinimum' | 'DuplicateBlockSealProvided' | 'InsufficientVotingPower' | 'ParentVotingKeyNotFound' | 'InvalidVoteGrandparentHash' | 'IneligibleNotebookUsed' | 'NoEligibleVotingRoot' | 'CouldNotDecodeVote' | 'MaxNotebooksAtTickExceeded' | 'NoClosestMinerFoundForVote' | 'BlockVoteInvalidSignature' | 'InvalidForkPowerParent' | 'BlockSealDecodeError' | 'InvalidComputeBlockTick';
|
|
2703
2724
|
}
|
|
2704
|
-
/** @name PalletBlockRewardsError (
|
|
2725
|
+
/** @name PalletBlockRewardsError (421) */
|
|
2705
2726
|
type PalletBlockRewardsError = Null;
|
|
2706
|
-
/** @name PalletMintMintAction (
|
|
2727
|
+
/** @name PalletMintMintAction (426) */
|
|
2707
2728
|
interface PalletMintMintAction extends Struct {
|
|
2708
2729
|
readonly argonBurned: u128;
|
|
2709
2730
|
readonly argonMinted: u128;
|
|
2710
2731
|
readonly bitcoinMinted: u128;
|
|
2711
2732
|
}
|
|
2712
|
-
/** @name PalletMintError (
|
|
2733
|
+
/** @name PalletMintError (427) */
|
|
2713
2734
|
interface PalletMintError extends Enum {
|
|
2714
2735
|
readonly isTooManyPendingMints: boolean;
|
|
2715
2736
|
readonly type: 'TooManyPendingMints';
|
|
2716
2737
|
}
|
|
2717
|
-
/** @name PalletBalancesBalanceLock (
|
|
2738
|
+
/** @name PalletBalancesBalanceLock (429) */
|
|
2718
2739
|
interface PalletBalancesBalanceLock extends Struct {
|
|
2719
2740
|
readonly id: U8aFixed;
|
|
2720
2741
|
readonly amount: u128;
|
|
2721
2742
|
readonly reasons: PalletBalancesReasons;
|
|
2722
2743
|
}
|
|
2723
|
-
/** @name PalletBalancesReasons (
|
|
2744
|
+
/** @name PalletBalancesReasons (430) */
|
|
2724
2745
|
interface PalletBalancesReasons extends Enum {
|
|
2725
2746
|
readonly isFee: boolean;
|
|
2726
2747
|
readonly isMisc: boolean;
|
|
2727
2748
|
readonly isAll: boolean;
|
|
2728
2749
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
2729
2750
|
}
|
|
2730
|
-
/** @name PalletBalancesReserveData (
|
|
2751
|
+
/** @name PalletBalancesReserveData (433) */
|
|
2731
2752
|
interface PalletBalancesReserveData extends Struct {
|
|
2732
2753
|
readonly id: U8aFixed;
|
|
2733
2754
|
readonly amount: u128;
|
|
2734
2755
|
}
|
|
2735
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
2756
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (436) */
|
|
2736
2757
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
2737
2758
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
2738
2759
|
readonly amount: u128;
|
|
2739
2760
|
}
|
|
2740
|
-
/** @name ArgonRuntimeRuntimeHoldReason (
|
|
2761
|
+
/** @name ArgonRuntimeRuntimeHoldReason (437) */
|
|
2741
2762
|
interface ArgonRuntimeRuntimeHoldReason extends Enum {
|
|
2742
2763
|
readonly isMiningSlot: boolean;
|
|
2743
2764
|
readonly asMiningSlot: PalletMiningSlotHoldReason;
|
|
@@ -2749,44 +2770,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
2749
2770
|
readonly asBlockRewards: PalletBlockRewardsHoldReason;
|
|
2750
2771
|
readonly type: 'MiningSlot' | 'Vaults' | 'Bonds' | 'BlockRewards';
|
|
2751
2772
|
}
|
|
2752
|
-
/** @name PalletMiningSlotHoldReason (
|
|
2773
|
+
/** @name PalletMiningSlotHoldReason (438) */
|
|
2753
2774
|
interface PalletMiningSlotHoldReason extends Enum {
|
|
2754
2775
|
readonly isRegisterAsMiner: boolean;
|
|
2755
2776
|
readonly type: 'RegisterAsMiner';
|
|
2756
2777
|
}
|
|
2757
|
-
/** @name PalletVaultsHoldReason (
|
|
2778
|
+
/** @name PalletVaultsHoldReason (439) */
|
|
2758
2779
|
interface PalletVaultsHoldReason extends Enum {
|
|
2759
2780
|
readonly isEnterVault: boolean;
|
|
2760
2781
|
readonly isBondFee: boolean;
|
|
2761
2782
|
readonly type: 'EnterVault' | 'BondFee';
|
|
2762
2783
|
}
|
|
2763
|
-
/** @name PalletBondHoldReason (
|
|
2784
|
+
/** @name PalletBondHoldReason (440) */
|
|
2764
2785
|
interface PalletBondHoldReason extends Enum {
|
|
2765
2786
|
readonly isUnlockingBitcoin: boolean;
|
|
2766
2787
|
readonly type: 'UnlockingBitcoin';
|
|
2767
2788
|
}
|
|
2768
|
-
/** @name PalletBlockRewardsHoldReason (
|
|
2789
|
+
/** @name PalletBlockRewardsHoldReason (441) */
|
|
2769
2790
|
interface PalletBlockRewardsHoldReason extends Enum {
|
|
2770
2791
|
readonly isMaturationPeriod: boolean;
|
|
2771
2792
|
readonly type: 'MaturationPeriod';
|
|
2772
2793
|
}
|
|
2773
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
2794
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (444) */
|
|
2774
2795
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
2775
2796
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
2776
2797
|
readonly amount: u128;
|
|
2777
2798
|
}
|
|
2778
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
2799
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (445) */
|
|
2779
2800
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
2780
2801
|
readonly isBlockRewards: boolean;
|
|
2781
2802
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
2782
2803
|
readonly type: 'BlockRewards';
|
|
2783
2804
|
}
|
|
2784
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
2805
|
+
/** @name PalletBlockRewardsFreezeReason (446) */
|
|
2785
2806
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
2786
2807
|
readonly isMaturationPeriod: boolean;
|
|
2787
2808
|
readonly type: 'MaturationPeriod';
|
|
2788
2809
|
}
|
|
2789
|
-
/** @name PalletBalancesError (
|
|
2810
|
+
/** @name PalletBalancesError (448) */
|
|
2790
2811
|
interface PalletBalancesError extends Enum {
|
|
2791
2812
|
readonly isVestingBalance: boolean;
|
|
2792
2813
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -2802,7 +2823,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2802
2823
|
readonly isDeltaZero: boolean;
|
|
2803
2824
|
readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
|
|
2804
2825
|
}
|
|
2805
|
-
/** @name PalletTxPauseError (
|
|
2826
|
+
/** @name PalletTxPauseError (450) */
|
|
2806
2827
|
interface PalletTxPauseError extends Enum {
|
|
2807
2828
|
readonly isIsPaused: boolean;
|
|
2808
2829
|
readonly isIsUnpaused: boolean;
|
|
@@ -2810,23 +2831,23 @@ declare module '@polkadot/types/lookup' {
|
|
|
2810
2831
|
readonly isNotFound: boolean;
|
|
2811
2832
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
2812
2833
|
}
|
|
2813
|
-
/** @name PalletTransactionPaymentReleases (
|
|
2834
|
+
/** @name PalletTransactionPaymentReleases (451) */
|
|
2814
2835
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
2815
2836
|
readonly isV1Ancient: boolean;
|
|
2816
2837
|
readonly isV2: boolean;
|
|
2817
2838
|
readonly type: 'V1Ancient' | 'V2';
|
|
2818
2839
|
}
|
|
2819
|
-
/** @name PalletUtilityError (
|
|
2840
|
+
/** @name PalletUtilityError (452) */
|
|
2820
2841
|
interface PalletUtilityError extends Enum {
|
|
2821
2842
|
readonly isTooManyCalls: boolean;
|
|
2822
2843
|
readonly type: 'TooManyCalls';
|
|
2823
2844
|
}
|
|
2824
|
-
/** @name PalletSudoError (
|
|
2845
|
+
/** @name PalletSudoError (453) */
|
|
2825
2846
|
interface PalletSudoError extends Enum {
|
|
2826
2847
|
readonly isRequireSudo: boolean;
|
|
2827
2848
|
readonly type: 'RequireSudo';
|
|
2828
2849
|
}
|
|
2829
|
-
/** @name PalletIsmpError (
|
|
2850
|
+
/** @name PalletIsmpError (454) */
|
|
2830
2851
|
interface PalletIsmpError extends Enum {
|
|
2831
2852
|
readonly isInvalidMessage: boolean;
|
|
2832
2853
|
readonly isMessageNotFound: boolean;
|
|
@@ -2835,9 +2856,9 @@ declare module '@polkadot/types/lookup' {
|
|
|
2835
2856
|
readonly isChallengePeriodUpdateFailed: boolean;
|
|
2836
2857
|
readonly type: 'InvalidMessage' | 'MessageNotFound' | 'ConsensusClientCreationFailed' | 'UnbondingPeriodUpdateFailed' | 'ChallengePeriodUpdateFailed';
|
|
2837
2858
|
}
|
|
2838
|
-
/** @name PalletHyperbridgeError (
|
|
2859
|
+
/** @name PalletHyperbridgeError (455) */
|
|
2839
2860
|
type PalletHyperbridgeError = Null;
|
|
2840
|
-
/** @name PalletTokenGatewayError (
|
|
2861
|
+
/** @name PalletTokenGatewayError (456) */
|
|
2841
2862
|
interface PalletTokenGatewayError extends Enum {
|
|
2842
2863
|
readonly isUnregisteredAsset: boolean;
|
|
2843
2864
|
readonly isAssetTeleportError: boolean;
|
|
@@ -2850,32 +2871,32 @@ declare module '@polkadot/types/lookup' {
|
|
|
2850
2871
|
readonly isNotAssetOwner: boolean;
|
|
2851
2872
|
readonly type: 'UnregisteredAsset' | 'AssetTeleportError' | 'CoprocessorNotConfigured' | 'DispatchError' | 'AssetCreationError' | 'AssetDecimalsNotFound' | 'NotInitialized' | 'UnknownAsset' | 'NotAssetOwner';
|
|
2852
2873
|
}
|
|
2853
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
2874
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (459) */
|
|
2854
2875
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
2855
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
2876
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (460) */
|
|
2856
2877
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
2857
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
2878
|
+
/** @name FrameSystemExtensionsCheckTxVersion (461) */
|
|
2858
2879
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
2859
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
2880
|
+
/** @name FrameSystemExtensionsCheckGenesis (462) */
|
|
2860
2881
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
2861
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
2882
|
+
/** @name FrameSystemExtensionsCheckNonce (465) */
|
|
2862
2883
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
|
|
2863
2884
|
}
|
|
2864
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
2885
|
+
/** @name FrameSystemExtensionsCheckWeight (466) */
|
|
2865
2886
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
2866
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
2887
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (467) */
|
|
2867
2888
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
|
|
2868
2889
|
}
|
|
2869
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
2890
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (468) */
|
|
2870
2891
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
2871
2892
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
2872
2893
|
}
|
|
2873
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
2894
|
+
/** @name FrameMetadataHashExtensionMode (469) */
|
|
2874
2895
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
2875
2896
|
readonly isDisabled: boolean;
|
|
2876
2897
|
readonly isEnabled: boolean;
|
|
2877
2898
|
readonly type: 'Disabled' | 'Enabled';
|
|
2878
2899
|
}
|
|
2879
|
-
/** @name ArgonRuntimeRuntime (
|
|
2900
|
+
/** @name ArgonRuntimeRuntime (471) */
|
|
2880
2901
|
type ArgonRuntimeRuntime = Null;
|
|
2881
2902
|
}
|