@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
|
@@ -2234,11 +2234,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2234
2234
|
readonly timeout: u64;
|
|
2235
2235
|
readonly tokenGateway: Bytes;
|
|
2236
2236
|
readonly relayerFee: u128;
|
|
2237
|
+
readonly callData: Option<Bytes>;
|
|
2237
2238
|
}
|
|
2238
2239
|
/** @name PalletTokenGatewayAssetRegistration (300) */
|
|
2239
2240
|
interface PalletTokenGatewayAssetRegistration extends Struct {
|
|
2240
2241
|
readonly localId: u32;
|
|
2241
2242
|
readonly reg: TokenGatewayPrimitivesGatewayAssetRegistration;
|
|
2243
|
+
readonly native: bool;
|
|
2242
2244
|
}
|
|
2243
2245
|
/** @name TokenGatewayPrimitivesGatewayAssetRegistration (301) */
|
|
2244
2246
|
interface TokenGatewayPrimitivesGatewayAssetRegistration extends Struct {
|
|
@@ -2316,7 +2318,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2316
2318
|
readonly blocksBetweenSlots: Compact<u32>;
|
|
2317
2319
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
2318
2320
|
}
|
|
2319
|
-
/** @name PalletMiningSlotError (
|
|
2321
|
+
/** @name PalletMiningSlotError (332) */
|
|
2320
2322
|
interface PalletMiningSlotError extends Enum {
|
|
2321
2323
|
readonly isSlotNotTakingBids: boolean;
|
|
2322
2324
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -2342,7 +2344,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2342
2344
|
readonly asGenericBondError: ArgonPrimitivesBondBondError;
|
|
2343
2345
|
readonly type: 'SlotNotTakingBids' | 'TooManyBlockRegistrants' | 'InsufficientOwnershipTokens' | 'BidTooLow' | 'CannotRegisterOverlappingSessions' | 'BondNotFound' | 'NoMoreBondIds' | 'VaultClosed' | 'MinimumBondAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'BondAlreadyClosed' | 'FeeExceedsBondAmount' | 'AccountWouldBeBelowMinimum' | 'GenericBondError';
|
|
2344
2346
|
}
|
|
2345
|
-
/** @name ArgonPrimitivesBondBondError (
|
|
2347
|
+
/** @name ArgonPrimitivesBondBondError (333) */
|
|
2346
2348
|
interface ArgonPrimitivesBondBondError extends Enum {
|
|
2347
2349
|
readonly isBondNotFound: boolean;
|
|
2348
2350
|
readonly isNoMoreBondIds: boolean;
|
|
@@ -2366,7 +2368,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2366
2368
|
readonly isInternalError: boolean;
|
|
2367
2369
|
readonly type: 'BondNotFound' | 'NoMoreBondIds' | 'MinimumBondAmountNotMet' | 'VaultClosed' | 'ExpirationAtBlockOverflow' | 'AccountWouldBeBelowMinimum' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'InsufficientBitcoinsForMining' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'UnableToDecodeVaultBitcoinPubkey' | 'FeeExceedsBondAmount' | 'InvalidBitcoinScript' | 'InternalError';
|
|
2368
2370
|
}
|
|
2369
|
-
/** @name ArgonPrimitivesBitcoinUtxoValue (
|
|
2371
|
+
/** @name ArgonPrimitivesBitcoinUtxoValue (334) */
|
|
2370
2372
|
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
2371
2373
|
readonly utxoId: u64;
|
|
2372
2374
|
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
@@ -2374,7 +2376,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2374
2376
|
readonly submittedAtHeight: Compact<u64>;
|
|
2375
2377
|
readonly watchForSpentUntilHeight: Compact<u64>;
|
|
2376
2378
|
}
|
|
2377
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (
|
|
2379
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (335) */
|
|
2378
2380
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
2379
2381
|
readonly isP2wsh: boolean;
|
|
2380
2382
|
readonly asP2wsh: {
|
|
@@ -2382,7 +2384,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2382
2384
|
} & Struct;
|
|
2383
2385
|
readonly type: 'P2wsh';
|
|
2384
2386
|
}
|
|
2385
|
-
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (
|
|
2387
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (340) */
|
|
2386
2388
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
2387
2389
|
readonly isBitcoin: boolean;
|
|
2388
2390
|
readonly isTestnet: boolean;
|
|
@@ -2390,7 +2392,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2390
2392
|
readonly isRegtest: boolean;
|
|
2391
2393
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
2392
2394
|
}
|
|
2393
|
-
/** @name PalletBitcoinUtxosError (
|
|
2395
|
+
/** @name PalletBitcoinUtxosError (343) */
|
|
2394
2396
|
interface PalletBitcoinUtxosError extends Enum {
|
|
2395
2397
|
readonly isNoPermissions: boolean;
|
|
2396
2398
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -2405,7 +2407,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2405
2407
|
readonly isInvalidBitcoinScript: boolean;
|
|
2406
2408
|
readonly type: 'NoPermissions' | 'NoBitcoinConfirmedBlock' | 'InsufficientBitcoinAmount' | 'NoBitcoinPricesAvailable' | 'ScriptPubkeyConflict' | 'UtxoNotLocked' | 'RedemptionsUnavailable' | 'InvalidBitcoinSyncHeight' | 'BitcoinHeightNotConfirmed' | 'MaxUtxosExceeded' | 'InvalidBitcoinScript';
|
|
2407
2409
|
}
|
|
2408
|
-
/** @name ArgonPrimitivesBondVault (
|
|
2410
|
+
/** @name ArgonPrimitivesBondVault (344) */
|
|
2409
2411
|
interface ArgonPrimitivesBondVault extends Struct {
|
|
2410
2412
|
readonly operatorAccountId: AccountId32;
|
|
2411
2413
|
readonly bitcoinArgons: ArgonPrimitivesBondVaultArgons;
|
|
@@ -2416,14 +2418,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2416
2418
|
readonly isClosed: bool;
|
|
2417
2419
|
readonly pendingTerms: Option<ITuple<[u32, ArgonPrimitivesBondVaultTerms]>>;
|
|
2418
2420
|
}
|
|
2419
|
-
/** @name ArgonPrimitivesBondVaultArgons (
|
|
2421
|
+
/** @name ArgonPrimitivesBondVaultArgons (345) */
|
|
2420
2422
|
interface ArgonPrimitivesBondVaultArgons extends Struct {
|
|
2421
2423
|
readonly annualPercentRate: Compact<u128>;
|
|
2422
2424
|
readonly allocated: Compact<u128>;
|
|
2423
2425
|
readonly bonded: Compact<u128>;
|
|
2424
2426
|
readonly baseFee: Compact<u128>;
|
|
2425
2427
|
}
|
|
2426
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
2428
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (349) */
|
|
2427
2429
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
2428
2430
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
2429
2431
|
readonly depth: Compact<u8>;
|
|
@@ -2432,13 +2434,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2432
2434
|
readonly chainCode: U8aFixed;
|
|
2433
2435
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
2434
2436
|
}
|
|
2435
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
2437
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (351) */
|
|
2436
2438
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
2437
2439
|
readonly isMain: boolean;
|
|
2438
2440
|
readonly isTest: boolean;
|
|
2439
2441
|
readonly type: 'Main' | 'Test';
|
|
2440
2442
|
}
|
|
2441
|
-
/** @name PalletVaultsError (
|
|
2443
|
+
/** @name PalletVaultsError (354) */
|
|
2442
2444
|
interface PalletVaultsError extends Enum {
|
|
2443
2445
|
readonly isBondNotFound: boolean;
|
|
2444
2446
|
readonly isNoMoreVaultIds: boolean;
|
|
@@ -2479,7 +2481,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2479
2481
|
readonly isUnableToDecodeVaultBitcoinPubkey: boolean;
|
|
2480
2482
|
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';
|
|
2481
2483
|
}
|
|
2482
|
-
/** @name ArgonPrimitivesBond (
|
|
2484
|
+
/** @name ArgonPrimitivesBond (355) */
|
|
2483
2485
|
interface ArgonPrimitivesBond extends Struct {
|
|
2484
2486
|
readonly bondType: ArgonPrimitivesBondBondType;
|
|
2485
2487
|
readonly vaultId: Compact<u32>;
|
|
@@ -2491,7 +2493,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2491
2493
|
readonly startBlock: Compact<u32>;
|
|
2492
2494
|
readonly expiration: ArgonPrimitivesBondBondExpiration;
|
|
2493
2495
|
}
|
|
2494
|
-
/** @name PalletBondUtxoState (
|
|
2496
|
+
/** @name PalletBondUtxoState (358) */
|
|
2495
2497
|
interface PalletBondUtxoState extends Struct {
|
|
2496
2498
|
readonly bondId: Compact<u64>;
|
|
2497
2499
|
readonly satoshis: Compact<u64>;
|
|
@@ -2505,7 +2507,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2505
2507
|
readonly utxoScriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
2506
2508
|
readonly isVerified: bool;
|
|
2507
2509
|
}
|
|
2508
|
-
/** @name PalletBondUtxoCosignRequest (
|
|
2510
|
+
/** @name PalletBondUtxoCosignRequest (362) */
|
|
2509
2511
|
interface PalletBondUtxoCosignRequest extends Struct {
|
|
2510
2512
|
readonly bondId: Compact<u64>;
|
|
2511
2513
|
readonly vaultId: Compact<u32>;
|
|
@@ -2514,7 +2516,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2514
2516
|
readonly toScriptPubkey: Bytes;
|
|
2515
2517
|
readonly redemptionPrice: Compact<u128>;
|
|
2516
2518
|
}
|
|
2517
|
-
/** @name PalletBondError (
|
|
2519
|
+
/** @name PalletBondError (366) */
|
|
2518
2520
|
interface PalletBondError extends Enum {
|
|
2519
2521
|
readonly isBondNotFound: boolean;
|
|
2520
2522
|
readonly isNoMoreBondIds: boolean;
|
|
@@ -2548,7 +2550,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2548
2550
|
readonly asGenericBondError: ArgonPrimitivesBondBondError;
|
|
2549
2551
|
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';
|
|
2550
2552
|
}
|
|
2551
|
-
/** @name PalletNotariesError (
|
|
2553
|
+
/** @name PalletNotariesError (378) */
|
|
2552
2554
|
interface PalletNotariesError extends Enum {
|
|
2553
2555
|
readonly isProposalNotFound: boolean;
|
|
2554
2556
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -2561,7 +2563,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2561
2563
|
readonly isInvalidNotary: boolean;
|
|
2562
2564
|
readonly type: 'ProposalNotFound' | 'MaxNotariesExceeded' | 'MaxProposalsPerBlockExceeded' | 'NotAnActiveNotary' | 'InvalidNotaryOperator' | 'NoMoreNotaryIds' | 'EffectiveTickTooSoon' | 'TooManyKeys' | 'InvalidNotary';
|
|
2563
2565
|
}
|
|
2564
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
2566
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (382) */
|
|
2565
2567
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
2566
2568
|
readonly notebookNumber: Compact<u32>;
|
|
2567
2569
|
readonly tick: Compact<u64>;
|
|
@@ -2569,7 +2571,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2569
2571
|
readonly secretHash: H256;
|
|
2570
2572
|
readonly parentSecret: Option<H256>;
|
|
2571
2573
|
}
|
|
2572
|
-
/** @name PalletNotebookError (
|
|
2574
|
+
/** @name PalletNotebookError (385) */
|
|
2573
2575
|
interface PalletNotebookError extends Enum {
|
|
2574
2576
|
readonly isDuplicateNotebookNumber: boolean;
|
|
2575
2577
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -2587,17 +2589,17 @@ declare module '@polkadot/types/lookup' {
|
|
|
2587
2589
|
readonly isInvalidNotaryOperator: boolean;
|
|
2588
2590
|
readonly type: 'DuplicateNotebookNumber' | 'MissingNotebookNumber' | 'NotebookTickAlreadyUsed' | 'InvalidNotebookSignature' | 'InvalidSecretProvided' | 'CouldNotDecodeNotebook' | 'DuplicateNotebookDigest' | 'MissingNotebookDigest' | 'InvalidNotebookDigest' | 'MultipleNotebookInherentsProvided' | 'InternalError' | 'NotebookSubmittedForLockedNotary' | 'InvalidReprocessNotebook' | 'InvalidNotaryOperator';
|
|
2589
2591
|
}
|
|
2590
|
-
/** @name PalletChainTransferQueuedTransferOut (
|
|
2592
|
+
/** @name PalletChainTransferQueuedTransferOut (386) */
|
|
2591
2593
|
interface PalletChainTransferQueuedTransferOut extends Struct {
|
|
2592
2594
|
readonly accountId: AccountId32;
|
|
2593
2595
|
readonly amount: u128;
|
|
2594
2596
|
readonly expirationTick: u64;
|
|
2595
2597
|
readonly notaryId: u32;
|
|
2596
2598
|
}
|
|
2597
|
-
/** @name FrameSupportPalletId (
|
|
2599
|
+
/** @name FrameSupportPalletId (392) */
|
|
2598
2600
|
interface FrameSupportPalletId extends U8aFixed {
|
|
2599
2601
|
}
|
|
2600
|
-
/** @name PalletChainTransferError (
|
|
2602
|
+
/** @name PalletChainTransferError (393) */
|
|
2601
2603
|
interface PalletChainTransferError extends Enum {
|
|
2602
2604
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
2603
2605
|
readonly isInsufficientFunds: boolean;
|
|
@@ -2607,7 +2609,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2607
2609
|
readonly isInvalidNotaryUsedForTransfer: boolean;
|
|
2608
2610
|
readonly type: 'MaxBlockTransfersExceeded' | 'InsufficientFunds' | 'InsufficientNotarizedFunds' | 'InvalidOrDuplicatedLocalchainTransfer' | 'NotebookIncludesExpiredLocalchainTransfer' | 'InvalidNotaryUsedForTransfer';
|
|
2609
2611
|
}
|
|
2610
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
2612
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (398) */
|
|
2611
2613
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
2612
2614
|
readonly notaryId: Compact<u32>;
|
|
2613
2615
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2615,12 +2617,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
2615
2617
|
readonly blockVotesCount: Compact<u32>;
|
|
2616
2618
|
readonly blockVotingPower: Compact<u128>;
|
|
2617
2619
|
}
|
|
2618
|
-
/** @name PalletBlockSealSpecError (
|
|
2620
|
+
/** @name PalletBlockSealSpecError (403) */
|
|
2619
2621
|
interface PalletBlockSealSpecError extends Enum {
|
|
2620
2622
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
2621
2623
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
2622
2624
|
}
|
|
2623
|
-
/** @name PalletDomainsError (
|
|
2625
|
+
/** @name PalletDomainsError (405) */
|
|
2624
2626
|
interface PalletDomainsError extends Enum {
|
|
2625
2627
|
readonly isDomainNotRegistered: boolean;
|
|
2626
2628
|
readonly isNotDomainOwner: boolean;
|
|
@@ -2629,7 +2631,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2629
2631
|
readonly isAccountDecodingError: boolean;
|
|
2630
2632
|
readonly type: 'DomainNotRegistered' | 'NotDomainOwner' | 'FailedToAddToAddressHistory' | 'FailedToAddExpiringDomain' | 'AccountDecodingError';
|
|
2631
2633
|
}
|
|
2632
|
-
/** @name PalletPriceIndexError (
|
|
2634
|
+
/** @name PalletPriceIndexError (406) */
|
|
2633
2635
|
interface PalletPriceIndexError extends Enum {
|
|
2634
2636
|
readonly isNotAuthorizedOperator: boolean;
|
|
2635
2637
|
readonly isMissingValue: boolean;
|
|
@@ -2637,7 +2639,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2637
2639
|
readonly isMaxPriceChangePerTickExceeded: boolean;
|
|
2638
2640
|
readonly type: 'NotAuthorizedOperator' | 'MissingValue' | 'PricesTooOld' | 'MaxPriceChangePerTickExceeded';
|
|
2639
2641
|
}
|
|
2640
|
-
/** @name PalletGrandpaStoredState (
|
|
2642
|
+
/** @name PalletGrandpaStoredState (407) */
|
|
2641
2643
|
interface PalletGrandpaStoredState extends Enum {
|
|
2642
2644
|
readonly isLive: boolean;
|
|
2643
2645
|
readonly isPendingPause: boolean;
|
|
@@ -2653,14 +2655,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2653
2655
|
} & Struct;
|
|
2654
2656
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
2655
2657
|
}
|
|
2656
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
2658
|
+
/** @name PalletGrandpaStoredPendingChange (408) */
|
|
2657
2659
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
2658
2660
|
readonly scheduledAt: u32;
|
|
2659
2661
|
readonly delay: u32;
|
|
2660
2662
|
readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
|
|
2661
2663
|
readonly forced: Option<u32>;
|
|
2662
2664
|
}
|
|
2663
|
-
/** @name PalletGrandpaError (
|
|
2665
|
+
/** @name PalletGrandpaError (411) */
|
|
2664
2666
|
interface PalletGrandpaError extends Enum {
|
|
2665
2667
|
readonly isPauseFailed: boolean;
|
|
2666
2668
|
readonly isResumeFailed: boolean;
|
|
@@ -2671,13 +2673,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2671
2673
|
readonly isDuplicateOffenceReport: boolean;
|
|
2672
2674
|
readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
|
|
2673
2675
|
}
|
|
2674
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
2676
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (412) */
|
|
2675
2677
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
2676
2678
|
readonly blockAuthorAccountId: AccountId32;
|
|
2677
2679
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
2678
2680
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
2679
2681
|
}
|
|
2680
|
-
/** @name PalletBlockSealError (
|
|
2682
|
+
/** @name PalletBlockSealError (416) */
|
|
2681
2683
|
interface PalletBlockSealError extends Enum {
|
|
2682
2684
|
readonly isInvalidVoteSealStrength: boolean;
|
|
2683
2685
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -2699,43 +2701,43 @@ declare module '@polkadot/types/lookup' {
|
|
|
2699
2701
|
readonly isBlockSealDecodeError: boolean;
|
|
2700
2702
|
readonly type: 'InvalidVoteSealStrength' | 'InvalidSubmitter' | 'UnableToDecodeVoteAccount' | 'UnregisteredBlockAuthor' | 'InvalidBlockVoteProof' | 'NoGrandparentVoteMinimum' | 'DuplicateBlockSealProvided' | 'InsufficientVotingPower' | 'ParentVotingKeyNotFound' | 'InvalidVoteGrandparentHash' | 'IneligibleNotebookUsed' | 'NoEligibleVotingRoot' | 'CouldNotDecodeVote' | 'MaxNotebooksAtTickExceeded' | 'NoClosestMinerFoundForVote' | 'BlockVoteInvalidSignature' | 'InvalidForkPowerParent' | 'BlockSealDecodeError';
|
|
2701
2703
|
}
|
|
2702
|
-
/** @name PalletBlockRewardsError (
|
|
2704
|
+
/** @name PalletBlockRewardsError (419) */
|
|
2703
2705
|
type PalletBlockRewardsError = Null;
|
|
2704
|
-
/** @name PalletMintMintAction (
|
|
2706
|
+
/** @name PalletMintMintAction (424) */
|
|
2705
2707
|
interface PalletMintMintAction extends Struct {
|
|
2706
2708
|
readonly argonBurned: u128;
|
|
2707
2709
|
readonly argonMinted: u128;
|
|
2708
2710
|
readonly bitcoinMinted: u128;
|
|
2709
2711
|
}
|
|
2710
|
-
/** @name PalletMintError (
|
|
2712
|
+
/** @name PalletMintError (425) */
|
|
2711
2713
|
interface PalletMintError extends Enum {
|
|
2712
2714
|
readonly isTooManyPendingMints: boolean;
|
|
2713
2715
|
readonly type: 'TooManyPendingMints';
|
|
2714
2716
|
}
|
|
2715
|
-
/** @name PalletBalancesBalanceLock (
|
|
2717
|
+
/** @name PalletBalancesBalanceLock (427) */
|
|
2716
2718
|
interface PalletBalancesBalanceLock extends Struct {
|
|
2717
2719
|
readonly id: U8aFixed;
|
|
2718
2720
|
readonly amount: u128;
|
|
2719
2721
|
readonly reasons: PalletBalancesReasons;
|
|
2720
2722
|
}
|
|
2721
|
-
/** @name PalletBalancesReasons (
|
|
2723
|
+
/** @name PalletBalancesReasons (428) */
|
|
2722
2724
|
interface PalletBalancesReasons extends Enum {
|
|
2723
2725
|
readonly isFee: boolean;
|
|
2724
2726
|
readonly isMisc: boolean;
|
|
2725
2727
|
readonly isAll: boolean;
|
|
2726
2728
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
2727
2729
|
}
|
|
2728
|
-
/** @name PalletBalancesReserveData (
|
|
2730
|
+
/** @name PalletBalancesReserveData (431) */
|
|
2729
2731
|
interface PalletBalancesReserveData extends Struct {
|
|
2730
2732
|
readonly id: U8aFixed;
|
|
2731
2733
|
readonly amount: u128;
|
|
2732
2734
|
}
|
|
2733
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
2735
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (434) */
|
|
2734
2736
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
2735
2737
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
2736
2738
|
readonly amount: u128;
|
|
2737
2739
|
}
|
|
2738
|
-
/** @name ArgonRuntimeRuntimeHoldReason (
|
|
2740
|
+
/** @name ArgonRuntimeRuntimeHoldReason (435) */
|
|
2739
2741
|
interface ArgonRuntimeRuntimeHoldReason extends Enum {
|
|
2740
2742
|
readonly isMiningSlot: boolean;
|
|
2741
2743
|
readonly asMiningSlot: PalletMiningSlotHoldReason;
|
|
@@ -2747,44 +2749,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
2747
2749
|
readonly asBlockRewards: PalletBlockRewardsHoldReason;
|
|
2748
2750
|
readonly type: 'MiningSlot' | 'Vaults' | 'Bonds' | 'BlockRewards';
|
|
2749
2751
|
}
|
|
2750
|
-
/** @name PalletMiningSlotHoldReason (
|
|
2752
|
+
/** @name PalletMiningSlotHoldReason (436) */
|
|
2751
2753
|
interface PalletMiningSlotHoldReason extends Enum {
|
|
2752
2754
|
readonly isRegisterAsMiner: boolean;
|
|
2753
2755
|
readonly type: 'RegisterAsMiner';
|
|
2754
2756
|
}
|
|
2755
|
-
/** @name PalletVaultsHoldReason (
|
|
2757
|
+
/** @name PalletVaultsHoldReason (437) */
|
|
2756
2758
|
interface PalletVaultsHoldReason extends Enum {
|
|
2757
2759
|
readonly isEnterVault: boolean;
|
|
2758
2760
|
readonly isBondFee: boolean;
|
|
2759
2761
|
readonly type: 'EnterVault' | 'BondFee';
|
|
2760
2762
|
}
|
|
2761
|
-
/** @name PalletBondHoldReason (
|
|
2763
|
+
/** @name PalletBondHoldReason (438) */
|
|
2762
2764
|
interface PalletBondHoldReason extends Enum {
|
|
2763
2765
|
readonly isUnlockingBitcoin: boolean;
|
|
2764
2766
|
readonly type: 'UnlockingBitcoin';
|
|
2765
2767
|
}
|
|
2766
|
-
/** @name PalletBlockRewardsHoldReason (
|
|
2768
|
+
/** @name PalletBlockRewardsHoldReason (439) */
|
|
2767
2769
|
interface PalletBlockRewardsHoldReason extends Enum {
|
|
2768
2770
|
readonly isMaturationPeriod: boolean;
|
|
2769
2771
|
readonly type: 'MaturationPeriod';
|
|
2770
2772
|
}
|
|
2771
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
2773
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (442) */
|
|
2772
2774
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
2773
2775
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
2774
2776
|
readonly amount: u128;
|
|
2775
2777
|
}
|
|
2776
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
2778
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (443) */
|
|
2777
2779
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
2778
2780
|
readonly isBlockRewards: boolean;
|
|
2779
2781
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
2780
2782
|
readonly type: 'BlockRewards';
|
|
2781
2783
|
}
|
|
2782
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
2784
|
+
/** @name PalletBlockRewardsFreezeReason (444) */
|
|
2783
2785
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
2784
2786
|
readonly isMaturationPeriod: boolean;
|
|
2785
2787
|
readonly type: 'MaturationPeriod';
|
|
2786
2788
|
}
|
|
2787
|
-
/** @name PalletBalancesError (
|
|
2789
|
+
/** @name PalletBalancesError (446) */
|
|
2788
2790
|
interface PalletBalancesError extends Enum {
|
|
2789
2791
|
readonly isVestingBalance: boolean;
|
|
2790
2792
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -2800,7 +2802,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2800
2802
|
readonly isDeltaZero: boolean;
|
|
2801
2803
|
readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
|
|
2802
2804
|
}
|
|
2803
|
-
/** @name PalletTxPauseError (
|
|
2805
|
+
/** @name PalletTxPauseError (448) */
|
|
2804
2806
|
interface PalletTxPauseError extends Enum {
|
|
2805
2807
|
readonly isIsPaused: boolean;
|
|
2806
2808
|
readonly isIsUnpaused: boolean;
|
|
@@ -2808,23 +2810,23 @@ declare module '@polkadot/types/lookup' {
|
|
|
2808
2810
|
readonly isNotFound: boolean;
|
|
2809
2811
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
2810
2812
|
}
|
|
2811
|
-
/** @name PalletTransactionPaymentReleases (
|
|
2813
|
+
/** @name PalletTransactionPaymentReleases (449) */
|
|
2812
2814
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
2813
2815
|
readonly isV1Ancient: boolean;
|
|
2814
2816
|
readonly isV2: boolean;
|
|
2815
2817
|
readonly type: 'V1Ancient' | 'V2';
|
|
2816
2818
|
}
|
|
2817
|
-
/** @name PalletUtilityError (
|
|
2819
|
+
/** @name PalletUtilityError (450) */
|
|
2818
2820
|
interface PalletUtilityError extends Enum {
|
|
2819
2821
|
readonly isTooManyCalls: boolean;
|
|
2820
2822
|
readonly type: 'TooManyCalls';
|
|
2821
2823
|
}
|
|
2822
|
-
/** @name PalletSudoError (
|
|
2824
|
+
/** @name PalletSudoError (451) */
|
|
2823
2825
|
interface PalletSudoError extends Enum {
|
|
2824
2826
|
readonly isRequireSudo: boolean;
|
|
2825
2827
|
readonly type: 'RequireSudo';
|
|
2826
2828
|
}
|
|
2827
|
-
/** @name PalletIsmpError (
|
|
2829
|
+
/** @name PalletIsmpError (452) */
|
|
2828
2830
|
interface PalletIsmpError extends Enum {
|
|
2829
2831
|
readonly isInvalidMessage: boolean;
|
|
2830
2832
|
readonly isMessageNotFound: boolean;
|
|
@@ -2833,9 +2835,9 @@ declare module '@polkadot/types/lookup' {
|
|
|
2833
2835
|
readonly isChallengePeriodUpdateFailed: boolean;
|
|
2834
2836
|
readonly type: 'InvalidMessage' | 'MessageNotFound' | 'ConsensusClientCreationFailed' | 'UnbondingPeriodUpdateFailed' | 'ChallengePeriodUpdateFailed';
|
|
2835
2837
|
}
|
|
2836
|
-
/** @name PalletHyperbridgeError (
|
|
2838
|
+
/** @name PalletHyperbridgeError (453) */
|
|
2837
2839
|
type PalletHyperbridgeError = Null;
|
|
2838
|
-
/** @name PalletTokenGatewayError (
|
|
2840
|
+
/** @name PalletTokenGatewayError (454) */
|
|
2839
2841
|
interface PalletTokenGatewayError extends Enum {
|
|
2840
2842
|
readonly isUnregisteredAsset: boolean;
|
|
2841
2843
|
readonly isAssetTeleportError: boolean;
|
|
@@ -2848,32 +2850,32 @@ declare module '@polkadot/types/lookup' {
|
|
|
2848
2850
|
readonly isNotAssetOwner: boolean;
|
|
2849
2851
|
readonly type: 'UnregisteredAsset' | 'AssetTeleportError' | 'CoprocessorNotConfigured' | 'DispatchError' | 'AssetCreationError' | 'AssetDecimalsNotFound' | 'NotInitialized' | 'UnknownAsset' | 'NotAssetOwner';
|
|
2850
2852
|
}
|
|
2851
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
2853
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (457) */
|
|
2852
2854
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
2853
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
2855
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (458) */
|
|
2854
2856
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
2855
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
2857
|
+
/** @name FrameSystemExtensionsCheckTxVersion (459) */
|
|
2856
2858
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
2857
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
2859
|
+
/** @name FrameSystemExtensionsCheckGenesis (460) */
|
|
2858
2860
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
2859
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
2861
|
+
/** @name FrameSystemExtensionsCheckNonce (463) */
|
|
2860
2862
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
|
|
2861
2863
|
}
|
|
2862
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
2864
|
+
/** @name FrameSystemExtensionsCheckWeight (464) */
|
|
2863
2865
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
2864
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
2866
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (465) */
|
|
2865
2867
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
|
|
2866
2868
|
}
|
|
2867
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
2869
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (466) */
|
|
2868
2870
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
2869
2871
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
2870
2872
|
}
|
|
2871
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
2873
|
+
/** @name FrameMetadataHashExtensionMode (467) */
|
|
2872
2874
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
2873
2875
|
readonly isDisabled: boolean;
|
|
2874
2876
|
readonly isEnabled: boolean;
|
|
2875
2877
|
readonly type: 'Disabled' | 'Enabled';
|
|
2876
2878
|
}
|
|
2877
|
-
/** @name ArgonRuntimeRuntime (
|
|
2879
|
+
/** @name ArgonRuntimeRuntime (469) */
|
|
2878
2880
|
type ArgonRuntimeRuntime = Null;
|
|
2879
2881
|
}
|