@argonprotocol/mainchain 0.0.16 → 0.0.18

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.
Files changed (57) hide show
  1. package/README.md +46 -0
  2. package/lib/cjs/WageProtector.d.ts +37 -0
  3. package/lib/cjs/WageProtector.js +63 -0
  4. package/lib/cjs/WageProtector.js.map +1 -0
  5. package/lib/cjs/__test__/WageProtector.test.d.ts +1 -0
  6. package/lib/cjs/__test__/WageProtector.test.js +28 -0
  7. package/lib/cjs/__test__/WageProtector.test.js.map +1 -0
  8. package/lib/cjs/index.d.ts +16 -1
  9. package/lib/cjs/index.js +22 -7
  10. package/lib/cjs/index.js.map +1 -1
  11. package/lib/cjs/interfaces/augment-api-consts.d.ts +34 -7
  12. package/lib/cjs/interfaces/augment-api-errors.d.ts +115 -4
  13. package/lib/cjs/interfaces/augment-api-events.d.ts +172 -14
  14. package/lib/cjs/interfaces/augment-api-query.d.ts +160 -29
  15. package/lib/cjs/interfaces/augment-api-tx.d.ts +140 -13
  16. package/lib/cjs/interfaces/augment-types.d.ts +4 -1
  17. package/lib/cjs/interfaces/lookup.d.ts +809 -307
  18. package/lib/cjs/interfaces/lookup.js +840 -338
  19. package/lib/cjs/interfaces/lookup.js.map +1 -1
  20. package/lib/cjs/interfaces/registry.d.ts +55 -9
  21. package/lib/cjs/interfaces/types-lookup.d.ts +792 -328
  22. package/lib/esm/WageProtector.d.ts +37 -0
  23. package/lib/esm/WageProtector.js +59 -0
  24. package/lib/esm/WageProtector.js.map +1 -0
  25. package/lib/esm/__test__/WageProtector.test.d.ts +1 -0
  26. package/lib/esm/__test__/WageProtector.test.js +26 -0
  27. package/lib/esm/__test__/WageProtector.test.js.map +1 -0
  28. package/lib/esm/index.d.ts +16 -1
  29. package/lib/esm/index.js +16 -2
  30. package/lib/esm/index.js.map +1 -1
  31. package/lib/esm/interfaces/augment-api-consts.d.ts +34 -7
  32. package/lib/esm/interfaces/augment-api-errors.d.ts +115 -4
  33. package/lib/esm/interfaces/augment-api-events.d.ts +172 -14
  34. package/lib/esm/interfaces/augment-api-query.d.ts +160 -29
  35. package/lib/esm/interfaces/augment-api-tx.d.ts +140 -13
  36. package/lib/esm/interfaces/augment-types.d.ts +4 -1
  37. package/lib/esm/interfaces/lookup.d.ts +809 -307
  38. package/lib/esm/interfaces/lookup.js +840 -338
  39. package/lib/esm/interfaces/lookup.js.map +1 -1
  40. package/lib/esm/interfaces/registry.d.ts +55 -9
  41. package/lib/esm/interfaces/types-lookup.d.ts +792 -328
  42. package/lib/tsconfig-cjs.tsbuildinfo +1 -1
  43. package/lib/tsconfig-types.tsbuildinfo +1 -1
  44. package/lib/tsconfig.tsbuildinfo +1 -1
  45. package/lib/types/WageProtector.d.ts +37 -0
  46. package/lib/types/__test__/WageProtector.test.d.ts +1 -0
  47. package/lib/types/index.d.ts +16 -1
  48. package/lib/types/interfaces/augment-api-consts.d.ts +34 -7
  49. package/lib/types/interfaces/augment-api-errors.d.ts +115 -4
  50. package/lib/types/interfaces/augment-api-events.d.ts +172 -14
  51. package/lib/types/interfaces/augment-api-query.d.ts +160 -29
  52. package/lib/types/interfaces/augment-api-tx.d.ts +140 -13
  53. package/lib/types/interfaces/augment-types.d.ts +4 -1
  54. package/lib/types/interfaces/lookup.d.ts +809 -307
  55. package/lib/types/interfaces/registry.d.ts +55 -9
  56. package/lib/types/interfaces/types-lookup.d.ts +792 -328
  57. package/package.json +28 -7
@@ -1,7 +1,7 @@
1
1
  import '@polkadot/types/lookup';
