@argonprotocol/mainchain 0.0.14 → 0.0.16
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-errors.d.ts +12 -4
- package/lib/cjs/interfaces/augment-api-events.d.ts +6 -1
- package/lib/cjs/interfaces/augment-api-query.d.ts +15 -3
- package/lib/cjs/interfaces/augment-api-tx.d.ts +1 -0
- package/lib/cjs/interfaces/lookup.d.ts +83 -65
- package/lib/cjs/interfaces/lookup.js +87 -69
- package/lib/cjs/interfaces/lookup.js.map +1 -1
- package/lib/cjs/interfaces/registry.d.ts +2 -1
- package/lib/cjs/interfaces/types-lookup.d.ts +90 -70
- package/lib/esm/interfaces/augment-api-errors.d.ts +12 -4
- package/lib/esm/interfaces/augment-api-events.d.ts +6 -1
- package/lib/esm/interfaces/augment-api-query.d.ts +15 -3
- package/lib/esm/interfaces/augment-api-tx.d.ts +1 -0
- package/lib/esm/interfaces/lookup.d.ts +83 -65
- package/lib/esm/interfaces/lookup.js +87 -69
- package/lib/esm/interfaces/lookup.js.map +1 -1
- package/lib/esm/interfaces/registry.d.ts +2 -1
- package/lib/esm/interfaces/types-lookup.d.ts +90 -70
- 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-errors.d.ts +12 -4
- package/lib/types/interfaces/augment-api-events.d.ts +6 -1
- package/lib/types/interfaces/augment-api-query.d.ts +15 -3
- package/lib/types/interfaces/augment-api-tx.d.ts +1 -0
- package/lib/types/interfaces/lookup.d.ts +83 -65
- package/lib/types/interfaces/registry.d.ts +2 -1
- package/lib/types/interfaces/types-lookup.d.ts +90 -70
- package/package.json +1 -1
|
@@ -264,10 +264,6 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
264
264
|
**/
|
|
265
265
|
InvalidOrDuplicatedLocalchainTransfer: AugmentedError<ApiType>;
|
|
266
266
|
MaxBlockTransfersExceeded: AugmentedError<ApiType>;
|
|
267
|
-
/**
|
|
268
|
-
* The notary is locked (likey due to failed audits)
|
|
269
|
-
**/
|
|
270
|
-
NotaryLocked: AugmentedError<ApiType>;
|
|
271
267
|
/**
|
|
272
268
|
* A transfer was submitted in a previous block but the expiration block has passed
|
|
273
269
|
**/
|
|
@@ -475,6 +471,10 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
475
471
|
* Unable to track the notebook change list
|
|
476
472
|
**/
|
|
477
473
|
InternalError: AugmentedError<ApiType>;
|
|
474
|
+
/**
|
|
475
|
+
* Invalid notary operator
|
|
476
|
+
**/
|
|
477
|
+
InvalidNotaryOperator: AugmentedError<ApiType>;
|
|
478
478
|
/**
|
|
479
479
|
* The notebook digest did not match the included notebooks
|
|
480
480
|
**/
|
|
@@ -483,6 +483,10 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
483
483
|
* The signature of the notebook is invalid
|
|
484
484
|
**/
|
|
485
485
|
InvalidNotebookSignature: AugmentedError<ApiType>;
|
|
486
|
+
/**
|
|
487
|
+
* Invalid reprocess notebook
|
|
488
|
+
**/
|
|
489
|
+
InvalidReprocessNotebook: AugmentedError<ApiType>;
|
|
486
490
|
/**
|
|
487
491
|
* The secret or secret hash of the parent notebook do not match
|
|
488
492
|
**/
|
|
@@ -499,6 +503,10 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
499
503
|
* Multiple inherents provided
|
|
500
504
|
**/
|
|
501
505
|
MultipleNotebookInherentsProvided: AugmentedError<ApiType>;
|
|
506
|
+
/**
|
|
507
|
+
* A notebook was submitted for a notary that failed audit, which is not allowed
|
|
508
|
+
**/
|
|
509
|
+
NotebookSubmittedForLockedNotary: AugmentedError<ApiType>;
|
|
502
510
|
/**
|
|
503
511
|
* A notebook was already provided at this tick
|
|
504
512
|
**/
|
|
@@ -531,11 +531,16 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
531
531
|
}>;
|
|
532
532
|
};
|
|
533
533
|
notebook: {
|
|
534
|
-
NotebookAuditFailure: AugmentedEvent<ApiType, [notaryId: u32, notebookNumber: u32, firstFailureReason: ArgonNotaryAuditErrorVerifyError], {
|
|
534
|
+
NotebookAuditFailure: AugmentedEvent<ApiType, [notaryId: u32, notebookNumber: u32, notebookHash: H256, firstFailureReason: ArgonNotaryAuditErrorVerifyError], {
|
|
535
535
|
notaryId: u32;
|
|
536
536
|
notebookNumber: u32;
|
|
537
|
+
notebookHash: H256;
|
|
537
538
|
firstFailureReason: ArgonNotaryAuditErrorVerifyError;
|
|
538
539
|
}>;
|
|
540
|
+
NotebookReadyForReprocess: AugmentedEvent<ApiType, [notaryId: u32, notebookNumber: u32], {
|
|
541
|
+
notaryId: u32;
|
|
542
|
+
notebookNumber: u32;
|
|
543
|
+
}>;
|
|
539
544
|
NotebookSubmitted: AugmentedEvent<ApiType, [notaryId: u32, notebookNumber: u32], {
|
|
540
545
|
notaryId: u32;
|
|
541
546
|
notebookNumber: u32;
|
|
@@ -3,7 +3,7 @@ import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@polkadot/
|
|
|
3
3
|
import type { BTreeMap, Bytes, Null, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';
|
|
4
4
|
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
|
|
5
5
|
import type { AccountId32, H256 } from '@polkadot/types/interfaces/runtime';
|
|
6
|
-
import type { ArgonNotaryAuditErrorVerifyError, ArgonPrimitivesBalanceChangeAccountOrigin, ArgonPrimitivesBitcoinBitcoinBlock, ArgonPrimitivesBitcoinBitcoinNetwork, ArgonPrimitivesBitcoinBitcoinXPub, ArgonPrimitivesBitcoinUtxoRef, ArgonPrimitivesBitcoinUtxoValue, ArgonPrimitivesBlockSealBlockPayout, ArgonPrimitivesBlockSealMiningRegistration, ArgonPrimitivesBlockSealMiningSlotConfig, ArgonPrimitivesBond, ArgonPrimitivesBondVault, ArgonPrimitivesDigestsBlockVoteDigest, ArgonPrimitivesDigestsNotebookDigest, ArgonPrimitivesDigestsParentVotingKeyDigest, ArgonPrimitivesDomainZoneRecord, ArgonPrimitivesInherentsBlockSealInherent, ArgonPrimitivesNotaryNotaryMeta, ArgonPrimitivesNotaryNotaryNotebookKeyDetails, ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails, ArgonPrimitivesNotaryNotaryRecord, ArgonPrimitivesProvidersBlockSealerInfo, ArgonPrimitivesTickTicker, FrameSupportDispatchPerDispatchClassWeight, FrameSupportTokensMiscIdAmountRuntimeFreezeReason, FrameSupportTokensMiscIdAmountRuntimeHoldReason, FrameSystemAccountInfo, FrameSystemCodeUpgradeAuthorization, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReserveData, PalletBondUtxoCosignRequest, PalletBondUtxoState, PalletChainTransferQueuedTransferOut, PalletDomainsDomainRegistration, PalletGrandpaStoredPendingChange, PalletGrandpaStoredState, PalletMultisigMultisig, PalletPriceIndexPriceIndex, PalletProxyAnnouncement, PalletProxyProxyDefinition, PalletTransactionPaymentReleases, SpConsensusGrandpaAppPublic, SpRuntimeDigest } from '@polkadot/types/lookup';
|
|
6
|
+
import type { ArgonNotaryAuditErrorVerifyError, ArgonPrimitivesBalanceChangeAccountOrigin, ArgonPrimitivesBitcoinBitcoinBlock, ArgonPrimitivesBitcoinBitcoinNetwork, ArgonPrimitivesBitcoinBitcoinXPub, ArgonPrimitivesBitcoinUtxoRef, ArgonPrimitivesBitcoinUtxoValue, ArgonPrimitivesBlockSealBlockPayout, ArgonPrimitivesBlockSealMiningRegistration, ArgonPrimitivesBlockSealMiningSlotConfig, ArgonPrimitivesBond, ArgonPrimitivesBondVault, ArgonPrimitivesDigestsBlockVoteDigest, ArgonPrimitivesDigestsNotebookDigest, ArgonPrimitivesDigestsParentVotingKeyDigest, ArgonPrimitivesDomainZoneRecord, ArgonPrimitivesForkPower, ArgonPrimitivesInherentsBlockSealInherent, ArgonPrimitivesNotaryNotaryMeta, ArgonPrimitivesNotaryNotaryNotebookKeyDetails, ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails, ArgonPrimitivesNotaryNotaryRecord, ArgonPrimitivesProvidersBlockSealerInfo, ArgonPrimitivesTickTicker, FrameSupportDispatchPerDispatchClassWeight, FrameSupportTokensMiscIdAmountRuntimeFreezeReason, FrameSupportTokensMiscIdAmountRuntimeHoldReason, FrameSystemAccountInfo, FrameSystemCodeUpgradeAuthorization, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReserveData, PalletBondUtxoCosignRequest, PalletBondUtxoState, PalletChainTransferQueuedTransferOut, PalletDomainsDomainRegistration, PalletGrandpaStoredPendingChange, PalletGrandpaStoredState, PalletMultisigMultisig, PalletPriceIndexPriceIndex, PalletProxyAnnouncement, PalletProxyProxyDefinition, PalletTransactionPaymentReleases, SpConsensusGrandpaAppPublic, SpRuntimeDigest } from '@polkadot/types/lookup';
|
|
7
7
|
import type { Observable } from '@polkadot/types/types';
|
|
8
8
|
export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
|
|
9
9
|
export type __QueryableStorageEntry<ApiType extends ApiTypes> = QueryableStorageEntry<ApiType>;
|
|
@@ -113,6 +113,11 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
113
113
|
payoutsByBlock: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ArgonPrimitivesBlockSealBlockPayout>>, [u32]>;
|
|
114
114
|
};
|
|
115
115
|
blockSeal: {
|
|
116
|
+
/**
|
|
117
|
+
* The calculated strength in the runtime so that it can be
|
|
118
|
+
* upgraded, but is used by the node to determine which fork to follow
|
|
119
|
+
**/
|
|
120
|
+
blockForkPower: AugmentedQuery<ApiType, () => Observable<ArgonPrimitivesForkPower>, []>;
|
|
116
121
|
lastBlockSealerInfo: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesProvidersBlockSealerInfo>>, []>;
|
|
117
122
|
/**
|
|
118
123
|
* The calculated parent voting key for a block. Refers to the Notebook BlockVote Revealed
|
|
@@ -131,6 +136,10 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
131
136
|
* Temporarily track the parent voting key digest
|
|
132
137
|
**/
|
|
133
138
|
tempVotingKeyDigest: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesDigestsParentVotingKeyDigest>>, []>;
|
|
139
|
+
/**
|
|
140
|
+
* The count of votes in the last 3 ticks
|
|
141
|
+
**/
|
|
142
|
+
votesInPast3Ticks: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[u32, u32]>>>, []>;
|
|
134
143
|
};
|
|
135
144
|
blockSealSpec: {
|
|
136
145
|
/**
|
|
@@ -342,9 +351,12 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
342
351
|
* for votes (received at correct tick and audit passed)
|
|
343
352
|
**/
|
|
344
353
|
lastNotebookDetailsByNotary: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[ArgonPrimitivesNotaryNotaryNotebookKeyDetails, bool]>>>, [u32]>;
|
|
354
|
+
/**
|
|
355
|
+
* Notaries ready to start reprocessing at a given notebook number
|
|
356
|
+
**/
|
|
357
|
+
lockedNotaryReadyForReprocess: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u32]>;
|
|
345
358
|
/**
|
|
346
359
|
* Notaries locked for failing audits
|
|
347
|
-
* TODO: we need a mechanism to unlock a notary with "Fixes"
|
|
348
360
|
**/
|
|
349
361
|
notariesLockedForFailedAudit: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[u32, u32, ArgonNotaryAuditErrorVerifyError]>>>, [u32]>;
|
|
350
362
|
/**
|
|
@@ -538,7 +550,7 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
538
550
|
* Blocks from the last 100 ticks. Trimmed in on_initialize.
|
|
539
551
|
* NOTE: cannot include the current block hash until next block
|
|
540
552
|
**/
|
|
541
|
-
recentBlocksAtTicks: AugmentedQuery<ApiType, (
|
|
553
|
+
recentBlocksAtTicks: AugmentedQuery<ApiType, () => Observable<BTreeMap<u32, H256>>, []>;
|
|
542
554
|
};
|
|
543
555
|
timestamp: {
|
|
544
556
|
/**
|
|
@@ -477,6 +477,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
477
477
|
header?: any;
|
|
478
478
|
signature?: any;
|
|
479
479
|
} | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<ArgonPrimitivesNotebookSignedNotebookHeader>]>;
|
|
480
|
+
unlock: AugmentedSubmittable<(notaryId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
|
|
480
481
|
};
|
|
481
482
|
ownership: {
|
|
482
483
|
/**
|
|
@@ -539,8 +539,13 @@ declare const _default: {
|
|
|
539
539
|
NotebookAuditFailure: {
|
|
540
540
|
notaryId: string;
|
|
541
541
|
notebookNumber: string;
|
|
542
|
+
notebookHash: string;
|
|
542
543
|
firstFailureReason: string;
|
|
543
544
|
};
|
|
545
|
+
NotebookReadyForReprocess: {
|
|
546
|
+
notaryId: string;
|
|
547
|
+
notebookNumber: string;
|
|
548
|
+
};
|
|
544
549
|
};
|
|
545
550
|
};
|
|
546
551
|
/**
|
|
@@ -1440,6 +1445,9 @@ declare const _default: {
|
|
|
1440
1445
|
submit: {
|
|
1441
1446
|
notebooks: string;
|
|
1442
1447
|
};
|
|
1448
|
+
unlock: {
|
|
1449
|
+
notaryId: string;
|
|
1450
|
+
};
|
|
1443
1451
|
};
|
|
1444
1452
|
};
|
|
1445
1453
|
/**
|
|
@@ -1861,11 +1869,11 @@ declare const _default: {
|
|
|
1861
1869
|
channelHoldExpirationTicks: string;
|
|
1862
1870
|
};
|
|
1863
1871
|
/**
|
|
1864
|
-
*
|
|
1872
|
+
* Lookup241: pallet_ticks::pallet::Error<T>
|
|
1865
1873
|
**/
|
|
1866
1874
|
PalletTicksError: string;
|
|
1867
1875
|
/**
|
|
1868
|
-
*
|
|
1876
|
+
* Lookup248: argon_primitives::block_seal::MiningSlotConfig<BlockNumber>
|
|
1869
1877
|
**/
|
|
1870
1878
|
ArgonPrimitivesBlockSealMiningSlotConfig: {
|
|
1871
1879
|
blocksBeforeBidEndForVrfClose: string;
|
|
@@ -1873,7 +1881,7 @@ declare const _default: {
|
|
|
1873
1881
|
slotBiddingStartBlock: string;
|
|
1874
1882
|
};
|
|
1875
1883
|
/**
|
|
1876
|
-
*
|
|
1884
|
+
* Lookup249: pallet_mining_slot::pallet::Error<T>
|
|
1877
1885
|
**/
|
|
1878
1886
|
PalletMiningSlotError: {
|
|
1879
1887
|
_enum: {
|
|
@@ -1901,13 +1909,13 @@ declare const _default: {
|
|
|
1901
1909
|
};
|
|
1902
1910
|
};
|
|
1903
1911
|
/**
|
|
1904
|
-
*
|
|
1912
|
+
* Lookup250: argon_primitives::bond::BondError
|
|
1905
1913
|
**/
|
|
1906
1914
|
ArgonPrimitivesBondBondError: {
|
|
1907
1915
|
_enum: string[];
|
|
1908
1916
|
};
|
|
1909
1917
|
/**
|
|
1910
|
-
*
|
|
1918
|
+
* Lookup251: argon_primitives::bitcoin::UtxoValue
|
|
1911
1919
|
**/
|
|
1912
1920
|
ArgonPrimitivesBitcoinUtxoValue: {
|
|
1913
1921
|
utxoId: string;
|
|
@@ -1917,7 +1925,7 @@ declare const _default: {
|
|
|
1917
1925
|
watchForSpentUntilHeight: string;
|
|
1918
1926
|
};
|
|
1919
1927
|
/**
|
|
1920
|
-
*
|
|
1928
|
+
* Lookup252: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
|
|
1921
1929
|
**/
|
|
1922
1930
|
ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey: {
|
|
1923
1931
|
_enum: {
|
|
@@ -1927,19 +1935,19 @@ declare const _default: {
|
|
|
1927
1935
|
};
|
|
1928
1936
|
};
|
|
1929
1937
|
/**
|
|
1930
|
-
*
|
|
1938
|
+
* Lookup257: argon_primitives::bitcoin::BitcoinNetwork
|
|
1931
1939
|
**/
|
|
1932
1940
|
ArgonPrimitivesBitcoinBitcoinNetwork: {
|
|
1933
1941
|
_enum: string[];
|
|
1934
1942
|
};
|
|
1935
1943
|
/**
|
|
1936
|
-
*
|
|
1944
|
+
* Lookup260: pallet_bitcoin_utxos::pallet::Error<T>
|
|
1937
1945
|
**/
|
|
1938
1946
|
PalletBitcoinUtxosError: {
|
|
1939
1947
|
_enum: string[];
|
|
1940
1948
|
};
|
|
1941
1949
|
/**
|
|
1942
|
-
*
|
|
1950
|
+
* Lookup261: argon_primitives::bond::Vault<sp_core::crypto::AccountId32, Balance, BlockNumber>
|
|
1943
1951
|
**/
|
|
1944
1952
|
ArgonPrimitivesBondVault: {
|
|
1945
1953
|
operatorAccountId: string;
|
|
@@ -1952,7 +1960,7 @@ declare const _default: {
|
|
|
1952
1960
|
pendingTerms: string;
|
|
1953
1961
|
};
|
|
1954
1962
|
/**
|
|
1955
|
-
*
|
|
1963
|
+
* Lookup262: argon_primitives::bond::VaultArgons<Balance>
|
|
1956
1964
|
**/
|
|
1957
1965
|
ArgonPrimitivesBondVaultArgons: {
|
|
1958
1966
|
annualPercentRate: string;
|
|
@@ -1961,7 +1969,7 @@ declare const _default: {
|
|
|
1961
1969
|
baseFee: string;
|
|
1962
1970
|
};
|
|
1963
1971
|
/**
|
|
1964
|
-
*
|
|
1972
|
+
* Lookup266: argon_primitives::bitcoin::BitcoinXPub
|
|
1965
1973
|
**/
|
|
1966
1974
|
ArgonPrimitivesBitcoinBitcoinXPub: {
|
|
1967
1975
|
publicKey: string;
|
|
@@ -1972,19 +1980,19 @@ declare const _default: {
|
|
|
1972
1980
|
network: string;
|
|
1973
1981
|
};
|
|
1974
1982
|
/**
|
|
1975
|
-
*
|
|
1983
|
+
* Lookup268: argon_primitives::bitcoin::NetworkKind
|
|
1976
1984
|
**/
|
|
1977
1985
|
ArgonPrimitivesBitcoinNetworkKind: {
|
|
1978
1986
|
_enum: string[];
|
|
1979
1987
|
};
|
|
1980
1988
|
/**
|
|
1981
|
-
*
|
|
1989
|
+
* Lookup270: pallet_vaults::pallet::Error<T>
|
|
1982
1990
|
**/
|
|
1983
1991
|
PalletVaultsError: {
|
|
1984
1992
|
_enum: string[];
|
|
1985
1993
|
};
|
|
1986
1994
|
/**
|
|
1987
|
-
*
|
|
1995
|
+
* Lookup271: argon_primitives::bond::Bond<sp_core::crypto::AccountId32, Balance, BlockNumber>
|
|
1988
1996
|
**/
|
|
1989
1997
|
ArgonPrimitivesBond: {
|
|
1990
1998
|
bondType: string;
|
|
@@ -1998,7 +2006,7 @@ declare const _default: {
|
|
|
1998
2006
|
expiration: string;
|
|
1999
2007
|
};
|
|
2000
2008
|
/**
|
|
2001
|
-
*
|
|
2009
|
+
* Lookup274: pallet_bond::pallet::UtxoState
|
|
2002
2010
|
**/
|
|
2003
2011
|
PalletBondUtxoState: {
|
|
2004
2012
|
bondId: string;
|
|
@@ -2014,7 +2022,7 @@ declare const _default: {
|
|
|
2014
2022
|
isVerified: string;
|
|
2015
2023
|
};
|
|
2016
2024
|
/**
|
|
2017
|
-
*
|
|
2025
|
+
* Lookup278: pallet_bond::pallet::UtxoCosignRequest<Balance>
|
|
2018
2026
|
**/
|
|
2019
2027
|
PalletBondUtxoCosignRequest: {
|
|
2020
2028
|
bondId: string;
|
|
@@ -2025,7 +2033,7 @@ declare const _default: {
|
|
|
2025
2033
|
redemptionPrice: string;
|
|
2026
2034
|
};
|
|
2027
2035
|
/**
|
|
2028
|
-
*
|
|
2036
|
+
* Lookup282: pallet_bond::pallet::Error<T>
|
|
2029
2037
|
**/
|
|
2030
2038
|
PalletBondError: {
|
|
2031
2039
|
_enum: {
|
|
@@ -2061,13 +2069,13 @@ declare const _default: {
|
|
|
2061
2069
|
};
|
|
2062
2070
|
};
|
|
2063
2071
|
/**
|
|
2064
|
-
*
|
|
2072
|
+
* Lookup294: pallet_notaries::pallet::Error<T>
|
|
2065
2073
|
**/
|
|
2066
2074
|
PalletNotariesError: {
|
|
2067
2075
|
_enum: string[];
|
|
2068
2076
|
};
|
|
2069
2077
|
/**
|
|
2070
|
-
*
|
|
2078
|
+
* Lookup298: argon_primitives::notary::NotaryNotebookKeyDetails
|
|
2071
2079
|
**/
|
|
2072
2080
|
ArgonPrimitivesNotaryNotaryNotebookKeyDetails: {
|
|
2073
2081
|
notebookNumber: string;
|
|
@@ -2077,13 +2085,13 @@ declare const _default: {
|
|
|
2077
2085
|
parentSecret: string;
|
|
2078
2086
|
};
|
|
2079
2087
|
/**
|
|
2080
|
-
*
|
|
2088
|
+
* Lookup300: argon_primitives::digests::NotebookDigest<argon_notary_audit::error::VerifyError>
|
|
2081
2089
|
**/
|
|
2082
2090
|
ArgonPrimitivesDigestsNotebookDigest: {
|
|
2083
2091
|
notebooks: string;
|
|
2084
2092
|
};
|
|
2085
2093
|
/**
|
|
2086
|
-
*
|
|
2094
|
+
* Lookup302: argon_primitives::digests::NotebookDigestRecord<argon_notary_audit::error::VerifyError>
|
|
2087
2095
|
**/
|
|
2088
2096
|
ArgonPrimitivesDigestsNotebookDigestRecord: {
|
|
2089
2097
|
notaryId: string;
|
|
@@ -2092,13 +2100,13 @@ declare const _default: {
|
|
|
2092
2100
|
auditFirstFailure: string;
|
|
2093
2101
|
};
|
|
2094
2102
|
/**
|
|
2095
|
-
*
|
|
2103
|
+
* Lookup305: pallet_notebook::pallet::Error<T>
|
|
2096
2104
|
**/
|
|
2097
2105
|
PalletNotebookError: {
|
|
2098
2106
|
_enum: string[];
|
|
2099
2107
|
};
|
|
2100
2108
|
/**
|
|
2101
|
-
*
|
|
2109
|
+
* Lookup306: pallet_chain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
|
|
2102
2110
|
**/
|
|
2103
2111
|
PalletChainTransferQueuedTransferOut: {
|
|
2104
2112
|
accountId: string;
|
|
@@ -2107,17 +2115,17 @@ declare const _default: {
|
|
|
2107
2115
|
notaryId: string;
|
|
2108
2116
|
};
|
|
2109
2117
|
/**
|
|
2110
|
-
*
|
|
2118
|
+
* Lookup311: frame_support::PalletId
|
|
2111
2119
|
**/
|
|
2112
2120
|
FrameSupportPalletId: string;
|
|
2113
2121
|
/**
|
|
2114
|
-
*
|
|
2122
|
+
* Lookup312: pallet_chain_transfer::pallet::Error<T>
|
|
2115
2123
|
**/
|
|
2116
2124
|
PalletChainTransferError: {
|
|
2117
2125
|
_enum: string[];
|
|
2118
2126
|
};
|
|
2119
2127
|
/**
|
|
2120
|
-
*
|
|
2128
|
+
* Lookup317: argon_primitives::notary::NotaryNotebookVoteDigestDetails
|
|
2121
2129
|
**/
|
|
2122
2130
|
ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails: {
|
|
2123
2131
|
notaryId: string;
|
|
@@ -2127,55 +2135,65 @@ declare const _default: {
|
|
|
2127
2135
|
blockVotingPower: string;
|
|
2128
2136
|
};
|
|
2129
2137
|
/**
|
|
2130
|
-
*
|
|
2138
|
+
* Lookup319: argon_primitives::digests::BlockVoteDigest
|
|
2131
2139
|
**/
|
|
2132
2140
|
ArgonPrimitivesDigestsBlockVoteDigest: {
|
|
2133
2141
|
votingPower: string;
|
|
2134
2142
|
votesCount: string;
|
|
2135
2143
|
};
|
|
2136
2144
|
/**
|
|
2137
|
-
*
|
|
2145
|
+
* Lookup323: pallet_block_seal_spec::pallet::Error<T>
|
|
2138
2146
|
**/
|
|
2139
2147
|
PalletBlockSealSpecError: {
|
|
2140
2148
|
_enum: string[];
|
|
2141
2149
|
};
|
|
2142
2150
|
/**
|
|
2143
|
-
*
|
|
2151
|
+
* Lookup325: pallet_domains::pallet::Error<T>
|
|
2144
2152
|
**/
|
|
2145
2153
|
PalletDomainsError: {
|
|
2146
2154
|
_enum: string[];
|
|
2147
2155
|
};
|
|
2148
2156
|
/**
|
|
2149
|
-
*
|
|
2157
|
+
* Lookup326: pallet_price_index::pallet::Error<T>
|
|
2150
2158
|
**/
|
|
2151
2159
|
PalletPriceIndexError: {
|
|
2152
2160
|
_enum: string[];
|
|
2153
2161
|
};
|
|
2154
2162
|
/**
|
|
2155
|
-
*
|
|
2163
|
+
* Lookup327: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32>
|
|
2156
2164
|
**/
|
|
2157
2165
|
ArgonPrimitivesProvidersBlockSealerInfo: {
|
|
2158
2166
|
blockAuthorAccountId: string;
|
|
2159
2167
|
blockVoteRewardsAccount: string;
|
|
2160
2168
|
};
|
|
2161
2169
|
/**
|
|
2162
|
-
*
|
|
2170
|
+
* Lookup328: argon_primitives::fork_power::ForkPower
|
|
2171
|
+
**/
|
|
2172
|
+
ArgonPrimitivesForkPower: {
|
|
2173
|
+
notebooks: string;
|
|
2174
|
+
votingPower: string;
|
|
2175
|
+
sealStrength: string;
|
|
2176
|
+
totalComputeDifficulty: string;
|
|
2177
|
+
voteCreatedBlocks: string;
|
|
2178
|
+
};
|
|
2179
|
+
/**
|
|
2180
|
+
* Lookup330: argon_primitives::digests::ParentVotingKeyDigest
|
|
2163
2181
|
**/
|
|
2164
2182
|
ArgonPrimitivesDigestsParentVotingKeyDigest: {
|
|
2165
2183
|
parentVotingKey: string;
|
|
2166
2184
|
};
|
|
2167
2185
|
/**
|
|
2168
|
-
*
|
|
2186
|
+
* Lookup331: pallet_block_seal::pallet::Error<T>
|
|
2169
2187
|
**/
|
|
2170
2188
|
PalletBlockSealError: {
|
|
2171
2189
|
_enum: string[];
|
|
2172
2190
|
};
|
|
2173
2191
|
/**
|
|
2174
|
-
*
|
|
2192
|
+
* Lookup333: pallet_block_rewards::pallet::Error<T>
|
|
2175
2193
|
**/
|
|
2176
2194
|
PalletBlockRewardsError: string;
|
|
2177
2195
|
/**
|
|
2178
|
-
*
|
|
2196
|
+
* Lookup334: pallet_grandpa::StoredState<N>
|
|
2179
2197
|
**/
|
|
2180
2198
|
PalletGrandpaStoredState: {
|
|
2181
2199
|
_enum: {
|
|
@@ -2192,7 +2210,7 @@ declare const _default: {
|
|
|
2192
2210
|
};
|
|
2193
2211
|
};
|
|
2194
2212
|
/**
|
|
2195
|
-
*
|
|
2213
|
+
* Lookup335: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
2196
2214
|
**/
|
|
2197
2215
|
PalletGrandpaStoredPendingChange: {
|
|
2198
2216
|
scheduledAt: string;
|
|
@@ -2201,19 +2219,19 @@ declare const _default: {
|
|
|
2201
2219
|
forced: string;
|
|
2202
2220
|
};
|
|
2203
2221
|
/**
|
|
2204
|
-
*
|
|
2222
|
+
* Lookup338: pallet_grandpa::pallet::Error<T>
|
|
2205
2223
|
**/
|
|
2206
2224
|
PalletGrandpaError: {
|
|
2207
2225
|
_enum: string[];
|
|
2208
2226
|
};
|
|
2209
2227
|
/**
|
|
2210
|
-
*
|
|
2228
|
+
* Lookup342: pallet_mint::pallet::Error<T>
|
|
2211
2229
|
**/
|
|
2212
2230
|
PalletMintError: {
|
|
2213
2231
|
_enum: string[];
|
|
2214
2232
|
};
|
|
2215
2233
|
/**
|
|
2216
|
-
*
|
|
2234
|
+
* Lookup344: pallet_balances::types::BalanceLock<Balance>
|
|
2217
2235
|
**/
|
|
2218
2236
|
PalletBalancesBalanceLock: {
|
|
2219
2237
|
id: string;
|
|
@@ -2221,27 +2239,27 @@ declare const _default: {
|
|
|
2221
2239
|
reasons: string;
|
|
2222
2240
|
};
|
|
2223
2241
|
/**
|
|
2224
|
-
*
|
|
2242
|
+
* Lookup345: pallet_balances::types::Reasons
|
|
2225
2243
|
**/
|
|
2226
2244
|
PalletBalancesReasons: {
|
|
2227
2245
|
_enum: string[];
|
|
2228
2246
|
};
|
|
2229
2247
|
/**
|
|
2230
|
-
*
|
|
2248
|
+
* Lookup348: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
2231
2249
|
**/
|
|
2232
2250
|
PalletBalancesReserveData: {
|
|
2233
2251
|
id: string;
|
|
2234
2252
|
amount: string;
|
|
2235
2253
|
};
|
|
2236
2254
|
/**
|
|
2237
|
-
*
|
|
2255
|
+
* Lookup351: frame_support::traits::tokens::misc::IdAmount<argon_node_runtime::RuntimeHoldReason, Balance>
|
|
2238
2256
|
**/
|
|
2239
2257
|
FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
|
|
2240
2258
|
id: string;
|
|
2241
2259
|
amount: string;
|
|
2242
2260
|
};
|
|
2243
2261
|
/**
|
|
2244
|
-
*
|
|
2262
|
+
* Lookup352: argon_node_runtime::RuntimeHoldReason
|
|
2245
2263
|
**/
|
|
2246
2264
|
ArgonNodeRuntimeRuntimeHoldReason: {
|
|
2247
2265
|
_enum: {
|
|
@@ -2266,38 +2284,38 @@ declare const _default: {
|
|
|
2266
2284
|
};
|
|
2267
2285
|
};
|
|
2268
2286
|
/**
|
|
2269
|
-
*
|
|
2287
|
+
* Lookup353: pallet_mining_slot::pallet::HoldReason
|
|
2270
2288
|
**/
|
|
2271
2289
|
PalletMiningSlotHoldReason: {
|
|
2272
2290
|
_enum: string[];
|
|
2273
2291
|
};
|
|
2274
2292
|
/**
|
|
2275
|
-
*
|
|
2293
|
+
* Lookup354: pallet_vaults::pallet::HoldReason
|
|
2276
2294
|
**/
|
|
2277
2295
|
PalletVaultsHoldReason: {
|
|
2278
2296
|
_enum: string[];
|
|
2279
2297
|
};
|
|
2280
2298
|
/**
|
|
2281
|
-
*
|
|
2299
|
+
* Lookup355: pallet_bond::pallet::HoldReason
|
|
2282
2300
|
**/
|
|
2283
2301
|
PalletBondHoldReason: {
|
|
2284
2302
|
_enum: string[];
|
|
2285
2303
|
};
|
|
2286
2304
|
/**
|
|
2287
|
-
*
|
|
2305
|
+
* Lookup356: pallet_block_rewards::pallet::HoldReason
|
|
2288
2306
|
**/
|
|
2289
2307
|
PalletBlockRewardsHoldReason: {
|
|
2290
2308
|
_enum: string[];
|
|
2291
2309
|
};
|
|
2292
2310
|
/**
|
|
2293
|
-
*
|
|
2311
|
+
* Lookup359: frame_support::traits::tokens::misc::IdAmount<argon_node_runtime::RuntimeFreezeReason, Balance>
|
|
2294
2312
|
**/
|
|
2295
2313
|
FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
|
|
2296
2314
|
id: string;
|
|
2297
2315
|
amount: string;
|
|
2298
2316
|
};
|
|
2299
2317
|
/**
|
|
2300
|
-
*
|
|
2318
|
+
* Lookup360: argon_node_runtime::RuntimeFreezeReason
|
|
2301
2319
|
**/
|
|
2302
2320
|
ArgonNodeRuntimeRuntimeFreezeReason: {
|
|
2303
2321
|
_enum: {
|
|
@@ -2322,83 +2340,83 @@ declare const _default: {
|
|
|
2322
2340
|
};
|
|
2323
2341
|
};
|
|
2324
2342
|
/**
|
|
2325
|
-
*
|
|
2343
|
+
* Lookup361: pallet_block_rewards::pallet::FreezeReason
|
|
2326
2344
|
**/
|
|
2327
2345
|
PalletBlockRewardsFreezeReason: {
|
|
2328
2346
|
_enum: string[];
|
|
2329
2347
|
};
|
|
2330
2348
|
/**
|
|
2331
|
-
*
|
|
2349
|
+
* Lookup363: pallet_balances::pallet::Error<T, I>
|
|
2332
2350
|
**/
|
|
2333
2351
|
PalletBalancesError: {
|
|
2334
2352
|
_enum: string[];
|
|
2335
2353
|
};
|
|
2336
2354
|
/**
|
|
2337
|
-
*
|
|
2355
|
+
* Lookup365: pallet_tx_pause::pallet::Error<T>
|
|
2338
2356
|
**/
|
|
2339
2357
|
PalletTxPauseError: {
|
|
2340
2358
|
_enum: string[];
|
|
2341
2359
|
};
|
|
2342
2360
|
/**
|
|
2343
|
-
*
|
|
2361
|
+
* Lookup366: pallet_transaction_payment::Releases
|
|
2344
2362
|
**/
|
|
2345
2363
|
PalletTransactionPaymentReleases: {
|
|
2346
2364
|
_enum: string[];
|
|
2347
2365
|
};
|
|
2348
2366
|
/**
|
|
2349
|
-
*
|
|
2367
|
+
* Lookup367: pallet_utility::pallet::Error<T>
|
|
2350
2368
|
**/
|
|
2351
2369
|
PalletUtilityError: {
|
|
2352
2370
|
_enum: string[];
|
|
2353
2371
|
};
|
|
2354
2372
|
/**
|
|
2355
|
-
*
|
|
2373
|
+
* Lookup368: pallet_sudo::pallet::Error<T>
|
|
2356
2374
|
**/
|
|
2357
2375
|
PalletSudoError: {
|
|
2358
2376
|
_enum: string[];
|
|
2359
2377
|
};
|
|
2360
2378
|
/**
|
|
2361
|
-
*
|
|
2379
|
+
* Lookup371: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
2362
2380
|
**/
|
|
2363
2381
|
FrameSystemExtensionsCheckNonZeroSender: string;
|
|
2364
2382
|
/**
|
|
2365
|
-
*
|
|
2383
|
+
* Lookup372: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
2366
2384
|
**/
|
|
2367
2385
|
FrameSystemExtensionsCheckSpecVersion: string;
|
|
2368
2386
|
/**
|
|
2369
|
-
*
|
|
2387
|
+
* Lookup373: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
2370
2388
|
**/
|
|
2371
2389
|
FrameSystemExtensionsCheckTxVersion: string;
|
|
2372
2390
|
/**
|
|
2373
|
-
*
|
|
2391
|
+
* Lookup374: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
2374
2392
|
**/
|
|
2375
2393
|
FrameSystemExtensionsCheckGenesis: string;
|
|
2376
2394
|
/**
|
|
2377
|
-
*
|
|
2395
|
+
* Lookup377: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
2378
2396
|
**/
|
|
2379
2397
|
FrameSystemExtensionsCheckNonce: string;
|
|
2380
2398
|
/**
|
|
2381
|
-
*
|
|
2399
|
+
* Lookup378: frame_system::extensions::check_weight::CheckWeight<T>
|
|
2382
2400
|
**/
|
|
2383
2401
|
FrameSystemExtensionsCheckWeight: string;
|
|
2384
2402
|
/**
|
|
2385
|
-
*
|
|
2403
|
+
* Lookup379: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
2386
2404
|
**/
|
|
2387
2405
|
PalletTransactionPaymentChargeTransactionPayment: string;
|
|
2388
2406
|
/**
|
|
2389
|
-
*
|
|
2407
|
+
* Lookup380: frame_metadata_hash_extension::CheckMetadataHash<T>
|
|
2390
2408
|
**/
|
|
2391
2409
|
FrameMetadataHashExtensionCheckMetadataHash: {
|
|
2392
2410
|
mode: string;
|
|
2393
2411
|
};
|
|
2394
2412
|
/**
|
|
2395
|
-
*
|
|
2413
|
+
* Lookup381: frame_metadata_hash_extension::Mode
|
|
2396
2414
|
**/
|
|
2397
2415
|
FrameMetadataHashExtensionMode: {
|
|
2398
2416
|
_enum: string[];
|
|
2399
2417
|
};
|
|
2400
2418
|
/**
|
|
2401
|
-
*
|
|
2419
|
+
* Lookup383: argon_node_runtime::Runtime
|
|
2402
2420
|
**/
|
|
2403
2421
|
ArgonNodeRuntimeRuntime: string;
|
|
2404
2422
|
};
|