@argonprotocol/mainchain 1.4.3-dev.5e4d8d6a → 1.4.3-dev.6de0a801
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/browser/index.d.ts +409 -1556
- package/browser/index.js +45 -11
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +45 -11
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +409 -1556
- package/lib/index.d.ts +409 -1556
- package/lib/index.js +45 -11
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +23 -29
- package/src/interfaces/augment-api-errors.ts +5 -3
- package/src/interfaces/augment-api-events.ts +167 -1272
- package/src/interfaces/augment-api-query.ts +148 -787
- package/src/interfaces/augment-api-rpc.ts +85 -597
- package/src/interfaces/augment-api-runtime.ts +24 -177
- package/src/interfaces/augment-api-tx.ts +275 -1400
- package/src/interfaces/augment-types.ts +46 -1352
- package/src/interfaces/ethereum/types.ts +1 -7
- package/src/interfaces/lookup.ts +371 -682
- package/src/interfaces/registry.ts +1 -275
- package/src/interfaces/types-lookup.ts +56 -698
|
@@ -5,38 +5,9 @@
|
|
|
5
5
|
// this is required to allow for ambient/previous definitions
|
|
6
6
|
import '@polkadot/types/lookup';
|
|
7
7
|
|
|
8
|
-
import type {
|
|
9
|
-
BTreeMap,
|
|
10
|
-
Bytes,
|
|
11
|
-
Compact,
|
|
12
|
-
Enum,
|
|
13
|
-
Null,
|
|
14
|
-
Option,
|
|
15
|
-
Result,
|
|
16
|
-
Struct,
|
|
17
|
-
Text,
|
|
18
|
-
U256,
|
|
19
|
-
U8aFixed,
|
|
20
|
-
Vec,
|
|
21
|
-
bool,
|
|
22
|
-
i128,
|
|
23
|
-
i16,
|
|
24
|
-
i32,
|
|
25
|
-
u128,
|
|
26
|
-
u16,
|
|
27
|
-
u32,
|
|
28
|
-
u64,
|
|
29
|
-
u8,
|
|
30
|
-
} from '@polkadot/types-codec';
|
|
8
|
+
import type { BTreeMap, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, i128, i16, i32, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
|
|
31
9
|
import type { ITuple } from '@polkadot/types-codec/types';
|
|
32
|
-
import type {
|
|
33
|
-
AccountId32,
|
|
34
|
-
Call,
|
|
35
|
-
H160,
|
|
36
|
-
H256,
|
|
37
|
-
MultiAddress,
|
|
38
|
-
Permill,
|
|
39
|
-
} from '@polkadot/types/interfaces/runtime';
|
|
10
|
+
import type { AccountId32, Call, H160, H256, MultiAddress, Permill } from '@polkadot/types/interfaces/runtime';
|
|
40
11
|
import type { Event } from '@polkadot/types/interfaces/system';
|
|
41
12
|
|
|
42
13
|
declare module '@polkadot/types/lookup' {
|
|
@@ -131,15 +102,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
131
102
|
readonly codeHash: H256;
|
|
132
103
|
readonly error: SpRuntimeDispatchError;
|
|
133
104
|
} & Struct;
|
|
134
|
-
readonly type:
|
|
135
|
-
| 'ExtrinsicSuccess'
|
|
136
|
-
| 'ExtrinsicFailed'
|
|
137
|
-
| 'CodeUpdated'
|
|
138
|
-
| 'NewAccount'
|
|
139
|
-
| 'KilledAccount'
|
|
140
|
-
| 'Remarked'
|
|
141
|
-
| 'UpgradeAuthorized'
|
|
142
|
-
| 'RejectedInvalidAuthorizedUpgrade';
|
|
105
|
+
readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked' | 'UpgradeAuthorized' | 'RejectedInvalidAuthorizedUpgrade';
|
|
143
106
|
}
|
|
144
107
|
|
|
145
108
|
/** @name FrameSystemDispatchEventInfo (23) */
|
|
@@ -186,22 +149,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
186
149
|
readonly isRootNotAllowed: boolean;
|
|
187
150
|
readonly isTrie: boolean;
|
|
188
151
|
readonly asTrie: SpRuntimeProvingTrieTrieError;
|
|
189
|
-
readonly type:
|
|
190
|
-
| 'Other'
|
|
191
|
-
| 'CannotLookup'
|
|
192
|
-
| 'BadOrigin'
|
|
193
|
-
| 'Module'
|
|
194
|
-
| 'ConsumerRemaining'
|
|
195
|
-
| 'NoProviders'
|
|
196
|
-
| 'TooManyConsumers'
|
|
197
|
-
| 'Token'
|
|
198
|
-
| 'Arithmetic'
|
|
199
|
-
| 'Transactional'
|
|
200
|
-
| 'Exhausted'
|
|
201
|
-
| 'Corruption'
|
|
202
|
-
| 'Unavailable'
|
|
203
|
-
| 'RootNotAllowed'
|
|
204
|
-
| 'Trie';
|
|
152
|
+
readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable' | 'RootNotAllowed' | 'Trie';
|
|
205
153
|
}
|
|
206
154
|
|
|
207
155
|
/** @name SpRuntimeModuleError (27) */
|
|
@@ -222,17 +170,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
222
170
|
readonly isCannotCreateHold: boolean;
|
|
223
171
|
readonly isNotExpendable: boolean;
|
|
224
172
|
readonly isBlocked: boolean;
|
|
225
|
-
readonly type:
|
|
226
|
-
| 'FundsUnavailable'
|
|
227
|
-
| 'OnlyProvider'
|
|
228
|
-
| 'BelowMinimum'
|
|
229
|
-
| 'CannotCreate'
|
|
230
|
-
| 'UnknownAsset'
|
|
231
|
-
| 'Frozen'
|
|
232
|
-
| 'Unsupported'
|
|
233
|
-
| 'CannotCreateHold'
|
|
234
|
-
| 'NotExpendable'
|
|
235
|
-
| 'Blocked';
|
|
173
|
+
readonly type: 'FundsUnavailable' | 'OnlyProvider' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported' | 'CannotCreateHold' | 'NotExpendable' | 'Blocked';
|
|
236
174
|
}
|
|
237
175
|
|
|
238
176
|
/** @name SpArithmeticArithmeticError (29) */
|
|
@@ -266,21 +204,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
266
204
|
readonly isIncompleteProof: boolean;
|
|
267
205
|
readonly isRootMismatch: boolean;
|
|
268
206
|
readonly isDecodeError: boolean;
|
|
269
|
-
readonly type:
|
|
270
|
-
| 'InvalidStateRoot'
|
|
271
|
-
| 'IncompleteDatabase'
|
|
272
|
-
| 'ValueAtIncompleteKey'
|
|
273
|
-
| 'DecoderError'
|
|
274
|
-
| 'InvalidHash'
|
|
275
|
-
| 'DuplicateKey'
|
|
276
|
-
| 'ExtraneousNode'
|
|
277
|
-
| 'ExtraneousValue'
|
|
278
|
-
| 'ExtraneousHashReference'
|
|
279
|
-
| 'InvalidChildReference'
|
|
280
|
-
| 'ValueMismatch'
|
|
281
|
-
| 'IncompleteProof'
|
|
282
|
-
| 'RootMismatch'
|
|
283
|
-
| 'DecodeError';
|
|
207
|
+
readonly type: 'InvalidStateRoot' | 'IncompleteDatabase' | 'ValueAtIncompleteKey' | 'DecoderError' | 'InvalidHash' | 'DuplicateKey' | 'ExtraneousNode' | 'ExtraneousValue' | 'ExtraneousHashReference' | 'InvalidChildReference' | 'ValueMismatch' | 'IncompleteProof' | 'RootMismatch' | 'DecodeError';
|
|
284
208
|
}
|
|
285
209
|
|
|
286
210
|
/** @name PalletDigestsEvent (32) */
|
|
@@ -323,12 +247,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
323
247
|
readonly oldDeposit: u128;
|
|
324
248
|
readonly newDeposit: u128;
|
|
325
249
|
} & Struct;
|
|
326
|
-
readonly type:
|
|
327
|
-
| 'NewMultisig'
|
|
328
|
-
| 'MultisigApproval'
|
|
329
|
-
| 'MultisigExecuted'
|
|
330
|
-
| 'MultisigCancelled'
|
|
331
|
-
| 'DepositPoked';
|
|
250
|
+
readonly type: 'NewMultisig' | 'MultisigApproval' | 'MultisigExecuted' | 'MultisigCancelled' | 'DepositPoked';
|
|
332
251
|
}
|
|
333
252
|
|
|
334
253
|
/** @name PalletMultisigTimepoint (34) */
|
|
@@ -386,14 +305,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
386
305
|
readonly oldDeposit: u128;
|
|
387
306
|
readonly newDeposit: u128;
|
|
388
307
|
} & Struct;
|
|
389
|
-
readonly type:
|
|
390
|
-
| 'ProxyExecuted'
|
|
391
|
-
| 'PureCreated'
|
|
392
|
-
| 'PureKilled'
|
|
393
|
-
| 'Announced'
|
|
394
|
-
| 'ProxyAdded'
|
|
395
|
-
| 'ProxyRemoved'
|
|
396
|
-
| 'DepositPoked';
|
|
308
|
+
readonly type: 'ProxyExecuted' | 'PureCreated' | 'PureKilled' | 'Announced' | 'ProxyAdded' | 'ProxyRemoved' | 'DepositPoked';
|
|
397
309
|
}
|
|
398
310
|
|
|
399
311
|
/** @name ArgonRuntimeProxyType (38) */
|
|
@@ -406,15 +318,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
406
318
|
readonly isBitcoin: boolean;
|
|
407
319
|
readonly isVaultAdmin: boolean;
|
|
408
320
|
readonly isBitcoinInitializeFor: boolean;
|
|
409
|
-
readonly type:
|
|
410
|
-
| 'Any'
|
|
411
|
-
| 'NonTransfer'
|
|
412
|
-
| 'PriceIndex'
|
|
413
|
-
| 'MiningBid'
|
|
414
|
-
| 'MiningBidRealPaysFee'
|
|
415
|
-
| 'Bitcoin'
|
|
416
|
-
| 'VaultAdmin'
|
|
417
|
-
| 'BitcoinInitializeFor';
|
|
321
|
+
readonly type: 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | 'BitcoinInitializeFor';
|
|
418
322
|
}
|
|
419
323
|
|
|
420
324
|
/** @name PalletProxyDepositKind (40) */
|
|
@@ -463,14 +367,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
463
367
|
readonly accountId: AccountId32;
|
|
464
368
|
readonly error: SpRuntimeDispatchError;
|
|
465
369
|
} & Struct;
|
|
466
|
-
readonly type:
|
|
467
|
-
| 'NewMiners'
|
|
468
|
-
| 'SlotBidderAdded'
|
|
469
|
-
| 'SlotBidderDropped'
|
|
470
|
-
| 'ReleaseMinerSeatError'
|
|
471
|
-
| 'MiningConfigurationUpdated'
|
|
472
|
-
| 'MiningBidsClosed'
|
|
473
|
-
| 'ReleaseBidError';
|
|
370
|
+
readonly type: 'NewMiners' | 'SlotBidderAdded' | 'SlotBidderDropped' | 'ReleaseMinerSeatError' | 'MiningConfigurationUpdated' | 'MiningBidsClosed' | 'ReleaseBidError';
|
|
474
371
|
}
|
|
475
372
|
|
|
476
373
|
/** @name ArgonPrimitivesBlockSealMiningRegistration (43) */
|
|
@@ -534,14 +431,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
534
431
|
readonly utxoId: u64;
|
|
535
432
|
readonly error: SpRuntimeDispatchError;
|
|
536
433
|
} & Struct;
|
|
537
|
-
readonly type:
|
|
538
|
-
| 'UtxoVerified'
|
|
539
|
-
| 'UtxoRejected'
|
|
540
|
-
| 'UtxoSpent'
|
|
541
|
-
| 'UtxoUnwatched'
|
|
542
|
-
| 'UtxoSpentError'
|
|
543
|
-
| 'UtxoVerifiedError'
|
|
544
|
-
| 'UtxoRejectedError';
|
|
434
|
+
readonly type: 'UtxoVerified' | 'UtxoRejected' | 'UtxoSpent' | 'UtxoUnwatched' | 'UtxoSpentError' | 'UtxoVerifiedError' | 'UtxoRejectedError';
|
|
545
435
|
}
|
|
546
436
|
|
|
547
437
|
/** @name ArgonPrimitivesBitcoinUtxoRef (51) */
|
|
@@ -559,11 +449,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
559
449
|
readonly isSpent: boolean;
|
|
560
450
|
readonly isVerificationExpired: boolean;
|
|
561
451
|
readonly isAlreadyVerified: boolean;
|
|
562
|
-
readonly type:
|
|
563
|
-
| 'SatoshisOutsideAcceptedRange'
|
|
564
|
-
| 'Spent'
|
|
565
|
-
| 'VerificationExpired'
|
|
566
|
-
| 'AlreadyVerified';
|
|
452
|
+
readonly type: 'SatoshisOutsideAcceptedRange' | 'Spent' | 'VerificationExpired' | 'AlreadyVerified';
|
|
567
453
|
}
|
|
568
454
|
|
|
569
455
|
/** @name PalletVaultsEvent (55) */
|
|
@@ -657,22 +543,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
657
543
|
readonly vaultEarnings: u128;
|
|
658
544
|
readonly error: SpRuntimeDispatchError;
|
|
659
545
|
} & Struct;
|
|
660
|
-
readonly type:
|
|
661
|
-
| 'VaultCreated'
|
|
662
|
-
| 'VaultModified'
|
|
663
|
-
| 'VaultTermsChangeScheduled'
|
|
664
|
-
| 'VaultTermsChanged'
|
|
665
|
-
| 'VaultClosed'
|
|
666
|
-
| 'VaultBitcoinXpubChange'
|
|
667
|
-
| 'VaultRevenueUncollected'
|
|
668
|
-
| 'VaultCollected'
|
|
669
|
-
| 'FundsLocked'
|
|
670
|
-
| 'FundLockCanceled'
|
|
671
|
-
| 'FundsScheduledForRelease'
|
|
672
|
-
| 'LostBitcoinCompensated'
|
|
673
|
-
| 'FundsReleased'
|
|
674
|
-
| 'FundsReleasedError'
|
|
675
|
-
| 'TreasuryRecordingError';
|
|
546
|
+
readonly type: 'VaultCreated' | 'VaultModified' | 'VaultTermsChangeScheduled' | 'VaultTermsChanged' | 'VaultClosed' | 'VaultBitcoinXpubChange' | 'VaultRevenueUncollected' | 'VaultCollected' | 'FundsLocked' | 'FundLockCanceled' | 'FundsScheduledForRelease' | 'LostBitcoinCompensated' | 'FundsReleased' | 'FundsReleasedError' | 'TreasuryRecordingError';
|
|
676
547
|
}
|
|
677
548
|
|
|
678
549
|
/** @name PalletBitcoinLocksEvent (57) */
|
|
@@ -773,21 +644,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
773
644
|
readonly newSatoshis: u64;
|
|
774
645
|
readonly accountId: AccountId32;
|
|
775
646
|
} & Struct;
|
|
776
|
-
readonly type:
|
|
777
|
-
| 'BitcoinLockCreated'
|
|
778
|
-
| 'BitcoinLockRatcheted'
|
|
779
|
-
| 'BitcoinLockBurned'
|
|
780
|
-
| 'BitcoinUtxoCosignRequested'
|
|
781
|
-
| 'BitcoinUtxoCosigned'
|
|
782
|
-
| 'BitcoinSpentAfterRelease'
|
|
783
|
-
| 'BitcoinCosignPastDue'
|
|
784
|
-
| 'CosignOverdueError'
|
|
785
|
-
| 'LockExpirationError'
|
|
786
|
-
| 'OrphanedUtxoReceived'
|
|
787
|
-
| 'OrphanedUtxoReleaseRequested'
|
|
788
|
-
| 'OrphanedUtxoCosigned'
|
|
789
|
-
| 'UtxoFundedFromCandidate'
|
|
790
|
-
| 'SecuritizationIncreased';
|
|
647
|
+
readonly type: 'BitcoinLockCreated' | 'BitcoinLockRatcheted' | 'BitcoinLockBurned' | 'BitcoinUtxoCosignRequested' | 'BitcoinUtxoCosigned' | 'BitcoinSpentAfterRelease' | 'BitcoinCosignPastDue' | 'CosignOverdueError' | 'LockExpirationError' | 'OrphanedUtxoReceived' | 'OrphanedUtxoReleaseRequested' | 'OrphanedUtxoCosigned' | 'UtxoFundedFromCandidate' | 'SecuritizationIncreased';
|
|
791
648
|
}
|
|
792
649
|
|
|
793
650
|
/** @name PalletNotariesEvent (60) */
|
|
@@ -819,12 +676,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
819
676
|
readonly error: SpRuntimeDispatchError;
|
|
820
677
|
readonly meta: ArgonPrimitivesNotaryNotaryMeta;
|
|
821
678
|
} & Struct;
|
|
822
|
-
readonly type:
|
|
823
|
-
| 'NotaryProposed'
|
|
824
|
-
| 'NotaryActivated'
|
|
825
|
-
| 'NotaryMetaUpdateQueued'
|
|
826
|
-
| 'NotaryMetaUpdated'
|
|
827
|
-
| 'NotaryMetaUpdateError';
|
|
679
|
+
readonly type: 'NotaryProposed' | 'NotaryActivated' | 'NotaryMetaUpdateQueued' | 'NotaryMetaUpdated' | 'NotaryMetaUpdateError';
|
|
828
680
|
}
|
|
829
681
|
|
|
830
682
|
/** @name ArgonPrimitivesNotaryNotaryMeta (61) */
|
|
@@ -984,66 +836,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
984
836
|
readonly expected: AccountId32;
|
|
985
837
|
} & Struct;
|
|
986
838
|
readonly isNoDefaultBlockVote: boolean;
|
|
987
|
-
readonly type:
|
|
988
|
-
| 'MissingAccountOrigin'
|
|
989
|
-
| 'HistoryLookupError'
|
|
990
|
-
| 'InvalidAccountChangelist'
|
|
991
|
-
| 'InvalidChainTransfersList'
|
|
992
|
-
| 'InvalidBalanceChangeRoot'
|
|
993
|
-
| 'InvalidHeaderTaxRecorded'
|
|
994
|
-
| 'InvalidPreviousNonce'
|
|
995
|
-
| 'InvalidPreviousBalance'
|
|
996
|
-
| 'InvalidPreviousAccountOrigin'
|
|
997
|
-
| 'InvalidPreviousBalanceChangeNotebook'
|
|
998
|
-
| 'InvalidBalanceChange'
|
|
999
|
-
| 'InvalidBalanceChangeSignature'
|
|
1000
|
-
| 'InvalidNoteRecipients'
|
|
1001
|
-
| 'BalanceChangeError'
|
|
1002
|
-
| 'InvalidNetBalanceChangeset'
|
|
1003
|
-
| 'InsufficientBalance'
|
|
1004
|
-
| 'ExceededMaxBalance'
|
|
1005
|
-
| 'BalanceChangeMismatch'
|
|
1006
|
-
| 'BalanceChangeNotNetZero'
|
|
1007
|
-
| 'InvalidDomainLeaseAllocation'
|
|
1008
|
-
| 'TaxBalanceChangeNotNetZero'
|
|
1009
|
-
| 'MissingBalanceProof'
|
|
1010
|
-
| 'InvalidPreviousBalanceProof'
|
|
1011
|
-
| 'InvalidNotebookHash'
|
|
1012
|
-
| 'InvalidNotebookHeaderHash'
|
|
1013
|
-
| 'InvalidNotebookVersion'
|
|
1014
|
-
| 'DuplicateChainTransfer'
|
|
1015
|
-
| 'DuplicatedAccountOriginUid'
|
|
1016
|
-
| 'InvalidNotarySignature'
|
|
1017
|
-
| 'InvalidSecretProvided'
|
|
1018
|
-
| 'NotebookTooOld'
|
|
1019
|
-
| 'CatchupNotebooksMissing'
|
|
1020
|
-
| 'DecodeError'
|
|
1021
|
-
| 'AccountChannelHoldDoesntExist'
|
|
1022
|
-
| 'AccountAlreadyHasChannelHold'
|
|
1023
|
-
| 'ChannelHoldNotReadyForClaim'
|
|
1024
|
-
| 'AccountLocked'
|
|
1025
|
-
| 'MissingChannelHoldNote'
|
|
1026
|
-
| 'InvalidChannelHoldNote'
|
|
1027
|
-
| 'InvalidChannelHoldClaimers'
|
|
1028
|
-
| 'ChannelHoldNoteBelowMinimum'
|
|
1029
|
-
| 'InvalidTaxNoteAccount'
|
|
1030
|
-
| 'InvalidTaxOperation'
|
|
1031
|
-
| 'InsufficientTaxIncluded'
|
|
1032
|
-
| 'InsufficientBlockVoteTax'
|
|
1033
|
-
| 'IneligibleTaxVoter'
|
|
1034
|
-
| 'BlockVoteInvalidSignature'
|
|
1035
|
-
| 'InvalidBlockVoteAllocation'
|
|
1036
|
-
| 'InvalidBlockVoteRoot'
|
|
1037
|
-
| 'InvalidBlockVotesCount'
|
|
1038
|
-
| 'InvalidBlockVotingPower'
|
|
1039
|
-
| 'InvalidBlockVoteList'
|
|
1040
|
-
| 'InvalidComputeProof'
|
|
1041
|
-
| 'InvalidBlockVoteSource'
|
|
1042
|
-
| 'InsufficientBlockVoteMinimum'
|
|
1043
|
-
| 'InvalidBlockVoteTick'
|
|
1044
|
-
| 'InvalidDefaultBlockVote'
|
|
1045
|
-
| 'InvalidDefaultBlockVoteAuthor'
|
|
1046
|
-
| 'NoDefaultBlockVote';
|
|
839
|
+
readonly type: 'MissingAccountOrigin' | 'HistoryLookupError' | 'InvalidAccountChangelist' | 'InvalidChainTransfersList' | 'InvalidBalanceChangeRoot' | 'InvalidHeaderTaxRecorded' | 'InvalidPreviousNonce' | 'InvalidPreviousBalance' | 'InvalidPreviousAccountOrigin' | 'InvalidPreviousBalanceChangeNotebook' | 'InvalidBalanceChange' | 'InvalidBalanceChangeSignature' | 'InvalidNoteRecipients' | 'BalanceChangeError' | 'InvalidNetBalanceChangeset' | 'InsufficientBalance' | 'ExceededMaxBalance' | 'BalanceChangeMismatch' | 'BalanceChangeNotNetZero' | 'InvalidDomainLeaseAllocation' | 'TaxBalanceChangeNotNetZero' | 'MissingBalanceProof' | 'InvalidPreviousBalanceProof' | 'InvalidNotebookHash' | 'InvalidNotebookHeaderHash' | 'InvalidNotebookVersion' | 'DuplicateChainTransfer' | 'DuplicatedAccountOriginUid' | 'InvalidNotarySignature' | 'InvalidSecretProvided' | 'NotebookTooOld' | 'CatchupNotebooksMissing' | 'DecodeError' | 'AccountChannelHoldDoesntExist' | 'AccountAlreadyHasChannelHold' | 'ChannelHoldNotReadyForClaim' | 'AccountLocked' | 'MissingChannelHoldNote' | 'InvalidChannelHoldNote' | 'InvalidChannelHoldClaimers' | 'ChannelHoldNoteBelowMinimum' | 'InvalidTaxNoteAccount' | 'InvalidTaxOperation' | 'InsufficientTaxIncluded' | 'InsufficientBlockVoteTax' | 'IneligibleTaxVoter' | 'BlockVoteInvalidSignature' | 'InvalidBlockVoteAllocation' | 'InvalidBlockVoteRoot' | 'InvalidBlockVotesCount' | 'InvalidBlockVotingPower' | 'InvalidBlockVoteList' | 'InvalidComputeProof' | 'InvalidBlockVoteSource' | 'InsufficientBlockVoteMinimum' | 'InvalidBlockVoteTick' | 'InvalidDefaultBlockVote' | 'InvalidDefaultBlockVoteAuthor' | 'NoDefaultBlockVote';
|
|
1047
840
|
}
|
|
1048
841
|
|
|
1049
842
|
/** @name ArgonPrimitivesAccountAccountType (71) */
|
|
@@ -1059,11 +852,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1059
852
|
readonly isLastChangeNotFound: boolean;
|
|
1060
853
|
readonly isInvalidTransferToLocalchain: boolean;
|
|
1061
854
|
readonly isBlockSpecificationNotFound: boolean;
|
|
1062
|
-
readonly type:
|
|
1063
|
-
| 'RootNotFound'
|
|
1064
|
-
| 'LastChangeNotFound'
|
|
1065
|
-
| 'InvalidTransferToLocalchain'
|
|
1066
|
-
| 'BlockSpecificationNotFound';
|
|
855
|
+
readonly type: 'RootNotFound' | 'LastChangeNotFound' | 'InvalidTransferToLocalchain' | 'BlockSpecificationNotFound';
|
|
1067
856
|
}
|
|
1068
857
|
|
|
1069
858
|
/** @name PalletLocalchainTransferEvent (76) */
|
|
@@ -1117,14 +906,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1117
906
|
readonly tax: u128;
|
|
1118
907
|
readonly error: SpRuntimeDispatchError;
|
|
1119
908
|
} & Struct;
|
|
1120
|
-
readonly type:
|
|
1121
|
-
| 'TransferToLocalchain'
|
|
1122
|
-
| 'TransferToLocalchainExpired'
|
|
1123
|
-
| 'TransferFromLocalchain'
|
|
1124
|
-
| 'TransferFromLocalchainError'
|
|
1125
|
-
| 'TransferToLocalchainRefundError'
|
|
1126
|
-
| 'PossibleInvalidLocalchainTransferAllowed'
|
|
1127
|
-
| 'TaxationError';
|
|
909
|
+
readonly type: 'TransferToLocalchain' | 'TransferToLocalchainExpired' | 'TransferFromLocalchain' | 'TransferFromLocalchainError' | 'TransferToLocalchainRefundError' | 'PossibleInvalidLocalchainTransferAllowed' | 'TaxationError';
|
|
1128
910
|
}
|
|
1129
911
|
|
|
1130
912
|
/** @name PalletBlockSealSpecEvent (77) */
|
|
@@ -1177,13 +959,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1177
959
|
readonly accountId: AccountId32;
|
|
1178
960
|
readonly error: SpRuntimeDispatchError;
|
|
1179
961
|
} & Struct;
|
|
1180
|
-
readonly type:
|
|
1181
|
-
| 'ZoneRecordUpdated'
|
|
1182
|
-
| 'DomainRegistered'
|
|
1183
|
-
| 'DomainRenewed'
|
|
1184
|
-
| 'DomainExpired'
|
|
1185
|
-
| 'DomainRegistrationCanceled'
|
|
1186
|
-
| 'DomainRegistrationError';
|
|
962
|
+
readonly type: 'ZoneRecordUpdated' | 'DomainRegistered' | 'DomainRenewed' | 'DomainExpired' | 'DomainRegistrationCanceled' | 'DomainRegistrationError';
|
|
1187
963
|
}
|
|
1188
964
|
|
|
1189
965
|
/** @name ArgonPrimitivesDomainZoneRecord (79) */
|
|
@@ -1453,37 +1229,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1453
1229
|
} & Struct;
|
|
1454
1230
|
readonly isUnexpected: boolean;
|
|
1455
1231
|
readonly asUnexpected: PalletBalancesUnexpectedKind;
|
|
1456
|
-
readonly type:
|
|
1457
|
-
| 'Endowed'
|
|
1458
|
-
| 'DustLost'
|
|
1459
|
-
| 'Transfer'
|
|
1460
|
-
| 'BalanceSet'
|
|
1461
|
-
| 'Reserved'
|
|
1462
|
-
| 'Unreserved'
|
|
1463
|
-
| 'ReserveRepatriated'
|
|
1464
|
-
| 'Deposit'
|
|
1465
|
-
| 'Withdraw'
|
|
1466
|
-
| 'Slashed'
|
|
1467
|
-
| 'Minted'
|
|
1468
|
-
| 'MintedCredit'
|
|
1469
|
-
| 'Burned'
|
|
1470
|
-
| 'BurnedDebt'
|
|
1471
|
-
| 'Suspended'
|
|
1472
|
-
| 'Restored'
|
|
1473
|
-
| 'Upgraded'
|
|
1474
|
-
| 'Issued'
|
|
1475
|
-
| 'Rescinded'
|
|
1476
|
-
| 'Locked'
|
|
1477
|
-
| 'Unlocked'
|
|
1478
|
-
| 'Frozen'
|
|
1479
|
-
| 'Thawed'
|
|
1480
|
-
| 'TotalIssuanceForced'
|
|
1481
|
-
| 'Held'
|
|
1482
|
-
| 'BurnedHeld'
|
|
1483
|
-
| 'TransferOnHold'
|
|
1484
|
-
| 'TransferAndHold'
|
|
1485
|
-
| 'Released'
|
|
1486
|
-
| 'Unexpected';
|
|
1232
|
+
readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed' | 'Minted' | 'MintedCredit' | 'Burned' | 'BurnedDebt' | 'Suspended' | 'Restored' | 'Upgraded' | 'Issued' | 'Rescinded' | 'Locked' | 'Unlocked' | 'Frozen' | 'Thawed' | 'TotalIssuanceForced' | 'Held' | 'BurnedHeld' | 'TransferOnHold' | 'TransferAndHold' | 'Released' | 'Unexpected';
|
|
1487
1233
|
}
|
|
1488
1234
|
|
|
1489
1235
|
/** @name FrameSupportTokensMiscBalanceStatus (103) */
|
|
@@ -1594,15 +1340,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1594
1340
|
readonly asIfElseFallbackCalled: {
|
|
1595
1341
|
readonly mainError: SpRuntimeDispatchError;
|
|
1596
1342
|
} & Struct;
|
|
1597
|
-
readonly type:
|
|
1598
|
-
| 'BatchInterrupted'
|
|
1599
|
-
| 'BatchCompleted'
|
|
1600
|
-
| 'BatchCompletedWithErrors'
|
|
1601
|
-
| 'ItemCompleted'
|
|
1602
|
-
| 'ItemFailed'
|
|
1603
|
-
| 'DispatchedAs'
|
|
1604
|
-
| 'IfElseMainSuccess'
|
|
1605
|
-
| 'IfElseFallbackCalled';
|
|
1343
|
+
readonly type: 'BatchInterrupted' | 'BatchCompleted' | 'BatchCompletedWithErrors' | 'ItemCompleted' | 'ItemFailed' | 'DispatchedAs' | 'IfElseMainSuccess' | 'IfElseFallbackCalled';
|
|
1606
1344
|
}
|
|
1607
1345
|
|
|
1608
1346
|
/** @name PalletSudoEvent (117) */
|
|
@@ -1687,15 +1425,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1687
1425
|
readonly accountId: AccountId32;
|
|
1688
1426
|
readonly bonds: u32;
|
|
1689
1427
|
} & Struct;
|
|
1690
|
-
readonly type:
|
|
1691
|
-
| 'CouldNotDistributeEarningsToBondLot'
|
|
1692
|
-
| 'CouldNotTransferToTreasuryReserves'
|
|
1693
|
-
| 'FrameEarningsDistributed'
|
|
1694
|
-
| 'FrameVaultCapitalLocked'
|
|
1695
|
-
| 'CouldNotReleaseBondLot'
|
|
1696
|
-
| 'BondLotPurchased'
|
|
1697
|
-
| 'BondLotReleaseScheduled'
|
|
1698
|
-
| 'BondLotReleased';
|
|
1428
|
+
readonly type: 'CouldNotDistributeEarningsToBondLot' | 'CouldNotTransferToTreasuryReserves' | 'FrameEarningsDistributed' | 'FrameVaultCapitalLocked' | 'CouldNotReleaseBondLot' | 'BondLotPurchased' | 'BondLotReleaseScheduled' | 'BondLotReleased';
|
|
1699
1429
|
}
|
|
1700
1430
|
|
|
1701
1431
|
/** @name PalletTreasuryBondReleaseReason (119) */
|
|
@@ -1785,14 +1515,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1785
1515
|
readonly sponsor: AccountId32;
|
|
1786
1516
|
readonly sponsee: AccountId32;
|
|
1787
1517
|
} & Struct;
|
|
1788
|
-
readonly type:
|
|
1789
|
-
| 'OperationalAccountRegistered'
|
|
1790
|
-
| 'AccountWentOperational'
|
|
1791
|
-
| 'OperationalRewardEarned'
|
|
1792
|
-
| 'OperationalRewardsClaimed'
|
|
1793
|
-
| 'RewardsConfigUpdated'
|
|
1794
|
-
| 'OperationalProgressForced'
|
|
1795
|
-
| 'EncryptedServerUpdated';
|
|
1518
|
+
readonly type: 'OperationalAccountRegistered' | 'AccountWentOperational' | 'OperationalRewardEarned' | 'OperationalRewardsClaimed' | 'RewardsConfigUpdated' | 'OperationalProgressForced' | 'EncryptedServerUpdated';
|
|
1796
1519
|
}
|
|
1797
1520
|
|
|
1798
1521
|
/** @name ArgonPrimitivesProvidersOperationalRewardKind (124) */
|
|
@@ -1822,11 +1545,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1822
1545
|
readonly asOperatingModeChanged: {
|
|
1823
1546
|
readonly mode: PalletEthereumVerifierBasicOperatingMode;
|
|
1824
1547
|
} & Struct;
|
|
1825
|
-
readonly type:
|
|
1826
|
-
| 'BeaconHeaderImported'
|
|
1827
|
-
| 'ExecutionHeaderAnchorImported'
|
|
1828
|
-
| 'SyncCommitteeUpdated'
|
|
1829
|
-
| 'OperatingModeChanged';
|
|
1548
|
+
readonly type: 'BeaconHeaderImported' | 'ExecutionHeaderAnchorImported' | 'SyncCommitteeUpdated' | 'OperatingModeChanged';
|
|
1830
1549
|
}
|
|
1831
1550
|
|
|
1832
1551
|
/** @name PalletEthereumVerifierBasicOperatingMode (126) */
|
|
@@ -1936,18 +1655,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1936
1655
|
readonly asApplyAuthorizedUpgrade: {
|
|
1937
1656
|
readonly code: Bytes;
|
|
1938
1657
|
} & Struct;
|
|
1939
|
-
readonly type:
|
|
1940
|
-
| 'Remark'
|
|
1941
|
-
| 'SetHeapPages'
|
|
1942
|
-
| 'SetCode'
|
|
1943
|
-
| 'SetCodeWithoutChecks'
|
|
1944
|
-
| 'SetStorage'
|
|
1945
|
-
| 'KillStorage'
|
|
1946
|
-
| 'KillPrefix'
|
|
1947
|
-
| 'RemarkWithEvent'
|
|
1948
|
-
| 'AuthorizeUpgrade'
|
|
1949
|
-
| 'AuthorizeUpgradeWithoutChecks'
|
|
1950
|
-
| 'ApplyAuthorizedUpgrade';
|
|
1658
|
+
readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent' | 'AuthorizeUpgrade' | 'AuthorizeUpgradeWithoutChecks' | 'ApplyAuthorizedUpgrade';
|
|
1951
1659
|
}
|
|
1952
1660
|
|
|
1953
1661
|
/** @name FrameSystemLimitsBlockWeights (145) */
|
|
@@ -2014,16 +1722,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2014
1722
|
readonly isMultiBlockMigrationsOngoing: boolean;
|
|
2015
1723
|
readonly isNothingAuthorized: boolean;
|
|
2016
1724
|
readonly isUnauthorized: boolean;
|
|
2017
|
-
readonly type:
|
|
2018
|
-
| 'InvalidSpecName'
|
|
2019
|
-
| 'SpecVersionNeedsToIncrease'
|
|
2020
|
-
| 'FailedToExtractRuntimeVersion'
|
|
2021
|
-
| 'NonDefaultComposite'
|
|
2022
|
-
| 'NonZeroRefCount'
|
|
2023
|
-
| 'CallFiltered'
|
|
2024
|
-
| 'MultiBlockMigrationsOngoing'
|
|
2025
|
-
| 'NothingAuthorized'
|
|
2026
|
-
| 'Unauthorized';
|
|
1725
|
+
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered' | 'MultiBlockMigrationsOngoing' | 'NothingAuthorized' | 'Unauthorized';
|
|
2027
1726
|
}
|
|
2028
1727
|
|
|
2029
1728
|
/** @name ArgonPrimitivesDigestsDigestset (159) */
|
|
@@ -2094,20 +1793,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2094
1793
|
readonly isMissingNotebookDigest: boolean;
|
|
2095
1794
|
readonly isCouldNotDecodeDigest: boolean;
|
|
2096
1795
|
readonly isDuplicateFrameInfoDigest: boolean;
|
|
2097
|
-
readonly type:
|
|
2098
|
-
| 'DuplicateBlockVoteDigest'
|
|
2099
|
-
| 'DuplicateAuthorDigest'
|
|
2100
|
-
| 'DuplicateTickDigest'
|
|
2101
|
-
| 'DuplicateParentVotingKeyDigest'
|
|
2102
|
-
| 'DuplicateNotebookDigest'
|
|
2103
|
-
| 'DuplicateForkPowerDigest'
|
|
2104
|
-
| 'MissingBlockVoteDigest'
|
|
2105
|
-
| 'MissingAuthorDigest'
|
|
2106
|
-
| 'MissingTickDigest'
|
|
2107
|
-
| 'MissingParentVotingKeyDigest'
|
|
2108
|
-
| 'MissingNotebookDigest'
|
|
2109
|
-
| 'CouldNotDecodeDigest'
|
|
2110
|
-
| 'DuplicateFrameInfoDigest';
|
|
1796
|
+
readonly type: 'DuplicateBlockVoteDigest' | 'DuplicateAuthorDigest' | 'DuplicateTickDigest' | 'DuplicateParentVotingKeyDigest' | 'DuplicateNotebookDigest' | 'DuplicateForkPowerDigest' | 'MissingBlockVoteDigest' | 'MissingAuthorDigest' | 'MissingTickDigest' | 'MissingParentVotingKeyDigest' | 'MissingNotebookDigest' | 'CouldNotDecodeDigest' | 'DuplicateFrameInfoDigest';
|
|
2111
1797
|
}
|
|
2112
1798
|
|
|
2113
1799
|
/** @name PalletTimestampCall (178) */
|
|
@@ -2163,12 +1849,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2163
1849
|
readonly otherSignatories: Vec<AccountId32>;
|
|
2164
1850
|
readonly callHash: U8aFixed;
|
|
2165
1851
|
} & Struct;
|
|
2166
|
-
readonly type:
|
|
2167
|
-
| 'AsMultiThreshold1'
|
|
2168
|
-
| 'AsMulti'
|
|
2169
|
-
| 'ApproveAsMulti'
|
|
2170
|
-
| 'CancelAsMulti'
|
|
2171
|
-
| 'PokeDeposit';
|
|
1852
|
+
readonly type: 'AsMultiThreshold1' | 'AsMulti' | 'ApproveAsMulti' | 'CancelAsMulti' | 'PokeDeposit';
|
|
2172
1853
|
}
|
|
2173
1854
|
|
|
2174
1855
|
/** @name PalletProxyCall (185) */
|
|
@@ -2229,18 +1910,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2229
1910
|
readonly call: Call;
|
|
2230
1911
|
} & Struct;
|
|
2231
1912
|
readonly isPokeDeposit: boolean;
|
|
2232
|
-
readonly type:
|
|
2233
|
-
| 'Proxy'
|
|
2234
|
-
| 'AddProxy'
|
|
2235
|
-
| 'RemoveProxy'
|
|
2236
|
-
| 'RemoveProxies'
|
|
2237
|
-
| 'CreatePure'
|
|
2238
|
-
| 'KillPure'
|
|
2239
|
-
| 'Announce'
|
|
2240
|
-
| 'RemoveAnnouncement'
|
|
2241
|
-
| 'RejectAnnouncement'
|
|
2242
|
-
| 'ProxyAnnounced'
|
|
2243
|
-
| 'PokeDeposit';
|
|
1913
|
+
readonly type: 'Proxy' | 'AddProxy' | 'RemoveProxy' | 'RemoveProxies' | 'CreatePure' | 'KillPure' | 'Announce' | 'RemoveAnnouncement' | 'RejectAnnouncement' | 'ProxyAnnounced' | 'PokeDeposit';
|
|
2244
1914
|
}
|
|
2245
1915
|
|
|
2246
1916
|
/** @name PalletTicksCall (189) */
|
|
@@ -2287,12 +1957,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2287
1957
|
readonly utxoId: u64;
|
|
2288
1958
|
readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
2289
1959
|
} & Struct;
|
|
2290
|
-
readonly type:
|
|
2291
|
-
| 'Sync'
|
|
2292
|
-
| 'SetConfirmedBlock'
|
|
2293
|
-
| 'SetOperator'
|
|
2294
|
-
| 'FundWithUtxoCandidate'
|
|
2295
|
-
| 'RejectUtxoCandidate';
|
|
1960
|
+
readonly type: 'Sync' | 'SetConfirmedBlock' | 'SetOperator' | 'FundWithUtxoCandidate' | 'RejectUtxoCandidate';
|
|
2296
1961
|
}
|
|
2297
1962
|
|
|
2298
1963
|
/** @name ArgonPrimitivesInherentsBitcoinUtxoSync (192) */
|
|
@@ -2362,15 +2027,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2362
2027
|
readonly asSetName: {
|
|
2363
2028
|
readonly name: Option<Bytes>;
|
|
2364
2029
|
} & Struct;
|
|
2365
|
-
readonly type:
|
|
2366
|
-
| 'Create'
|
|
2367
|
-
| 'ModifyFunding'
|
|
2368
|
-
| 'ModifyTerms'
|
|
2369
|
-
| 'Close'
|
|
2370
|
-
| 'ReplaceBitcoinXpub'
|
|
2371
|
-
| 'Collect'
|
|
2372
|
-
| 'SetBitcoinLockDelegate'
|
|
2373
|
-
| 'SetName';
|
|
2030
|
+
readonly type: 'Create' | 'ModifyFunding' | 'ModifyTerms' | 'Close' | 'ReplaceBitcoinXpub' | 'Collect' | 'SetBitcoinLockDelegate' | 'SetName';
|
|
2374
2031
|
}
|
|
2375
2032
|
|
|
2376
2033
|
/** @name PalletVaultsVaultConfig (200) */
|
|
@@ -2446,16 +2103,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2446
2103
|
readonly utxoId: u64;
|
|
2447
2104
|
readonly newSatoshis: Compact<u64>;
|
|
2448
2105
|
} & Struct;
|
|
2449
|
-
readonly type:
|
|
2450
|
-
| 'Initialize'
|
|
2451
|
-
| 'RequestRelease'
|
|
2452
|
-
| 'CosignRelease'
|
|
2453
|
-
| 'Ratchet'
|
|
2454
|
-
| 'AdminModifyMinimumLockedSats'
|
|
2455
|
-
| 'RequestOrphanedUtxoRelease'
|
|
2456
|
-
| 'CosignOrphanedUtxoRelease'
|
|
2457
|
-
| 'InitializeFor'
|
|
2458
|
-
| 'IncreaseSecuritization';
|
|
2106
|
+
readonly type: 'Initialize' | 'RequestRelease' | 'CosignRelease' | 'Ratchet' | 'AdminModifyMinimumLockedSats' | 'RequestOrphanedUtxoRelease' | 'CosignOrphanedUtxoRelease' | 'InitializeFor' | 'IncreaseSecuritization';
|
|
2459
2107
|
}
|
|
2460
2108
|
|
|
2461
2109
|
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (210) */
|
|
@@ -2783,16 +2431,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2783
2431
|
readonly value: Compact<u128>;
|
|
2784
2432
|
readonly keepAlive: bool;
|
|
2785
2433
|
} & Struct;
|
|
2786
|
-
readonly type:
|
|
2787
|
-
| 'TransferAllowDeath'
|
|
2788
|
-
| 'ForceTransfer'
|
|
2789
|
-
| 'TransferKeepAlive'
|
|
2790
|
-
| 'TransferAll'
|
|
2791
|
-
| 'ForceUnreserve'
|
|
2792
|
-
| 'UpgradeAccounts'
|
|
2793
|
-
| 'ForceSetBalance'
|
|
2794
|
-
| 'ForceAdjustTotalIssuance'
|
|
2795
|
-
| 'Burn';
|
|
2434
|
+
readonly type: 'TransferAllowDeath' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'ForceSetBalance' | 'ForceAdjustTotalIssuance' | 'Burn';
|
|
2796
2435
|
}
|
|
2797
2436
|
|
|
2798
2437
|
/** @name PalletBalancesAdjustmentDirection (259) */
|
|
@@ -2854,15 +2493,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2854
2493
|
readonly asOrigin: ArgonRuntimeOriginCaller;
|
|
2855
2494
|
readonly call: Call;
|
|
2856
2495
|
} & Struct;
|
|
2857
|
-
readonly type:
|
|
2858
|
-
| 'Batch'
|
|
2859
|
-
| 'AsDerivative'
|
|
2860
|
-
| 'BatchAll'
|
|
2861
|
-
| 'DispatchAs'
|
|
2862
|
-
| 'ForceBatch'
|
|
2863
|
-
| 'WithWeight'
|
|
2864
|
-
| 'IfElse'
|
|
2865
|
-
| 'DispatchAsFallible';
|
|
2496
|
+
readonly type: 'Batch' | 'AsDerivative' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight' | 'IfElse' | 'DispatchAsFallible';
|
|
2866
2497
|
}
|
|
2867
2498
|
|
|
2868
2499
|
/** @name PalletSudoCall (264) */
|
|
@@ -2930,13 +2561,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2930
2561
|
readonly asClaimRewards: {
|
|
2931
2562
|
readonly amount: u128;
|
|
2932
2563
|
} & Struct;
|
|
2933
|
-
readonly type:
|
|
2934
|
-
| 'Register'
|
|
2935
|
-
| 'SetRewardConfig'
|
|
2936
|
-
| 'ForceSetProgress'
|
|
2937
|
-
| 'SetEncryptedServerForSponsee'
|
|
2938
|
-
| 'Activate'
|
|
2939
|
-
| 'ClaimRewards';
|
|
2564
|
+
readonly type: 'Register' | 'SetRewardConfig' | 'ForceSetProgress' | 'SetEncryptedServerForSponsee' | 'Activate' | 'ClaimRewards';
|
|
2940
2565
|
}
|
|
2941
2566
|
|
|
2942
2567
|
/** @name PalletOperationalAccountsRegistration (267) */
|
|
@@ -3005,11 +2630,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3005
2630
|
readonly asSetOperatingMode: {
|
|
3006
2631
|
readonly mode: PalletEthereumVerifierBasicOperatingMode;
|
|
3007
2632
|
} & Struct;
|
|
3008
|
-
readonly type:
|
|
3009
|
-
| 'ForceCheckpoint'
|
|
3010
|
-
| 'Submit'
|
|
3011
|
-
| 'ImportExecutionHeaderAnchor'
|
|
3012
|
-
| 'SetOperatingMode';
|
|
2633
|
+
readonly type: 'ForceCheckpoint' | 'Submit' | 'ImportExecutionHeaderAnchor' | 'SetOperatingMode';
|
|
3013
2634
|
}
|
|
3014
2635
|
|
|
3015
2636
|
/** @name PalletEthereumVerifierCheckpointUpdate (276) */
|
|
@@ -3219,21 +2840,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3219
2840
|
readonly isUnexpectedTimepoint: boolean;
|
|
3220
2841
|
readonly isMaxWeightTooLow: boolean;
|
|
3221
2842
|
readonly isAlreadyStored: boolean;
|
|
3222
|
-
readonly type:
|
|
3223
|
-
| 'MinimumThreshold'
|
|
3224
|
-
| 'AlreadyApproved'
|
|
3225
|
-
| 'NoApprovalsNeeded'
|
|
3226
|
-
| 'TooFewSignatories'
|
|
3227
|
-
| 'TooManySignatories'
|
|
3228
|
-
| 'SignatoriesOutOfOrder'
|
|
3229
|
-
| 'SenderInSignatories'
|
|
3230
|
-
| 'NotFound'
|
|
3231
|
-
| 'NotOwner'
|
|
3232
|
-
| 'NoTimepoint'
|
|
3233
|
-
| 'WrongTimepoint'
|
|
3234
|
-
| 'UnexpectedTimepoint'
|
|
3235
|
-
| 'MaxWeightTooLow'
|
|
3236
|
-
| 'AlreadyStored';
|
|
2843
|
+
readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored';
|
|
3237
2844
|
}
|
|
3238
2845
|
|
|
3239
2846
|
/** @name PalletProxyProxyDefinition (317) */
|
|
@@ -3260,15 +2867,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3260
2867
|
readonly isNoPermission: boolean;
|
|
3261
2868
|
readonly isUnannounced: boolean;
|
|
3262
2869
|
readonly isNoSelfProxy: boolean;
|
|
3263
|
-
readonly type:
|
|
3264
|
-
| 'TooMany'
|
|
3265
|
-
| 'NotFound'
|
|
3266
|
-
| 'NotProxy'
|
|
3267
|
-
| 'Unproxyable'
|
|
3268
|
-
| 'Duplicate'
|
|
3269
|
-
| 'NoPermission'
|
|
3270
|
-
| 'Unannounced'
|
|
3271
|
-
| 'NoSelfProxy';
|
|
2870
|
+
readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy';
|
|
3272
2871
|
}
|
|
3273
2872
|
|
|
3274
2873
|
/** @name ArgonPrimitivesTickTicker (324) */
|
|
@@ -3315,17 +2914,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3315
2914
|
readonly isBidCannotBeReduced: boolean;
|
|
3316
2915
|
readonly isInvalidBidAmount: boolean;
|
|
3317
2916
|
readonly isUnrecoverableHold: boolean;
|
|
3318
|
-
readonly type:
|
|
3319
|
-
| 'SlotNotTakingBids'
|
|
3320
|
-
| 'TooManyBlockRegistrants'
|
|
3321
|
-
| 'InsufficientOwnershipTokens'
|
|
3322
|
-
| 'BidTooLow'
|
|
3323
|
-
| 'CannotRegisterOverlappingSessions'
|
|
3324
|
-
| 'CannotChangeFundingAccount'
|
|
3325
|
-
| 'InsufficientFunds'
|
|
3326
|
-
| 'BidCannotBeReduced'
|
|
3327
|
-
| 'InvalidBidAmount'
|
|
3328
|
-
| 'UnrecoverableHold';
|
|
2917
|
+
readonly type: 'SlotNotTakingBids' | 'TooManyBlockRegistrants' | 'InsufficientOwnershipTokens' | 'BidTooLow' | 'CannotRegisterOverlappingSessions' | 'CannotChangeFundingAccount' | 'InsufficientFunds' | 'BidCannotBeReduced' | 'InvalidBidAmount' | 'UnrecoverableHold';
|
|
3329
2918
|
}
|
|
3330
2919
|
|
|
3331
2920
|
/** @name ArgonPrimitivesBitcoinUtxoValue (357) */
|
|
@@ -3372,22 +2961,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3372
2961
|
readonly isMaxCandidateUtxosExceeded: boolean;
|
|
3373
2962
|
readonly isUtxoNotCandidate: boolean;
|
|
3374
2963
|
readonly isLockAlreadyFunded: boolean;
|
|
3375
|
-
readonly type:
|
|
3376
|
-
| 'NoPermissions'
|
|
3377
|
-
| 'NoBitcoinConfirmedBlock'
|
|
3378
|
-
| 'InsufficientBitcoinAmount'
|
|
3379
|
-
| 'NoBitcoinPricesAvailable'
|
|
3380
|
-
| 'ScriptPubkeyConflict'
|
|
3381
|
-
| 'UtxoNotLocked'
|
|
3382
|
-
| 'RedemptionsUnavailable'
|
|
3383
|
-
| 'InvalidBitcoinSyncHeight'
|
|
3384
|
-
| 'BitcoinHeightNotConfirmed'
|
|
3385
|
-
| 'MaxUtxosExceeded'
|
|
3386
|
-
| 'InvalidBitcoinScript'
|
|
3387
|
-
| 'DuplicateUtxoId'
|
|
3388
|
-
| 'MaxCandidateUtxosExceeded'
|
|
3389
|
-
| 'UtxoNotCandidate'
|
|
3390
|
-
| 'LockAlreadyFunded';
|
|
2964
|
+
readonly type: 'NoPermissions' | 'NoBitcoinConfirmedBlock' | 'InsufficientBitcoinAmount' | 'NoBitcoinPricesAvailable' | 'ScriptPubkeyConflict' | 'UtxoNotLocked' | 'RedemptionsUnavailable' | 'InvalidBitcoinSyncHeight' | 'BitcoinHeightNotConfirmed' | 'MaxUtxosExceeded' | 'InvalidBitcoinScript' | 'DuplicateUtxoId' | 'MaxCandidateUtxosExceeded' | 'UtxoNotCandidate' | 'LockAlreadyFunded';
|
|
3391
2965
|
}
|
|
3392
2966
|
|
|
3393
2967
|
/** @name ArgonPrimitivesVault (369) */
|
|
@@ -3488,37 +3062,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3488
3062
|
readonly isPendingCosignsBeforeCollect: boolean;
|
|
3489
3063
|
readonly isPendingOrphanedUtxoCosignsBeforeCollect: boolean;
|
|
3490
3064
|
readonly isAccountAlreadyHasVault: boolean;
|
|
3491
|
-
readonly type:
|
|
3492
|
-
| 'NoMoreVaultIds'
|
|
3493
|
-
| 'InsufficientFunds'
|
|
3494
|
-
| 'InsufficientVaultFunds'
|
|
3495
|
-
| 'AccountBelowMinimumBalance'
|
|
3496
|
-
| 'VaultClosed'
|
|
3497
|
-
| 'InvalidVaultAmount'
|
|
3498
|
-
| 'VaultReductionBelowSecuritization'
|
|
3499
|
-
| 'InvalidSecuritization'
|
|
3500
|
-
| 'ReusedVaultBitcoinXpub'
|
|
3501
|
-
| 'InvalidBitcoinScript'
|
|
3502
|
-
| 'InvalidXpubkey'
|
|
3503
|
-
| 'WrongXpubNetwork'
|
|
3504
|
-
| 'UnsafeXpubkey'
|
|
3505
|
-
| 'UnableToDeriveVaultXpubChild'
|
|
3506
|
-
| 'BitcoinConversionFailed'
|
|
3507
|
-
| 'NoPermissions'
|
|
3508
|
-
| 'HoldUnexpectedlyModified'
|
|
3509
|
-
| 'UnrecoverableHold'
|
|
3510
|
-
| 'VaultNotFound'
|
|
3511
|
-
| 'VaultNotYetActive'
|
|
3512
|
-
| 'NoVaultBitcoinPubkeysAvailable'
|
|
3513
|
-
| 'TermsModificationOverflow'
|
|
3514
|
-
| 'TermsChangeAlreadyScheduled'
|
|
3515
|
-
| 'InternalError'
|
|
3516
|
-
| 'UnableToGenerateVaultBitcoinPubkey'
|
|
3517
|
-
| 'FundingChangeAlreadyScheduled'
|
|
3518
|
-
| 'InvalidVaultName'
|
|
3519
|
-
| 'PendingCosignsBeforeCollect'
|
|
3520
|
-
| 'PendingOrphanedUtxoCosignsBeforeCollect'
|
|
3521
|
-
| 'AccountAlreadyHasVault';
|
|
3065
|
+
readonly type: 'NoMoreVaultIds' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'AccountBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'VaultReductionBelowSecuritization' | 'InvalidSecuritization' | 'ReusedVaultBitcoinXpub' | 'InvalidBitcoinScript' | 'InvalidXpubkey' | 'WrongXpubNetwork' | 'UnsafeXpubkey' | 'UnableToDeriveVaultXpubChild' | 'BitcoinConversionFailed' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'VaultNotYetActive' | 'NoVaultBitcoinPubkeysAvailable' | 'TermsModificationOverflow' | 'TermsChangeAlreadyScheduled' | 'InternalError' | 'UnableToGenerateVaultBitcoinPubkey' | 'FundingChangeAlreadyScheduled' | 'InvalidVaultName' | 'PendingCosignsBeforeCollect' | 'PendingOrphanedUtxoCosignsBeforeCollect' | 'AccountAlreadyHasVault';
|
|
3522
3066
|
}
|
|
3523
3067
|
|
|
3524
3068
|
/** @name PalletBitcoinLocksLockedBitcoin (394) */
|
|
@@ -3609,42 +3153,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3609
3153
|
readonly isOrphanedUtxoReleaseRequested: boolean;
|
|
3610
3154
|
readonly isFundingUtxoCannotBeReleased: boolean;
|
|
3611
3155
|
readonly isMaxOrphanedUtxoReleaseRequestsExceeded: boolean;
|
|
3612
|
-
readonly type:
|
|
3613
|
-
| 'InsufficientFunds'
|
|
3614
|
-
| 'InsufficientVaultFunds'
|
|
3615
|
-
| 'AccountWouldGoBelowMinimumBalance'
|
|
3616
|
-
| 'VaultClosed'
|
|
3617
|
-
| 'InvalidVaultAmount'
|
|
3618
|
-
| 'RedemptionNotLocked'
|
|
3619
|
-
| 'BitcoinReleaseInitiationDeadlinePassed'
|
|
3620
|
-
| 'BitcoinFeeTooHigh'
|
|
3621
|
-
| 'BitcoinUtxoNotFound'
|
|
3622
|
-
| 'BitcoinUnableToBeDecodedForRelease'
|
|
3623
|
-
| 'BitcoinSignatureUnableToBeDecoded'
|
|
3624
|
-
| 'BitcoinPubkeyUnableToBeDecoded'
|
|
3625
|
-
| 'BitcoinInvalidCosignature'
|
|
3626
|
-
| 'InsufficientSatoshisLocked'
|
|
3627
|
-
| 'NoBitcoinPricesAvailable'
|
|
3628
|
-
| 'InvalidBitcoinScript'
|
|
3629
|
-
| 'NoPermissions'
|
|
3630
|
-
| 'HoldUnexpectedlyModified'
|
|
3631
|
-
| 'UnrecoverableHold'
|
|
3632
|
-
| 'VaultNotFound'
|
|
3633
|
-
| 'GenericVaultError'
|
|
3634
|
-
| 'LockNotFound'
|
|
3635
|
-
| 'NoVaultBitcoinPubkeysAvailable'
|
|
3636
|
-
| 'UnableToGenerateVaultBitcoinPubkey'
|
|
3637
|
-
| 'VaultNotYetActive'
|
|
3638
|
-
| 'ExpirationAtBlockOverflow'
|
|
3639
|
-
| 'NoRatchetingAvailable'
|
|
3640
|
-
| 'LockInProcessOfRelease'
|
|
3641
|
-
| 'LockPendingFunding'
|
|
3642
|
-
| 'OverflowError'
|
|
3643
|
-
| 'IneligibleMicrogonRateRequested'
|
|
3644
|
-
| 'OrphanedUtxoFundingConflict'
|
|
3645
|
-
| 'OrphanedUtxoReleaseRequested'
|
|
3646
|
-
| 'FundingUtxoCannotBeReleased'
|
|
3647
|
-
| 'MaxOrphanedUtxoReleaseRequestsExceeded';
|
|
3156
|
+
readonly type: 'InsufficientFunds' | 'InsufficientVaultFunds' | 'AccountWouldGoBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'RedemptionNotLocked' | 'BitcoinReleaseInitiationDeadlinePassed' | 'BitcoinFeeTooHigh' | 'BitcoinUtxoNotFound' | 'BitcoinUnableToBeDecodedForRelease' | 'BitcoinSignatureUnableToBeDecoded' | 'BitcoinPubkeyUnableToBeDecoded' | 'BitcoinInvalidCosignature' | 'InsufficientSatoshisLocked' | 'NoBitcoinPricesAvailable' | 'InvalidBitcoinScript' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'GenericVaultError' | 'LockNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'VaultNotYetActive' | 'ExpirationAtBlockOverflow' | 'NoRatchetingAvailable' | 'LockInProcessOfRelease' | 'LockPendingFunding' | 'OverflowError' | 'IneligibleMicrogonRateRequested' | 'OrphanedUtxoFundingConflict' | 'OrphanedUtxoReleaseRequested' | 'FundingUtxoCannotBeReleased' | 'MaxOrphanedUtxoReleaseRequestsExceeded';
|
|
3648
3157
|
}
|
|
3649
3158
|
|
|
3650
3159
|
/** @name ArgonPrimitivesVaultVaultError (409) */
|
|
@@ -3661,19 +3170,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3661
3170
|
readonly isInvalidBitcoinScript: boolean;
|
|
3662
3171
|
readonly isInternalError: boolean;
|
|
3663
3172
|
readonly isVaultNotYetActive: boolean;
|
|
3664
|
-
readonly type:
|
|
3665
|
-
| 'VaultClosed'
|
|
3666
|
-
| 'AccountWouldBeBelowMinimum'
|
|
3667
|
-
| 'InsufficientFunds'
|
|
3668
|
-
| 'InsufficientVaultFunds'
|
|
3669
|
-
| 'HoldUnexpectedlyModified'
|
|
3670
|
-
| 'UnrecoverableHold'
|
|
3671
|
-
| 'VaultNotFound'
|
|
3672
|
-
| 'NoVaultBitcoinPubkeysAvailable'
|
|
3673
|
-
| 'UnableToGenerateVaultBitcoinPubkey'
|
|
3674
|
-
| 'InvalidBitcoinScript'
|
|
3675
|
-
| 'InternalError'
|
|
3676
|
-
| 'VaultNotYetActive';
|
|
3173
|
+
readonly type: 'VaultClosed' | 'AccountWouldBeBelowMinimum' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'InvalidBitcoinScript' | 'InternalError' | 'VaultNotYetActive';
|
|
3677
3174
|
}
|
|
3678
3175
|
|
|
3679
3176
|
/** @name PalletNotariesError (421) */
|
|
@@ -3687,16 +3184,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3687
3184
|
readonly isEffectiveTickTooSoon: boolean;
|
|
3688
3185
|
readonly isTooManyKeys: boolean;
|
|
3689
3186
|
readonly isInvalidNotary: boolean;
|
|
3690
|
-
readonly type:
|
|
3691
|
-
| 'ProposalNotFound'
|
|
3692
|
-
| 'MaxNotariesExceeded'
|
|
3693
|
-
| 'MaxProposalsPerBlockExceeded'
|
|
3694
|
-
| 'NotAnActiveNotary'
|
|
3695
|
-
| 'InvalidNotaryOperator'
|
|
3696
|
-
| 'NoMoreNotaryIds'
|
|
3697
|
-
| 'EffectiveTickTooSoon'
|
|
3698
|
-
| 'TooManyKeys'
|
|
3699
|
-
| 'InvalidNotary';
|
|
3187
|
+
readonly type: 'ProposalNotFound' | 'MaxNotariesExceeded' | 'MaxProposalsPerBlockExceeded' | 'NotAnActiveNotary' | 'InvalidNotaryOperator' | 'NoMoreNotaryIds' | 'EffectiveTickTooSoon' | 'TooManyKeys' | 'InvalidNotary';
|
|
3700
3188
|
}
|
|
3701
3189
|
|
|
3702
3190
|
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (425) */
|
|
@@ -3725,22 +3213,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3725
3213
|
readonly isInvalidReprocessNotebook: boolean;
|
|
3726
3214
|
readonly isInvalidNotaryOperator: boolean;
|
|
3727
3215
|
readonly isInvalidNotebookSubmissionTick: boolean;
|
|
3728
|
-
readonly type:
|
|
3729
|
-
| 'DuplicateNotebookNumber'
|
|
3730
|
-
| 'MissingNotebookNumber'
|
|
3731
|
-
| 'NotebookTickAlreadyUsed'
|
|
3732
|
-
| 'InvalidNotebookSignature'
|
|
3733
|
-
| 'InvalidSecretProvided'
|
|
3734
|
-
| 'CouldNotDecodeNotebook'
|
|
3735
|
-
| 'DuplicateNotebookDigest'
|
|
3736
|
-
| 'MissingNotebookDigest'
|
|
3737
|
-
| 'InvalidNotebookDigest'
|
|
3738
|
-
| 'MultipleNotebookInherentsProvided'
|
|
3739
|
-
| 'InternalError'
|
|
3740
|
-
| 'NotebookSubmittedForLockedNotary'
|
|
3741
|
-
| 'InvalidReprocessNotebook'
|
|
3742
|
-
| 'InvalidNotaryOperator'
|
|
3743
|
-
| 'InvalidNotebookSubmissionTick';
|
|
3216
|
+
readonly type: 'DuplicateNotebookNumber' | 'MissingNotebookNumber' | 'NotebookTickAlreadyUsed' | 'InvalidNotebookSignature' | 'InvalidSecretProvided' | 'CouldNotDecodeNotebook' | 'DuplicateNotebookDigest' | 'MissingNotebookDigest' | 'InvalidNotebookDigest' | 'MultipleNotebookInherentsProvided' | 'InternalError' | 'NotebookSubmittedForLockedNotary' | 'InvalidReprocessNotebook' | 'InvalidNotaryOperator' | 'InvalidNotebookSubmissionTick';
|
|
3744
3217
|
}
|
|
3745
3218
|
|
|
3746
3219
|
/** @name PalletLocalchainTransferQueuedTransferOut (429) */
|
|
@@ -3764,15 +3237,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3764
3237
|
readonly isInvalidNotaryUsedForTransfer: boolean;
|
|
3765
3238
|
readonly isNotaryLockedForTransfer: boolean;
|
|
3766
3239
|
readonly isNoAvailableTransferId: boolean;
|
|
3767
|
-
readonly type:
|
|
3768
|
-
| 'MaxBlockTransfersExceeded'
|
|
3769
|
-
| 'InsufficientFunds'
|
|
3770
|
-
| 'InsufficientNotarizedFunds'
|
|
3771
|
-
| 'InvalidOrDuplicatedLocalchainTransfer'
|
|
3772
|
-
| 'NotebookIncludesExpiredLocalchainTransfer'
|
|
3773
|
-
| 'InvalidNotaryUsedForTransfer'
|
|
3774
|
-
| 'NotaryLockedForTransfer'
|
|
3775
|
-
| 'NoAvailableTransferId';
|
|
3240
|
+
readonly type: 'MaxBlockTransfersExceeded' | 'InsufficientFunds' | 'InsufficientNotarizedFunds' | 'InvalidOrDuplicatedLocalchainTransfer' | 'NotebookIncludesExpiredLocalchainTransfer' | 'InvalidNotaryUsedForTransfer' | 'NotaryLockedForTransfer' | 'NoAvailableTransferId';
|
|
3776
3241
|
}
|
|
3777
3242
|
|
|
3778
3243
|
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (436) */
|
|
@@ -3797,12 +3262,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3797
3262
|
readonly isFailedToAddToAddressHistory: boolean;
|
|
3798
3263
|
readonly isFailedToAddExpiringDomain: boolean;
|
|
3799
3264
|
readonly isAccountDecodingError: boolean;
|
|
3800
|
-
readonly type:
|
|
3801
|
-
| 'DomainNotRegistered'
|
|
3802
|
-
| 'NotDomainOwner'
|
|
3803
|
-
| 'FailedToAddToAddressHistory'
|
|
3804
|
-
| 'FailedToAddExpiringDomain'
|
|
3805
|
-
| 'AccountDecodingError';
|
|
3265
|
+
readonly type: 'DomainNotRegistered' | 'NotDomainOwner' | 'FailedToAddToAddressHistory' | 'FailedToAddExpiringDomain' | 'AccountDecodingError';
|
|
3806
3266
|
}
|
|
3807
3267
|
|
|
3808
3268
|
/** @name PalletPriceIndexCpiMeasurementBucket (445) */
|
|
@@ -3818,11 +3278,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3818
3278
|
readonly isMissingValue: boolean;
|
|
3819
3279
|
readonly isPricesTooOld: boolean;
|
|
3820
3280
|
readonly isMaxPriceChangePerTickExceeded: boolean;
|
|
3821
|
-
readonly type:
|
|
3822
|
-
| 'NotAuthorizedOperator'
|
|
3823
|
-
| 'MissingValue'
|
|
3824
|
-
| 'PricesTooOld'
|
|
3825
|
-
| 'MaxPriceChangePerTickExceeded';
|
|
3281
|
+
readonly type: 'NotAuthorizedOperator' | 'MissingValue' | 'PricesTooOld' | 'MaxPriceChangePerTickExceeded';
|
|
3826
3282
|
}
|
|
3827
3283
|
|
|
3828
3284
|
/** @name PalletGrandpaStoredState (448) */
|
|
@@ -3859,14 +3315,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3859
3315
|
readonly isInvalidKeyOwnershipProof: boolean;
|
|
3860
3316
|
readonly isInvalidEquivocationProof: boolean;
|
|
3861
3317
|
readonly isDuplicateOffenceReport: boolean;
|
|
3862
|
-
readonly type:
|
|
3863
|
-
| 'PauseFailed'
|
|
3864
|
-
| 'ResumeFailed'
|
|
3865
|
-
| 'ChangePending'
|
|
3866
|
-
| 'TooSoon'
|
|
3867
|
-
| 'InvalidKeyOwnershipProof'
|
|
3868
|
-
| 'InvalidEquivocationProof'
|
|
3869
|
-
| 'DuplicateOffenceReport';
|
|
3318
|
+
readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
|
|
3870
3319
|
}
|
|
3871
3320
|
|
|
3872
3321
|
/** @name ArgonPrimitivesProvidersBlockSealerInfo (452) */
|
|
@@ -3899,28 +3348,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3899
3348
|
readonly isInvalidComputeBlockTick: boolean;
|
|
3900
3349
|
readonly isInvalidMinerNonceScore: boolean;
|
|
3901
3350
|
readonly isDuplicateVoteBlockAtTick: boolean;
|
|
3902
|
-
readonly type:
|
|
3903
|
-
| 'InvalidVoteSealStrength'
|
|
3904
|
-
| 'InvalidSubmitter'
|
|
3905
|
-
| 'UnableToDecodeVoteAccount'
|
|
3906
|
-
| 'UnregisteredBlockAuthor'
|
|
3907
|
-
| 'InvalidBlockVoteProof'
|
|
3908
|
-
| 'NoGrandparentVoteMinimum'
|
|
3909
|
-
| 'DuplicateBlockSealProvided'
|
|
3910
|
-
| 'InsufficientVotingPower'
|
|
3911
|
-
| 'ParentVotingKeyNotFound'
|
|
3912
|
-
| 'InvalidVoteGrandparentHash'
|
|
3913
|
-
| 'IneligibleNotebookUsed'
|
|
3914
|
-
| 'NoEligibleVotingRoot'
|
|
3915
|
-
| 'CouldNotDecodeVote'
|
|
3916
|
-
| 'MaxNotebooksAtTickExceeded'
|
|
3917
|
-
| 'NoClosestMinerFoundForVote'
|
|
3918
|
-
| 'BlockVoteInvalidSignature'
|
|
3919
|
-
| 'InvalidForkPowerParent'
|
|
3920
|
-
| 'BlockSealDecodeError'
|
|
3921
|
-
| 'InvalidComputeBlockTick'
|
|
3922
|
-
| 'InvalidMinerNonceScore'
|
|
3923
|
-
| 'DuplicateVoteBlockAtTick';
|
|
3351
|
+
readonly type: 'InvalidVoteSealStrength' | 'InvalidSubmitter' | 'UnableToDecodeVoteAccount' | 'UnregisteredBlockAuthor' | 'InvalidBlockVoteProof' | 'NoGrandparentVoteMinimum' | 'DuplicateBlockSealProvided' | 'InsufficientVotingPower' | 'ParentVotingKeyNotFound' | 'InvalidVoteGrandparentHash' | 'IneligibleNotebookUsed' | 'NoEligibleVotingRoot' | 'CouldNotDecodeVote' | 'MaxNotebooksAtTickExceeded' | 'NoClosestMinerFoundForVote' | 'BlockVoteInvalidSignature' | 'InvalidForkPowerParent' | 'BlockSealDecodeError' | 'InvalidComputeBlockTick' | 'InvalidMinerNonceScore' | 'DuplicateVoteBlockAtTick';
|
|
3924
3352
|
}
|
|
3925
3353
|
|
|
3926
3354
|
/** @name PalletBlockRewardsError (458) */
|
|
@@ -3999,19 +3427,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3999
3427
|
readonly isTooManyFreezes: boolean;
|
|
4000
3428
|
readonly isIssuanceDeactivated: boolean;
|
|
4001
3429
|
readonly isDeltaZero: boolean;
|
|
4002
|
-
readonly type:
|
|
4003
|
-
| 'VestingBalance'
|
|
4004
|
-
| 'LiquidityRestrictions'
|
|
4005
|
-
| 'InsufficientBalance'
|
|
4006
|
-
| 'ExistentialDeposit'
|
|
4007
|
-
| 'Expendability'
|
|
4008
|
-
| 'ExistingVestingSchedule'
|
|
4009
|
-
| 'DeadAccount'
|
|
4010
|
-
| 'TooManyReserves'
|
|
4011
|
-
| 'TooManyHolds'
|
|
4012
|
-
| 'TooManyFreezes'
|
|
4013
|
-
| 'IssuanceDeactivated'
|
|
4014
|
-
| 'DeltaZero';
|
|
3430
|
+
readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
|
|
4015
3431
|
}
|
|
4016
3432
|
|
|
4017
3433
|
/** @name PalletTxPauseError (483) */
|
|
@@ -4101,17 +3517,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4101
3517
|
readonly isNotBondLotOwner: boolean;
|
|
4102
3518
|
readonly isBondLotAlreadyReleasing: boolean;
|
|
4103
3519
|
readonly isBondPurchaseAboveSecurity: boolean;
|
|
4104
|
-
readonly type:
|
|
4105
|
-
| 'BondPurchaseRejected'
|
|
4106
|
-
| 'VaultNotAcceptingBondPurchases'
|
|
4107
|
-
| 'BondPurchaseBelowMinimum'
|
|
4108
|
-
| 'InternalError'
|
|
4109
|
-
| 'MaxAcceptedBondLotsExceeded'
|
|
4110
|
-
| 'MaxPendingBondReleasesExceeded'
|
|
4111
|
-
| 'BondLotNotFound'
|
|
4112
|
-
| 'NotBondLotOwner'
|
|
4113
|
-
| 'BondLotAlreadyReleasing'
|
|
4114
|
-
| 'BondPurchaseAboveSecurity';
|
|
3520
|
+
readonly type: 'BondPurchaseRejected' | 'VaultNotAcceptingBondPurchases' | 'BondPurchaseBelowMinimum' | 'InternalError' | 'MaxAcceptedBondLotsExceeded' | 'MaxPendingBondReleasesExceeded' | 'BondLotNotFound' | 'NotBondLotOwner' | 'BondLotAlreadyReleasing' | 'BondPurchaseAboveSecurity';
|
|
4115
3521
|
}
|
|
4116
3522
|
|
|
4117
3523
|
/** @name PalletFeeControlError (506) */
|
|
@@ -4168,24 +3574,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4168
3574
|
readonly isTreasuryInsufficientFunds: boolean;
|
|
4169
3575
|
readonly isAlreadyOperational: boolean;
|
|
4170
3576
|
readonly isNotEligibleForActivation: boolean;
|
|
4171
|
-
readonly type:
|
|
4172
|
-
| 'AlreadyRegistered'
|
|
4173
|
-
| 'InvalidRegistrationSubmitter'
|
|
4174
|
-
| 'AccountAlreadyLinked'
|
|
4175
|
-
| 'InvalidAccountProof'
|
|
4176
|
-
| 'NotOperationalAccount'
|
|
4177
|
-
| 'InvalidReferralProof'
|
|
4178
|
-
| 'ReferralProofExpired'
|
|
4179
|
-
| 'NoProgressUpdateProvided'
|
|
4180
|
-
| 'EncryptedServerTooLong'
|
|
4181
|
-
| 'NotSponsorOfSponsee'
|
|
4182
|
-
| 'NoPendingRewards'
|
|
4183
|
-
| 'RewardClaimBelowMinimum'
|
|
4184
|
-
| 'RewardClaimNotWholeArgon'
|
|
4185
|
-
| 'RewardClaimExceedsPending'
|
|
4186
|
-
| 'TreasuryInsufficientFunds'
|
|
4187
|
-
| 'AlreadyOperational'
|
|
4188
|
-
| 'NotEligibleForActivation';
|
|
3577
|
+
readonly type: 'AlreadyRegistered' | 'InvalidRegistrationSubmitter' | 'AccountAlreadyLinked' | 'InvalidAccountProof' | 'NotOperationalAccount' | 'InvalidReferralProof' | 'ReferralProofExpired' | 'NoProgressUpdateProvided' | 'EncryptedServerTooLong' | 'NotSponsorOfSponsee' | 'NoPendingRewards' | 'RewardClaimBelowMinimum' | 'RewardClaimNotWholeArgon' | 'RewardClaimExceedsPending' | 'TreasuryInsufficientFunds' | 'AlreadyOperational' | 'NotEligibleForActivation';
|
|
4189
3578
|
}
|
|
4190
3579
|
|
|
4191
3580
|
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (512) */
|
|
@@ -4261,28 +3650,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4261
3650
|
readonly isInvalidUpdateSlot: boolean;
|
|
4262
3651
|
readonly isInvalidSyncCommitteeUpdate: boolean;
|
|
4263
3652
|
readonly isHalted: boolean;
|
|
4264
|
-
readonly type:
|
|
4265
|
-
| 'SkippedSyncCommitteePeriod'
|
|
4266
|
-
| 'SyncCommitteeUpdateRequired'
|
|
4267
|
-
| 'IrrelevantUpdate'
|
|
4268
|
-
| 'NotBootstrapped'
|
|
4269
|
-
| 'SyncCommitteeParticipantsNotSupermajority'
|
|
4270
|
-
| 'InvalidHeaderMerkleProof'
|
|
4271
|
-
| 'InvalidSyncCommitteeMerkleProof'
|
|
4272
|
-
| 'InvalidExecutionHeaderProof'
|
|
4273
|
-
| 'InvalidFinalizedHeaderGap'
|
|
4274
|
-
| 'HeaderHashTreeRootFailed'
|
|
4275
|
-
| 'BlockBodyHashTreeRootFailed'
|
|
4276
|
-
| 'SyncCommitteeHashTreeRootFailed'
|
|
4277
|
-
| 'SigningRootHashTreeRootFailed'
|
|
4278
|
-
| 'ForkDataHashTreeRootFailed'
|
|
4279
|
-
| 'ExpectedFinalizedHeaderNotStored'
|
|
4280
|
-
| 'BlsPreparePublicKeysFailed'
|
|
4281
|
-
| 'BlsVerificationFailed'
|
|
4282
|
-
| 'UnexpectedBeaconPreset'
|
|
4283
|
-
| 'InvalidUpdateSlot'
|
|
4284
|
-
| 'InvalidSyncCommitteeUpdate'
|
|
4285
|
-
| 'Halted';
|
|
3653
|
+
readonly type: 'SkippedSyncCommitteePeriod' | 'SyncCommitteeUpdateRequired' | 'IrrelevantUpdate' | 'NotBootstrapped' | 'SyncCommitteeParticipantsNotSupermajority' | 'InvalidHeaderMerkleProof' | 'InvalidSyncCommitteeMerkleProof' | 'InvalidExecutionHeaderProof' | 'InvalidFinalizedHeaderGap' | 'HeaderHashTreeRootFailed' | 'BlockBodyHashTreeRootFailed' | 'SyncCommitteeHashTreeRootFailed' | 'SigningRootHashTreeRootFailed' | 'ForkDataHashTreeRootFailed' | 'ExpectedFinalizedHeaderNotStored' | 'BlsPreparePublicKeysFailed' | 'BlsVerificationFailed' | 'UnexpectedBeaconPreset' | 'InvalidUpdateSlot' | 'InvalidSyncCommitteeUpdate' | 'Halted';
|
|
4286
3654
|
}
|
|
4287
3655
|
|
|
4288
3656
|
/** @name PalletCrosschainTransferError (526) */
|
|
@@ -4298,18 +3666,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4298
3666
|
readonly isInvalidChainConfig: boolean;
|
|
4299
3667
|
readonly isInsufficientLiquidity: boolean;
|
|
4300
3668
|
readonly isInsufficientBurnAmountForFee: boolean;
|
|
4301
|
-
readonly type:
|
|
4302
|
-
| 'InvalidEthereumEvent'
|
|
4303
|
-
| 'InvalidProof'
|
|
4304
|
-
| 'InvalidRecipient'
|
|
4305
|
-
| 'InvalidAmount'
|
|
4306
|
-
| 'UnsupportedSource'
|
|
4307
|
-
| 'UnsupportedGateway'
|
|
4308
|
-
| 'UnsupportedToken'
|
|
4309
|
-
| 'UnexpectedNonce'
|
|
4310
|
-
| 'InvalidChainConfig'
|
|
4311
|
-
| 'InsufficientLiquidity'
|
|
4312
|
-
| 'InsufficientBurnAmountForFee';
|
|
3669
|
+
readonly type: 'InvalidEthereumEvent' | 'InvalidProof' | 'InvalidRecipient' | 'InvalidAmount' | 'UnsupportedSource' | 'UnsupportedGateway' | 'UnsupportedToken' | 'UnexpectedNonce' | 'InvalidChainConfig' | 'InsufficientLiquidity' | 'InsufficientBurnAmountForFee';
|
|
4313
3670
|
}
|
|
4314
3671
|
|
|
4315
3672
|
/** @name FrameSystemExtensionsAuthorizeCall (529) */
|
|
@@ -4353,4 +3710,5 @@ declare module '@polkadot/types/lookup' {
|
|
|
4353
3710
|
|
|
4354
3711
|
/** @name ArgonRuntimeRuntime (543) */
|
|
4355
3712
|
type ArgonRuntimeRuntime = Null;
|
|
3713
|
+
|
|
4356
3714
|
} // declare module
|