2
2
  import type { BTreeMap, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, i128, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
3
3
  import type { ITuple } from '@polkadot/types-codec/types';
4
- import type { AccountId32, Call, H256, MultiAddress } from '@polkadot/types/interfaces/runtime';
4
+ import type { AccountId32, Call, H160, H256, MultiAddress } from '@polkadot/types/interfaces/runtime';
5
5
  import type { Event } from '@polkadot/types/interfaces/system';
6
6
  declare module '@polkadot/types/lookup' {
7
7
  /** @name FrameSystemAccountInfo (3) */
@@ -158,7 +158,9 @@ declare module '@polkadot/types/lookup' {
158
158
  readonly isNoLayer: boolean;
159
159
  readonly type: 'LimitReached' | 'NoLayer';
160
160
  }
161
- /** @name PalletMultisigEvent (31) */
161
+ /** @name PalletDigestsEvent (31) */
162
+ type PalletDigestsEvent = Null;
163
+ /** @name PalletMultisigEvent (32) */
162
164
  interface PalletMultisigEvent extends Enum {
163
165
  readonly isNewMultisig: boolean;
164
166
  readonly asNewMultisig: {
@@ -190,12 +192,12 @@ declare module '@polkadot/types/lookup' {
190
192
  } & Struct;
191
193
  readonly type: 'NewMultisig' | 'MultisigApproval' | 'MultisigExecuted' | 'MultisigCancelled';
192
194
  }
193
- /** @name PalletMultisigTimepoint (32) */
195
+ /** @name PalletMultisigTimepoint (33) */
194
196
  interface PalletMultisigTimepoint extends Struct {
195
197
  readonly height: u32;
196
198
  readonly index: u32;
197
199
  }
198
- /** @name PalletProxyEvent (35) */
200
+ /** @name PalletProxyEvent (36) */
199
201
  interface PalletProxyEvent extends Enum {
200
202
  readonly isProxyExecuted: boolean;
201
203
  readonly asProxyExecuted: {
@@ -205,7 +207,7 @@ declare module '@polkadot/types/lookup' {
205
207
  readonly asPureCreated: {
206
208
  readonly pure: AccountId32;
207
209
  readonly who: AccountId32;
208
- readonly proxyType: ArgonNodeRuntimeProxyType;
210
+ readonly proxyType: ArgonRuntimeConfigsProxyType;
209
211
  readonly disambiguationIndex: u16;
210
212
  } & Struct;
211
213
  readonly isAnnounced: boolean;
@@ -218,26 +220,26 @@ declare module '@polkadot/types/lookup' {
218
220
  readonly asProxyAdded: {
219
221
  readonly delegator: AccountId32;
220
222
  readonly delegatee: AccountId32;
221
- readonly proxyType: ArgonNodeRuntimeProxyType;
223
+ readonly proxyType: ArgonRuntimeConfigsProxyType;
222
224
  readonly delay: u32;
223
225
  } & Struct;
224
226
  readonly isProxyRemoved: boolean;
225
227
  readonly asProxyRemoved: {
226
228
  readonly delegator: AccountId32;
227
229
  readonly delegatee: AccountId32;
228
- readonly proxyType: ArgonNodeRuntimeProxyType;
230
+ readonly proxyType: ArgonRuntimeConfigsProxyType;
229
231
  readonly delay: u32;
230
232
  } & Struct;
231
233
  readonly type: 'ProxyExecuted' | 'PureCreated' | 'Announced' | 'ProxyAdded' | 'ProxyRemoved';
232
234
  }
233
- /** @name ArgonNodeRuntimeProxyType (36) */
234
- interface ArgonNodeRuntimeProxyType extends Enum {
235
+ /** @name ArgonRuntimeConfigsProxyType (37) */
236
+ interface ArgonRuntimeConfigsProxyType extends Enum {
235
237
  readonly isAny: boolean;
236
238
  readonly isNonTransfer: boolean;
237
239
  readonly isPriceIndex: boolean;
238
240
  readonly type: 'Any' | 'NonTransfer' | 'PriceIndex';
239
241
  }
240
- /** @name PalletMiningSlotEvent (38) */
242
+ /** @name PalletMiningSlotEvent (39) */
241
243
  interface PalletMiningSlotEvent extends Enum {
242
244
  readonly isNewMiners: boolean;
243
245
  readonly asNewMiners: {
@@ -270,7 +272,7 @@ declare module '@polkadot/types/lookup' {
270
272
  } & Struct;
271
273
  readonly type: 'NewMiners' | 'SlotBidderAdded' | 'SlotBidderReplaced' | 'UnbondedMiner' | 'UnbondMinerError';
272
274
  }
273
- /** @name ArgonPrimitivesBlockSealMiningRegistration (40) */
275
+ /** @name ArgonPrimitivesBlockSealMiningRegistration (41) */
274
276
  interface ArgonPrimitivesBlockSealMiningRegistration extends Struct {
275
277
  readonly accountId: AccountId32;
276
278
  readonly rewardDestination: ArgonPrimitivesBlockSealRewardDestination;
@@ -278,32 +280,32 @@ declare module '@polkadot/types/lookup' {
278
280
  readonly bondAmount: Compact<u128>;
279
281
  readonly ownershipTokens: Compact<u128>;
280
282
  readonly rewardSharing: Option<ArgonPrimitivesBlockSealRewardSharing>;
281
- readonly authorityKeys: ArgonNodeRuntimeOpaqueSessionKeys;
283
+ readonly authorityKeys: ArgonRuntimeSessionKeys;
282
284
  }
283
- /** @name ArgonNodeRuntimeOpaqueSessionKeys (41) */
284
- interface ArgonNodeRuntimeOpaqueSessionKeys extends Struct {
285
+ /** @name ArgonRuntimeSessionKeys (42) */
286
+ interface ArgonRuntimeSessionKeys extends Struct {
285
287
  readonly grandpa: SpConsensusGrandpaAppPublic;
286
288
  readonly blockSealAuthority: ArgonPrimitivesBlockSealAppPublic;
287
289
  }
288
- /** @name SpConsensusGrandpaAppPublic (42) */
290
+ /** @name SpConsensusGrandpaAppPublic (43) */
289
291
  interface SpConsensusGrandpaAppPublic extends U8aFixed {
290
292
  }
291
- /** @name ArgonPrimitivesBlockSealAppPublic (43) */
293
+ /** @name ArgonPrimitivesBlockSealAppPublic (44) */
292
294
  interface ArgonPrimitivesBlockSealAppPublic extends U8aFixed {
293
295
  }
294
- /** @name ArgonPrimitivesBlockSealRewardDestination (44) */
296
+ /** @name ArgonPrimitivesBlockSealRewardDestination (45) */
295
297
  interface ArgonPrimitivesBlockSealRewardDestination extends Enum {
296
298
  readonly isOwner: boolean;
297
299
  readonly isAccount: boolean;
298
300
  readonly asAccount: AccountId32;
299
301
  readonly type: 'Owner' | 'Account';
300
302
  }
301
- /** @name ArgonPrimitivesBlockSealRewardSharing (48) */
303
+ /** @name ArgonPrimitivesBlockSealRewardSharing (49) */
302
304
  interface ArgonPrimitivesBlockSealRewardSharing extends Struct {
303
305
  readonly accountId: AccountId32;
304
306
  readonly percentTake: Compact<u128>;
305
307
  }
306
- /** @name PalletBitcoinUtxosEvent (52) */
308
+ /** @name PalletBitcoinUtxosEvent (53) */
307
309
  interface PalletBitcoinUtxosEvent extends Enum {
308
310
  readonly isUtxoVerified: boolean;
309
311
  readonly asUtxoVerified: {
@@ -345,7 +347,7 @@ declare module '@polkadot/types/lookup' {
345
347
  } & Struct;
346
348
  readonly type: 'UtxoVerified' | 'UtxoRejected' | 'UtxoSpent' | 'UtxoUnwatched' | 'UtxoSpentError' | 'UtxoVerifiedError' | 'UtxoRejectedError' | 'UtxoExpiredError';
347
349
  }
348
- /** @name ArgonPrimitivesBitcoinBitcoinRejectedReason (53) */
350
+ /** @name ArgonPrimitivesBitcoinBitcoinRejectedReason (54) */
349
351
  interface ArgonPrimitivesBitcoinBitcoinRejectedReason extends Enum {
350
352
  readonly isSatoshisMismatch: boolean;
351
353
  readonly isSpent: boolean;
@@ -353,15 +355,15 @@ declare module '@polkadot/types/lookup' {
353
355
  readonly isDuplicateUtxo: boolean;
354
356
  readonly type: 'SatoshisMismatch' | 'Spent' | 'LookupExpired' | 'DuplicateUtxo';
355
357
  }
356
- /** @name ArgonPrimitivesBitcoinUtxoRef (54) */
358
+ /** @name ArgonPrimitivesBitcoinUtxoRef (55) */
357
359
  interface ArgonPrimitivesBitcoinUtxoRef extends Struct {
358
360
  readonly txid: ArgonPrimitivesBitcoinH256Le;
359
361
  readonly outputIndex: Compact<u32>;
360
362
  }
361
- /** @name ArgonPrimitivesBitcoinH256Le (55) */
363
+ /** @name ArgonPrimitivesBitcoinH256Le (56) */
362
364
  interface ArgonPrimitivesBitcoinH256Le extends U8aFixed {
363
365
  }
364
- /** @name PalletVaultsEvent (57) */
366
+ /** @name PalletVaultsEvent (58) */
365
367
  interface PalletVaultsEvent extends Enum {
366
368
  readonly isVaultCreated: boolean;
367
369
  readonly asVaultCreated: {
@@ -400,7 +402,7 @@ declare module '@polkadot/types/lookup' {
400
402
  } & Struct;
401
403
  readonly type: 'VaultCreated' | 'VaultModified' | 'VaultTermsChangeScheduled' | 'VaultTermsChanged' | 'VaultClosed' | 'VaultBitcoinXpubChange';
402
404
  }
403
- /** @name PalletBondEvent (58) */
405
+ /** @name PalletBondEvent (59) */
404
406
  interface PalletBondEvent extends Enum {
405
407
  readonly isBondCreated: boolean;
406
408
  readonly asBondCreated: {
@@ -468,13 +470,13 @@ declare module '@polkadot/types/lookup' {
468
470
  } & Struct;
469
471
  readonly type: 'BondCreated' | 'BondCompleted' | 'BondCanceled' | 'BitcoinBondBurned' | 'BitcoinUtxoCosignRequested' | 'BitcoinUtxoCosigned' | 'BitcoinCosignPastDue' | 'BondCompletionError' | 'CosignOverdueError';
470
472
  }
471
- /** @name ArgonPrimitivesBondBondType (59) */
473
+ /** @name ArgonPrimitivesBondBondType (60) */
472
474
  interface ArgonPrimitivesBondBondType extends Enum {
473
475
  readonly isMining: boolean;
474
476
  readonly isBitcoin: boolean;
475
477
  readonly type: 'Mining' | 'Bitcoin';
476
478
  }
477
- /** @name ArgonPrimitivesBondBondExpiration (60) */
479
+ /** @name ArgonPrimitivesBondBondExpiration (61) */
478
480
  interface ArgonPrimitivesBondBondExpiration extends Enum {
479
481
  readonly isArgonBlock: boolean;
480
482
  readonly asArgonBlock: Compact<u32>;
@@ -482,7 +484,7 @@ declare module '@polkadot/types/lookup' {
482
484
  readonly asBitcoinBlock: Compact<u64>;
483
485
  readonly type: 'ArgonBlock' | 'BitcoinBlock';
484
486
  }
485
- /** @name PalletNotariesEvent (63) */
487
+ /** @name PalletNotariesEvent (64) */
486
488
  interface PalletNotariesEvent extends Enum {
487
489
  readonly isNotaryProposed: boolean;
488
490
  readonly asNotaryProposed: {
@@ -498,7 +500,7 @@ declare module '@polkadot/types/lookup' {
498
500
  readonly asNotaryMetaUpdateQueued: {
499
501
  readonly notaryId: u32;
500
502
  readonly meta: ArgonPrimitivesNotaryNotaryMeta;
501
- readonly effectiveTick: u32;
503
+ readonly effectiveTick: u64;
502
504
  } & Struct;
503
505
  readonly isNotaryMetaUpdated: boolean;
504
506
  readonly asNotaryMetaUpdated: {
@@ -513,22 +515,22 @@ declare module '@polkadot/types/lookup' {
513
515
  } & Struct;
514
516
  readonly type: 'NotaryProposed' | 'NotaryActivated' | 'NotaryMetaUpdateQueued' | 'NotaryMetaUpdated' | 'NotaryMetaUpdateError';
515
517
  }
516
- /** @name ArgonPrimitivesNotaryNotaryMeta (64) */
518
+ /** @name ArgonPrimitivesNotaryNotaryMeta (65) */
517
519
  interface ArgonPrimitivesNotaryNotaryMeta extends Struct {
518
520
  readonly name: Bytes;
519
521
  readonly public: U8aFixed;
520
522
  readonly hosts: Vec<Bytes>;
521
523
  }
522
- /** @name ArgonPrimitivesNotaryNotaryRecord (71) */
524
+ /** @name ArgonPrimitivesNotaryNotaryRecord (72) */
523
525
  interface ArgonPrimitivesNotaryNotaryRecord extends Struct {
524
526
  readonly notaryId: Compact<u32>;
525
527
  readonly operatorAccountId: AccountId32;
526
528
  readonly activatedBlock: Compact<u32>;
527
529
  readonly metaUpdatedBlock: Compact<u32>;
528
- readonly metaUpdatedTick: Compact<u32>;
530
+ readonly metaUpdatedTick: Compact<u64>;
529
531
  readonly meta: ArgonPrimitivesNotaryNotaryMeta;
530
532
  }
531
- /** @name PalletNotebookEvent (72) */
533
+ /** @name PalletNotebookEvent (73) */
532
534
  interface PalletNotebookEvent extends Enum {
533
535
  readonly isNotebookSubmitted: boolean;
534
536
  readonly asNotebookSubmitted: {
@@ -549,7 +551,7 @@ declare module '@polkadot/types/lookup' {
549
551
  } & Struct;
550
552
  readonly type: 'NotebookSubmitted' | 'NotebookAuditFailure' | 'NotebookReadyForReprocess';
551
553
  }
552
- /** @name ArgonNotaryAuditErrorVerifyError (73) */
554
+ /** @name ArgonNotaryAuditErrorVerifyError (74) */
553
555
  interface ArgonNotaryAuditErrorVerifyError extends Enum {
554
556
  readonly isMissingAccountOrigin: boolean;
555
557
  readonly asMissingAccountOrigin: {
@@ -627,8 +629,8 @@ declare module '@polkadot/types/lookup' {
627
629
  readonly isAccountAlreadyHasChannelHold: boolean;
628
630
  readonly isChannelHoldNotReadyForClaim: boolean;
629
631
  readonly asChannelHoldNotReadyForClaim: {
630
- readonly currentTick: u32;
631
- readonly claimTick: u32;
632
+ readonly currentTick: u64;
633
+ readonly claimTick: u64;
632
634
  } & Struct;
633
635
  readonly isAccountLocked: boolean;
634
636
  readonly isMissingChannelHoldNote: boolean;
@@ -656,18 +658,25 @@ declare module '@polkadot/types/lookup' {
656
658
  readonly isInsufficientBlockVoteMinimum: boolean;
657
659
  readonly isInvalidBlockVoteTick: boolean;
658
660
  readonly asInvalidBlockVoteTick: {
659
- readonly tick: u32;
660
- readonly notebookTick: u32;
661
+ readonly tick: u64;
662
+ readonly notebookTick: u64;
661
663
  } & Struct;
662
- 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' | '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';
664
+ readonly isInvalidDefaultBlockVote: boolean;
665
+ readonly isInvalidDefaultBlockVoteAuthor: boolean;
666
+ readonly asInvalidDefaultBlockVoteAuthor: {
667
+ readonly author: AccountId32;
668
+ readonly expected: AccountId32;
669
+ } & Struct;
670
+ readonly isNoDefaultBlockVote: boolean;
671
+ 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' | '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';
663
672
  }
664
- /** @name ArgonPrimitivesAccountAccountType (74) */
673
+ /** @name ArgonPrimitivesAccountAccountType (75) */
665
674
  interface ArgonPrimitivesAccountAccountType extends Enum {
666
675
  readonly isTax: boolean;
667
676
  readonly isDeposit: boolean;
668
677
  readonly type: 'Tax' | 'Deposit';
669
678
  }
670
- /** @name ArgonNotaryAuditAccountHistoryLookupError (75) */
679
+ /** @name ArgonNotaryAuditAccountHistoryLookupError (76) */
671
680
  interface ArgonNotaryAuditAccountHistoryLookupError extends Enum {
672
681
  readonly isRootNotFound: boolean;
673
682
  readonly isLastChangeNotFound: boolean;
@@ -675,7 +684,7 @@ declare module '@polkadot/types/lookup' {
675
684
  readonly isBlockSpecificationNotFound: boolean;
676
685
  readonly type: 'RootNotFound' | 'LastChangeNotFound' | 'InvalidTransferToLocalchain' | 'BlockSpecificationNotFound';
677
686
  }
678
- /** @name PalletChainTransferEvent (78) */
687
+ /** @name PalletChainTransferEvent (79) */
679
688
  interface PalletChainTransferEvent extends Enum {
680
689
  readonly isTransferToLocalchain: boolean;
681
690
  readonly asTransferToLocalchain: {
@@ -683,7 +692,7 @@ declare module '@polkadot/types/lookup' {
683
692
  readonly amount: u128;
684
693
  readonly transferId: u32;
685
694
  readonly notaryId: u32;
686
- readonly expirationTick: u32;
695
+ readonly expirationTick: u64;
687
696
  } & Struct;
688
697
  readonly isTransferToLocalchainExpired: boolean;
689
698
  readonly asTransferToLocalchainExpired: {
@@ -691,14 +700,14 @@ declare module '@polkadot/types/lookup' {
691
700
  readonly transferId: u32;
692
701
  readonly notaryId: u32;
693
702
  } & Struct;
694
- readonly isTransferIn: boolean;
695
- readonly asTransferIn: {
703
+ readonly isTransferFromLocalchain: boolean;
704
+ readonly asTransferFromLocalchain: {
696
705
  readonly accountId: AccountId32;
697
706
  readonly amount: u128;
698
707
  readonly notaryId: u32;
699
708
  } & Struct;
700
- readonly isTransferInError: boolean;
701
- readonly asTransferInError: {
709
+ readonly isTransferFromLocalchainError: boolean;
710
+ readonly asTransferFromLocalchainError: {
702
711
  readonly accountId: AccountId32;
703
712
  readonly amount: u128;
704
713
  readonly notaryId: u32;
@@ -713,8 +722,8 @@ declare module '@polkadot/types/lookup' {
713
722
  readonly notebookNumber: u32;
714
723
  readonly error: SpRuntimeDispatchError;
715
724
  } & Struct;
716
- readonly isPossibleInvalidTransferAllowed: boolean;
717
- readonly asPossibleInvalidTransferAllowed: {
725
+ readonly isPossibleInvalidLocalchainTransferAllowed: boolean;
726
+ readonly asPossibleInvalidLocalchainTransferAllowed: {
718
727
  readonly transferId: u32;
719
728
  readonly notaryId: u32;
720
729
  readonly notebookNumber: u32;
@@ -726,9 +735,9 @@ declare module '@polkadot/types/lookup' {
726
735
  readonly tax: u128;
727
736
  readonly error: SpRuntimeDispatchError;
728
737
  } & Struct;
729
- readonly type: 'TransferToLocalchain' | 'TransferToLocalchainExpired' | 'TransferIn' | 'TransferInError' | 'TransferToLocalchainRefundError' | 'PossibleInvalidTransferAllowed' | 'TaxationError';
738
+ readonly type: 'TransferToLocalchain' | 'TransferToLocalchainExpired' | 'TransferFromLocalchain' | 'TransferFromLocalchainError' | 'TransferToLocalchainRefundError' | 'PossibleInvalidLocalchainTransferAllowed' | 'TaxationError';
730
739
  }
731
- /** @name PalletBlockSealSpecEvent (79) */
740
+ /** @name PalletBlockSealSpecEvent (80) */
732
741
  interface PalletBlockSealSpecEvent extends Enum {
733
742
  readonly isVoteMinimumAdjusted: boolean;
734
743
  readonly asVoteMinimumAdjusted: {
@@ -746,7 +755,7 @@ declare module '@polkadot/types/lookup' {
746
755
  } & Struct;
747
756
  readonly type: 'VoteMinimumAdjusted' | 'ComputeDifficultyAdjusted';
748
757
  }
749
- /** @name PalletDomainsEvent (80) */
758
+ /** @name PalletDomainsEvent (81) */
750
759
  interface PalletDomainsEvent extends Enum {
751
760
  readonly isZoneRecordUpdated: boolean;
752
761
  readonly asZoneRecordUpdated: {
@@ -779,29 +788,29 @@ declare module '@polkadot/types/lookup' {
779
788
  } & Struct;
780
789
  readonly type: 'ZoneRecordUpdated' | 'DomainRegistered' | 'DomainRenewed' | 'DomainExpired' | 'DomainRegistrationCanceled' | 'DomainRegistrationError';
781
790
  }
782
- /** @name ArgonPrimitivesDomainZoneRecord (81) */
791
+ /** @name ArgonPrimitivesDomainZoneRecord (82) */
783
792
  interface ArgonPrimitivesDomainZoneRecord extends Struct {
784
793
  readonly paymentAccount: AccountId32;
785
794
  readonly notaryId: u32;
786
795
  readonly versions: BTreeMap<ArgonPrimitivesDomainSemver, ArgonPrimitivesDomainVersionHost>;
787
796
  }
788
- /** @name ArgonPrimitivesDomainSemver (83) */
797
+ /** @name ArgonPrimitivesDomainSemver (84) */
789
798
  interface ArgonPrimitivesDomainSemver extends Struct {
790
799
  readonly major: u32;
791
800
  readonly minor: u32;
792
801
  readonly patch: u32;
793
802
  }
794
- /** @name ArgonPrimitivesDomainVersionHost (84) */
803
+ /** @name ArgonPrimitivesDomainVersionHost (85) */
795
804
  interface ArgonPrimitivesDomainVersionHost extends Struct {
796
805
  readonly datastoreId: Bytes;
797
806
  readonly host: Bytes;
798
807
  }
799
- /** @name PalletDomainsDomainRegistration (88) */
808
+ /** @name PalletDomainsDomainRegistration (89) */
800
809
  interface PalletDomainsDomainRegistration extends Struct {
801
810
  readonly accountId: AccountId32;
802
- readonly registeredAtTick: u32;
811
+ readonly registeredAtTick: u64;
803
812
  }
804
- /** @name PalletPriceIndexEvent (89) */
813
+ /** @name PalletPriceIndexEvent (90) */
805
814
  interface PalletPriceIndexEvent extends Enum {
806
815
  readonly isNewIndex: boolean;
807
816
  readonly isOperatorChanged: boolean;
@@ -810,7 +819,17 @@ declare module '@polkadot/types/lookup' {
810
819
  } & Struct;
811
820
  readonly type: 'NewIndex' | 'OperatorChanged';
812
821
  }
813
- /** @name PalletBlockRewardsEvent (90) */
822
+ /** @name PalletGrandpaEvent (91) */
823
+ interface PalletGrandpaEvent extends Enum {
824
+ readonly isNewAuthorities: boolean;
825
+ readonly asNewAuthorities: {
826
+ readonly authoritySet: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
827
+ } & Struct;
828
+ readonly isPaused: boolean;
829
+ readonly isResumed: boolean;
830
+ readonly type: 'NewAuthorities' | 'Paused' | 'Resumed';
831
+ }
832
+ /** @name PalletBlockRewardsEvent (94) */
814
833
  interface PalletBlockRewardsEvent extends Enum {
815
834
  readonly isRewardCreated: boolean;
816
835
  readonly asRewardCreated: {
@@ -837,23 +856,13 @@ declare module '@polkadot/types/lookup' {
837
856
  } & Struct;
838
857
  readonly type: 'RewardCreated' | 'RewardUnlocked' | 'RewardUnlockError' | 'RewardCreateError';
839
858
  }
840
- /** @name ArgonPrimitivesBlockSealBlockPayout (92) */
859
+ /** @name ArgonPrimitivesBlockSealBlockPayout (96) */
841
860
  interface ArgonPrimitivesBlockSealBlockPayout extends Struct {
842
861
  readonly accountId: AccountId32;
843
862
  readonly ownership: Compact<u128>;
844
863
  readonly argons: Compact<u128>;
845
864
  }
846
- /** @name PalletGrandpaEvent (94) */
847
- interface PalletGrandpaEvent extends Enum {
848
- readonly isNewAuthorities: boolean;
849
- readonly asNewAuthorities: {
850
- readonly authoritySet: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
851
- } & Struct;
852
- readonly isPaused: boolean;
853
- readonly isResumed: boolean;
854
- readonly type: 'NewAuthorities' | 'Paused' | 'Resumed';
855
- }
856
- /** @name PalletMintEvent (97) */
865
+ /** @name PalletMintEvent (98) */
857
866
  interface PalletMintEvent extends Enum {
858
867
  readonly isArgonsMinted: boolean;
859
868
  readonly asArgonsMinted: {
@@ -872,13 +881,13 @@ declare module '@polkadot/types/lookup' {
872
881
  } & Struct;
873
882
  readonly type: 'ArgonsMinted' | 'MintError';
874
883
  }
875
- /** @name PalletMintMintType (98) */
884
+ /** @name PalletMintMintType (99) */
876
885
  interface PalletMintMintType extends Enum {
877
886
  readonly isBitcoin: boolean;
878
887
  readonly isMining: boolean;
879
888
  readonly type: 'Bitcoin' | 'Mining';
880
889
  }
881
- /** @name PalletBalancesEvent (99) */
890
+ /** @name PalletBalancesEvent (100) */
882
891
  interface PalletBalancesEvent extends Enum {
883
892
  readonly isEndowed: boolean;
884
893
  readonly asEndowed: {
@@ -992,13 +1001,13 @@ declare module '@polkadot/types/lookup' {
992
1001
  } & Struct;
993
1002
  readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed' | 'Minted' | 'Burned' | 'Suspended' | 'Restored' | 'Upgraded' | 'Issued' | 'Rescinded' | 'Locked' | 'Unlocked' | 'Frozen' | 'Thawed' | 'TotalIssuanceForced';
994
1003
  }
995
- /** @name FrameSupportTokensMiscBalanceStatus (100) */
1004
+ /** @name FrameSupportTokensMiscBalanceStatus (101) */
996
1005
  interface FrameSupportTokensMiscBalanceStatus extends Enum {
997
1006
  readonly isFree: boolean;
998
1007
  readonly isReserved: boolean;
999
1008
  readonly type: 'Free' | 'Reserved';
1000
1009
  }
1001
- /** @name PalletTxPauseEvent (102) */
1010
+ /** @name PalletTxPauseEvent (103) */
1002
1011
  interface PalletTxPauseEvent extends Enum {
1003
1012
  readonly isCallPaused: boolean;
1004
1013
  readonly asCallPaused: {
@@ -1010,7 +1019,7 @@ declare module '@polkadot/types/lookup' {
1010
1019
  } & Struct;
1011
1020
  readonly type: 'CallPaused' | 'CallUnpaused';
1012
1021
  }
1013
- /** @name PalletTransactionPaymentEvent (105) */
1022
+ /** @name PalletTransactionPaymentEvent (106) */
1014
1023
  interface PalletTransactionPaymentEvent extends Enum {
1015
1024
  readonly isTransactionFeePaid: boolean;
1016
1025
  readonly asTransactionFeePaid: {
@@ -1020,7 +1029,7 @@ declare module '@polkadot/types/lookup' {
1020
1029
  } & Struct;
1021
1030
  readonly type: 'TransactionFeePaid';
1022
1031
  }
1023
- /** @name PalletUtilityEvent (106) */
1032
+ /** @name PalletUtilityEvent (107) */
1024
1033
  interface PalletUtilityEvent extends Enum {
1025
1034
  readonly isBatchInterrupted: boolean;
1026
1035
  readonly asBatchInterrupted: {
@@ -1040,7 +1049,7 @@ declare module '@polkadot/types/lookup' {
1040
1049
  } & Struct;
1041
1050
  readonly type: 'BatchInterrupted' | 'BatchCompleted' | 'BatchCompletedWithErrors' | 'ItemCompleted' | 'ItemFailed' | 'DispatchedAs';
1042
1051
  }
1043
- /** @name PalletSudoEvent (107) */
1052
+ /** @name PalletSudoEvent (108) */
1044
1053
  interface PalletSudoEvent extends Enum {
1045
1054
  readonly isSudid: boolean;
1046
1055
  readonly asSudid: {
@@ -1058,7 +1067,170 @@ declare module '@polkadot/types/lookup' {
1058
1067
  } & Struct;
1059
1068
  readonly type: 'Sudid' | 'KeyChanged' | 'KeyRemoved' | 'SudoAsDone';
1060
1069
  }
1061
- /** @name FrameSystemPhase (109) */
1070
+ /** @name PalletIsmpEvent (110) */
1071
+ interface PalletIsmpEvent extends Enum {
1072
+ readonly isStateMachineUpdated: boolean;
1073
+ readonly asStateMachineUpdated: {
1074
+ readonly stateMachineId: IsmpConsensusStateMachineId;
1075
+ readonly latestHeight: u64;
1076
+ } & Struct;
1077
+ readonly isStateCommitmentVetoed: boolean;
1078
+ readonly asStateCommitmentVetoed: {
1079
+ readonly height: IsmpConsensusStateMachineHeight;
1080
+ readonly fisherman: Bytes;
1081
+ } & Struct;
1082
+ readonly isConsensusClientCreated: boolean;
1083
+ readonly asConsensusClientCreated: {
1084
+ readonly consensusClientId: U8aFixed;
1085
+ } & Struct;
1086
+ readonly isConsensusClientFrozen: boolean;
1087
+ readonly asConsensusClientFrozen: {
1088
+ readonly consensusClientId: U8aFixed;
1089
+ } & Struct;
1090
+ readonly isResponse: boolean;
1091
+ readonly asResponse: {
1092
+ readonly destChain: IsmpHostStateMachine;
1093
+ readonly sourceChain: IsmpHostStateMachine;
1094
+ readonly requestNonce: u64;
1095
+ readonly commitment: H256;
1096
+ readonly reqCommitment: H256;
1097
+ } & Struct;
1098
+ readonly isRequest: boolean;
1099
+ readonly asRequest: {
1100
+ readonly destChain: IsmpHostStateMachine;
1101
+ readonly sourceChain: IsmpHostStateMachine;
1102
+ readonly requestNonce: u64;
1103
+ readonly commitment: H256;
1104
+ } & Struct;
1105
+ readonly isErrors: boolean;
1106
+ readonly asErrors: {
1107
+ readonly errors: Vec<PalletIsmpErrorsHandlingError>;
1108
+ } & Struct;
1109
+ readonly isPostRequestHandled: boolean;
1110
+ readonly asPostRequestHandled: IsmpEventsRequestResponseHandled;
1111
+ readonly isPostResponseHandled: boolean;
1112
+ readonly asPostResponseHandled: IsmpEventsRequestResponseHandled;
1113
+ readonly isGetRequestHandled: boolean;
1114
+ readonly asGetRequestHandled: IsmpEventsRequestResponseHandled;
1115
+ readonly isPostRequestTimeoutHandled: boolean;
1116
+ readonly asPostRequestTimeoutHandled: IsmpEventsTimeoutHandled;
1117
+ readonly isPostResponseTimeoutHandled: boolean;
1118
+ readonly asPostResponseTimeoutHandled: IsmpEventsTimeoutHandled;
1119
+ readonly isGetRequestTimeoutHandled: boolean;
1120
+ readonly asGetRequestTimeoutHandled: IsmpEventsTimeoutHandled;
1121
+ readonly type: 'StateMachineUpdated' | 'StateCommitmentVetoed' | 'ConsensusClientCreated' | 'ConsensusClientFrozen' | 'Response' | 'Request' | 'Errors' | 'PostRequestHandled' | 'PostResponseHandled' | 'GetRequestHandled' | 'PostRequestTimeoutHandled' | 'PostResponseTimeoutHandled' | 'GetRequestTimeoutHandled';
1122
+ }
1123
+ /** @name IsmpConsensusStateMachineId (111) */
1124
+ interface IsmpConsensusStateMachineId extends Struct {
1125
+ readonly stateId: IsmpHostStateMachine;
1126
+ readonly consensusStateId: U8aFixed;
1127
+ }
1128
+ /** @name IsmpHostStateMachine (112) */
1129
+ interface IsmpHostStateMachine extends Enum {
1130
+ readonly isEvm: boolean;
1131
+ readonly asEvm: u32;
1132
+ readonly isPolkadot: boolean;
1133
+ readonly asPolkadot: u32;
1134
+ readonly isKusama: boolean;
1135
+ readonly asKusama: u32;
1136
+ readonly isSubstrate: boolean;
1137
+ readonly asSubstrate: U8aFixed;
1138
+ readonly isTendermint: boolean;
1139
+ readonly asTendermint: U8aFixed;
1140
+ readonly type: 'Evm' | 'Polkadot' | 'Kusama' | 'Substrate' | 'Tendermint';
1141
+ }
1142
+ /** @name IsmpConsensusStateMachineHeight (113) */
1143
+ interface IsmpConsensusStateMachineHeight extends Struct {
1144
+ readonly id: IsmpConsensusStateMachineId;
1145
+ readonly height: u64;
1146
+ }
1147
+ /** @name PalletIsmpErrorsHandlingError (116) */
1148
+ interface PalletIsmpErrorsHandlingError extends Struct {
1149
+ readonly message: Bytes;
1150
+ }
1151
+ /** @name IsmpEventsRequestResponseHandled (118) */
1152
+ interface IsmpEventsRequestResponseHandled extends Struct {
1153
+ readonly commitment: H256;
1154
+ readonly relayer: Bytes;
1155
+ }
1156
+ /** @name IsmpEventsTimeoutHandled (119) */
1157
+ interface IsmpEventsTimeoutHandled extends Struct {
1158
+ readonly commitment: H256;
1159
+ readonly source: IsmpHostStateMachine;
1160
+ readonly dest: IsmpHostStateMachine;
1161
+ }
1162
+ /** @name IsmpGrandpaEvent (120) */
1163
+ interface IsmpGrandpaEvent extends Enum {
1164
+ readonly isStateMachineAdded: boolean;
1165
+ readonly asStateMachineAdded: {
1166
+ readonly stateMachines: Vec<IsmpHostStateMachine>;
1167
+ } & Struct;
1168
+ readonly isStateMachineRemoved: boolean;
1169
+ readonly asStateMachineRemoved: {
1170
+ readonly stateMachines: Vec<IsmpHostStateMachine>;
1171
+ } & Struct;
1172
+ readonly type: 'StateMachineAdded' | 'StateMachineRemoved';
1173
+ }
1174
+ /** @name PalletHyperbridgeEvent (122) */
1175
+ interface PalletHyperbridgeEvent extends Enum {
1176
+ readonly isHostParamsUpdated: boolean;
1177
+ readonly asHostParamsUpdated: {
1178
+ readonly old: PalletHyperbridgeVersionedHostParams;
1179
+ readonly new_: PalletHyperbridgeVersionedHostParams;
1180
+ } & Struct;
1181
+ readonly isRelayerFeeWithdrawn: boolean;
1182
+ readonly asRelayerFeeWithdrawn: {
1183
+ readonly amount: u128;
1184
+ readonly account: AccountId32;
1185
+ } & Struct;
1186
+ readonly isProtocolRevenueWithdrawn: boolean;
1187
+ readonly asProtocolRevenueWithdrawn: {
1188
+ readonly amount: u128;
1189
+ readonly account: AccountId32;
1190
+ } & Struct;
1191
+ readonly type: 'HostParamsUpdated' | 'RelayerFeeWithdrawn' | 'ProtocolRevenueWithdrawn';
1192
+ }
1193
+ /** @name PalletHyperbridgeVersionedHostParams (123) */
1194
+ interface PalletHyperbridgeVersionedHostParams extends Enum {
1195
+ readonly isV1: boolean;
1196
+ readonly asV1: PalletHyperbridgeSubstrateHostParams;
1197
+ readonly type: 'V1';
1198
+ }
1199
+ /** @name PalletHyperbridgeSubstrateHostParams (124) */
1200
+ interface PalletHyperbridgeSubstrateHostParams extends Struct {
1201
+ readonly defaultPerByteFee: u128;
1202
+ readonly perByteFees: BTreeMap<IsmpHostStateMachine, u128>;
1203
+ readonly assetRegistrationFee: u128;
1204
+ }
1205
+ /** @name PalletTokenGatewayEvent (128) */
1206
+ interface PalletTokenGatewayEvent extends Enum {
1207
+ readonly isAssetTeleported: boolean;
1208
+ readonly asAssetTeleported: {
1209
+ readonly from: AccountId32;
1210
+ readonly to: H256;
1211
+ readonly amount: u128;
1212
+ readonly dest: IsmpHostStateMachine;
1213
+ readonly commitment: H256;
1214
+ } & Struct;
1215
+ readonly isAssetReceived: boolean;
1216
+ readonly asAssetReceived: {
1217
+ readonly beneficiary: AccountId32;
1218
+ readonly amount: u128;
1219
+ readonly source: IsmpHostStateMachine;
1220
+ } & Struct;
1221
+ readonly isAssetRefunded: boolean;
1222
+ readonly asAssetRefunded: {
1223
+ readonly beneficiary: AccountId32;
1224
+ readonly amount: u128;
1225
+ readonly source: IsmpHostStateMachine;
1226
+ } & Struct;
1227
+ readonly isErc6160AssetRegistrationDispatched: boolean;
1228
+ readonly asErc6160AssetRegistrationDispatched: {
1229
+ readonly commitment: H256;
1230
+ } & Struct;
1231
+ readonly type: 'AssetTeleported' | 'AssetReceived' | 'AssetRefunded' | 'Erc6160AssetRegistrationDispatched';
1232
+ }
1233
+ /** @name FrameSystemPhase (129) */
1062
1234
  interface FrameSystemPhase extends Enum {
1063
1235
  readonly isApplyExtrinsic: boolean;
1064
1236
  readonly asApplyExtrinsic: u32;
@@ -1066,17 +1238,17 @@ declare module '@polkadot/types/lookup' {
1066
1238
  readonly isInitialization: boolean;
1067
1239
  readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
1068
1240
  }
1069
- /** @name FrameSystemLastRuntimeUpgradeInfo (113) */
1241
+ /** @name FrameSystemLastRuntimeUpgradeInfo (133) */
1070
1242
  interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
1071
1243
  readonly specVersion: Compact<u32>;
1072
1244
  readonly specName: Text;
1073
1245
  }
1074
- /** @name FrameSystemCodeUpgradeAuthorization (114) */
1246
+ /** @name FrameSystemCodeUpgradeAuthorization (134) */
1075
1247
  interface FrameSystemCodeUpgradeAuthorization extends Struct {
1076
1248
  readonly codeHash: H256;
1077
1249
  readonly checkVersion: bool;
1078
1250
  }
1079
- /** @name FrameSystemCall (115) */
1251
+ /** @name FrameSystemCall (135) */
1080
1252
  interface FrameSystemCall extends Enum {
1081
1253
  readonly isRemark: boolean;
1082
1254
  readonly asRemark: {
@@ -1125,41 +1297,41 @@ declare module '@polkadot/types/lookup' {
1125
1297
  } & Struct;
1126
1298
  readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent' | 'AuthorizeUpgrade' | 'AuthorizeUpgradeWithoutChecks' | 'ApplyAuthorizedUpgrade';
1127
1299
  }
1128
- /** @name FrameSystemLimitsBlockWeights (119) */
1300
+ /** @name FrameSystemLimitsBlockWeights (139) */
1129
1301
  interface FrameSystemLimitsBlockWeights extends Struct {
1130
1302
  readonly baseBlock: SpWeightsWeightV2Weight;
1131
1303
  readonly maxBlock: SpWeightsWeightV2Weight;
1132
1304
  readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
1133
1305
  }
1134
- /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (120) */
1306
+ /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (140) */
1135
1307
  interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
1136
1308
  readonly normal: FrameSystemLimitsWeightsPerClass;
1137
1309
  readonly operational: FrameSystemLimitsWeightsPerClass;
1138
1310
  readonly mandatory: FrameSystemLimitsWeightsPerClass;
1139
1311
  }
1140
- /** @name FrameSystemLimitsWeightsPerClass (121) */
1312
+ /** @name FrameSystemLimitsWeightsPerClass (141) */
1141
1313
  interface FrameSystemLimitsWeightsPerClass extends Struct {
1142
1314
  readonly baseExtrinsic: SpWeightsWeightV2Weight;
1143
1315
  readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
1144
1316
  readonly maxTotal: Option<SpWeightsWeightV2Weight>;
1145
1317
  readonly reserved: Option<SpWeightsWeightV2Weight>;
1146
1318
  }
1147
- /** @name FrameSystemLimitsBlockLength (123) */
1319
+ /** @name FrameSystemLimitsBlockLength (143) */
1148
1320
  interface FrameSystemLimitsBlockLength extends Struct {
1149
1321
  readonly max: FrameSupportDispatchPerDispatchClassU32;
1150
1322
  }
1151
- /** @name FrameSupportDispatchPerDispatchClassU32 (124) */
1323
+ /** @name FrameSupportDispatchPerDispatchClassU32 (144) */
1152
1324
  interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
1153
1325
  readonly normal: u32;
1154
1326
  readonly operational: u32;
1155
1327
  readonly mandatory: u32;
1156
1328
  }
1157
- /** @name SpWeightsRuntimeDbWeight (125) */
1329
+ /** @name SpWeightsRuntimeDbWeight (145) */
1158
1330
  interface SpWeightsRuntimeDbWeight extends Struct {
1159
1331
  readonly read: u64;
1160
1332
  readonly write: u64;
1161
1333
  }
1162
- /** @name SpVersionRuntimeVersion (126) */
1334
+ /** @name SpVersionRuntimeVersion (146) */
1163
1335
  interface SpVersionRuntimeVersion extends Struct {
1164
1336
  readonly specName: Text;
1165
1337
  readonly implName: Text;
@@ -1170,7 +1342,7 @@ declare module '@polkadot/types/lookup' {
1170
1342
  readonly transactionVersion: u32;
1171
1343
  readonly stateVersion: u8;
1172
1344
  }
1173
- /** @name FrameSystemError (131) */
1345
+ /** @name FrameSystemError (151) */
1174
1346
  interface FrameSystemError extends Enum {
1175
1347
  readonly isInvalidSpecName: boolean;
1176
1348
  readonly isSpecVersionNeedsToIncrease: boolean;
@@ -1183,7 +1355,61 @@ declare module '@polkadot/types/lookup' {
1183
1355
  readonly isUnauthorized: boolean;
1184
1356
  readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered' | 'MultiBlockMigrationsOngoing' | 'NothingAuthorized' | 'Unauthorized';
1185
1357
  }
1186
- /** @name PalletTimestampCall (132) */
1358
+ /** @name ArgonPrimitivesDigestsDigestset (152) */
1359
+ interface ArgonPrimitivesDigestsDigestset extends Struct {
1360
+ readonly author: AccountId32;
1361
+ readonly blockVote: ArgonPrimitivesDigestsBlockVoteDigest;
1362
+ readonly votingKey: Option<ArgonPrimitivesDigestsParentVotingKeyDigest>;
1363
+ readonly forkPower: Option<ArgonPrimitivesForkPower>;
1364
+ readonly tick: u64;
1365
+ readonly notebooks: ArgonPrimitivesDigestsNotebookDigest;
1366
+ }
1367
+ /** @name ArgonPrimitivesDigestsBlockVoteDigest (153) */
1368
+ interface ArgonPrimitivesDigestsBlockVoteDigest extends Struct {
1369
+ readonly votingPower: Compact<u128>;
1370
+ readonly votesCount: Compact<u32>;
1371
+ }
1372
+ /** @name ArgonPrimitivesDigestsParentVotingKeyDigest (155) */
1373
+ interface ArgonPrimitivesDigestsParentVotingKeyDigest extends Struct {
1374
+ readonly parentVotingKey: Option<H256>;
1375
+ }
1376
+ /** @name ArgonPrimitivesForkPower (158) */
1377
+ interface ArgonPrimitivesForkPower extends Struct {
1378
+ readonly isLatestVote: bool;
1379
+ readonly notebooks: Compact<u64>;
1380
+ readonly votingPower: U256;
1381
+ readonly sealStrength: U256;
1382
+ readonly totalComputeDifficulty: U256;
1383
+ readonly voteCreatedBlocks: Compact<u128>;
1384
+ }
1385
+ /** @name ArgonPrimitivesDigestsNotebookDigest (162) */
1386
+ interface ArgonPrimitivesDigestsNotebookDigest extends Struct {
1387
+ readonly notebooks: Vec<ArgonPrimitivesNotebookNotebookAuditResult>;
1388
+ }
1389
+ /** @name ArgonPrimitivesNotebookNotebookAuditResult (164) */
1390
+ interface ArgonPrimitivesNotebookNotebookAuditResult extends Struct {
1391
+ readonly notaryId: Compact<u32>;
1392
+ readonly notebookNumber: Compact<u32>;
1393
+ readonly tick: Compact<u64>;
1394
+ readonly auditFirstFailure: Option<ArgonNotaryAuditErrorVerifyError>;
1395
+ }
1396
+ /** @name PalletDigestsError (166) */
1397
+ interface PalletDigestsError extends Enum {
1398
+ readonly isDuplicateBlockVoteDigest: boolean;
1399
+ readonly isDuplicateAuthorDigest: boolean;
1400
+ readonly isDuplicateTickDigest: boolean;
1401
+ readonly isDuplicateParentVotingKeyDigest: boolean;
1402
+ readonly isDuplicateNotebookDigest: boolean;
1403
+ readonly isDuplicateForkPowerDigest: boolean;
1404
+ readonly isMissingBlockVoteDigest: boolean;
1405
+ readonly isMissingAuthorDigest: boolean;
1406
+ readonly isMissingTickDigest: boolean;
1407
+ readonly isMissingParentVotingKeyDigest: boolean;
1408
+ readonly isMissingNotebookDigest: boolean;
1409
+ readonly isCouldNotDecodeDigest: boolean;
1410
+ readonly type: 'DuplicateBlockVoteDigest' | 'DuplicateAuthorDigest' | 'DuplicateTickDigest' | 'DuplicateParentVotingKeyDigest' | 'DuplicateNotebookDigest' | 'DuplicateForkPowerDigest' | 'MissingBlockVoteDigest' | 'MissingAuthorDigest' | 'MissingTickDigest' | 'MissingParentVotingKeyDigest' | 'MissingNotebookDigest' | 'CouldNotDecodeDigest';
1411
+ }
1412
+ /** @name PalletTimestampCall (167) */
1187
1413
  interface PalletTimestampCall extends Enum {
1188
1414
  readonly isSet: boolean;
1189
1415
  readonly asSet: {
@@ -1191,14 +1417,14 @@ declare module '@polkadot/types/lookup' {
1191
1417
  } & Struct;
1192
1418
  readonly type: 'Set';
1193
1419
  }
1194
- /** @name PalletMultisigMultisig (134) */
1420
+ /** @name PalletMultisigMultisig (169) */
1195
1421
  interface PalletMultisigMultisig extends Struct {
1196
1422
  readonly when: PalletMultisigTimepoint;
1197
1423
  readonly deposit: u128;
1198
1424
  readonly depositor: AccountId32;
1199
1425
  readonly approvals: Vec<AccountId32>;
1200
1426
  }
1201
- /** @name PalletMultisigCall (137) */
1427
+ /** @name PalletMultisigCall (172) */
1202
1428
  interface PalletMultisigCall extends Enum {
1203
1429
  readonly isAsMultiThreshold1: boolean;
1204
1430
  readonly asAsMultiThreshold1: {
@@ -1230,37 +1456,37 @@ declare module '@polkadot/types/lookup' {
1230
1456
  } & Struct;
1231
1457
  readonly type: 'AsMultiThreshold1' | 'AsMulti' | 'ApproveAsMulti' | 'CancelAsMulti';
1232
1458
  }
1233
- /** @name PalletProxyCall (139) */
1459
+ /** @name PalletProxyCall (174) */
1234
1460
  interface PalletProxyCall extends Enum {
1235
1461
  readonly isProxy: boolean;
1236
1462
  readonly asProxy: {
1237
1463
  readonly real: MultiAddress;
1238
- readonly forceProxyType: Option<ArgonNodeRuntimeProxyType>;
1464
+ readonly forceProxyType: Option<ArgonRuntimeConfigsProxyType>;
1239
1465
  readonly call: Call;
1240
1466
  } & Struct;
1241
1467
  readonly isAddProxy: boolean;
1242
1468
  readonly asAddProxy: {
1243
1469
  readonly delegate: MultiAddress;
1244
- readonly proxyType: ArgonNodeRuntimeProxyType;
1470
+ readonly proxyType: ArgonRuntimeConfigsProxyType;
1245
1471
  readonly delay: u32;
1246
1472
  } & Struct;
1247
1473
  readonly isRemoveProxy: boolean;
1248
1474
  readonly asRemoveProxy: {
1249
1475
  readonly delegate: MultiAddress;
1250
- readonly proxyType: ArgonNodeRuntimeProxyType;
1476
+ readonly proxyType: ArgonRuntimeConfigsProxyType;
1251
1477
  readonly delay: u32;
1252
1478
  } & Struct;
1253
1479
  readonly isRemoveProxies: boolean;
1254
1480
  readonly isCreatePure: boolean;
1255
1481
  readonly asCreatePure: {
1256
- readonly proxyType: ArgonNodeRuntimeProxyType;
1482
+ readonly proxyType: ArgonRuntimeConfigsProxyType;
1257
1483
  readonly delay: u32;
1258
1484
  readonly index: u16;
1259
1485
  } & Struct;
1260
1486
  readonly isKillPure: boolean;
1261
1487
  readonly asKillPure: {
1262
1488
  readonly spawner: MultiAddress;
1263
- readonly proxyType: ArgonNodeRuntimeProxyType;
1489
+ readonly proxyType: ArgonRuntimeConfigsProxyType;
1264
1490
  readonly index: u16;
1265
1491
  readonly height: Compact<u32>;
1266
1492
  readonly extIndex: Compact<u32>;
@@ -1284,29 +1510,29 @@ declare module '@polkadot/types/lookup' {
1284
1510
  readonly asProxyAnnounced: {
1285
1511
  readonly delegate: MultiAddress;
1286
1512
  readonly real: MultiAddress;
1287
- readonly forceProxyType: Option<ArgonNodeRuntimeProxyType>;
1513
+ readonly forceProxyType: Option<ArgonRuntimeConfigsProxyType>;
1288
1514
  readonly call: Call;
1289
1515
  } & Struct;
1290
1516
  readonly type: 'Proxy' | 'AddProxy' | 'RemoveProxy' | 'RemoveProxies' | 'CreatePure' | 'KillPure' | 'Announce' | 'RemoveAnnouncement' | 'RejectAnnouncement' | 'ProxyAnnounced';
1291
1517
  }
1292
- /** @name PalletTicksCall (144) */
1518
+ /** @name PalletTicksCall (179) */
1293
1519
  type PalletTicksCall = Null;
1294
- /** @name PalletMiningSlotCall (145) */
1520
+ /** @name PalletMiningSlotCall (180) */
1295
1521
  interface PalletMiningSlotCall extends Enum {
1296
1522
  readonly isBid: boolean;
1297
1523
  readonly asBid: {
1298
1524
  readonly bondInfo: Option<PalletMiningSlotMiningSlotBid>;
1299
1525
  readonly rewardDestination: ArgonPrimitivesBlockSealRewardDestination;
1300
- readonly keys_: ArgonNodeRuntimeOpaqueSessionKeys;
1526
+ readonly keys_: ArgonRuntimeSessionKeys;
1301
1527
  } & Struct;
1302
1528
  readonly type: 'Bid';
1303
1529
  }
1304
- /** @name PalletMiningSlotMiningSlotBid (147) */
1530
+ /** @name PalletMiningSlotMiningSlotBid (182) */
1305
1531
  interface PalletMiningSlotMiningSlotBid extends Struct {
1306
1532
  readonly vaultId: u32;
1307
1533
  readonly amount: u128;
1308
1534
  }
1309
- /** @name PalletBitcoinUtxosCall (148) */
1535
+ /** @name PalletBitcoinUtxosCall (183) */
1310
1536
  interface PalletBitcoinUtxosCall extends Enum {
1311
1537
  readonly isSync: boolean;
1312
1538
  readonly asSync: {
@@ -1323,19 +1549,19 @@ declare module '@polkadot/types/lookup' {
1323
1549
  } & Struct;
1324
1550
  readonly type: 'Sync' | 'SetConfirmedBlock' | 'SetOperator';
1325
1551
  }
1326
- /** @name ArgonPrimitivesInherentsBitcoinUtxoSync (149) */
1552
+ /** @name ArgonPrimitivesInherentsBitcoinUtxoSync (184) */
1327
1553
  interface ArgonPrimitivesInherentsBitcoinUtxoSync extends Struct {
1328
1554
  readonly spent: BTreeMap<u64, u64>;
1329
1555
  readonly verified: BTreeMap<u64, ArgonPrimitivesBitcoinUtxoRef>;
1330
1556
  readonly invalid: BTreeMap<u64, ArgonPrimitivesBitcoinBitcoinRejectedReason>;
1331
1557
  readonly syncToBlock: ArgonPrimitivesBitcoinBitcoinBlock;
1332
1558
  }
1333
- /** @name ArgonPrimitivesBitcoinBitcoinBlock (159) */
1559
+ /** @name ArgonPrimitivesBitcoinBitcoinBlock (194) */
1334
1560
  interface ArgonPrimitivesBitcoinBitcoinBlock extends Struct {
1335
1561
  readonly blockHeight: Compact<u64>;
1336
1562
  readonly blockHash: ArgonPrimitivesBitcoinH256Le;
1337
1563
  }
1338
- /** @name PalletVaultsCall (160) */
1564
+ /** @name PalletVaultsCall (195) */
1339
1565
  interface PalletVaultsCall extends Enum {
1340
1566
  readonly isCreate: boolean;
1341
1567
  readonly asCreate: {
@@ -1364,7 +1590,7 @@ declare module '@polkadot/types/lookup' {
1364
1590
  } & Struct;
1365
1591
  readonly type: 'Create' | 'ModifyFunding' | 'ModifyTerms' | 'Close' | 'ReplaceBitcoinXpub';
1366
1592
  }
1367
- /** @name PalletVaultsVaultConfig (161) */
1593
+ /** @name PalletVaultsVaultConfig (196) */
1368
1594
  interface PalletVaultsVaultConfig extends Struct {
1369
1595
  readonly terms: ArgonPrimitivesBondVaultTerms;
1370
1596
  readonly bitcoinAmountAllocated: Compact<u128>;
@@ -1372,7 +1598,7 @@ declare module '@polkadot/types/lookup' {
1372
1598
  readonly miningAmountAllocated: Compact<u128>;
1373
1599
  readonly securitizationPercent: Compact<u128>;
1374
1600
  }
1375
- /** @name ArgonPrimitivesBondVaultTerms (162) */
1601
+ /** @name ArgonPrimitivesBondVaultTerms (197) */
1376
1602
  interface ArgonPrimitivesBondVaultTerms extends Struct {
1377
1603
  readonly bitcoinAnnualPercentRate: Compact<u128>;
1378
1604
  readonly bitcoinBaseFee: Compact<u128>;
@@ -1380,10 +1606,10 @@ declare module '@polkadot/types/lookup' {
1380
1606
  readonly miningBaseFee: Compact<u128>;
1381
1607
  readonly miningRewardSharingPercentTake: Compact<u128>;
1382
1608
  }
1383
- /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (163) */
1609
+ /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (198) */
1384
1610
  interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {
1385
1611
  }
1386
- /** @name PalletBondCall (165) */
1612
+ /** @name PalletBondCall (200) */
1387
1613
  interface PalletBondCall extends Enum {
1388
1614
  readonly isBondBitcoin: boolean;
1389
1615
  readonly asBondBitcoin: {
@@ -1404,10 +1630,10 @@ declare module '@polkadot/types/lookup' {
1404
1630
  } & Struct;
1405
1631
  readonly type: 'BondBitcoin' | 'UnlockBitcoinBond' | 'CosignBitcoinUnlock';
1406
1632
  }
1407
- /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (166) */
1633
+ /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (201) */
1408
1634
  interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {
1409
1635
  }
1410
- /** @name PalletNotariesCall (170) */
1636
+ /** @name PalletNotariesCall (205) */
1411
1637
  interface PalletNotariesCall extends Enum {
1412
1638
  readonly isPropose: boolean;
1413
1639
  readonly asPropose: {
@@ -1421,11 +1647,11 @@ declare module '@polkadot/types/lookup' {
1421
1647
  readonly asUpdate: {
1422
1648
  readonly notaryId: Compact<u32>;
1423
1649
  readonly meta: ArgonPrimitivesNotaryNotaryMeta;
1424
- readonly effectiveTick: Compact<u32>;
1650
+ readonly effectiveTick: Compact<u64>;
1425
1651
  } & Struct;
1426
1652
  readonly type: 'Propose' | 'Activate' | 'Update';
1427
1653
  }
1428
- /** @name PalletNotebookCall (171) */
1654
+ /** @name PalletNotebookCall (206) */
1429
1655
  interface PalletNotebookCall extends Enum {
1430
1656
  readonly isSubmit: boolean;
1431
1657
  readonly asSubmit: {
@@ -1437,16 +1663,16 @@ declare module '@polkadot/types/lookup' {
1437
1663
  } & Struct;
1438
1664
  readonly type: 'Submit' | 'Unlock';
1439
1665
  }
1440
- /** @name ArgonPrimitivesNotebookSignedNotebookHeader (173) */
1666
+ /** @name ArgonPrimitivesNotebookSignedNotebookHeader (208) */
1441
1667
  interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
1442
1668
  readonly header: ArgonPrimitivesNotebookNotebookHeader;
1443
1669
  readonly signature: U8aFixed;
1444
1670
  }
1445
- /** @name ArgonPrimitivesNotebookNotebookHeader (174) */
1671
+ /** @name ArgonPrimitivesNotebookNotebookHeader (209) */
1446
1672
  interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
1447
1673
  readonly version: Compact<u16>;
1448
1674
  readonly notebookNumber: Compact<u32>;
1449
- readonly tick: Compact<u32>;
1675
+ readonly tick: Compact<u64>;
1450
1676
  readonly tax: Compact<u128>;
1451
1677
  readonly notaryId: Compact<u32>;
1452
1678
  readonly chainTransfers: Vec<ArgonPrimitivesNotebookChainTransfer>;
@@ -1460,7 +1686,7 @@ declare module '@polkadot/types/lookup' {
1460
1686
  readonly parentSecret: Option<H256>;
1461
1687
  readonly domains: Vec<ITuple<[H256, AccountId32]>>;
1462
1688
  }
1463
- /** @name ArgonPrimitivesNotebookChainTransfer (177) */
1689
+ /** @name ArgonPrimitivesNotebookChainTransfer (212) */
1464
1690
  interface ArgonPrimitivesNotebookChainTransfer extends Enum {
1465
1691
  readonly isToMainchain: boolean;
1466
1692
  readonly asToMainchain: {
@@ -1473,12 +1699,12 @@ declare module '@polkadot/types/lookup' {
1473
1699
  } & Struct;
1474
1700
  readonly type: 'ToMainchain' | 'ToLocalchain';
1475
1701
  }
1476
- /** @name ArgonPrimitivesBalanceChangeAccountOrigin (180) */
1702
+ /** @name ArgonPrimitivesBalanceChangeAccountOrigin (215) */
1477
1703
  interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
1478
1704
  readonly notebookNumber: Compact<u32>;
1479
1705
  readonly accountUid: Compact<u32>;
1480
1706
  }
1481
- /** @name PalletChainTransferCall (188) */
1707
+ /** @name PalletChainTransferCall (222) */
1482
1708
  interface PalletChainTransferCall extends Enum {
1483
1709
  readonly isSendToLocalchain: boolean;
1484
1710
  readonly asSendToLocalchain: {
@@ -1487,7 +1713,7 @@ declare module '@polkadot/types/lookup' {
1487
1713
  } & Struct;
1488
1714
  readonly type: 'SendToLocalchain';
1489
1715
  }
1490
- /** @name PalletBlockSealSpecCall (189) */
1716
+ /** @name PalletBlockSealSpecCall (223) */
1491
1717
  interface PalletBlockSealSpecCall extends Enum {
1492
1718
  readonly isConfigure: boolean;
1493
1719
  readonly asConfigure: {
@@ -1496,7 +1722,7 @@ declare module '@polkadot/types/lookup' {
1496
1722
  } & Struct;
1497
1723
  readonly type: 'Configure';
1498
1724
  }
1499
- /** @name PalletDomainsCall (190) */
1725
+ /** @name PalletDomainsCall (224) */
1500
1726
  interface PalletDomainsCall extends Enum {
1501
1727
  readonly isSetZoneRecord: boolean;
1502
1728
  readonly asSetZoneRecord: {
@@ -1505,7 +1731,7 @@ declare module '@polkadot/types/lookup' {
1505
1731
  } & Struct;
1506
1732
  readonly type: 'SetZoneRecord';
1507
1733
  }
1508
- /** @name PalletPriceIndexCall (191) */
1734
+ /** @name PalletPriceIndexCall (225) */
1509
1735
  interface PalletPriceIndexCall extends Enum {
1510
1736
  readonly isSubmit: boolean;
1511
1737
  readonly asSubmit: {
@@ -1517,67 +1743,14 @@ declare module '@polkadot/types/lookup' {
1517
1743
  } & Struct;
1518
1744
  readonly type: 'Submit' | 'SetOperator';
1519
1745
  }
1520
- /** @name PalletPriceIndexPriceIndex (192) */
1746
+ /** @name PalletPriceIndexPriceIndex (226) */
1521
1747
  interface PalletPriceIndexPriceIndex extends Struct {
1522
1748
  readonly btcUsdPrice: Compact<u128>;
1523
1749
  readonly argonUsdPrice: Compact<u128>;
1524
1750
  readonly argonUsdTargetPrice: u128;
1525
- readonly tick: Compact<u32>;
1526
- }
1527
- /** @name PalletBlockSealCall (193) */
1528
- interface PalletBlockSealCall extends Enum {
1529
- readonly isApply: boolean;
1530
- readonly asApply: {
1531
- readonly seal: ArgonPrimitivesInherentsBlockSealInherent;
1532
- } & Struct;
1533
- readonly type: 'Apply';
1534
- }
1535
- /** @name ArgonPrimitivesInherentsBlockSealInherent (194) */
1536
- interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
1537
- readonly isVote: boolean;
1538
- readonly asVote: {
1539
- readonly sealStrength: U256;
1540
- readonly notaryId: Compact<u32>;
1541
- readonly sourceNotebookNumber: Compact<u32>;
1542
- readonly sourceNotebookProof: ArgonPrimitivesBalanceChangeMerkleProof;
1543
- readonly blockVote: ArgonPrimitivesBlockVoteBlockVoteT;
1544
- readonly minerSignature: ArgonPrimitivesBlockSealAppSignature;
1545
- } & Struct;
1546
- readonly isCompute: boolean;
1547
- readonly type: 'Vote' | 'Compute';
1548
- }
1549
- /** @name ArgonPrimitivesBalanceChangeMerkleProof (197) */
1550
- interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
1551
- readonly proof: Vec<H256>;
1552
- readonly numberOfLeaves: Compact<u32>;
1553
- readonly leafIndex: Compact<u32>;
1751
+ readonly tick: Compact<u64>;
1554
1752
  }
1555
- /** @name ArgonPrimitivesBlockVoteBlockVoteT (199) */
1556
- interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
1557
- readonly accountId: AccountId32;
1558
- readonly blockHash: H256;
1559
- readonly index: Compact<u32>;
1560
- readonly power: Compact<u128>;
1561
- readonly signature: SpRuntimeMultiSignature;
1562
- readonly blockRewardsAccountId: AccountId32;
1563
- readonly tick: Compact<u32>;
1564
- }
1565
- /** @name SpRuntimeMultiSignature (200) */
1566
- interface SpRuntimeMultiSignature extends Enum {
1567
- readonly isEd25519: boolean;
1568
- readonly asEd25519: U8aFixed;
1569
- readonly isSr25519: boolean;
1570
- readonly asSr25519: U8aFixed;
1571
- readonly isEcdsa: boolean;
1572
- readonly asEcdsa: U8aFixed;
1573
- readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
1574
- }
1575
- /** @name ArgonPrimitivesBlockSealAppSignature (202) */
1576
- interface ArgonPrimitivesBlockSealAppSignature extends U8aFixed {
1577
- }
1578
- /** @name PalletBlockRewardsCall (203) */
1579
- type PalletBlockRewardsCall = Null;
1580
- /** @name PalletGrandpaCall (204) */
1753
+ /** @name PalletGrandpaCall (227) */
1581
1754
  interface PalletGrandpaCall extends Enum {
1582
1755
  readonly isReportEquivocation: boolean;
1583
1756
  readonly asReportEquivocation: {
@@ -1596,12 +1769,12 @@ declare module '@polkadot/types/lookup' {
1596
1769
  } & Struct;
1597
1770
  readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
1598
1771
  }
1599
- /** @name SpConsensusGrandpaEquivocationProof (205) */
1772
+ /** @name SpConsensusGrandpaEquivocationProof (228) */
1600
1773
  interface SpConsensusGrandpaEquivocationProof extends Struct {
1601
1774
  readonly setId: u64;
1602
1775
  readonly equivocation: SpConsensusGrandpaEquivocation;
1603
1776
  }
1604
- /** @name SpConsensusGrandpaEquivocation (206) */
1777
+ /** @name SpConsensusGrandpaEquivocation (229) */
1605
1778
  interface SpConsensusGrandpaEquivocation extends Enum {
1606
1779
  readonly isPrevote: boolean;
1607
1780
  readonly asPrevote: FinalityGrandpaEquivocationPrevote;
@@ -1609,38 +1782,87 @@ declare module '@polkadot/types/lookup' {
1609
1782
  readonly asPrecommit: FinalityGrandpaEquivocationPrecommit;
1610
1783
  readonly type: 'Prevote' | 'Precommit';
1611
1784
  }
1612
- /** @name FinalityGrandpaEquivocationPrevote (207) */
1785
+ /** @name FinalityGrandpaEquivocationPrevote (230) */
1613
1786
  interface FinalityGrandpaEquivocationPrevote extends Struct {
1614
1787
  readonly roundNumber: u64;
1615
1788
  readonly identity: SpConsensusGrandpaAppPublic;
1616
1789
  readonly first: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
1617
1790
  readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
1618
1791
  }
1619
- /** @name FinalityGrandpaPrevote (208) */
1792
+ /** @name FinalityGrandpaPrevote (231) */
1620
1793
  interface FinalityGrandpaPrevote extends Struct {
1621
1794
  readonly targetHash: H256;
1622
1795
  readonly targetNumber: u32;
1623
1796
  }
1624
- /** @name SpConsensusGrandpaAppSignature (209) */
1797
+ /** @name SpConsensusGrandpaAppSignature (232) */
1625
1798
  interface SpConsensusGrandpaAppSignature extends U8aFixed {
1626
1799
  }
1627
- /** @name FinalityGrandpaEquivocationPrecommit (211) */
1800
+ /** @name FinalityGrandpaEquivocationPrecommit (234) */
1628
1801
  interface FinalityGrandpaEquivocationPrecommit extends Struct {
1629
1802
  readonly roundNumber: u64;
1630
1803
  readonly identity: SpConsensusGrandpaAppPublic;
1631
1804
  readonly first: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
1632
1805
  readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
1633
1806
  }
1634
- /** @name FinalityGrandpaPrecommit (212) */
1807
+ /** @name FinalityGrandpaPrecommit (235) */
1635
1808
  interface FinalityGrandpaPrecommit extends Struct {
1636
1809
  readonly targetHash: H256;
1637
1810
  readonly targetNumber: u32;
1638
1811
  }
1639
- /** @name SpCoreVoid (214) */
1812
+ /** @name SpCoreVoid (237) */
1640
1813
  type SpCoreVoid = Null;
1641
- /** @name PalletMintCall (215) */
1814
+ /** @name PalletBlockSealCall (238) */
1815
+ interface PalletBlockSealCall extends Enum {
1816
+ readonly isApply: boolean;
1817
+ readonly asApply: {
1818
+ readonly seal: ArgonPrimitivesInherentsBlockSealInherent;
1819
+ } & Struct;
1820
+ readonly type: 'Apply';
1821
+ }
1822
+ /** @name ArgonPrimitivesInherentsBlockSealInherent (239) */
1823
+ interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
1824
+ readonly isVote: boolean;
1825
+ readonly asVote: {
1826
+ readonly sealStrength: U256;
1827
+ readonly notaryId: Compact<u32>;
1828
+ readonly sourceNotebookNumber: Compact<u32>;
1829
+ readonly sourceNotebookProof: ArgonPrimitivesBalanceChangeMerkleProof;
1830
+ readonly blockVote: ArgonPrimitivesBlockVoteBlockVoteT;
1831
+ } & Struct;
1832
+ readonly isCompute: boolean;
1833
+ readonly type: 'Vote' | 'Compute';
1834
+ }
1835
+ /** @name ArgonPrimitivesBalanceChangeMerkleProof (240) */
1836
+ interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
1837
+ readonly proof: Vec<H256>;
1838
+ readonly numberOfLeaves: Compact<u32>;
1839
+ readonly leafIndex: Compact<u32>;
1840
+ }
1841
+ /** @name ArgonPrimitivesBlockVoteBlockVoteT (242) */
1842
+ interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
1843
+ readonly accountId: AccountId32;
1844
+ readonly blockHash: H256;
1845
+ readonly index: Compact<u32>;
1846
+ readonly power: Compact<u128>;
1847
+ readonly signature: SpRuntimeMultiSignature;
1848
+ readonly blockRewardsAccountId: AccountId32;
1849
+ readonly tick: Compact<u64>;
1850
+ }
1851
+ /** @name SpRuntimeMultiSignature (243) */
1852
+ interface SpRuntimeMultiSignature extends Enum {
1853
+ readonly isEd25519: boolean;
1854
+ readonly asEd25519: U8aFixed;
1855
+ readonly isSr25519: boolean;
1856
+ readonly asSr25519: U8aFixed;
1857
+ readonly isEcdsa: boolean;
1858
+ readonly asEcdsa: U8aFixed;
1859
+ readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
1860
+ }
1861
+ /** @name PalletBlockRewardsCall (245) */
1862
+ type PalletBlockRewardsCall = Null;
1863
+ /** @name PalletMintCall (246) */
1642
1864
  type PalletMintCall = Null;
1643
- /** @name PalletBalancesCall (216) */
1865
+ /** @name PalletBalancesCall (247) */
1644
1866
  interface PalletBalancesCall extends Enum {
1645
1867
  readonly isTransferAllowDeath: boolean;
1646
1868
  readonly asTransferAllowDeath: {
@@ -1689,13 +1911,13 @@ declare module '@polkadot/types/lookup' {
1689
1911
  } & Struct;
1690
1912
  readonly type: 'TransferAllowDeath' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'ForceSetBalance' | 'ForceAdjustTotalIssuance' | 'Burn';
1691
1913
  }
1692
- /** @name PalletBalancesAdjustmentDirection (217) */
1914
+ /** @name PalletBalancesAdjustmentDirection (248) */
1693
1915
  interface PalletBalancesAdjustmentDirection extends Enum {
1694
1916
  readonly isIncrease: boolean;
1695
1917
  readonly isDecrease: boolean;
1696
1918
  readonly type: 'Increase' | 'Decrease';
1697
1919
  }
1698
- /** @name PalletTxPauseCall (219) */
1920
+ /** @name PalletTxPauseCall (250) */
1699
1921
  interface PalletTxPauseCall extends Enum {
1700
1922
  readonly isPause: boolean;
1701
1923
  readonly asPause: {
@@ -1707,7 +1929,7 @@ declare module '@polkadot/types/lookup' {
1707
1929
  } & Struct;
1708
1930
  readonly type: 'Pause' | 'Unpause';
1709
1931
  }
1710
- /** @name PalletUtilityCall (220) */
1932
+ /** @name PalletUtilityCall (251) */
1711
1933
  interface PalletUtilityCall extends Enum {
1712
1934
  readonly isBatch: boolean;
1713
1935
  readonly asBatch: {
@@ -1724,7 +1946,7 @@ declare module '@polkadot/types/lookup' {
1724
1946
  } & Struct;
1725
1947
  readonly isDispatchAs: boolean;
1726
1948
  readonly asDispatchAs: {
1727
- readonly asOrigin: ArgonNodeRuntimeOriginCaller;
1949
+ readonly asOrigin: ArgonRuntimeOriginCaller;
1728
1950
  readonly call: Call;
1729
1951
  } & Struct;
1730
1952
  readonly isForceBatch: boolean;
@@ -1738,14 +1960,14 @@ declare module '@polkadot/types/lookup' {
1738
1960
  } & Struct;
1739
1961
  readonly type: 'Batch' | 'AsDerivative' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight';
1740
1962
  }
1741
- /** @name ArgonNodeRuntimeOriginCaller (222) */
1742
- interface ArgonNodeRuntimeOriginCaller extends Enum {
1963
+ /** @name ArgonRuntimeOriginCaller (253) */
1964
+ interface ArgonRuntimeOriginCaller extends Enum {
1743
1965
  readonly isSystem: boolean;
1744
1966
  readonly asSystem: FrameSupportDispatchRawOrigin;
1745
1967
  readonly isVoid: boolean;
1746
1968
  readonly type: 'System' | 'Void';
1747
1969
  }
1748
- /** @name FrameSupportDispatchRawOrigin (223) */
1970
+ /** @name FrameSupportDispatchRawOrigin (254) */
1749
1971
  interface FrameSupportDispatchRawOrigin extends Enum {
1750
1972
  readonly isRoot: boolean;
1751
1973
  readonly isSigned: boolean;
@@ -1753,7 +1975,7 @@ declare module '@polkadot/types/lookup' {
1753
1975
  readonly isNone: boolean;
1754
1976
  readonly type: 'Root' | 'Signed' | 'None';
1755
1977
  }
1756
- /** @name PalletSudoCall (224) */
1978
+ /** @name PalletSudoCall (255) */
1757
1979
  interface PalletSudoCall extends Enum {
1758
1980
  readonly isSudo: boolean;
1759
1981
  readonly asSudo: {
@@ -1776,7 +1998,254 @@ declare module '@polkadot/types/lookup' {
1776
1998
  readonly isRemoveKey: boolean;
1777
1999
  readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
1778
2000
  }
1779
- /** @name PalletMultisigError (226) */
2001
+ /** @name PalletIsmpCall (256) */
2002
+ interface PalletIsmpCall extends Enum {
2003
+ readonly isHandleUnsigned: boolean;
2004
+ readonly asHandleUnsigned: {
2005
+ readonly messages: Vec<IsmpMessagingMessage>;
2006
+ } & Struct;
2007
+ readonly isCreateConsensusClient: boolean;
2008
+ readonly asCreateConsensusClient: {
2009
+ readonly message: IsmpMessagingCreateConsensusState;
2010
+ } & Struct;
2011
+ readonly isUpdateConsensusState: boolean;
2012
+ readonly asUpdateConsensusState: {
2013
+ readonly message: PalletIsmpUtilsUpdateConsensusState;
2014
+ } & Struct;
2015
+ readonly isFundMessage: boolean;
2016
+ readonly asFundMessage: {
2017
+ readonly message: PalletIsmpUtilsFundMessageParams;
2018
+ } & Struct;
2019
+ readonly type: 'HandleUnsigned' | 'CreateConsensusClient' | 'UpdateConsensusState' | 'FundMessage';
2020
+ }
2021
+ /** @name IsmpMessagingMessage (258) */
2022
+ interface IsmpMessagingMessage extends Enum {
2023
+ readonly isConsensus: boolean;
2024
+ readonly asConsensus: IsmpMessagingConsensusMessage;
2025
+ readonly isFraudProof: boolean;
2026
+ readonly asFraudProof: IsmpMessagingFraudProofMessage;
2027
+ readonly isRequest: boolean;
2028
+ readonly asRequest: IsmpMessagingRequestMessage;
2029
+ readonly isResponse: boolean;
2030
+ readonly asResponse: IsmpMessagingResponseMessage;
2031
+ readonly isTimeout: boolean;
2032
+ readonly asTimeout: IsmpMessagingTimeoutMessage;
2033
+ readonly type: 'Consensus' | 'FraudProof' | 'Request' | 'Response' | 'Timeout';
2034
+ }
2035
+ /** @name IsmpMessagingConsensusMessage (259) */
2036
+ interface IsmpMessagingConsensusMessage extends Struct {
2037
+ readonly consensusProof: Bytes;
2038
+ readonly consensusStateId: U8aFixed;
2039
+ readonly signer: Bytes;
2040
+ }
2041
+ /** @name IsmpMessagingFraudProofMessage (260) */
2042
+ interface IsmpMessagingFraudProofMessage extends Struct {
2043
+ readonly proof1: Bytes;
2044
+ readonly proof2: Bytes;
2045
+ readonly consensusStateId: U8aFixed;
2046
+ }
2047
+ /** @name IsmpMessagingRequestMessage (261) */
2048
+ interface IsmpMessagingRequestMessage extends Struct {
2049
+ readonly requests: Vec<IsmpRouterPostRequest>;
2050
+ readonly proof: IsmpMessagingProof;
2051
+ readonly signer: Bytes;
2052
+ }
2053
+ /** @name IsmpRouterPostRequest (263) */
2054
+ interface IsmpRouterPostRequest extends Struct {
2055
+ readonly source: IsmpHostStateMachine;
2056
+ readonly dest: IsmpHostStateMachine;
2057
+ readonly nonce: u64;
2058
+ readonly from: Bytes;
2059
+ readonly to: Bytes;
2060
+ readonly timeoutTimestamp: u64;
2061
+ readonly body: Bytes;
2062
+ }
2063
+ /** @name IsmpMessagingProof (264) */
2064
+ interface IsmpMessagingProof extends Struct {
2065
+ readonly height: IsmpConsensusStateMachineHeight;
2066
+ readonly proof: Bytes;
2067
+ }
2068
+ /** @name IsmpMessagingResponseMessage (265) */
2069
+ interface IsmpMessagingResponseMessage extends Struct {
2070
+ readonly datagram: IsmpRouterRequestResponse;
2071
+ readonly proof: IsmpMessagingProof;
2072
+ readonly signer: Bytes;
2073
+ }
2074
+ /** @name IsmpRouterRequestResponse (266) */
2075
+ interface IsmpRouterRequestResponse extends Enum {
2076
+ readonly isRequest: boolean;
2077
+ readonly asRequest: Vec<IsmpRouterRequest>;
2078
+ readonly isResponse: boolean;
2079
+ readonly asResponse: Vec<IsmpRouterResponse>;
2080
+ readonly type: 'Request' | 'Response';
2081
+ }
2082
+ /** @name IsmpRouterRequest (268) */
2083
+ interface IsmpRouterRequest extends Enum {
2084
+ readonly isPost: boolean;
2085
+ readonly asPost: IsmpRouterPostRequest;
2086
+ readonly isGet: boolean;
2087
+ readonly asGet: IsmpRouterGetRequest;
2088
+ readonly type: 'Post' | 'Get';
2089
+ }
2090
+ /** @name IsmpRouterGetRequest (269) */
2091
+ interface IsmpRouterGetRequest extends Struct {
2092
+ readonly source: IsmpHostStateMachine;
2093
+ readonly dest: IsmpHostStateMachine;
2094
+ readonly nonce: u64;
2095
+ readonly from: Bytes;
2096
+ readonly keys_: Vec<Bytes>;
2097
+ readonly height: u64;
2098
+ readonly context: Bytes;
2099
+ readonly timeoutTimestamp: u64;
2100
+ }
2101
+ /** @name IsmpRouterResponse (271) */
2102
+ interface IsmpRouterResponse extends Enum {
2103
+ readonly isPost: boolean;
2104
+ readonly asPost: IsmpRouterPostResponse;
2105
+ readonly isGet: boolean;
2106
+ readonly asGet: IsmpRouterGetResponse;
2107
+ readonly type: 'Post' | 'Get';
2108
+ }
2109
+ /** @name IsmpRouterPostResponse (272) */
2110
+ interface IsmpRouterPostResponse extends Struct {
2111
+ readonly post: IsmpRouterPostRequest;
2112
+ readonly response: Bytes;
2113
+ readonly timeoutTimestamp: u64;
2114
+ }
2115
+ /** @name IsmpRouterGetResponse (273) */
2116
+ interface IsmpRouterGetResponse extends Struct {
2117
+ readonly get_: IsmpRouterGetRequest;
2118
+ readonly values_: Vec<IsmpRouterStorageValue>;
2119
+ }
2120
+ /** @name IsmpRouterStorageValue (275) */
2121
+ interface IsmpRouterStorageValue extends Struct {
2122
+ readonly key: Bytes;
2123
+ readonly value: Option<Bytes>;
2124
+ }
2125
+ /** @name IsmpMessagingTimeoutMessage (277) */
2126
+ interface IsmpMessagingTimeoutMessage extends Enum {
2127
+ readonly isPost: boolean;
2128
+ readonly asPost: {
2129
+ readonly requests: Vec<IsmpRouterRequest>;
2130
+ readonly timeoutProof: IsmpMessagingProof;
2131
+ } & Struct;
2132
+ readonly isPostResponse: boolean;
2133
+ readonly asPostResponse: {
2134
+ readonly responses: Vec<IsmpRouterPostResponse>;
2135
+ readonly timeoutProof: IsmpMessagingProof;
2136
+ } & Struct;
2137
+ readonly isGet: boolean;
2138
+ readonly asGet: {
2139
+ readonly requests: Vec<IsmpRouterRequest>;
2140
+ } & Struct;
2141
+ readonly type: 'Post' | 'PostResponse' | 'Get';
2142
+ }
2143
+ /** @name IsmpMessagingCreateConsensusState (279) */
2144
+ interface IsmpMessagingCreateConsensusState extends Struct {
2145
+ readonly consensusState: Bytes;
2146
+ readonly consensusClientId: U8aFixed;
2147
+ readonly consensusStateId: U8aFixed;
2148
+ readonly unbondingPeriod: u64;
2149
+ readonly challengePeriods: BTreeMap<IsmpHostStateMachine, u64>;
2150
+ readonly stateMachineCommitments: Vec<ITuple<[IsmpConsensusStateMachineId, IsmpMessagingStateCommitmentHeight]>>;
2151
+ }
2152
+ /** @name IsmpMessagingStateCommitmentHeight (285) */
2153
+ interface IsmpMessagingStateCommitmentHeight extends Struct {
2154
+ readonly commitment: IsmpConsensusStateCommitment;
2155
+ readonly height: u64;
2156
+ }
2157
+ /** @name IsmpConsensusStateCommitment (286) */
2158
+ interface IsmpConsensusStateCommitment extends Struct {
2159
+ readonly timestamp: u64;
2160
+ readonly overlayRoot: Option<H256>;
2161
+ readonly stateRoot: H256;
2162
+ }
2163
+ /** @name PalletIsmpUtilsUpdateConsensusState (287) */
2164
+ interface PalletIsmpUtilsUpdateConsensusState extends Struct {
2165
+ readonly consensusStateId: U8aFixed;
2166
+ readonly unbondingPeriod: Option<u64>;
2167
+ readonly challengePeriods: BTreeMap<IsmpHostStateMachine, u64>;
2168
+ }
2169
+ /** @name PalletIsmpUtilsFundMessageParams (288) */
2170
+ interface PalletIsmpUtilsFundMessageParams extends Struct {
2171
+ readonly commitment: PalletIsmpUtilsMessageCommitment;
2172
+ readonly amount: u128;
2173
+ }
2174
+ /** @name PalletIsmpUtilsMessageCommitment (289) */
2175
+ interface PalletIsmpUtilsMessageCommitment extends Enum {
2176
+ readonly isRequest: boolean;
2177
+ readonly asRequest: H256;
2178
+ readonly isResponse: boolean;
2179
+ readonly asResponse: H256;
2180
+ readonly type: 'Request' | 'Response';
2181
+ }
2182
+ /** @name IsmpGrandpaCall (290) */
2183
+ interface IsmpGrandpaCall extends Enum {
2184
+ readonly isAddStateMachines: boolean;
2185
+ readonly asAddStateMachines: {
2186
+ readonly newStateMachines: Vec<IsmpGrandpaAddStateMachine>;
2187
+ } & Struct;
2188
+ readonly isRemoveStateMachines: boolean;
2189
+ readonly asRemoveStateMachines: {
2190
+ readonly stateMachines: Vec<IsmpHostStateMachine>;
2191
+ } & Struct;
2192
+ readonly type: 'AddStateMachines' | 'RemoveStateMachines';
2193
+ }
2194
+ /** @name IsmpGrandpaAddStateMachine (292) */
2195
+ interface IsmpGrandpaAddStateMachine extends Struct {
2196
+ readonly stateMachine: IsmpHostStateMachine;
2197
+ readonly slotDuration: u64;
2198
+ }
2199
+ /** @name PalletTokenGatewayCall (293) */
2200
+ interface PalletTokenGatewayCall extends Enum {
2201
+ readonly isTeleport: boolean;
2202
+ readonly asTeleport: {
2203
+ readonly params: PalletTokenGatewayTeleportParams;
2204
+ } & Struct;
2205
+ readonly isSetTokenGatewayAddresses: boolean;
2206
+ readonly asSetTokenGatewayAddresses: {
2207
+ readonly addresses: BTreeMap<IsmpHostStateMachine, Bytes>;
2208
+ } & Struct;
2209
+ readonly isCreateErc6160Asset: boolean;
2210
+ readonly asCreateErc6160Asset: {
2211
+ readonly asset: PalletTokenGatewayAssetRegistration;
2212
+ } & Struct;
2213
+ readonly isUpdateErc6160Asset: boolean;
2214
+ readonly asUpdateErc6160Asset: {
2215
+ readonly asset: TokenGatewayPrimitivesGatewayAssetUpdate;
2216
+ } & Struct;
2217
+ readonly type: 'Teleport' | 'SetTokenGatewayAddresses' | 'CreateErc6160Asset' | 'UpdateErc6160Asset';
2218
+ }
2219
+ /** @name PalletTokenGatewayTeleportParams (294) */
2220
+ interface PalletTokenGatewayTeleportParams extends Struct {
2221
+ readonly assetId: u32;
2222
+ readonly destination: IsmpHostStateMachine;
2223
+ readonly recepient: H256;
2224
+ readonly amount: u128;
2225
+ readonly timeout: u64;
2226
+ readonly tokenGateway: Bytes;
2227
+ readonly relayerFee: u128;
2228
+ }
2229
+ /** @name PalletTokenGatewayAssetRegistration (298) */
2230
+ interface PalletTokenGatewayAssetRegistration extends Struct {
2231
+ readonly localId: u32;
2232
+ readonly reg: TokenGatewayPrimitivesGatewayAssetRegistration;
2233
+ }
2234
+ /** @name TokenGatewayPrimitivesGatewayAssetRegistration (299) */
2235
+ interface TokenGatewayPrimitivesGatewayAssetRegistration extends Struct {
2236
+ readonly name: Bytes;
2237
+ readonly symbol: Bytes;
2238
+ readonly chains: Vec<IsmpHostStateMachine>;
2239
+ readonly minimumBalance: Option<u128>;
2240
+ }
2241
+ /** @name TokenGatewayPrimitivesGatewayAssetUpdate (301) */
2242
+ interface TokenGatewayPrimitivesGatewayAssetUpdate extends Struct {
2243
+ readonly assetId: H256;
2244
+ readonly addChains: Vec<IsmpHostStateMachine>;
2245
+ readonly removeChains: Vec<IsmpHostStateMachine>;
2246
+ readonly newAdmins: Vec<ITuple<[IsmpHostStateMachine, H160]>>;
2247
+ }
2248
+ /** @name PalletMultisigError (308) */
1780
2249
  interface PalletMultisigError extends Enum {
1781
2250
  readonly isMinimumThreshold: boolean;
1782
2251
  readonly isAlreadyApproved: boolean;
@@ -1794,19 +2263,19 @@ declare module '@polkadot/types/lookup' {
1794
2263
  readonly isAlreadyStored: boolean;
1795
2264
  readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored';
1796
2265
  }
1797
- /** @name PalletProxyProxyDefinition (229) */
2266
+ /** @name PalletProxyProxyDefinition (311) */
1798
2267
  interface PalletProxyProxyDefinition extends Struct {
1799
2268
  readonly delegate: AccountId32;
1800
- readonly proxyType: ArgonNodeRuntimeProxyType;
2269
+ readonly proxyType: ArgonRuntimeConfigsProxyType;
1801
2270
  readonly delay: u32;
1802
2271
  }
1803
- /** @name PalletProxyAnnouncement (233) */
2272
+ /** @name PalletProxyAnnouncement (315) */
1804
2273
  interface PalletProxyAnnouncement extends Struct {
1805
2274
  readonly real: AccountId32;
1806
2275
  readonly callHash: H256;
1807
2276
  readonly height: u32;
1808
2277
  }
1809
- /** @name PalletProxyError (235) */
2278
+ /** @name PalletProxyError (317) */
1810
2279
  interface PalletProxyError extends Enum {
1811
2280
  readonly isTooMany: boolean;
1812
2281
  readonly isNotFound: boolean;
@@ -1818,21 +2287,20 @@ declare module '@polkadot/types/lookup' {
1818
2287
  readonly isNoSelfProxy: boolean;
1819
2288
  readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy';
1820
2289
  }
1821
- /** @name ArgonPrimitivesTickTicker (236) */
2290
+ /** @name ArgonPrimitivesTickTicker (318) */
1822
2291
  interface ArgonPrimitivesTickTicker extends Struct {
1823
2292
  readonly tickDurationMillis: Compact<u64>;
1824
- readonly genesisUtcTime: Compact<u64>;
1825
- readonly channelHoldExpirationTicks: Compact<u32>;
2293
+ readonly channelHoldExpirationTicks: Compact<u64>;
1826
2294
  }
1827
- /** @name PalletTicksError (241) */
2295
+ /** @name PalletTicksError (320) */
1828
2296
  type PalletTicksError = Null;
1829
- /** @name ArgonPrimitivesBlockSealMiningSlotConfig (248) */
2297
+ /** @name ArgonPrimitivesBlockSealMiningSlotConfig (327) */
1830
2298
  interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
1831
2299
  readonly blocksBeforeBidEndForVrfClose: Compact<u32>;
1832
2300
  readonly blocksBetweenSlots: Compact<u32>;
1833
2301
  readonly slotBiddingStartBlock: Compact<u32>;
1834
2302
  }
1835
- /** @name PalletMiningSlotError (249) */
2303
+ /** @name PalletMiningSlotError (328) */
1836
2304
  interface PalletMiningSlotError extends Enum {
1837
2305
  readonly isSlotNotTakingBids: boolean;
1838
2306
  readonly isTooManyBlockRegistrants: boolean;
@@ -1858,7 +2326,7 @@ declare module '@polkadot/types/lookup' {
1858
2326
  readonly asGenericBondError: ArgonPrimitivesBondBondError;
1859
2327
  readonly type: 'SlotNotTakingBids' | 'TooManyBlockRegistrants' | 'InsufficientOwnershipTokens' | 'BidTooLow' | 'CannotRegisterOverlappingSessions' | 'BondNotFound' | 'NoMoreBondIds' | 'VaultClosed' | 'MinimumBondAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'BondAlreadyClosed' | 'FeeExceedsBondAmount' | 'AccountWouldBeBelowMinimum' | 'GenericBondError';
1860
2328
  }
1861
- /** @name ArgonPrimitivesBondBondError (250) */
2329
+ /** @name ArgonPrimitivesBondBondError (329) */
1862
2330
  interface ArgonPrimitivesBondBondError extends Enum {
1863
2331
  readonly isBondNotFound: boolean;
1864
2332
  readonly isNoMoreBondIds: boolean;
@@ -1882,7 +2350,7 @@ declare module '@polkadot/types/lookup' {
1882
2350
  readonly isInternalError: boolean;
1883
2351
  readonly type: 'BondNotFound' | 'NoMoreBondIds' | 'MinimumBondAmountNotMet' | 'VaultClosed' | 'ExpirationAtBlockOverflow' | 'AccountWouldBeBelowMinimum' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'InsufficientBitcoinsForMining' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'UnableToDecodeVaultBitcoinPubkey' | 'FeeExceedsBondAmount' | 'InvalidBitcoinScript' | 'InternalError';
1884
2352
  }
1885
- /** @name ArgonPrimitivesBitcoinUtxoValue (251) */
2353
+ /** @name ArgonPrimitivesBitcoinUtxoValue (330) */
1886
2354
  interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
1887
2355
  readonly utxoId: u64;
1888
2356
  readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
@@ -1890,7 +2358,7 @@ declare module '@polkadot/types/lookup' {
1890
2358
  readonly submittedAtHeight: Compact<u64>;
1891
2359
  readonly watchForSpentUntilHeight: Compact<u64>;
1892
2360
  }
1893
- /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (252) */
2361
+ /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (331) */
1894
2362
  interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
1895
2363
  readonly isP2wsh: boolean;
1896
2364
  readonly asP2wsh: {
@@ -1898,7 +2366,7 @@ declare module '@polkadot/types/lookup' {
1898
2366
  } & Struct;
1899
2367
  readonly type: 'P2wsh';
1900
2368
  }
1901
- /** @name ArgonPrimitivesBitcoinBitcoinNetwork (257) */
2369
+ /** @name ArgonPrimitivesBitcoinBitcoinNetwork (336) */
1902
2370
  interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
1903
2371
  readonly isBitcoin: boolean;
1904
2372
  readonly isTestnet: boolean;
@@ -1906,7 +2374,7 @@ declare module '@polkadot/types/lookup' {
1906
2374
  readonly isRegtest: boolean;
1907
2375
  readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
1908
2376
  }
1909
- /** @name PalletBitcoinUtxosError (260) */
2377
+ /** @name PalletBitcoinUtxosError (339) */
1910
2378
  interface PalletBitcoinUtxosError extends Enum {
1911
2379
  readonly isNoPermissions: boolean;
1912
2380
  readonly isNoBitcoinConfirmedBlock: boolean;
@@ -1921,7 +2389,7 @@ declare module '@polkadot/types/lookup' {
1921
2389
  readonly isInvalidBitcoinScript: boolean;
1922
2390
  readonly type: 'NoPermissions' | 'NoBitcoinConfirmedBlock' | 'InsufficientBitcoinAmount' | 'NoBitcoinPricesAvailable' | 'ScriptPubkeyConflict' | 'UtxoNotLocked' | 'RedemptionsUnavailable' | 'InvalidBitcoinSyncHeight' | 'BitcoinHeightNotConfirmed' | 'MaxUtxosExceeded' | 'InvalidBitcoinScript';
1923
2391
  }
1924
- /** @name ArgonPrimitivesBondVault (261) */
2392
+ /** @name ArgonPrimitivesBondVault (340) */
1925
2393
  interface ArgonPrimitivesBondVault extends Struct {
1926
2394
  readonly operatorAccountId: AccountId32;
1927
2395
  readonly bitcoinArgons: ArgonPrimitivesBondVaultArgons;
@@ -1932,14 +2400,14 @@ declare module '@polkadot/types/lookup' {
1932
2400
  readonly isClosed: bool;
1933
2401
  readonly pendingTerms: Option<ITuple<[u32, ArgonPrimitivesBondVaultTerms]>>;
1934
2402
  }
1935
- /** @name ArgonPrimitivesBondVaultArgons (262) */
2403
+ /** @name ArgonPrimitivesBondVaultArgons (341) */
1936
2404
  interface ArgonPrimitivesBondVaultArgons extends Struct {
1937
2405
  readonly annualPercentRate: Compact<u128>;
1938
2406
  readonly allocated: Compact<u128>;
1939
2407
  readonly bonded: Compact<u128>;
1940
2408
  readonly baseFee: Compact<u128>;
1941
2409
  }
1942
- /** @name ArgonPrimitivesBitcoinBitcoinXPub (266) */
2410
+ /** @name ArgonPrimitivesBitcoinBitcoinXPub (345) */
1943
2411
  interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
1944
2412
  readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
1945
2413
  readonly depth: Compact<u8>;
@@ -1948,13 +2416,13 @@ declare module '@polkadot/types/lookup' {
1948
2416
  readonly chainCode: U8aFixed;
1949
2417
  readonly network: ArgonPrimitivesBitcoinNetworkKind;
1950
2418
  }
1951
- /** @name ArgonPrimitivesBitcoinNetworkKind (268) */
2419
+ /** @name ArgonPrimitivesBitcoinNetworkKind (347) */
1952
2420
  interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
1953
2421
  readonly isMain: boolean;
1954
2422
  readonly isTest: boolean;
1955
2423
  readonly type: 'Main' | 'Test';
1956
2424
  }
1957
- /** @name PalletVaultsError (270) */
2425
+ /** @name PalletVaultsError (349) */
1958
2426
  interface PalletVaultsError extends Enum {
1959
2427
  readonly isBondNotFound: boolean;
1960
2428
  readonly isNoMoreVaultIds: boolean;
@@ -1995,7 +2463,7 @@ declare module '@polkadot/types/lookup' {
1995
2463
  readonly isUnableToDecodeVaultBitcoinPubkey: boolean;
1996
2464
  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';
1997
2465
  }
1998
- /** @name ArgonPrimitivesBond (271) */
2466
+ /** @name ArgonPrimitivesBond (350) */
1999
2467
  interface ArgonPrimitivesBond extends Struct {
2000
2468
  readonly bondType: ArgonPrimitivesBondBondType;
2001
2469
  readonly vaultId: Compact<u32>;
@@ -2007,7 +2475,7 @@ declare module '@polkadot/types/lookup' {
2007
2475
  readonly startBlock: Compact<u32>;
2008
2476
  readonly expiration: ArgonPrimitivesBondBondExpiration;
2009
2477
  }
2010
- /** @name PalletBondUtxoState (274) */
2478
+ /** @name PalletBondUtxoState (353) */
2011
2479
  interface PalletBondUtxoState extends Struct {
2012
2480
  readonly bondId: Compact<u64>;
2013
2481
  readonly satoshis: Compact<u64>;
@@ -2021,7 +2489,7 @@ declare module '@polkadot/types/lookup' {
2021
2489
  readonly utxoScriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
2022
2490
  readonly isVerified: bool;
2023
2491
  }
2024
- /** @name PalletBondUtxoCosignRequest (278) */
2492
+ /** @name PalletBondUtxoCosignRequest (357) */
2025
2493
  interface PalletBondUtxoCosignRequest extends Struct {
2026
2494
  readonly bondId: Compact<u64>;
2027
2495
  readonly vaultId: Compact<u32>;
@@ -2030,7 +2498,7 @@ declare module '@polkadot/types/lookup' {
2030
2498
  readonly toScriptPubkey: Bytes;
2031
2499
  readonly redemptionPrice: Compact<u128>;
2032
2500
  }
2033
- /** @name PalletBondError (282) */
2501
+ /** @name PalletBondError (361) */
2034
2502
  interface PalletBondError extends Enum {
2035
2503
  readonly isBondNotFound: boolean;
2036
2504
  readonly isNoMoreBondIds: boolean;
@@ -2064,7 +2532,7 @@ declare module '@polkadot/types/lookup' {
2064
2532
  readonly asGenericBondError: ArgonPrimitivesBondBondError;
2065
2533
  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';
2066
2534
  }
2067
- /** @name PalletNotariesError (294) */
2535
+ /** @name PalletNotariesError (373) */
2068
2536
  interface PalletNotariesError extends Enum {
2069
2537
  readonly isProposalNotFound: boolean;
2070
2538
  readonly isMaxNotariesExceeded: boolean;
@@ -2077,26 +2545,15 @@ declare module '@polkadot/types/lookup' {
2077
2545
  readonly isInvalidNotary: boolean;
2078
2546
  readonly type: 'ProposalNotFound' | 'MaxNotariesExceeded' | 'MaxProposalsPerBlockExceeded' | 'NotAnActiveNotary' | 'InvalidNotaryOperator' | 'NoMoreNotaryIds' | 'EffectiveTickTooSoon' | 'TooManyKeys' | 'InvalidNotary';
2079
2547
  }
2080
- /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (298) */
2548
+ /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (377) */
2081
2549
  interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
2082
2550
  readonly notebookNumber: Compact<u32>;
2083
- readonly tick: Compact<u32>;
2551
+ readonly tick: Compact<u64>;
2084
2552
  readonly blockVotesRoot: H256;
2085
2553
  readonly secretHash: H256;
2086
2554
  readonly parentSecret: Option<H256>;
2087
2555
  }
2088
- /** @name ArgonPrimitivesDigestsNotebookDigest (300) */
2089
- interface ArgonPrimitivesDigestsNotebookDigest extends Struct {
2090
- readonly notebooks: Vec<ArgonPrimitivesDigestsNotebookDigestRecord>;
2091
- }
2092
- /** @name ArgonPrimitivesDigestsNotebookDigestRecord (302) */
2093
- interface ArgonPrimitivesDigestsNotebookDigestRecord extends Struct {
2094
- readonly notaryId: Compact<u32>;
2095
- readonly notebookNumber: Compact<u32>;
2096
- readonly tick: Compact<u32>;
2097
- readonly auditFirstFailure: Option<ArgonNotaryAuditErrorVerifyError>;
2098
- }
2099
- /** @name PalletNotebookError (305) */
2556
+ /** @name PalletNotebookError (380) */
2100
2557
  interface PalletNotebookError extends Enum {
2101
2558
  readonly isDuplicateNotebookNumber: boolean;
2102
2559
  readonly isMissingNotebookNumber: boolean;
@@ -2114,17 +2571,17 @@ declare module '@polkadot/types/lookup' {
2114
2571
  readonly isInvalidNotaryOperator: boolean;
2115
2572
  readonly type: 'DuplicateNotebookNumber' | 'MissingNotebookNumber' | 'NotebookTickAlreadyUsed' | 'InvalidNotebookSignature' | 'InvalidSecretProvided' | 'CouldNotDecodeNotebook' | 'DuplicateNotebookDigest' | 'MissingNotebookDigest' | 'InvalidNotebookDigest' | 'MultipleNotebookInherentsProvided' | 'InternalError' | 'NotebookSubmittedForLockedNotary' | 'InvalidReprocessNotebook' | 'InvalidNotaryOperator';
2116
2573
  }
2117
- /** @name PalletChainTransferQueuedTransferOut (306) */
2574
+ /** @name PalletChainTransferQueuedTransferOut (381) */
2118
2575
  interface PalletChainTransferQueuedTransferOut extends Struct {
2119
2576
  readonly accountId: AccountId32;
2120
2577
  readonly amount: u128;
2121
- readonly expirationTick: u32;
2578
+ readonly expirationTick: u64;
2122
2579
  readonly notaryId: u32;
2123
2580
  }
2124
- /** @name FrameSupportPalletId (311) */
2581
+ /** @name FrameSupportPalletId (387) */
2125
2582
  interface FrameSupportPalletId extends U8aFixed {
2126
2583
  }
2127
- /** @name PalletChainTransferError (312) */
2584
+ /** @name PalletChainTransferError (388) */
2128
2585
  interface PalletChainTransferError extends Enum {
2129
2586
  readonly isMaxBlockTransfersExceeded: boolean;
2130
2587
  readonly isInsufficientFunds: boolean;
@@ -2134,25 +2591,20 @@ declare module '@polkadot/types/lookup' {
2134
2591
  readonly isInvalidNotaryUsedForTransfer: boolean;
2135
2592
  readonly type: 'MaxBlockTransfersExceeded' | 'InsufficientFunds' | 'InsufficientNotarizedFunds' | 'InvalidOrDuplicatedLocalchainTransfer' | 'NotebookIncludesExpiredLocalchainTransfer' | 'InvalidNotaryUsedForTransfer';
2136
2593
  }
2137
- /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (317) */
2594
+ /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (393) */
2138
2595
  interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
2139
2596
  readonly notaryId: Compact<u32>;
2140
2597
  readonly notebookNumber: Compact<u32>;
2141
- readonly tick: Compact<u32>;
2598
+ readonly tick: Compact<u64>;
2142
2599
  readonly blockVotesCount: Compact<u32>;
2143
2600
  readonly blockVotingPower: Compact<u128>;
2144
2601
  }
2145
- /** @name ArgonPrimitivesDigestsBlockVoteDigest (319) */
2146
- interface ArgonPrimitivesDigestsBlockVoteDigest extends Struct {
2147
- readonly votingPower: Compact<u128>;
2148
- readonly votesCount: Compact<u32>;
2149
- }
2150
- /** @name PalletBlockSealSpecError (323) */
2602
+ /** @name PalletBlockSealSpecError (398) */
2151
2603
  interface PalletBlockSealSpecError extends Enum {
2152
2604
  readonly isMaxNotebooksAtTickExceeded: boolean;
2153
2605
  readonly type: 'MaxNotebooksAtTickExceeded';
2154
2606
  }
2155
- /** @name PalletDomainsError (325) */
2607
+ /** @name PalletDomainsError (400) */
2156
2608
  interface PalletDomainsError extends Enum {
2157
2609
  readonly isDomainNotRegistered: boolean;
2158
2610
  readonly isNotDomainOwner: boolean;
@@ -2161,7 +2613,7 @@ declare module '@polkadot/types/lookup' {
2161
2613
  readonly isAccountDecodingError: boolean;
2162
2614
  readonly type: 'DomainNotRegistered' | 'NotDomainOwner' | 'FailedToAddToAddressHistory' | 'FailedToAddExpiringDomain' | 'AccountDecodingError';
2163
2615
  }
2164
- /** @name PalletPriceIndexError (326) */
2616
+ /** @name PalletPriceIndexError (401) */
2165
2617
  interface PalletPriceIndexError extends Enum {
2166
2618
  readonly isNotAuthorizedOperator: boolean;
2167
2619
  readonly isMissingValue: boolean;
@@ -2169,47 +2621,7 @@ declare module '@polkadot/types/lookup' {
2169
2621
  readonly isMaxPriceChangePerTickExceeded: boolean;
2170
2622
  readonly type: 'NotAuthorizedOperator' | 'MissingValue' | 'PricesTooOld' | 'MaxPriceChangePerTickExceeded';
2171
2623
  }
2172
- /** @name ArgonPrimitivesProvidersBlockSealerInfo (327) */
2173
- interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
2174
- readonly blockAuthorAccountId: AccountId32;
2175
- readonly blockVoteRewardsAccount: Option<AccountId32>;
2176
- }
2177
- /** @name ArgonPrimitivesForkPower (328) */
2178
- interface ArgonPrimitivesForkPower extends Struct {
2179
- readonly notebooks: Compact<u64>;
2180
- readonly votingPower: U256;
2181
- readonly sealStrength: U256;
2182
- readonly totalComputeDifficulty: U256;
2183
- readonly voteCreatedBlocks: Compact<u128>;
2184
- }
2185
- /** @name ArgonPrimitivesDigestsParentVotingKeyDigest (330) */
2186
- interface ArgonPrimitivesDigestsParentVotingKeyDigest extends Struct {
2187
- readonly parentVotingKey: Option<H256>;
2188
- }
2189
- /** @name PalletBlockSealError (331) */
2190
- interface PalletBlockSealError extends Enum {
2191
- readonly isInvalidVoteSealStrength: boolean;
2192
- readonly isInvalidSubmitter: boolean;
2193
- readonly isUnableToDecodeVoteAccount: boolean;
2194
- readonly isUnregisteredBlockAuthor: boolean;
2195
- readonly isInvalidBlockVoteProof: boolean;
2196
- readonly isNoGrandparentVoteMinimum: boolean;
2197
- readonly isDuplicateBlockSealProvided: boolean;
2198
- readonly isInsufficientVotingPower: boolean;
2199
- readonly isParentVotingKeyNotFound: boolean;
2200
- readonly isInvalidVoteGrandparentHash: boolean;
2201
- readonly isIneligibleNotebookUsed: boolean;
2202
- readonly isNoEligibleVotingRoot: boolean;
2203
- readonly isInvalidAuthoritySignature: boolean;
2204
- readonly isCouldNotDecodeVote: boolean;
2205
- readonly isMaxNotebooksAtTickExceeded: boolean;
2206
- readonly isNoClosestMinerFoundForVote: boolean;
2207
- readonly isBlockVoteInvalidSignature: boolean;
2208
- readonly type: 'InvalidVoteSealStrength' | 'InvalidSubmitter' | 'UnableToDecodeVoteAccount' | 'UnregisteredBlockAuthor' | 'InvalidBlockVoteProof' | 'NoGrandparentVoteMinimum' | 'DuplicateBlockSealProvided' | 'InsufficientVotingPower' | 'ParentVotingKeyNotFound' | 'InvalidVoteGrandparentHash' | 'IneligibleNotebookUsed' | 'NoEligibleVotingRoot' | 'InvalidAuthoritySignature' | 'CouldNotDecodeVote' | 'MaxNotebooksAtTickExceeded' | 'NoClosestMinerFoundForVote' | 'BlockVoteInvalidSignature';
2209
- }
2210
- /** @name PalletBlockRewardsError (333) */
2211
- type PalletBlockRewardsError = Null;
2212
- /** @name PalletGrandpaStoredState (334) */
2624
+ /** @name PalletGrandpaStoredState (402) */
2213
2625
  interface PalletGrandpaStoredState extends Enum {
2214
2626
  readonly isLive: boolean;
2215
2627
  readonly isPendingPause: boolean;
@@ -2225,14 +2637,14 @@ declare module '@polkadot/types/lookup' {
2225
2637
  } & Struct;
2226
2638
  readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
2227
2639
  }
2228
- /** @name PalletGrandpaStoredPendingChange (335) */
2640
+ /** @name PalletGrandpaStoredPendingChange (403) */
2229
2641
  interface PalletGrandpaStoredPendingChange extends Struct {
2230
2642
  readonly scheduledAt: u32;
2231
2643
  readonly delay: u32;
2232
2644
  readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
2233
2645
  readonly forced: Option<u32>;
2234
2646
  }
2235
- /** @name PalletGrandpaError (338) */
2647
+ /** @name PalletGrandpaError (406) */
2236
2648
  interface PalletGrandpaError extends Enum {
2237
2649
  readonly isPauseFailed: boolean;
2238
2650
  readonly isResumeFailed: boolean;
@@ -2243,36 +2655,64 @@ declare module '@polkadot/types/lookup' {
2243
2655
  readonly isDuplicateOffenceReport: boolean;
2244
2656
  readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
2245
2657
  }
2246
- /** @name PalletMintError (342) */
2658
+ /** @name ArgonPrimitivesProvidersBlockSealerInfo (407) */
2659
+ interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
2660
+ readonly blockAuthorAccountId: AccountId32;
2661
+ readonly blockVoteRewardsAccount: Option<AccountId32>;
2662
+ }
2663
+ /** @name PalletBlockSealError (411) */
2664
+ interface PalletBlockSealError extends Enum {
2665
+ readonly isInvalidVoteSealStrength: boolean;
2666
+ readonly isInvalidSubmitter: boolean;
2667
+ readonly isUnableToDecodeVoteAccount: boolean;
2668
+ readonly isUnregisteredBlockAuthor: boolean;
2669
+ readonly isInvalidBlockVoteProof: boolean;
2670
+ readonly isNoGrandparentVoteMinimum: boolean;
2671
+ readonly isDuplicateBlockSealProvided: boolean;
2672
+ readonly isInsufficientVotingPower: boolean;
2673
+ readonly isParentVotingKeyNotFound: boolean;
2674
+ readonly isInvalidVoteGrandparentHash: boolean;
2675
+ readonly isIneligibleNotebookUsed: boolean;
2676
+ readonly isNoEligibleVotingRoot: boolean;
2677
+ readonly isCouldNotDecodeVote: boolean;
2678
+ readonly isMaxNotebooksAtTickExceeded: boolean;
2679
+ readonly isNoClosestMinerFoundForVote: boolean;
2680
+ readonly isBlockVoteInvalidSignature: boolean;
2681
+ readonly isInvalidForkPowerParent: boolean;
2682
+ readonly type: 'InvalidVoteSealStrength' | 'InvalidSubmitter' | 'UnableToDecodeVoteAccount' | 'UnregisteredBlockAuthor' | 'InvalidBlockVoteProof' | 'NoGrandparentVoteMinimum' | 'DuplicateBlockSealProvided' | 'InsufficientVotingPower' | 'ParentVotingKeyNotFound' | 'InvalidVoteGrandparentHash' | 'IneligibleNotebookUsed' | 'NoEligibleVotingRoot' | 'CouldNotDecodeVote' | 'MaxNotebooksAtTickExceeded' | 'NoClosestMinerFoundForVote' | 'BlockVoteInvalidSignature' | 'InvalidForkPowerParent';
2683
+ }
2684
+ /** @name PalletBlockRewardsError (414) */
2685
+ type PalletBlockRewardsError = Null;
2686
+ /** @name PalletMintError (418) */
2247
2687
  interface PalletMintError extends Enum {
2248
2688
  readonly isTooManyPendingMints: boolean;
2249
2689
  readonly type: 'TooManyPendingMints';
2250
2690
  }
2251
- /** @name PalletBalancesBalanceLock (344) */
2691
+ /** @name PalletBalancesBalanceLock (420) */
2252
2692
  interface PalletBalancesBalanceLock extends Struct {
2253
2693
  readonly id: U8aFixed;
2254
2694
  readonly amount: u128;
2255
2695
  readonly reasons: PalletBalancesReasons;
2256
2696
  }
2257
- /** @name PalletBalancesReasons (345) */
2697
+ /** @name PalletBalancesReasons (421) */
2258
2698
  interface PalletBalancesReasons extends Enum {
2259
2699
  readonly isFee: boolean;
2260
2700
  readonly isMisc: boolean;
2261
2701
  readonly isAll: boolean;
2262
2702
  readonly type: 'Fee' | 'Misc' | 'All';
2263
2703
  }
2264
- /** @name PalletBalancesReserveData (348) */
2704
+ /** @name PalletBalancesReserveData (424) */
2265
2705
  interface PalletBalancesReserveData extends Struct {
2266
2706
  readonly id: U8aFixed;
2267
2707
  readonly amount: u128;
2268
2708
  }
2269
- /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (351) */
2709
+ /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (427) */
2270
2710
  interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
2271
- readonly id: ArgonNodeRuntimeRuntimeHoldReason;
2711
+ readonly id: ArgonRuntimeRuntimeHoldReason;
2272
2712
  readonly amount: u128;
2273
2713
  }
2274
- /** @name ArgonNodeRuntimeRuntimeHoldReason (352) */
2275
- interface ArgonNodeRuntimeRuntimeHoldReason extends Enum {
2714
+ /** @name ArgonRuntimeRuntimeHoldReason (428) */
2715
+ interface ArgonRuntimeRuntimeHoldReason extends Enum {
2276
2716
  readonly isMiningSlot: boolean;
2277
2717
  readonly asMiningSlot: PalletMiningSlotHoldReason;
2278
2718
  readonly isVaults: boolean;
@@ -2283,44 +2723,44 @@ declare module '@polkadot/types/lookup' {
2283
2723
  readonly asBlockRewards: PalletBlockRewardsHoldReason;
2284
2724
  readonly type: 'MiningSlot' | 'Vaults' | 'Bonds' | 'BlockRewards';
2285
2725
  }
2286
- /** @name PalletMiningSlotHoldReason (353) */
2726
+ /** @name PalletMiningSlotHoldReason (429) */
2287
2727
  interface PalletMiningSlotHoldReason extends Enum {
2288
2728
  readonly isRegisterAsMiner: boolean;
2289
2729
  readonly type: 'RegisterAsMiner';
2290
2730
  }
2291
- /** @name PalletVaultsHoldReason (354) */
2731
+ /** @name PalletVaultsHoldReason (430) */
2292
2732
  interface PalletVaultsHoldReason extends Enum {
2293
2733
  readonly isEnterVault: boolean;
2294
2734
  readonly isBondFee: boolean;
2295
2735
  readonly type: 'EnterVault' | 'BondFee';
2296
2736
  }
2297
- /** @name PalletBondHoldReason (355) */
2737
+ /** @name PalletBondHoldReason (431) */
2298
2738
  interface PalletBondHoldReason extends Enum {
2299
2739
  readonly isUnlockingBitcoin: boolean;
2300
2740
  readonly type: 'UnlockingBitcoin';
2301
2741
  }
2302
- /** @name PalletBlockRewardsHoldReason (356) */
2742
+ /** @name PalletBlockRewardsHoldReason (432) */
2303
2743
  interface PalletBlockRewardsHoldReason extends Enum {
2304
2744
  readonly isMaturationPeriod: boolean;
2305
2745
  readonly type: 'MaturationPeriod';
2306
2746
  }
2307
- /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (359) */
2747
+ /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (435) */
2308
2748
  interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
2309
- readonly id: ArgonNodeRuntimeRuntimeFreezeReason;
2749
+ readonly id: ArgonRuntimeRuntimeFreezeReason;
2310
2750
  readonly amount: u128;
2311
2751
  }
2312
- /** @name ArgonNodeRuntimeRuntimeFreezeReason (360) */
2313
- interface ArgonNodeRuntimeRuntimeFreezeReason extends Enum {
2752
+ /** @name ArgonRuntimeRuntimeFreezeReason (436) */
2753
+ interface ArgonRuntimeRuntimeFreezeReason extends Enum {
2314
2754
  readonly isBlockRewards: boolean;
2315
2755
  readonly asBlockRewards: PalletBlockRewardsFreezeReason;
2316
2756
  readonly type: 'BlockRewards';
2317
2757
  }
2318
- /** @name PalletBlockRewardsFreezeReason (361) */
2758
+ /** @name PalletBlockRewardsFreezeReason (437) */
2319
2759
  interface PalletBlockRewardsFreezeReason extends Enum {
2320
2760
  readonly isMaturationPeriod: boolean;
2321
2761
  readonly type: 'MaturationPeriod';
2322
2762
  }
2323
- /** @name PalletBalancesError (363) */
2763
+ /** @name PalletBalancesError (439) */
2324
2764
  interface PalletBalancesError extends Enum {
2325
2765
  readonly isVestingBalance: boolean;
2326
2766
  readonly isLiquidityRestrictions: boolean;
@@ -2336,7 +2776,7 @@ declare module '@polkadot/types/lookup' {
2336
2776
  readonly isDeltaZero: boolean;
2337
2777
  readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
2338
2778
  }
2339
- /** @name PalletTxPauseError (365) */
2779
+ /** @name PalletTxPauseError (441) */
2340
2780
  interface PalletTxPauseError extends Enum {
2341
2781
  readonly isIsPaused: boolean;
2342
2782
  readonly isIsUnpaused: boolean;
@@ -2344,48 +2784,72 @@ declare module '@polkadot/types/lookup' {
2344
2784
  readonly isNotFound: boolean;
2345
2785
  readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
2346
2786
  }
2347
- /** @name PalletTransactionPaymentReleases (366) */
2787
+ /** @name PalletTransactionPaymentReleases (442) */
2348
2788
  interface PalletTransactionPaymentReleases extends Enum {
2349
2789
  readonly isV1Ancient: boolean;
2350
2790
  readonly isV2: boolean;
2351
2791
  readonly type: 'V1Ancient' | 'V2';
2352
2792
  }
2353
- /** @name PalletUtilityError (367) */
2793
+ /** @name PalletUtilityError (443) */
2354
2794
  interface PalletUtilityError extends Enum {
2355
2795
  readonly isTooManyCalls: boolean;
2356
2796
  readonly type: 'TooManyCalls';
2357
2797
  }
2358
- /** @name PalletSudoError (368) */
2798
+ /** @name PalletSudoError (444) */
2359
2799
  interface PalletSudoError extends Enum {
2360
2800
  readonly isRequireSudo: boolean;
2361
2801
  readonly type: 'RequireSudo';
2362
2802
  }
2363
- /** @name FrameSystemExtensionsCheckNonZeroSender (371) */
2803
+ /** @name PalletIsmpError (445) */
2804
+ interface PalletIsmpError extends Enum {
2805
+ readonly isInvalidMessage: boolean;
2806
+ readonly isMessageNotFound: boolean;
2807
+ readonly isConsensusClientCreationFailed: boolean;
2808
+ readonly isUnbondingPeriodUpdateFailed: boolean;
2809
+ readonly isChallengePeriodUpdateFailed: boolean;
2810
+ readonly type: 'InvalidMessage' | 'MessageNotFound' | 'ConsensusClientCreationFailed' | 'UnbondingPeriodUpdateFailed' | 'ChallengePeriodUpdateFailed';
2811
+ }
2812
+ /** @name PalletHyperbridgeError (446) */
2813
+ type PalletHyperbridgeError = Null;
2814
+ /** @name PalletTokenGatewayError (447) */
2815
+ interface PalletTokenGatewayError extends Enum {
2816
+ readonly isUnregisteredAsset: boolean;
2817
+ readonly isAssetTeleportError: boolean;
2818
+ readonly isCoprocessorNotConfigured: boolean;
2819
+ readonly isDispatchError: boolean;
2820
+ readonly isAssetCreationError: boolean;
2821
+ readonly isAssetDecimalsNotFound: boolean;
2822
+ readonly isNotInitialized: boolean;
2823
+ readonly isUnknownAsset: boolean;
2824
+ readonly isNotAssetOwner: boolean;
2825
+ readonly type: 'UnregisteredAsset' | 'AssetTeleportError' | 'CoprocessorNotConfigured' | 'DispatchError' | 'AssetCreationError' | 'AssetDecimalsNotFound' | 'NotInitialized' | 'UnknownAsset' | 'NotAssetOwner';
2826
+ }
2827
+ /** @name FrameSystemExtensionsCheckNonZeroSender (450) */
2364
2828
  type FrameSystemExtensionsCheckNonZeroSender = Null;
2365
- /** @name FrameSystemExtensionsCheckSpecVersion (372) */
2829
+ /** @name FrameSystemExtensionsCheckSpecVersion (451) */
2366
2830
  type FrameSystemExtensionsCheckSpecVersion = Null;
2367
- /** @name FrameSystemExtensionsCheckTxVersion (373) */
2831
+ /** @name FrameSystemExtensionsCheckTxVersion (452) */
2368
2832
  type FrameSystemExtensionsCheckTxVersion = Null;
2369
- /** @name FrameSystemExtensionsCheckGenesis (374) */
2833
+ /** @name FrameSystemExtensionsCheckGenesis (453) */
2370
2834
  type FrameSystemExtensionsCheckGenesis = Null;
2371
- /** @name FrameSystemExtensionsCheckNonce (377) */
2835
+ /** @name FrameSystemExtensionsCheckNonce (456) */
2372
2836
  interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
2373
2837
  }
2374
- /** @name FrameSystemExtensionsCheckWeight (378) */
2838
+ /** @name FrameSystemExtensionsCheckWeight (457) */
2375
2839
  type FrameSystemExtensionsCheckWeight = Null;
2376
- /** @name PalletTransactionPaymentChargeTransactionPayment (379) */
2840
+ /** @name PalletTransactionPaymentChargeTransactionPayment (458) */
2377
2841
  interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
2378
2842
  }
2379
- /** @name FrameMetadataHashExtensionCheckMetadataHash (380) */
2843
+ /** @name FrameMetadataHashExtensionCheckMetadataHash (459) */
2380
2844
  interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
2381
2845
  readonly mode: FrameMetadataHashExtensionMode;
2382
2846
  }
2383
- /** @name FrameMetadataHashExtensionMode (381) */
2847
+ /** @name FrameMetadataHashExtensionMode (460) */
2384
2848
  interface FrameMetadataHashExtensionMode extends Enum {
2385
2849
  readonly isDisabled: boolean;
2386
2850
  readonly isEnabled: boolean;
2387
2851
  readonly type: 'Disabled' | 'Enabled';
2388
2852
  }
2389
- /** @name ArgonNodeRuntimeRuntime (383) */
2390
- type ArgonNodeRuntimeRuntime = Null;
2853
+ /** @name ArgonRuntimeRuntime (462) */
2854
+ type ArgonRuntimeRuntime = Null;
2391
2855
  }