@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
|
@@ -428,6 +428,10 @@ declare module '@polkadot/api-base/types/consts' {
|
|
|
428
428
|
* Minimum amount for a bond
|
|
429
429
|
**/
|
|
430
430
|
minimumBondAmount: u128 & AugmentedConst<ApiType>;
|
|
431
|
+
/**
|
|
432
|
+
* The number of blocks that a funding change will be delayed before it takes effect
|
|
433
|
+
**/
|
|
434
|
+
miningArgonIncreaseBlockDelay: u32 & AugmentedConst<ApiType>;
|
|
431
435
|
/**
|
|
432
436
|
* The number of blocks that a change in terms will take before applying. Terms only apply
|
|
433
437
|
* on a slot changeover, so this setting is the minimum blocks that must pass, in
|
|
@@ -129,6 +129,10 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
129
129
|
* The merkle proof of vote inclusion in the notebook is invalid
|
|
130
130
|
**/
|
|
131
131
|
InvalidBlockVoteProof: AugmentedError<ApiType>;
|
|
132
|
+
/**
|
|
133
|
+
* Compute blocks cant be added in the same tick as a vote
|
|
134
|
+
**/
|
|
135
|
+
InvalidComputeBlockTick: AugmentedError<ApiType>;
|
|
132
136
|
/**
|
|
133
137
|
* Invalid fork power parent
|
|
134
138
|
**/
|
|
@@ -819,6 +823,10 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
819
823
|
* The fee for this bond exceeds the amount of the bond, which is unsafe
|
|
820
824
|
**/
|
|
821
825
|
FeeExceedsBondAmount: AugmentedError<ApiType>;
|
|
826
|
+
/**
|
|
827
|
+
* A funding change is already scheduled
|
|
828
|
+
**/
|
|
829
|
+
FundingChangeAlreadyScheduled: AugmentedError<ApiType>;
|
|
822
830
|
HoldUnexpectedlyModified: AugmentedError<ApiType>;
|
|
823
831
|
/**
|
|
824
832
|
* The vault does not have enough bitcoins to cover the mining bond
|
|
@@ -287,6 +287,11 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
287
287
|
amount: u128;
|
|
288
288
|
expiration: ArgonPrimitivesBondBondExpiration;
|
|
289
289
|
}>;
|
|
290
|
+
BondModified: AugmentedEvent<ApiType, [vaultId: u32, bondId: u64, amount: u128], {
|
|
291
|
+
vaultId: u32;
|
|
292
|
+
bondId: u64;
|
|
293
|
+
amount: u128;
|
|
294
|
+
}>;
|
|
290
295
|
/**
|
|
291
296
|
* An error occurred while refunding an overdue cosigned bitcoin bond
|
|
292
297
|
**/
|
|
@@ -1061,6 +1066,14 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
1061
1066
|
securitizationPercent: u128;
|
|
1062
1067
|
operatorAccountId: AccountId32;
|
|
1063
1068
|
}>;
|
|
1069
|
+
VaultMiningBondsChangeScheduled: AugmentedEvent<ApiType, [vaultId: u32, changeBlock: u32], {
|
|
1070
|
+
vaultId: u32;
|
|
1071
|
+
changeBlock: u32;
|
|
1072
|
+
}>;
|
|
1073
|
+
VaultMiningBondsIncreased: AugmentedEvent<ApiType, [vaultId: u32, miningArgons: u128], {
|
|
1074
|
+
vaultId: u32;
|
|
1075
|
+
miningArgons: u128;
|
|
1076
|
+
}>;
|
|
1064
1077
|
VaultModified: AugmentedEvent<ApiType, [vaultId: u32, bitcoinArgons: u128, miningArgons: u128, securitizationPercent: u128], {
|
|
1065
1078
|
vaultId: u32;
|
|
1066
1079
|
bitcoinArgons: u128;
|
|
@@ -127,6 +127,7 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
127
127
|
**/
|
|
128
128
|
blockForkPower: AugmentedQuery<ApiType, () => Observable<ArgonPrimitivesForkPower>, []>;
|
|
129
129
|
lastBlockSealerInfo: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesProvidersBlockSealerInfo>>, []>;
|
|
130
|
+
lastTickWithVoteSeal: AugmentedQuery<ApiType, () => Observable<u64>, []>;
|
|
130
131
|
/**
|
|
131
132
|
* The calculated parent voting key for a block. Refers to the Notebook BlockVote Revealed
|
|
132
133
|
* Secret + VotesMerkleRoot of the parent block notebooks.
|
|
@@ -380,6 +381,7 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
380
381
|
* The tuple is the authority, and the blake2 256 hash of the authority used for xor lookups
|
|
381
382
|
**/
|
|
382
383
|
authorityHashByIndex: AugmentedQuery<ApiType, () => Observable<BTreeMap<u32, U256>>, []>;
|
|
384
|
+
hasAddedGrandpaRotation: AugmentedQuery<ApiType, () => Observable<bool>, []>;
|
|
383
385
|
/**
|
|
384
386
|
* The number of bids per slot for the last 10 slots (newest first)
|
|
385
387
|
**/
|
|
@@ -711,9 +713,10 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
711
713
|
vaults: {
|
|
712
714
|
nextVaultId: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []>;
|
|
713
715
|
/**
|
|
714
|
-
*
|
|
716
|
+
* Pending funding that will be committed at the given block number (must be a minimum of 1
|
|
717
|
+
* slot change away)
|
|
715
718
|
**/
|
|
716
|
-
|
|
719
|
+
pendingFundingModificationsByBlock: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<u32>>, [u32]>;
|
|
717
720
|
/**
|
|
718
721
|
* Pending terms that will be committed at the given block number (must be a minimum of 1 slot
|
|
719
722
|
* change away)
|
|
@@ -57,7 +57,7 @@ import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDe
|
|
|
57
57
|
import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';
|
|
58
58
|
import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';
|
|
59
59
|
import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';
|
|
60
|
-
import type { ActiveEraInfo, CompactAssignments, CompactAssignmentsTo257, CompactAssignmentsTo265, CompactAssignmentsWith16, CompactAssignmentsWith24, CompactScore, CompactScoreCompact, ElectionCompute, ElectionPhase, ElectionResult, ElectionScore, ElectionSize, ElectionStatus, EraIndex, EraPoints, EraRewardPoints, EraRewards, Exposure, ExtendedBalance, Forcing, IndividualExposure, KeyType, MomentOf, Nominations, NominatorIndex, NominatorIndexCompact, OffchainAccuracy, OffchainAccuracyCompact, PhragmenScore, Points, RawSolution, RawSolutionTo265, RawSolutionWith16, RawSolutionWith24, ReadySolution, RewardDestination, RewardPoint, RoundSnapshot, SeatHolder, SignedSubmission, SignedSubmissionOf, SignedSubmissionTo276, SlashJournalEntry, SlashingSpans, SlashingSpansTo204, SolutionOrSnapshotSize, SolutionSupport, SolutionSupports, SpanIndex, SpanRecord, StakingLedger, StakingLedgerTo223, StakingLedgerTo240, SubmissionIndicesOf, Supports, UnappliedSlash, UnappliedSlashOther, UnlockChunk, ValidatorIndex, ValidatorIndexCompact, ValidatorPrefs, ValidatorPrefsTo145, ValidatorPrefsTo196, ValidatorPrefsWithBlocked, ValidatorPrefsWithCommission, VoteWeight, Voter } from '@polkadot/types/interfaces/staking';
|
|
60
|
+
import type { ActiveEraInfo, CompactAssignments, CompactAssignmentsTo257, CompactAssignmentsTo265, CompactAssignmentsWith16, CompactAssignmentsWith24, CompactScore, CompactScoreCompact, ElectionCompute, ElectionPhase, ElectionResult, ElectionResultToSpec10, ElectionScore, ElectionSize, ElectionStatus, EraIndex, EraPoints, EraRewardPoints, EraRewards, Exposure, ExtendedBalance, Forcing, IndividualExposure, KeyType, MomentOf, Nominations, NominatorIndex, NominatorIndexCompact, OffchainAccuracy, OffchainAccuracyCompact, PhragmenScore, Points, RawSolution, RawSolutionTo265, RawSolutionWith16, RawSolutionWith24, ReadySolution, RewardDestination, RewardPoint, RoundSnapshot, SeatHolder, SignedSubmission, SignedSubmissionOf, SignedSubmissionTo276, SlashJournalEntry, SlashingSpans, SlashingSpansTo204, SolutionOrSnapshotSize, SolutionSupport, SolutionSupports, SpanIndex, SpanRecord, StakingLedger, StakingLedgerTo223, StakingLedgerTo240, SubmissionIndicesOf, Supports, UnappliedSlash, UnappliedSlashOther, UnlockChunk, ValidatorIndex, ValidatorIndexCompact, ValidatorPrefs, ValidatorPrefsTo145, ValidatorPrefsTo196, ValidatorPrefsWithBlocked, ValidatorPrefsWithCommission, VoteWeight, Voter } from '@polkadot/types/interfaces/staking';
|
|
61
61
|
import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, RuntimeVersionPre3, RuntimeVersionPre4, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';
|
|
62
62
|
import type { StatementStoreInvalidStatement, StatementStoreStatementSource, StatementStoreValidStatement } from '@polkadot/types/interfaces/statement';
|
|
63
63
|
import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';
|
|
@@ -395,6 +395,7 @@ declare module '@polkadot/types/types/registry' {
|
|
|
395
395
|
ElectionCompute: ElectionCompute;
|
|
396
396
|
ElectionPhase: ElectionPhase;
|
|
397
397
|
ElectionResult: ElectionResult;
|
|
398
|
+
ElectionResultToSpec10: ElectionResultToSpec10;
|
|
398
399
|
ElectionScore: ElectionScore;
|
|
399
400
|
ElectionSize: ElectionSize;
|
|
400
401
|
ElectionStatus: ElectionStatus;
|
|
@@ -388,6 +388,14 @@ declare const _default: {
|
|
|
388
388
|
miningArgons: string;
|
|
389
389
|
securitizationPercent: string;
|
|
390
390
|
};
|
|
391
|
+
VaultMiningBondsIncreased: {
|
|
392
|
+
vaultId: string;
|
|
393
|
+
miningArgons: string;
|
|
394
|
+
};
|
|
395
|
+
VaultMiningBondsChangeScheduled: {
|
|
396
|
+
vaultId: string;
|
|
397
|
+
changeBlock: string;
|
|
398
|
+
};
|
|
391
399
|
VaultTermsChangeScheduled: {
|
|
392
400
|
vaultId: string;
|
|
393
401
|
changeBlock: string;
|
|
@@ -424,6 +432,11 @@ declare const _default: {
|
|
|
424
432
|
vaultId: string;
|
|
425
433
|
bondId: string;
|
|
426
434
|
};
|
|
435
|
+
BondModified: {
|
|
436
|
+
vaultId: string;
|
|
437
|
+
bondId: string;
|
|
438
|
+
amount: string;
|
|
439
|
+
};
|
|
427
440
|
BondCanceled: {
|
|
428
441
|
vaultId: string;
|
|
429
442
|
bondId: string;
|
|
@@ -2497,6 +2510,8 @@ declare const _default: {
|
|
|
2497
2510
|
miningRewardSharingPercentTake: string;
|
|
2498
2511
|
isClosed: string;
|
|
2499
2512
|
pendingTerms: string;
|
|
2513
|
+
pendingMiningArgons: string;
|
|
2514
|
+
pendingBitcoins: string;
|
|
2500
2515
|
};
|
|
2501
2516
|
/**
|
|
2502
2517
|
* Lookup345: argon_primitives::bond::VaultArgons<Balance>
|
|
@@ -2508,7 +2523,7 @@ declare const _default: {
|
|
|
2508
2523
|
baseFee: string;
|
|
2509
2524
|
};
|
|
2510
2525
|
/**
|
|
2511
|
-
*
|
|
2526
|
+
* Lookup351: argon_primitives::bitcoin::BitcoinXPub
|
|
2512
2527
|
**/
|
|
2513
2528
|
ArgonPrimitivesBitcoinBitcoinXPub: {
|
|
2514
2529
|
publicKey: string;
|
|
@@ -2519,19 +2534,19 @@ declare const _default: {
|
|
|
2519
2534
|
network: string;
|
|
2520
2535
|
};
|
|
2521
2536
|
/**
|
|
2522
|
-
*
|
|
2537
|
+
* Lookup353: argon_primitives::bitcoin::NetworkKind
|
|
2523
2538
|
**/
|
|
2524
2539
|
ArgonPrimitivesBitcoinNetworkKind: {
|
|
2525
2540
|
_enum: string[];
|
|
2526
2541
|
};
|
|
2527
2542
|
/**
|
|
2528
|
-
*
|
|
2543
|
+
* Lookup356: pallet_vaults::pallet::Error<T>
|
|
2529
2544
|
**/
|
|
2530
2545
|
PalletVaultsError: {
|
|
2531
2546
|
_enum: string[];
|
|
2532
2547
|
};
|
|
2533
2548
|
/**
|
|
2534
|
-
*
|
|
2549
|
+
* Lookup357: argon_primitives::bond::Bond<sp_core::crypto::AccountId32, Balance, BlockNumber>
|
|
2535
2550
|
**/
|
|
2536
2551
|
ArgonPrimitivesBond: {
|
|
2537
2552
|
bondType: string;
|
|
@@ -2545,7 +2560,7 @@ declare const _default: {
|
|
|
2545
2560
|
expiration: string;
|
|
2546
2561
|
};
|
|
2547
2562
|
/**
|
|
2548
|
-
*
|
|
2563
|
+
* Lookup360: pallet_bond::pallet::UtxoState
|
|
2549
2564
|
**/
|
|
2550
2565
|
PalletBondUtxoState: {
|
|
2551
2566
|
bondId: string;
|
|
@@ -2561,7 +2576,7 @@ declare const _default: {
|
|
|
2561
2576
|
isVerified: string;
|
|
2562
2577
|
};
|
|
2563
2578
|
/**
|
|
2564
|
-
*
|
|
2579
|
+
* Lookup364: pallet_bond::pallet::UtxoCosignRequest<Balance>
|
|
2565
2580
|
**/
|
|
2566
2581
|
PalletBondUtxoCosignRequest: {
|
|
2567
2582
|
bondId: string;
|
|
@@ -2572,7 +2587,7 @@ declare const _default: {
|
|
|
2572
2587
|
redemptionPrice: string;
|
|
2573
2588
|
};
|
|
2574
2589
|
/**
|
|
2575
|
-
*
|
|
2590
|
+
* Lookup368: pallet_bond::pallet::Error<T>
|
|
2576
2591
|
**/
|
|
2577
2592
|
PalletBondError: {
|
|
2578
2593
|
_enum: {
|
|
@@ -2608,13 +2623,13 @@ declare const _default: {
|
|
|
2608
2623
|
};
|
|
2609
2624
|
};
|
|
2610
2625
|
/**
|
|
2611
|
-
*
|
|
2626
|
+
* Lookup380: pallet_notaries::pallet::Error<T>
|
|
2612
2627
|
**/
|
|
2613
2628
|
PalletNotariesError: {
|
|
2614
2629
|
_enum: string[];
|
|
2615
2630
|
};
|
|
2616
2631
|
/**
|
|
2617
|
-
*
|
|
2632
|
+
* Lookup384: argon_primitives::notary::NotaryNotebookKeyDetails
|
|
2618
2633
|
**/
|
|
2619
2634
|
ArgonPrimitivesNotaryNotaryNotebookKeyDetails: {
|
|
2620
2635
|
notebookNumber: string;
|
|
@@ -2624,13 +2639,13 @@ declare const _default: {
|
|
|
2624
2639
|
parentSecret: string;
|
|
2625
2640
|
};
|
|
2626
2641
|
/**
|
|
2627
|
-
*
|
|
2642
|
+
* Lookup387: pallet_notebook::pallet::Error<T>
|
|
2628
2643
|
**/
|
|
2629
2644
|
PalletNotebookError: {
|
|
2630
2645
|
_enum: string[];
|
|
2631
2646
|
};
|
|
2632
2647
|
/**
|
|
2633
|
-
*
|
|
2648
|
+
* Lookup388: pallet_chain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
|
|
2634
2649
|
**/
|
|
2635
2650
|
PalletChainTransferQueuedTransferOut: {
|
|
2636
2651
|
accountId: string;
|
|
@@ -2639,17 +2654,17 @@ declare const _default: {
|
|
|
2639
2654
|
notaryId: string;
|
|
2640
2655
|
};
|
|
2641
2656
|
/**
|
|
2642
|
-
*
|
|
2657
|
+
* Lookup394: frame_support::PalletId
|
|
2643
2658
|
**/
|
|
2644
2659
|
FrameSupportPalletId: string;
|
|
2645
2660
|
/**
|
|
2646
|
-
*
|
|
2661
|
+
* Lookup395: pallet_chain_transfer::pallet::Error<T>
|
|
2647
2662
|
**/
|
|
2648
2663
|
PalletChainTransferError: {
|
|
2649
2664
|
_enum: string[];
|
|
2650
2665
|
};
|
|
2651
2666
|
/**
|
|
2652
|
-
*
|
|
2667
|
+
* Lookup400: argon_primitives::notary::NotaryNotebookVoteDigestDetails
|
|
2653
2668
|
**/
|
|
2654
2669
|
ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails: {
|
|
2655
2670
|
notaryId: string;
|
|
@@ -2659,25 +2674,25 @@ declare const _default: {
|
|
|
2659
2674
|
blockVotingPower: string;
|
|
2660
2675
|
};
|
|
2661
2676
|
/**
|
|
2662
|
-
*
|
|
2677
|
+
* Lookup405: pallet_block_seal_spec::pallet::Error<T>
|
|
2663
2678
|
**/
|
|
2664
2679
|
PalletBlockSealSpecError: {
|
|
2665
2680
|
_enum: string[];
|
|
2666
2681
|
};
|
|
2667
2682
|
/**
|
|
2668
|
-
*
|
|
2683
|
+
* Lookup407: pallet_domains::pallet::Error<T>
|
|
2669
2684
|
**/
|
|
2670
2685
|
PalletDomainsError: {
|
|
2671
2686
|
_enum: string[];
|
|
2672
2687
|
};
|
|
2673
2688
|
/**
|
|
2674
|
-
*
|
|
2689
|
+
* Lookup408: pallet_price_index::pallet::Error<T>
|
|
2675
2690
|
**/
|
|
2676
2691
|
PalletPriceIndexError: {
|
|
2677
2692
|
_enum: string[];
|
|
2678
2693
|
};
|
|
2679
2694
|
/**
|
|
2680
|
-
*
|
|
2695
|
+
* Lookup409: pallet_grandpa::StoredState<N>
|
|
2681
2696
|
**/
|
|
2682
2697
|
PalletGrandpaStoredState: {
|
|
2683
2698
|
_enum: {
|
|
@@ -2694,7 +2709,7 @@ declare const _default: {
|
|
|
2694
2709
|
};
|
|
2695
2710
|
};
|
|
2696
2711
|
/**
|
|
2697
|
-
*
|
|
2712
|
+
* Lookup410: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
2698
2713
|
**/
|
|
2699
2714
|
PalletGrandpaStoredPendingChange: {
|
|
2700
2715
|
scheduledAt: string;
|
|
@@ -2703,13 +2718,13 @@ declare const _default: {
|
|
|
2703
2718
|
forced: string;
|
|
2704
2719
|
};
|
|
2705
2720
|
/**
|
|
2706
|
-
*
|
|
2721
|
+
* Lookup413: pallet_grandpa::pallet::Error<T>
|
|
2707
2722
|
**/
|
|
2708
2723
|
PalletGrandpaError: {
|
|
2709
2724
|
_enum: string[];
|
|
2710
2725
|
};
|
|
2711
2726
|
/**
|
|
2712
|
-
*
|
|
2727
|
+
* Lookup414: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32>
|
|
2713
2728
|
**/
|
|
2714
2729
|
ArgonPrimitivesProvidersBlockSealerInfo: {
|
|
2715
2730
|
blockAuthorAccountId: string;
|
|
@@ -2717,17 +2732,17 @@ declare const _default: {
|
|
|
2717
2732
|
blockSealAuthority: string;
|
|
2718
2733
|
};
|
|
2719
2734
|
/**
|
|
2720
|
-
*
|
|
2735
|
+
* Lookup418: pallet_block_seal::pallet::Error<T>
|
|
2721
2736
|
**/
|
|
2722
2737
|
PalletBlockSealError: {
|
|
2723
2738
|
_enum: string[];
|
|
2724
2739
|
};
|
|
2725
2740
|
/**
|
|
2726
|
-
*
|
|
2741
|
+
* Lookup421: pallet_block_rewards::pallet::Error<T>
|
|
2727
2742
|
**/
|
|
2728
2743
|
PalletBlockRewardsError: string;
|
|
2729
2744
|
/**
|
|
2730
|
-
*
|
|
2745
|
+
* Lookup426: pallet_mint::MintAction<Balance>
|
|
2731
2746
|
**/
|
|
2732
2747
|
PalletMintMintAction: {
|
|
2733
2748
|
argonBurned: string;
|
|
@@ -2735,13 +2750,13 @@ declare const _default: {
|
|
|
2735
2750
|
bitcoinMinted: string;
|
|
2736
2751
|
};
|
|
2737
2752
|
/**
|
|
2738
|
-
*
|
|
2753
|
+
* Lookup427: pallet_mint::pallet::Error<T>
|
|
2739
2754
|
**/
|
|
2740
2755
|
PalletMintError: {
|
|
2741
2756
|
_enum: string[];
|
|
2742
2757
|
};
|
|
2743
2758
|
/**
|
|
2744
|
-
*
|
|
2759
|
+
* Lookup429: pallet_balances::types::BalanceLock<Balance>
|
|
2745
2760
|
**/
|
|
2746
2761
|
PalletBalancesBalanceLock: {
|
|
2747
2762
|
id: string;
|
|
@@ -2749,27 +2764,27 @@ declare const _default: {
|
|
|
2749
2764
|
reasons: string;
|
|
2750
2765
|
};
|
|
2751
2766
|
/**
|
|
2752
|
-
*
|
|
2767
|
+
* Lookup430: pallet_balances::types::Reasons
|
|
2753
2768
|
**/
|
|
2754
2769
|
PalletBalancesReasons: {
|
|
2755
2770
|
_enum: string[];
|
|
2756
2771
|
};
|
|
2757
2772
|
/**
|
|
2758
|
-
*
|
|
2773
|
+
* Lookup433: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
2759
2774
|
**/
|
|
2760
2775
|
PalletBalancesReserveData: {
|
|
2761
2776
|
id: string;
|
|
2762
2777
|
amount: string;
|
|
2763
2778
|
};
|
|
2764
2779
|
/**
|
|
2765
|
-
*
|
|
2780
|
+
* Lookup436: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeHoldReason, Balance>
|
|
2766
2781
|
**/
|
|
2767
2782
|
FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
|
|
2768
2783
|
id: string;
|
|
2769
2784
|
amount: string;
|
|
2770
2785
|
};
|
|
2771
2786
|
/**
|
|
2772
|
-
*
|
|
2787
|
+
* Lookup437: argon_runtime::RuntimeHoldReason
|
|
2773
2788
|
**/
|
|
2774
2789
|
ArgonRuntimeRuntimeHoldReason: {
|
|
2775
2790
|
_enum: {
|
|
@@ -2796,38 +2811,38 @@ declare const _default: {
|
|
|
2796
2811
|
};
|
|
2797
2812
|
};
|
|
2798
2813
|
/**
|
|
2799
|
-
*
|
|
2814
|
+
* Lookup438: pallet_mining_slot::pallet::HoldReason
|
|
2800
2815
|
**/
|
|
2801
2816
|
PalletMiningSlotHoldReason: {
|
|
2802
2817
|
_enum: string[];
|
|
2803
2818
|
};
|
|
2804
2819
|
/**
|
|
2805
|
-
*
|
|
2820
|
+
* Lookup439: pallet_vaults::pallet::HoldReason
|
|
2806
2821
|
**/
|
|
2807
2822
|
PalletVaultsHoldReason: {
|
|
2808
2823
|
_enum: string[];
|
|
2809
2824
|
};
|
|
2810
2825
|
/**
|
|
2811
|
-
*
|
|
2826
|
+
* Lookup440: pallet_bond::pallet::HoldReason
|
|
2812
2827
|
**/
|
|
2813
2828
|
PalletBondHoldReason: {
|
|
2814
2829
|
_enum: string[];
|
|
2815
2830
|
};
|
|
2816
2831
|
/**
|
|
2817
|
-
*
|
|
2832
|
+
* Lookup441: pallet_block_rewards::pallet::HoldReason
|
|
2818
2833
|
**/
|
|
2819
2834
|
PalletBlockRewardsHoldReason: {
|
|
2820
2835
|
_enum: string[];
|
|
2821
2836
|
};
|
|
2822
2837
|
/**
|
|
2823
|
-
*
|
|
2838
|
+
* Lookup444: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeFreezeReason, Balance>
|
|
2824
2839
|
**/
|
|
2825
2840
|
FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
|
|
2826
2841
|
id: string;
|
|
2827
2842
|
amount: string;
|
|
2828
2843
|
};
|
|
2829
2844
|
/**
|
|
2830
|
-
*
|
|
2845
|
+
* Lookup445: argon_runtime::RuntimeFreezeReason
|
|
2831
2846
|
**/
|
|
2832
2847
|
ArgonRuntimeRuntimeFreezeReason: {
|
|
2833
2848
|
_enum: {
|
|
@@ -2854,99 +2869,99 @@ declare const _default: {
|
|
|
2854
2869
|
};
|
|
2855
2870
|
};
|
|
2856
2871
|
/**
|
|
2857
|
-
*
|
|
2872
|
+
* Lookup446: pallet_block_rewards::pallet::FreezeReason
|
|
2858
2873
|
**/
|
|
2859
2874
|
PalletBlockRewardsFreezeReason: {
|
|
2860
2875
|
_enum: string[];
|
|
2861
2876
|
};
|
|
2862
2877
|
/**
|
|
2863
|
-
*
|
|
2878
|
+
* Lookup448: pallet_balances::pallet::Error<T, I>
|
|
2864
2879
|
**/
|
|
2865
2880
|
PalletBalancesError: {
|
|
2866
2881
|
_enum: string[];
|
|
2867
2882
|
};
|
|
2868
2883
|
/**
|
|
2869
|
-
*
|
|
2884
|
+
* Lookup450: pallet_tx_pause::pallet::Error<T>
|
|
2870
2885
|
**/
|
|
2871
2886
|
PalletTxPauseError: {
|
|
2872
2887
|
_enum: string[];
|
|
2873
2888
|
};
|
|
2874
2889
|
/**
|
|
2875
|
-
*
|
|
2890
|
+
* Lookup451: pallet_transaction_payment::Releases
|
|
2876
2891
|
**/
|
|
2877
2892
|
PalletTransactionPaymentReleases: {
|
|
2878
2893
|
_enum: string[];
|
|
2879
2894
|
};
|
|
2880
2895
|
/**
|
|
2881
|
-
*
|
|
2896
|
+
* Lookup452: pallet_utility::pallet::Error<T>
|
|
2882
2897
|
**/
|
|
2883
2898
|
PalletUtilityError: {
|
|
2884
2899
|
_enum: string[];
|
|
2885
2900
|
};
|
|
2886
2901
|
/**
|
|
2887
|
-
*
|
|
2902
|
+
* Lookup453: pallet_sudo::pallet::Error<T>
|
|
2888
2903
|
**/
|
|
2889
2904
|
PalletSudoError: {
|
|
2890
2905
|
_enum: string[];
|
|
2891
2906
|
};
|
|
2892
2907
|
/**
|
|
2893
|
-
*
|
|
2908
|
+
* Lookup454: pallet_ismp::pallet::Error<T>
|
|
2894
2909
|
**/
|
|
2895
2910
|
PalletIsmpError: {
|
|
2896
2911
|
_enum: string[];
|
|
2897
2912
|
};
|
|
2898
2913
|
/**
|
|
2899
|
-
*
|
|
2914
|
+
* Lookup455: pallet_hyperbridge::pallet::Error<T>
|
|
2900
2915
|
**/
|
|
2901
2916
|
PalletHyperbridgeError: string;
|
|
2902
2917
|
/**
|
|
2903
|
-
*
|
|
2918
|
+
* Lookup456: pallet_token_gateway::pallet::Error<T>
|
|
2904
2919
|
**/
|
|
2905
2920
|
PalletTokenGatewayError: {
|
|
2906
2921
|
_enum: string[];
|
|
2907
2922
|
};
|
|
2908
2923
|
/**
|
|
2909
|
-
*
|
|
2924
|
+
* Lookup459: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
2910
2925
|
**/
|
|
2911
2926
|
FrameSystemExtensionsCheckNonZeroSender: string;
|
|
2912
2927
|
/**
|
|
2913
|
-
*
|
|
2928
|
+
* Lookup460: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
2914
2929
|
**/
|
|
2915
2930
|
FrameSystemExtensionsCheckSpecVersion: string;
|
|
2916
2931
|
/**
|
|
2917
|
-
*
|
|
2932
|
+
* Lookup461: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
2918
2933
|
**/
|
|
2919
2934
|
FrameSystemExtensionsCheckTxVersion: string;
|
|
2920
2935
|
/**
|
|
2921
|
-
*
|
|
2936
|
+
* Lookup462: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
2922
2937
|
**/
|
|
2923
2938
|
FrameSystemExtensionsCheckGenesis: string;
|
|
2924
2939
|
/**
|
|
2925
|
-
*
|
|
2940
|
+
* Lookup465: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
2926
2941
|
**/
|
|
2927
2942
|
FrameSystemExtensionsCheckNonce: string;
|
|
2928
2943
|
/**
|
|
2929
|
-
*
|
|
2944
|
+
* Lookup466: frame_system::extensions::check_weight::CheckWeight<T>
|
|
2930
2945
|
**/
|
|
2931
2946
|
FrameSystemExtensionsCheckWeight: string;
|
|
2932
2947
|
/**
|
|
2933
|
-
*
|
|
2948
|
+
* Lookup467: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
2934
2949
|
**/
|
|
2935
2950
|
PalletTransactionPaymentChargeTransactionPayment: string;
|
|
2936
2951
|
/**
|
|
2937
|
-
*
|
|
2952
|
+
* Lookup468: frame_metadata_hash_extension::CheckMetadataHash<T>
|
|
2938
2953
|
**/
|
|
2939
2954
|
FrameMetadataHashExtensionCheckMetadataHash: {
|
|
2940
2955
|
mode: string;
|
|
2941
2956
|
};
|
|
2942
2957
|
/**
|
|
2943
|
-
*
|
|
2958
|
+
* Lookup469: frame_metadata_hash_extension::Mode
|
|
2944
2959
|
**/
|
|
2945
2960
|
FrameMetadataHashExtensionMode: {
|
|
2946
2961
|
_enum: string[];
|
|
2947
2962
|
};
|
|
2948
2963
|
/**
|
|
2949
|
-
*
|
|
2964
|
+
* Lookup471: argon_runtime::Runtime
|
|
2950
2965
|
**/
|
|
2951
2966
|
ArgonRuntimeRuntime: string;
|
|
2952
2967
|
};
|