@argonprotocol/mainchain 0.0.25 → 0.0.26
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 +7 -1
- package/lib/cjs/interfaces/augment-api-query.d.ts +4 -4
- package/lib/cjs/interfaces/augment-api-tx.d.ts +4 -0
- package/lib/cjs/interfaces/lookup.d.ts +65 -63
- package/lib/cjs/interfaces/lookup.js +67 -65
- package/lib/cjs/interfaces/lookup.js.map +1 -1
- package/lib/cjs/interfaces/types-lookup.d.ts +65 -63
- package/lib/esm/interfaces/augment-api-consts.d.ts +7 -1
- package/lib/esm/interfaces/augment-api-query.d.ts +4 -4
- package/lib/esm/interfaces/augment-api-tx.d.ts +4 -0
- package/lib/esm/interfaces/lookup.d.ts +65 -63
- package/lib/esm/interfaces/lookup.js +67 -65
- package/lib/esm/interfaces/lookup.js.map +1 -1
- package/lib/esm/interfaces/types-lookup.d.ts +65 -63
- 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 +7 -1
- package/lib/types/interfaces/augment-api-query.d.ts +4 -4
- package/lib/types/interfaces/augment-api-tx.d.ts +4 -0
- package/lib/types/interfaces/lookup.d.ts +65 -63
- package/lib/types/interfaces/types-lookup.d.ts +65 -63
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ import '@polkadot/api-base/types/consts';
|
|
|
2
2
|
import type { ApiTypes, AugmentedConst } from '@polkadot/api-base/types';
|
|
3
3
|
import type { u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
|
|
4
4
|
import type { ITuple } from '@polkadot/types-codec/types';
|
|
5
|
+
import type { Percent } from '@polkadot/types/interfaces/runtime';
|
|
5
6
|
import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight } from '@polkadot/types/lookup';
|
|
6
7
|
export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
|
|
7
8
|
declare module '@polkadot/api-base/types/consts' {
|
|
@@ -167,6 +168,11 @@ declare module '@polkadot/api-base/types/consts' {
|
|
|
167
168
|
* How many new miners can be in the cohort for each slot
|
|
168
169
|
**/
|
|
169
170
|
maxCohortSize: u32 & AugmentedConst<ApiType>;
|
|
171
|
+
/**
|
|
172
|
+
* The maximum percent of ownership shares in the network that should be required for
|
|
173
|
+
* ownership mining bonds
|
|
174
|
+
**/
|
|
175
|
+
maximumOwnershipBondAmountPercent: Percent & AugmentedConst<ApiType>;
|
|
170
176
|
/**
|
|
171
177
|
* The maximum number of Miners that the pallet can hold.
|
|
172
178
|
**/
|
|
@@ -174,7 +180,7 @@ declare module '@polkadot/api-base/types/consts' {
|
|
|
174
180
|
/**
|
|
175
181
|
* The minimum bond amount possible
|
|
176
182
|
**/
|
|
177
|
-
|
|
183
|
+
minimumOwnershipBondAmount: u128 & AugmentedConst<ApiType>;
|
|
178
184
|
/**
|
|
179
185
|
* The max percent swing for the ownership bond amount per slot (from the last percent
|
|
180
186
|
**/
|
|
@@ -388,10 +388,6 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
388
388
|
* Is the next slot still open for bids
|
|
389
389
|
**/
|
|
390
390
|
isNextSlotBiddingOpen: AugmentedQuery<ApiType, () => Observable<bool>, []>;
|
|
391
|
-
/**
|
|
392
|
-
* The last percentage adjustment to the ownership bond amount
|
|
393
|
-
**/
|
|
394
|
-
lastOwnershipPercentAdjustment: AugmentedQuery<ApiType, () => Observable<Option<u128>>, []>;
|
|
395
391
|
/**
|
|
396
392
|
* The mining slot configuration set in genesis
|
|
397
393
|
**/
|
|
@@ -678,6 +674,10 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
678
674
|
* A map of the token gateway asset id to the local asset id
|
|
679
675
|
**/
|
|
680
676
|
localAssets: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Option<u32>>, [H256]>;
|
|
677
|
+
/**
|
|
678
|
+
* Assets that originate from this chain
|
|
679
|
+
**/
|
|
680
|
+
nativeAssets: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<bool>, [u32]>;
|
|
681
681
|
/**
|
|
682
682
|
* Assets supported by this instance of token gateway
|
|
683
683
|
* A map of the local asset id to the token gateway asset id
|
|
@@ -396,6 +396,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
396
396
|
* - `amount`: The amount to bond with the vault.
|
|
397
397
|
* - `reward_destination`: The account_id for the mining rewards, or `Owner` for the
|
|
398
398
|
* submitting user.
|
|
399
|
+
* - `keys`: The session "hot" keys for the slot (BlockSealAuthorityId and GrandpaId).
|
|
399
400
|
**/
|
|
400
401
|
bid: AugmentedSubmittable<(bondInfo: Option<PalletMiningSlotMiningSlotBid> | null | Uint8Array | PalletMiningSlotMiningSlotBid | {
|
|
401
402
|
vaultId?: any;
|
|
@@ -1129,10 +1130,12 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
1129
1130
|
*
|
|
1130
1131
|
* This works by dispatching a request to the TokenGateway module on each requested chain
|
|
1131
1132
|
* to create the asset.
|
|
1133
|
+
* `native` should be true if this asset originates from this chain
|
|
1132
1134
|
**/
|
|
1133
1135
|
createErc6160Asset: AugmentedSubmittable<(asset: PalletTokenGatewayAssetRegistration | {
|
|
1134
1136
|
localId?: any;
|
|
1135
1137
|
reg?: any;
|
|
1138
|
+
native?: any;
|
|
1136
1139
|
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletTokenGatewayAssetRegistration]>;
|
|
1137
1140
|
/**
|
|
1138
1141
|
* Set the token gateway address for specified chains
|
|
@@ -1150,6 +1153,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
1150
1153
|
timeout?: any;
|
|
1151
1154
|
tokenGateway?: any;
|
|
1152
1155
|
relayerFee?: any;
|
|
1156
|
+
callData?: any;
|
|
1153
1157
|
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletTokenGatewayTeleportParams]>;
|
|
1154
1158
|
/**
|
|
1155
1159
|
* Registers a multi-chain ERC6160 asset. The asset should not already exist.
|
|
@@ -2335,6 +2335,7 @@ declare const _default: {
|
|
|
2335
2335
|
timeout: string;
|
|
2336
2336
|
tokenGateway: string;
|
|
2337
2337
|
relayerFee: string;
|
|
2338
|
+
callData: string;
|
|
2338
2339
|
};
|
|
2339
2340
|
/**
|
|
2340
2341
|
* Lookup300: pallet_token_gateway::types::AssetRegistration<AssetId>
|
|
@@ -2342,6 +2343,7 @@ declare const _default: {
|
|
|
2342
2343
|
PalletTokenGatewayAssetRegistration: {
|
|
2343
2344
|
localId: string;
|
|
2344
2345
|
reg: string;
|
|
2346
|
+
native: string;
|
|
2345
2347
|
};
|
|
2346
2348
|
/**
|
|
2347
2349
|
* Lookup301: token_gateway_primitives::GatewayAssetRegistration
|
|
@@ -2418,7 +2420,7 @@ declare const _default: {
|
|
|
2418
2420
|
slotBiddingStartAfterTicks: string;
|
|
2419
2421
|
};
|
|
2420
2422
|
/**
|
|
2421
|
-
*
|
|
2423
|
+
* Lookup332: pallet_mining_slot::pallet::Error<T>
|
|
2422
2424
|
**/
|
|
2423
2425
|
PalletMiningSlotError: {
|
|
2424
2426
|
_enum: {
|
|
@@ -2446,13 +2448,13 @@ declare const _default: {
|
|
|
2446
2448
|
};
|
|
2447
2449
|
};
|
|
2448
2450
|
/**
|
|
2449
|
-
*
|
|
2451
|
+
* Lookup333: argon_primitives::bond::BondError
|
|
2450
2452
|
**/
|
|
2451
2453
|
ArgonPrimitivesBondBondError: {
|
|
2452
2454
|
_enum: string[];
|
|
2453
2455
|
};
|
|
2454
2456
|
/**
|
|
2455
|
-
*
|
|
2457
|
+
* Lookup334: argon_primitives::bitcoin::UtxoValue
|
|
2456
2458
|
**/
|
|
2457
2459
|
ArgonPrimitivesBitcoinUtxoValue: {
|
|
2458
2460
|
utxoId: string;
|
|
@@ -2462,7 +2464,7 @@ declare const _default: {
|
|
|
2462
2464
|
watchForSpentUntilHeight: string;
|
|
2463
2465
|
};
|
|
2464
2466
|
/**
|
|
2465
|
-
*
|
|
2467
|
+
* Lookup335: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
|
|
2466
2468
|
**/
|
|
2467
2469
|
ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey: {
|
|
2468
2470
|
_enum: {
|
|
@@ -2472,19 +2474,19 @@ declare const _default: {
|
|
|
2472
2474
|
};
|
|
2473
2475
|
};
|
|
2474
2476
|
/**
|
|
2475
|
-
*
|
|
2477
|
+
* Lookup340: argon_primitives::bitcoin::BitcoinNetwork
|
|
2476
2478
|
**/
|
|
2477
2479
|
ArgonPrimitivesBitcoinBitcoinNetwork: {
|
|
2478
2480
|
_enum: string[];
|
|
2479
2481
|
};
|
|
2480
2482
|
/**
|
|
2481
|
-
*
|
|
2483
|
+
* Lookup343: pallet_bitcoin_utxos::pallet::Error<T>
|
|
2482
2484
|
**/
|
|
2483
2485
|
PalletBitcoinUtxosError: {
|
|
2484
2486
|
_enum: string[];
|
|
2485
2487
|
};
|
|
2486
2488
|
/**
|
|
2487
|
-
*
|
|
2489
|
+
* Lookup344: argon_primitives::bond::Vault<sp_core::crypto::AccountId32, Balance, BlockNumber>
|
|
2488
2490
|
**/
|
|
2489
2491
|
ArgonPrimitivesBondVault: {
|
|
2490
2492
|
operatorAccountId: string;
|
|
@@ -2497,7 +2499,7 @@ declare const _default: {
|
|
|
2497
2499
|
pendingTerms: string;
|
|
2498
2500
|
};
|
|
2499
2501
|
/**
|
|
2500
|
-
*
|
|
2502
|
+
* Lookup345: argon_primitives::bond::VaultArgons<Balance>
|
|
2501
2503
|
**/
|
|
2502
2504
|
ArgonPrimitivesBondVaultArgons: {
|
|
2503
2505
|
annualPercentRate: string;
|
|
@@ -2506,7 +2508,7 @@ declare const _default: {
|
|
|
2506
2508
|
baseFee: string;
|
|
2507
2509
|
};
|
|
2508
2510
|
/**
|
|
2509
|
-
*
|
|
2511
|
+
* Lookup349: argon_primitives::bitcoin::BitcoinXPub
|
|
2510
2512
|
**/
|
|
2511
2513
|
ArgonPrimitivesBitcoinBitcoinXPub: {
|
|
2512
2514
|
publicKey: string;
|
|
@@ -2517,19 +2519,19 @@ declare const _default: {
|
|
|
2517
2519
|
network: string;
|
|
2518
2520
|
};
|
|
2519
2521
|
/**
|
|
2520
|
-
*
|
|
2522
|
+
* Lookup351: argon_primitives::bitcoin::NetworkKind
|
|
2521
2523
|
**/
|
|
2522
2524
|
ArgonPrimitivesBitcoinNetworkKind: {
|
|
2523
2525
|
_enum: string[];
|
|
2524
2526
|
};
|
|
2525
2527
|
/**
|
|
2526
|
-
*
|
|
2528
|
+
* Lookup354: pallet_vaults::pallet::Error<T>
|
|
2527
2529
|
**/
|
|
2528
2530
|
PalletVaultsError: {
|
|
2529
2531
|
_enum: string[];
|
|
2530
2532
|
};
|
|
2531
2533
|
/**
|
|
2532
|
-
*
|
|
2534
|
+
* Lookup355: argon_primitives::bond::Bond<sp_core::crypto::AccountId32, Balance, BlockNumber>
|
|
2533
2535
|
**/
|
|
2534
2536
|
ArgonPrimitivesBond: {
|
|
2535
2537
|
bondType: string;
|
|
@@ -2543,7 +2545,7 @@ declare const _default: {
|
|
|
2543
2545
|
expiration: string;
|
|
2544
2546
|
};
|
|
2545
2547
|
/**
|
|
2546
|
-
*
|
|
2548
|
+
* Lookup358: pallet_bond::pallet::UtxoState
|
|
2547
2549
|
**/
|
|
2548
2550
|
PalletBondUtxoState: {
|
|
2549
2551
|
bondId: string;
|
|
@@ -2559,7 +2561,7 @@ declare const _default: {
|
|
|
2559
2561
|
isVerified: string;
|
|
2560
2562
|
};
|
|
2561
2563
|
/**
|
|
2562
|
-
*
|
|
2564
|
+
* Lookup362: pallet_bond::pallet::UtxoCosignRequest<Balance>
|
|
2563
2565
|
**/
|
|
2564
2566
|
PalletBondUtxoCosignRequest: {
|
|
2565
2567
|
bondId: string;
|
|
@@ -2570,7 +2572,7 @@ declare const _default: {
|
|
|
2570
2572
|
redemptionPrice: string;
|
|
2571
2573
|
};
|
|
2572
2574
|
/**
|
|
2573
|
-
*
|
|
2575
|
+
* Lookup366: pallet_bond::pallet::Error<T>
|
|
2574
2576
|
**/
|
|
2575
2577
|
PalletBondError: {
|
|
2576
2578
|
_enum: {
|
|
@@ -2606,13 +2608,13 @@ declare const _default: {
|
|
|
2606
2608
|
};
|
|
2607
2609
|
};
|
|
2608
2610
|
/**
|
|
2609
|
-
*
|
|
2611
|
+
* Lookup378: pallet_notaries::pallet::Error<T>
|
|
2610
2612
|
**/
|
|
2611
2613
|
PalletNotariesError: {
|
|
2612
2614
|
_enum: string[];
|
|
2613
2615
|
};
|
|
2614
2616
|
/**
|
|
2615
|
-
*
|
|
2617
|
+
* Lookup382: argon_primitives::notary::NotaryNotebookKeyDetails
|
|
2616
2618
|
**/
|
|
2617
2619
|
ArgonPrimitivesNotaryNotaryNotebookKeyDetails: {
|
|
2618
2620
|
notebookNumber: string;
|
|
@@ -2622,13 +2624,13 @@ declare const _default: {
|
|
|
2622
2624
|
parentSecret: string;
|
|
2623
2625
|
};
|
|
2624
2626
|
/**
|
|
2625
|
-
*
|
|
2627
|
+
* Lookup385: pallet_notebook::pallet::Error<T>
|
|
2626
2628
|
**/
|
|
2627
2629
|
PalletNotebookError: {
|
|
2628
2630
|
_enum: string[];
|
|
2629
2631
|
};
|
|
2630
2632
|
/**
|
|
2631
|
-
*
|
|
2633
|
+
* Lookup386: pallet_chain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
|
|
2632
2634
|
**/
|
|
2633
2635
|
PalletChainTransferQueuedTransferOut: {
|
|
2634
2636
|
accountId: string;
|
|
@@ -2637,17 +2639,17 @@ declare const _default: {
|
|
|
2637
2639
|
notaryId: string;
|
|
2638
2640
|
};
|
|
2639
2641
|
/**
|
|
2640
|
-
*
|
|
2642
|
+
* Lookup392: frame_support::PalletId
|
|
2641
2643
|
**/
|
|
2642
2644
|
FrameSupportPalletId: string;
|
|
2643
2645
|
/**
|
|
2644
|
-
*
|
|
2646
|
+
* Lookup393: pallet_chain_transfer::pallet::Error<T>
|
|
2645
2647
|
**/
|
|
2646
2648
|
PalletChainTransferError: {
|
|
2647
2649
|
_enum: string[];
|
|
2648
2650
|
};
|
|
2649
2651
|
/**
|
|
2650
|
-
*
|
|
2652
|
+
* Lookup398: argon_primitives::notary::NotaryNotebookVoteDigestDetails
|
|
2651
2653
|
**/
|
|
2652
2654
|
ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails: {
|
|
2653
2655
|
notaryId: string;
|
|
@@ -2657,25 +2659,25 @@ declare const _default: {
|
|
|
2657
2659
|
blockVotingPower: string;
|
|
2658
2660
|
};
|
|
2659
2661
|
/**
|
|
2660
|
-
*
|
|
2662
|
+
* Lookup403: pallet_block_seal_spec::pallet::Error<T>
|
|
2661
2663
|
**/
|
|
2662
2664
|
PalletBlockSealSpecError: {
|
|
2663
2665
|
_enum: string[];
|
|
2664
2666
|
};
|
|
2665
2667
|
/**
|
|
2666
|
-
*
|
|
2668
|
+
* Lookup405: pallet_domains::pallet::Error<T>
|
|
2667
2669
|
**/
|
|
2668
2670
|
PalletDomainsError: {
|
|
2669
2671
|
_enum: string[];
|
|
2670
2672
|
};
|
|
2671
2673
|
/**
|
|
2672
|
-
*
|
|
2674
|
+
* Lookup406: pallet_price_index::pallet::Error<T>
|
|
2673
2675
|
**/
|
|
2674
2676
|
PalletPriceIndexError: {
|
|
2675
2677
|
_enum: string[];
|
|
2676
2678
|
};
|
|
2677
2679
|
/**
|
|
2678
|
-
*
|
|
2680
|
+
* Lookup407: pallet_grandpa::StoredState<N>
|
|
2679
2681
|
**/
|
|
2680
2682
|
PalletGrandpaStoredState: {
|
|
2681
2683
|
_enum: {
|
|
@@ -2692,7 +2694,7 @@ declare const _default: {
|
|
|
2692
2694
|
};
|
|
2693
2695
|
};
|
|
2694
2696
|
/**
|
|
2695
|
-
*
|
|
2697
|
+
* Lookup408: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
2696
2698
|
**/
|
|
2697
2699
|
PalletGrandpaStoredPendingChange: {
|
|
2698
2700
|
scheduledAt: string;
|
|
@@ -2701,13 +2703,13 @@ declare const _default: {
|
|
|
2701
2703
|
forced: string;
|
|
2702
2704
|
};
|
|
2703
2705
|
/**
|
|
2704
|
-
*
|
|
2706
|
+
* Lookup411: pallet_grandpa::pallet::Error<T>
|
|
2705
2707
|
**/
|
|
2706
2708
|
PalletGrandpaError: {
|
|
2707
2709
|
_enum: string[];
|
|
2708
2710
|
};
|
|
2709
2711
|
/**
|
|
2710
|
-
*
|
|
2712
|
+
* Lookup412: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32>
|
|
2711
2713
|
**/
|
|
2712
2714
|
ArgonPrimitivesProvidersBlockSealerInfo: {
|
|
2713
2715
|
blockAuthorAccountId: string;
|
|
@@ -2715,17 +2717,17 @@ declare const _default: {
|
|
|
2715
2717
|
blockSealAuthority: string;
|
|
2716
2718
|
};
|
|
2717
2719
|
/**
|
|
2718
|
-
*
|
|
2720
|
+
* Lookup416: pallet_block_seal::pallet::Error<T>
|
|
2719
2721
|
**/
|
|
2720
2722
|
PalletBlockSealError: {
|
|
2721
2723
|
_enum: string[];
|
|
2722
2724
|
};
|
|
2723
2725
|
/**
|
|
2724
|
-
*
|
|
2726
|
+
* Lookup419: pallet_block_rewards::pallet::Error<T>
|
|
2725
2727
|
**/
|
|
2726
2728
|
PalletBlockRewardsError: string;
|
|
2727
2729
|
/**
|
|
2728
|
-
*
|
|
2730
|
+
* Lookup424: pallet_mint::MintAction<Balance>
|
|
2729
2731
|
**/
|
|
2730
2732
|
PalletMintMintAction: {
|
|
2731
2733
|
argonBurned: string;
|
|
@@ -2733,13 +2735,13 @@ declare const _default: {
|
|
|
2733
2735
|
bitcoinMinted: string;
|
|
2734
2736
|
};
|
|
2735
2737
|
/**
|
|
2736
|
-
*
|
|
2738
|
+
* Lookup425: pallet_mint::pallet::Error<T>
|
|
2737
2739
|
**/
|
|
2738
2740
|
PalletMintError: {
|
|
2739
2741
|
_enum: string[];
|
|
2740
2742
|
};
|
|
2741
2743
|
/**
|
|
2742
|
-
*
|
|
2744
|
+
* Lookup427: pallet_balances::types::BalanceLock<Balance>
|
|
2743
2745
|
**/
|
|
2744
2746
|
PalletBalancesBalanceLock: {
|
|
2745
2747
|
id: string;
|
|
@@ -2747,27 +2749,27 @@ declare const _default: {
|
|
|
2747
2749
|
reasons: string;
|
|
2748
2750
|
};
|
|
2749
2751
|
/**
|
|
2750
|
-
*
|
|
2752
|
+
* Lookup428: pallet_balances::types::Reasons
|
|
2751
2753
|
**/
|
|
2752
2754
|
PalletBalancesReasons: {
|
|
2753
2755
|
_enum: string[];
|
|
2754
2756
|
};
|
|
2755
2757
|
/**
|
|
2756
|
-
*
|
|
2758
|
+
* Lookup431: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
2757
2759
|
**/
|
|
2758
2760
|
PalletBalancesReserveData: {
|
|
2759
2761
|
id: string;
|
|
2760
2762
|
amount: string;
|
|
2761
2763
|
};
|
|
2762
2764
|
/**
|
|
2763
|
-
*
|
|
2765
|
+
* Lookup434: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeHoldReason, Balance>
|
|
2764
2766
|
**/
|
|
2765
2767
|
FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
|
|
2766
2768
|
id: string;
|
|
2767
2769
|
amount: string;
|
|
2768
2770
|
};
|
|
2769
2771
|
/**
|
|
2770
|
-
*
|
|
2772
|
+
* Lookup435: argon_runtime::RuntimeHoldReason
|
|
2771
2773
|
**/
|
|
2772
2774
|
ArgonRuntimeRuntimeHoldReason: {
|
|
2773
2775
|
_enum: {
|
|
@@ -2794,38 +2796,38 @@ declare const _default: {
|
|
|
2794
2796
|
};
|
|
2795
2797
|
};
|
|
2796
2798
|
/**
|
|
2797
|
-
*
|
|
2799
|
+
* Lookup436: pallet_mining_slot::pallet::HoldReason
|
|
2798
2800
|
**/
|
|
2799
2801
|
PalletMiningSlotHoldReason: {
|
|
2800
2802
|
_enum: string[];
|
|
2801
2803
|
};
|
|
2802
2804
|
/**
|
|
2803
|
-
*
|
|
2805
|
+
* Lookup437: pallet_vaults::pallet::HoldReason
|
|
2804
2806
|
**/
|
|
2805
2807
|
PalletVaultsHoldReason: {
|
|
2806
2808
|
_enum: string[];
|
|
2807
2809
|
};
|
|
2808
2810
|
/**
|
|
2809
|
-
*
|
|
2811
|
+
* Lookup438: pallet_bond::pallet::HoldReason
|
|
2810
2812
|
**/
|
|
2811
2813
|
PalletBondHoldReason: {
|
|
2812
2814
|
_enum: string[];
|
|
2813
2815
|
};
|
|
2814
2816
|
/**
|
|
2815
|
-
*
|
|
2817
|
+
* Lookup439: pallet_block_rewards::pallet::HoldReason
|
|
2816
2818
|
**/
|
|
2817
2819
|
PalletBlockRewardsHoldReason: {
|
|
2818
2820
|
_enum: string[];
|
|
2819
2821
|
};
|
|
2820
2822
|
/**
|
|
2821
|
-
*
|
|
2823
|
+
* Lookup442: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeFreezeReason, Balance>
|
|
2822
2824
|
**/
|
|
2823
2825
|
FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
|
|
2824
2826
|
id: string;
|
|
2825
2827
|
amount: string;
|
|
2826
2828
|
};
|
|
2827
2829
|
/**
|
|
2828
|
-
*
|
|
2830
|
+
* Lookup443: argon_runtime::RuntimeFreezeReason
|
|
2829
2831
|
**/
|
|
2830
2832
|
ArgonRuntimeRuntimeFreezeReason: {
|
|
2831
2833
|
_enum: {
|
|
@@ -2852,99 +2854,99 @@ declare const _default: {
|
|
|
2852
2854
|
};
|
|
2853
2855
|
};
|
|
2854
2856
|
/**
|
|
2855
|
-
*
|
|
2857
|
+
* Lookup444: pallet_block_rewards::pallet::FreezeReason
|
|
2856
2858
|
**/
|
|
2857
2859
|
PalletBlockRewardsFreezeReason: {
|
|
2858
2860
|
_enum: string[];
|
|
2859
2861
|
};
|
|
2860
2862
|
/**
|
|
2861
|
-
*
|
|
2863
|
+
* Lookup446: pallet_balances::pallet::Error<T, I>
|
|
2862
2864
|
**/
|
|
2863
2865
|
PalletBalancesError: {
|
|
2864
2866
|
_enum: string[];
|
|
2865
2867
|
};
|
|
2866
2868
|
/**
|
|
2867
|
-
*
|
|
2869
|
+
* Lookup448: pallet_tx_pause::pallet::Error<T>
|
|
2868
2870
|
**/
|
|
2869
2871
|
PalletTxPauseError: {
|
|
2870
2872
|
_enum: string[];
|
|
2871
2873
|
};
|
|
2872
2874
|
/**
|
|
2873
|
-
*
|
|
2875
|
+
* Lookup449: pallet_transaction_payment::Releases
|
|
2874
2876
|
**/
|
|
2875
2877
|
PalletTransactionPaymentReleases: {
|
|
2876
2878
|
_enum: string[];
|
|
2877
2879
|
};
|
|
2878
2880
|
/**
|
|
2879
|
-
*
|
|
2881
|
+
* Lookup450: pallet_utility::pallet::Error<T>
|
|
2880
2882
|
**/
|
|
2881
2883
|
PalletUtilityError: {
|
|
2882
2884
|
_enum: string[];
|
|
2883
2885
|
};
|
|
2884
2886
|
/**
|
|
2885
|
-
*
|
|
2887
|
+
* Lookup451: pallet_sudo::pallet::Error<T>
|
|
2886
2888
|
**/
|
|
2887
2889
|
PalletSudoError: {
|
|
2888
2890
|
_enum: string[];
|
|
2889
2891
|
};
|
|
2890
2892
|
/**
|
|
2891
|
-
*
|
|
2893
|
+
* Lookup452: pallet_ismp::pallet::Error<T>
|
|
2892
2894
|
**/
|
|
2893
2895
|
PalletIsmpError: {
|
|
2894
2896
|
_enum: string[];
|
|
2895
2897
|
};
|
|
2896
2898
|
/**
|
|
2897
|
-
*
|
|
2899
|
+
* Lookup453: pallet_hyperbridge::pallet::Error<T>
|
|
2898
2900
|
**/
|
|
2899
2901
|
PalletHyperbridgeError: string;
|
|
2900
2902
|
/**
|
|
2901
|
-
*
|
|
2903
|
+
* Lookup454: pallet_token_gateway::pallet::Error<T>
|
|
2902
2904
|
**/
|
|
2903
2905
|
PalletTokenGatewayError: {
|
|
2904
2906
|
_enum: string[];
|
|
2905
2907
|
};
|
|
2906
2908
|
/**
|
|
2907
|
-
*
|
|
2909
|
+
* Lookup457: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
2908
2910
|
**/
|
|
2909
2911
|
FrameSystemExtensionsCheckNonZeroSender: string;
|
|
2910
2912
|
/**
|
|
2911
|
-
*
|
|
2913
|
+
* Lookup458: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
2912
2914
|
**/
|
|
2913
2915
|
FrameSystemExtensionsCheckSpecVersion: string;
|
|
2914
2916
|
/**
|
|
2915
|
-
*
|
|
2917
|
+
* Lookup459: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
2916
2918
|
**/
|
|
2917
2919
|
FrameSystemExtensionsCheckTxVersion: string;
|
|
2918
2920
|
/**
|
|
2919
|
-
*
|
|
2921
|
+
* Lookup460: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
2920
2922
|
**/
|
|
2921
2923
|
FrameSystemExtensionsCheckGenesis: string;
|
|
2922
2924
|
/**
|
|
2923
|
-
*
|
|
2925
|
+
* Lookup463: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
2924
2926
|
**/
|
|
2925
2927
|
FrameSystemExtensionsCheckNonce: string;
|
|
2926
2928
|
/**
|
|
2927
|
-
*
|
|
2929
|
+
* Lookup464: frame_system::extensions::check_weight::CheckWeight<T>
|
|
2928
2930
|
**/
|
|
2929
2931
|
FrameSystemExtensionsCheckWeight: string;
|
|
2930
2932
|
/**
|
|
2931
|
-
*
|
|
2933
|
+
* Lookup465: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
2932
2934
|
**/
|
|
2933
2935
|
PalletTransactionPaymentChargeTransactionPayment: string;
|
|
2934
2936
|
/**
|
|
2935
|
-
*
|
|
2937
|
+
* Lookup466: frame_metadata_hash_extension::CheckMetadataHash<T>
|
|
2936
2938
|
**/
|
|
2937
2939
|
FrameMetadataHashExtensionCheckMetadataHash: {
|
|
2938
2940
|
mode: string;
|
|
2939
2941
|
};
|
|
2940
2942
|
/**
|
|
2941
|
-
*
|
|
2943
|
+
* Lookup467: frame_metadata_hash_extension::Mode
|
|
2942
2944
|
**/
|
|
2943
2945
|
FrameMetadataHashExtensionMode: {
|
|
2944
2946
|
_enum: string[];
|
|
2945
2947
|
};
|
|
2946
2948
|
/**
|
|
2947
|
-
*
|
|
2949
|
+
* Lookup469: argon_runtime::Runtime
|
|
2948
2950
|
**/
|
|
2949
2951
|
ArgonRuntimeRuntime: string;
|
|
2950
2952
|
};
|