@argonprotocol/mainchain 1.0.17 → 1.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 (35) hide show
  1. package/lib/cjs/interfaces/augment-api-consts.d.ts +16 -7
  2. package/lib/cjs/interfaces/augment-api-errors.d.ts +7 -19
  3. package/lib/cjs/interfaces/augment-api-events.d.ts +90 -73
  4. package/lib/cjs/interfaces/augment-api-query.d.ts +44 -28
  5. package/lib/cjs/interfaces/augment-api-rpc.d.ts +4 -0
  6. package/lib/cjs/interfaces/augment-api-tx.d.ts +25 -34
  7. package/lib/cjs/interfaces/lookup.d.ts +241 -276
  8. package/lib/cjs/interfaces/lookup.js +280 -292
  9. package/lib/cjs/interfaces/lookup.js.map +1 -1
  10. package/lib/cjs/interfaces/registry.d.ts +2 -3
  11. package/lib/cjs/interfaces/types-lookup.d.ts +278 -293
  12. package/lib/esm/interfaces/augment-api-consts.d.ts +16 -7
  13. package/lib/esm/interfaces/augment-api-errors.d.ts +7 -19
  14. package/lib/esm/interfaces/augment-api-events.d.ts +90 -73
  15. package/lib/esm/interfaces/augment-api-query.d.ts +44 -28
  16. package/lib/esm/interfaces/augment-api-rpc.d.ts +4 -0
  17. package/lib/esm/interfaces/augment-api-tx.d.ts +25 -34
  18. package/lib/esm/interfaces/lookup.d.ts +241 -276
  19. package/lib/esm/interfaces/lookup.js +280 -292
  20. package/lib/esm/interfaces/lookup.js.map +1 -1
  21. package/lib/esm/interfaces/registry.d.ts +2 -3
  22. package/lib/esm/interfaces/types-lookup.d.ts +278 -293
  23. package/lib/tsconfig-cjs.tsbuildinfo +1 -1
  24. package/lib/tsconfig-types.tsbuildinfo +1 -1
  25. package/lib/tsconfig.tsbuildinfo +1 -1
  26. package/lib/types/interfaces/augment-api-consts.d.ts +16 -7
  27. package/lib/types/interfaces/augment-api-errors.d.ts +7 -19
  28. package/lib/types/interfaces/augment-api-events.d.ts +90 -73
  29. package/lib/types/interfaces/augment-api-query.d.ts +44 -28
  30. package/lib/types/interfaces/augment-api-rpc.d.ts +4 -0
  31. package/lib/types/interfaces/augment-api-tx.d.ts +25 -34
  32. package/lib/types/interfaces/lookup.d.ts +241 -276
  33. package/lib/types/interfaces/registry.d.ts +2 -3
  34. package/lib/types/interfaces/types-lookup.d.ts +278 -293
  35. package/package.json +5 -5
@@ -254,7 +254,14 @@ export default {
254
254
  * Lookup37: argon_runtime::ProxyType
255
255
  **/
256
256
  ArgonRuntimeProxyType: {
257
- _enum: ['Any', 'NonTransfer', 'PriceIndex'],
257
+ _enum: [
258
+ 'Any',
259
+ 'NonTransfer',
260
+ 'PriceIndex',
261
+ 'MiningBid',
262
+ 'BitcoinCosign',
263
+ 'VaultAdmin',
264
+ ],
258
265
  },
259
266
  /**
260
267
  * Lookup39: pallet_mining_slot::pallet::Event<T>
@@ -264,6 +271,7 @@ export default {
264
271
  NewMiners: {
265
272
  startIndex: 'u32',
266
273
  newMiners: 'Vec<ArgonPrimitivesBlockSealMiningRegistration>',
274
+ releasedMiners: 'u32',
267
275
  cohortId: 'u64',
268
276
  },
269
277
  SlotBidderAdded: {
@@ -271,24 +279,12 @@ export default {
271
279
  bidAmount: 'u128',
272
280
  index: 'u32',
273
281
  },
274
- SlotBidderOut: {
275
- accountId: 'AccountId32',
276
- bidAmount: 'u128',
277
- obligationId: 'Option<u64>',
278
- },
279
282
  SlotBidderDropped: {
280
283
  accountId: 'AccountId32',
281
- obligationId: 'Option<u64>',
282
- preservedArgonotHold: 'bool',
283
- },
284
- ReleasedMinerSeat: {
285
- accountId: 'AccountId32',
286
- obligationId: 'Option<u64>',
287
284
  preservedArgonotHold: 'bool',
288
285
  },
289
286
  ReleaseMinerSeatError: {
290
287
  accountId: 'AccountId32',
291
- obligationId: 'Option<u64>',
292
288
  error: 'SpRuntimeDispatchError',
293
289
  },
294
290
  MiningConfigurationUpdated: {
@@ -301,7 +297,6 @@ export default {
301
297
  },
302
298
  ReleaseBidError: {
303
299
  accountId: 'AccountId32',
304
- obligationId: 'Option<u64>',
305
300
  error: 'SpRuntimeDispatchError',
306
301
  },
307
302
  },
@@ -311,11 +306,10 @@ export default {
311
306
  **/
312
307
  ArgonPrimitivesBlockSealMiningRegistration: {
313
308
  accountId: 'AccountId32',
309
+ externalFundingAccount: 'Option<AccountId32>',
314
310
  rewardDestination: 'ArgonPrimitivesBlockSealRewardDestination',
315
- obligationId: 'Option<u64>',
316
- bondedArgons: 'Compact<u128>',
311
+ bid: 'Compact<u128>',
317
312
  argonots: 'Compact<u128>',
318
- rewardSharing: 'Option<ArgonPrimitivesBlockSealRewardSharing>',
319
313
  authorityKeys: 'ArgonRuntimeSessionKeys',
320
314
  cohortId: 'Compact<u64>',
321
315
  },
@@ -335,7 +329,7 @@ export default {
335
329
  **/
336
330
  ArgonPrimitivesBlockSealAppPublic: '[u8;32]',
337
331
  /**
338
- * Lookup45: argon_primitives::block_seal::RewardDestination<sp_core::crypto::AccountId32>
332
+ * Lookup46: argon_primitives::block_seal::RewardDestination<sp_core::crypto::AccountId32>
339
333
  **/
340
334
  ArgonPrimitivesBlockSealRewardDestination: {
341
335
  _enum: {
@@ -344,14 +338,7 @@ export default {
344
338
  },
345
339
  },
346
340
  /**
347
- * Lookup49: argon_primitives::block_seal::RewardSharing<sp_core::crypto::AccountId32>
348
- **/
349
- ArgonPrimitivesBlockSealRewardSharing: {
350
- accountId: 'AccountId32',
351
- percentTake: 'Compact<u128>',
352
- },
353
- /**
354
- * Lookup53: pallet_bitcoin_utxos::pallet::Event<T>
341
+ * Lookup49: pallet_bitcoin_utxos::pallet::Event<T>
355
342
  **/
356
343
  PalletBitcoinUtxosEvent: {
357
344
  _enum: {
@@ -388,49 +375,41 @@ export default {
388
375
  },
389
376
  },
390
377
  /**
391
- * Lookup54: argon_primitives::bitcoin::BitcoinRejectedReason
378
+ * Lookup50: argon_primitives::bitcoin::BitcoinRejectedReason
392
379
  **/
393
380
  ArgonPrimitivesBitcoinBitcoinRejectedReason: {
394
381
  _enum: ['SatoshisMismatch', 'Spent', 'LookupExpired', 'DuplicateUtxo'],
395
382
  },
396
383
  /**
397
- * Lookup55: argon_primitives::bitcoin::UtxoRef
384
+ * Lookup51: argon_primitives::bitcoin::UtxoRef
398
385
  **/
399
386
  ArgonPrimitivesBitcoinUtxoRef: {
400
387
  txid: 'ArgonPrimitivesBitcoinH256Le',
401
388
  outputIndex: 'Compact<u32>',
402
389
  },
403
390
  /**
404
- * Lookup56: argon_primitives::bitcoin::H256Le
391
+ * Lookup52: argon_primitives::bitcoin::H256Le
405
392
  **/
406
393
  ArgonPrimitivesBitcoinH256Le: '[u8;32]',
407
394
  /**
408
- * Lookup58: pallet_vaults::pallet::Event<T>
395
+ * Lookup54: pallet_vaults::pallet::Event<T>
409
396
  **/
410
397
  PalletVaultsEvent: {
411
398
  _enum: {
412
399
  VaultCreated: {
413
400
  vaultId: 'u32',
414
- bitcoinArgons: 'u128',
415
- bondedArgons: 'u128',
401
+ lockedBitcoinArgons: 'u128',
402
+ bondedBitcoinArgons: 'u128',
416
403
  addedSecuritizationPercent: 'u128',
417
404
  operatorAccountId: 'AccountId32',
418
405
  activationTick: 'u64',
419
406
  },
420
407
  VaultModified: {
421
408
  vaultId: 'u32',
422
- bitcoinArgons: 'u128',
423
- bondedArgons: 'u128',
409
+ lockedBitcoinArgons: 'u128',
410
+ bondedBitcoinArgons: 'u128',
424
411
  addedSecuritizationPercent: 'u128',
425
412
  },
426
- VaultBondedArgonsIncreased: {
427
- vaultId: 'u32',
428
- bondedArgons: 'u128',
429
- },
430
- VaultBondedArgonsChangeScheduled: {
431
- vaultId: 'u32',
432
- changeTick: 'u64',
433
- },
434
413
  VaultTermsChangeScheduled: {
435
414
  vaultId: 'u32',
436
415
  changeTick: 'u64',
@@ -440,8 +419,8 @@ export default {
440
419
  },
441
420
  VaultClosed: {
442
421
  vaultId: 'u32',
443
- bitcoinAmountStillReserved: 'u128',
444
- miningAmountStillReserved: 'u128',
422
+ lockedBitcoinAmountStillReserved: 'u128',
423
+ bondedBitcoinAmountStillReserved: 'u128',
445
424
  securitizationStillReserved: 'u128',
446
425
  },
447
426
  VaultBitcoinXpubChange: {
@@ -458,6 +437,8 @@ export default {
458
437
  ObligationCompleted: {
459
438
  vaultId: 'u32',
460
439
  obligationId: 'u64',
440
+ returnedFee: 'u128',
441
+ releasedFee: 'u128',
461
442
  },
462
443
  ObligationModified: {
463
444
  vaultId: 'u32',
@@ -481,16 +462,41 @@ export default {
481
462
  vaultId: 'u32',
482
463
  error: 'SpRuntimeDispatchError',
483
464
  },
465
+ CouldNotDistributeBidPool: {
466
+ cohortId: 'u64',
467
+ vaultId: 'u32',
468
+ amount: 'u128',
469
+ dispatchError: 'SpRuntimeDispatchError',
470
+ },
471
+ CouldNotBurnBidPool: {
472
+ cohortId: 'u64',
473
+ amount: 'u128',
474
+ dispatchError: 'SpRuntimeDispatchError',
475
+ },
476
+ CouldNotAllocateNextBidPool: {
477
+ cohortId: 'u64',
478
+ dispatchError: 'SpRuntimeDispatchError',
479
+ },
480
+ BidPoolDistributed: {
481
+ cohortId: 'u64',
482
+ bidPoolDistributed: 'u128',
483
+ bidPoolBurned: 'u128',
484
+ bidPoolEntrants: 'u32',
485
+ },
486
+ NextBidPoolAllocated: {
487
+ bondedBitcoinPool: 'u128',
488
+ bidPoolEntrants: 'u32',
489
+ },
484
490
  },
485
491
  },
486
492
  /**
487
- * Lookup59: argon_primitives::vault::FundType
493
+ * Lookup56: argon_primitives::vault::FundType
488
494
  **/
489
495
  ArgonPrimitivesVaultFundType: {
490
- _enum: ['BondedArgons', 'Bitcoin'],
496
+ _enum: ['LockedBitcoin', 'BondedBitcoin'],
491
497
  },
492
498
  /**
493
- * Lookup60: argon_primitives::vault::ObligationExpiration
499
+ * Lookup57: argon_primitives::vault::ObligationExpiration
494
500
  **/
495
501
  ArgonPrimitivesVaultObligationExpiration: {
496
502
  _enum: {
@@ -499,7 +505,7 @@ export default {
499
505
  },
500
506
  },
501
507
  /**
502
- * Lookup61: pallet_bitcoin_locks::pallet::Event<T>
508
+ * Lookup58: pallet_bitcoin_locks::pallet::Event<T>
503
509
  **/
504
510
  PalletBitcoinLocksEvent: {
505
511
  _enum: {
@@ -544,7 +550,7 @@ export default {
544
550
  },
545
551
  },
546
552
  /**
547
- * Lookup64: pallet_notaries::pallet::Event<T>
553
+ * Lookup61: pallet_notaries::pallet::Event<T>
548
554
  **/
549
555
  PalletNotariesEvent: {
550
556
  _enum: {
@@ -573,7 +579,7 @@ export default {
573
579
  },
574
580
  },
575
581
  /**
576
- * Lookup65: argon_primitives::notary::NotaryMeta<MaxHosts>
582
+ * Lookup62: argon_primitives::notary::NotaryMeta<MaxHosts>
577
583
  **/
578
584
  ArgonPrimitivesNotaryNotaryMeta: {
579
585
  name: 'Bytes',
@@ -581,7 +587,7 @@ export default {
581
587
  hosts: 'Vec<Bytes>',
582
588
  },
583
589
  /**
584
- * Lookup72: argon_primitives::notary::NotaryRecord<sp_core::crypto::AccountId32, BlockNumber, MaxHosts>
590
+ * Lookup69: argon_primitives::notary::NotaryRecord<sp_core::crypto::AccountId32, BlockNumber, MaxHosts>
585
591
  **/
586
592
  ArgonPrimitivesNotaryNotaryRecord: {
587
593
  notaryId: 'Compact<u32>',
@@ -592,7 +598,7 @@ export default {
592
598
  meta: 'ArgonPrimitivesNotaryNotaryMeta',
593
599
  },
594
600
  /**
595
- * Lookup73: pallet_notebook::pallet::Event<T>
601
+ * Lookup70: pallet_notebook::pallet::Event<T>
596
602
  **/
597
603
  PalletNotebookEvent: {
598
604
  _enum: {
@@ -613,7 +619,7 @@ export default {
613
619
  },
614
620
  },
615
621
  /**
616
- * Lookup74: argon_notary_audit::error::VerifyError
622
+ * Lookup71: argon_notary_audit::error::VerifyError
617
623
  **/
618
624
  ArgonNotaryAuditErrorVerifyError: {
619
625
  _enum: {
@@ -722,13 +728,13 @@ export default {
722
728
  },
723
729
  },
724
730
  /**
725
- * Lookup75: argon_primitives::account::AccountType
731
+ * Lookup72: argon_primitives::account::AccountType
726
732
  **/
727
733
  ArgonPrimitivesAccountAccountType: {
728
734
  _enum: ['Tax', 'Deposit'],
729
735
  },
730
736
  /**
731
- * Lookup76: argon_notary_audit::AccountHistoryLookupError
737
+ * Lookup73: argon_notary_audit::AccountHistoryLookupError
732
738
  **/
733
739
  ArgonNotaryAuditAccountHistoryLookupError: {
734
740
  _enum: [
@@ -739,7 +745,7 @@ export default {
739
745
  ],
740
746
  },
741
747
  /**
742
- * Lookup79: pallet_chain_transfer::pallet::Event<T>
748
+ * Lookup76: pallet_chain_transfer::pallet::Event<T>
743
749
  **/
744
750
  PalletChainTransferEvent: {
745
751
  _enum: {
@@ -788,7 +794,7 @@ export default {
788
794
  },
789
795
  },
790
796
  /**
791
- * Lookup80: pallet_block_seal_spec::pallet::Event<T>
797
+ * Lookup77: pallet_block_seal_spec::pallet::Event<T>
792
798
  **/
793
799
  PalletBlockSealSpecEvent: {
794
800
  _enum: {
@@ -807,7 +813,7 @@ export default {
807
813
  },
808
814
  },
809
815
  /**
810
- * Lookup81: pallet_domains::pallet::Event<T>
816
+ * Lookup78: pallet_domains::pallet::Event<T>
811
817
  **/
812
818
  PalletDomainsEvent: {
813
819
  _enum: {
@@ -837,7 +843,7 @@ export default {
837
843
  },
838
844
  },
839
845
  /**
840
- * Lookup82: argon_primitives::domain::ZoneRecord<sp_core::crypto::AccountId32>
846
+ * Lookup79: argon_primitives::domain::ZoneRecord<sp_core::crypto::AccountId32>
841
847
  **/
842
848
  ArgonPrimitivesDomainZoneRecord: {
843
849
  paymentAccount: 'AccountId32',
@@ -845,7 +851,7 @@ export default {
845
851
  versions: 'BTreeMap<ArgonPrimitivesDomainSemver, ArgonPrimitivesDomainVersionHost>',
846
852
  },
847
853
  /**
848
- * Lookup84: argon_primitives::domain::Semver
854
+ * Lookup81: argon_primitives::domain::Semver
849
855
  **/
850
856
  ArgonPrimitivesDomainSemver: {
851
857
  major: 'u32',
@@ -853,21 +859,21 @@ export default {
853
859
  patch: 'u32',
854
860
  },
855
861
  /**
856
- * Lookup85: argon_primitives::domain::VersionHost
862
+ * Lookup82: argon_primitives::domain::VersionHost
857
863
  **/
858
864
  ArgonPrimitivesDomainVersionHost: {
859
865
  datastoreId: 'Bytes',
860
866
  host: 'Bytes',
861
867
  },
862
868
  /**
863
- * Lookup89: pallet_domains::DomainRegistration<sp_core::crypto::AccountId32>
869
+ * Lookup86: pallet_domains::DomainRegistration<sp_core::crypto::AccountId32>
864
870
  **/
865
871
  PalletDomainsDomainRegistration: {
866
872
  accountId: 'AccountId32',
867
873
  registeredAtTick: 'u64',
868
874
  },
869
875
  /**
870
- * Lookup90: pallet_price_index::pallet::Event<T>
876
+ * Lookup87: pallet_price_index::pallet::Event<T>
871
877
  **/
872
878
  PalletPriceIndexEvent: {
873
879
  _enum: {
@@ -878,7 +884,7 @@ export default {
878
884
  },
879
885
  },
880
886
  /**
881
- * Lookup91: pallet_grandpa::pallet::Event
887
+ * Lookup88: pallet_grandpa::pallet::Event
882
888
  **/
883
889
  PalletGrandpaEvent: {
884
890
  _enum: {
@@ -890,23 +896,13 @@ export default {
890
896
  },
891
897
  },
892
898
  /**
893
- * Lookup94: pallet_block_rewards::pallet::Event<T>
899
+ * Lookup91: pallet_block_rewards::pallet::Event<T>
894
900
  **/
895
901
  PalletBlockRewardsEvent: {
896
902
  _enum: {
897
903
  RewardCreated: {
898
- maturationBlock: 'u32',
899
- rewards: 'Vec<ArgonPrimitivesBlockSealBlockPayout>',
900
- },
901
- RewardUnlocked: {
902
904
  rewards: 'Vec<ArgonPrimitivesBlockSealBlockPayout>',
903
905
  },
904
- RewardUnlockError: {
905
- accountId: 'AccountId32',
906
- argons: 'Option<u128>',
907
- ownership: 'Option<u128>',
908
- error: 'SpRuntimeDispatchError',
909
- },
910
906
  RewardCreateError: {
911
907
  accountId: 'AccountId32',
912
908
  argons: 'Option<u128>',
@@ -916,7 +912,7 @@ export default {
916
912
  },
917
913
  },
918
914
  /**
919
- * Lookup96: argon_primitives::block_seal::BlockPayout<sp_core::crypto::AccountId32, Balance>
915
+ * Lookup93: argon_primitives::block_seal::BlockPayout<sp_core::crypto::AccountId32, Balance>
920
916
  **/
921
917
  ArgonPrimitivesBlockSealBlockPayout: {
922
918
  accountId: 'AccountId32',
@@ -926,22 +922,26 @@ export default {
926
922
  blockSealAuthority: 'Option<ArgonPrimitivesBlockSealAppPublic>',
927
923
  },
928
924
  /**
929
- * Lookup97: argon_primitives::block_seal::BlockRewardType
925
+ * Lookup94: argon_primitives::block_seal::BlockRewardType
930
926
  **/
931
927
  ArgonPrimitivesBlockSealBlockRewardType: {
932
928
  _enum: ['Miner', 'Voter', 'ProfitShare'],
933
929
  },
934
930
  /**
935
- * Lookup100: pallet_mint::pallet::Event<T>
931
+ * Lookup97: pallet_mint::pallet::Event<T>
936
932
  **/
937
933
  PalletMintEvent: {
938
934
  _enum: {
939
- ArgonsMinted: {
940
- mintType: 'PalletMintMintType',
935
+ BitcoinMint: {
941
936
  accountId: 'AccountId32',
942
937
  utxoId: 'Option<u64>',
943
938
  amount: 'u128',
944
939
  },
940
+ MiningMint: {
941
+ amount: 'U256',
942
+ argonCpi: 'i128',
943
+ liquidity: 'u128',
944
+ },
945
945
  MintError: {
946
946
  mintType: 'PalletMintMintType',
947
947
  accountId: 'AccountId32',
@@ -952,13 +952,13 @@ export default {
952
952
  },
953
953
  },
954
954
  /**
955
- * Lookup101: pallet_mint::pallet::MintType
955
+ * Lookup102: pallet_mint::pallet::MintType
956
956
  **/
957
957
  PalletMintMintType: {
958
958
  _enum: ['Bitcoin', 'Mining'],
959
959
  },
960
960
  /**
961
- * Lookup102: pallet_balances::pallet::Event<T, I>
961
+ * Lookup103: pallet_balances::pallet::Event<T, I>
962
962
  **/
963
963
  PalletBalancesEvent: {
964
964
  _enum: {
@@ -1056,13 +1056,13 @@ export default {
1056
1056
  },
1057
1057
  },
1058
1058
  /**
1059
- * Lookup103: frame_support::traits::tokens::misc::BalanceStatus
1059
+ * Lookup104: frame_support::traits::tokens::misc::BalanceStatus
1060
1060
  **/
1061
1061
  FrameSupportTokensMiscBalanceStatus: {
1062
1062
  _enum: ['Free', 'Reserved'],
1063
1063
  },
1064
1064
  /**
1065
- * Lookup105: pallet_tx_pause::pallet::Event<T>
1065
+ * Lookup106: pallet_tx_pause::pallet::Event<T>
1066
1066
  **/
1067
1067
  PalletTxPauseEvent: {
1068
1068
  _enum: {
@@ -1075,7 +1075,7 @@ export default {
1075
1075
  },
1076
1076
  },
1077
1077
  /**
1078
- * Lookup108: pallet_transaction_payment::pallet::Event<T>
1078
+ * Lookup109: pallet_transaction_payment::pallet::Event<T>
1079
1079
  **/
1080
1080
  PalletTransactionPaymentEvent: {
1081
1081
  _enum: {
@@ -1087,7 +1087,7 @@ export default {
1087
1087
  },
1088
1088
  },
1089
1089
  /**
1090
- * Lookup109: pallet_utility::pallet::Event
1090
+ * Lookup110: pallet_utility::pallet::Event
1091
1091
  **/
1092
1092
  PalletUtilityEvent: {
1093
1093
  _enum: {
@@ -1107,7 +1107,7 @@ export default {
1107
1107
  },
1108
1108
  },
1109
1109
  /**
1110
- * Lookup110: pallet_sudo::pallet::Event<T>
1110
+ * Lookup111: pallet_sudo::pallet::Event<T>
1111
1111
  **/
1112
1112
  PalletSudoEvent: {
1113
1113
  _enum: {
@@ -1475,13 +1475,13 @@ export default {
1475
1475
  voteCreatedBlocks: 'Compact<u128>',
1476
1476
  },
1477
1477
  /**
1478
- * Lookup164: argon_primitives::digests::NotebookDigest<argon_notary_audit::error::VerifyError>
1478
+ * Lookup162: argon_primitives::digests::NotebookDigest<argon_notary_audit::error::VerifyError>
1479
1479
  **/
1480
1480
  ArgonPrimitivesDigestsNotebookDigest: {
1481
1481
  notebooks: 'Vec<ArgonPrimitivesNotebookNotebookAuditResult>',
1482
1482
  },
1483
1483
  /**
1484
- * Lookup166: argon_primitives::notebook::NotebookAuditResult<argon_notary_audit::error::VerifyError>
1484
+ * Lookup164: argon_primitives::notebook::NotebookAuditResult<argon_notary_audit::error::VerifyError>
1485
1485
  **/
1486
1486
  ArgonPrimitivesNotebookNotebookAuditResult: {
1487
1487
  notaryId: 'Compact<u32>',
@@ -1490,7 +1490,7 @@ export default {
1490
1490
  auditFirstFailure: 'Option<ArgonNotaryAuditErrorVerifyError>',
1491
1491
  },
1492
1492
  /**
1493
- * Lookup168: pallet_digests::pallet::Error<T>
1493
+ * Lookup166: pallet_digests::pallet::Error<T>
1494
1494
  **/
1495
1495
  PalletDigestsError: {
1496
1496
  _enum: [
@@ -1509,7 +1509,7 @@ export default {
1509
1509
  ],
1510
1510
  },
1511
1511
  /**
1512
- * Lookup169: pallet_timestamp::pallet::Call<T>
1512
+ * Lookup167: pallet_timestamp::pallet::Call<T>
1513
1513
  **/
1514
1514
  PalletTimestampCall: {
1515
1515
  _enum: {
@@ -1519,7 +1519,7 @@ export default {
1519
1519
  },
1520
1520
  },
1521
1521
  /**
1522
- * Lookup171: pallet_multisig::Multisig<BlockNumber, Balance, sp_core::crypto::AccountId32, MaxApprovals>
1522
+ * Lookup169: pallet_multisig::Multisig<BlockNumber, Balance, sp_core::crypto::AccountId32, MaxApprovals>
1523
1523
  **/
1524
1524
  PalletMultisigMultisig: {
1525
1525
  when: 'PalletMultisigTimepoint',
@@ -1528,7 +1528,7 @@ export default {
1528
1528
  approvals: 'Vec<AccountId32>',
1529
1529
  },
1530
1530
  /**
1531
- * Lookup174: pallet_multisig::pallet::Call<T>
1531
+ * Lookup172: pallet_multisig::pallet::Call<T>
1532
1532
  **/
1533
1533
  PalletMultisigCall: {
1534
1534
  _enum: {
@@ -1559,7 +1559,7 @@ export default {
1559
1559
  },
1560
1560
  },
1561
1561
  /**
1562
- * Lookup176: pallet_proxy::pallet::Call<T>
1562
+ * Lookup174: pallet_proxy::pallet::Call<T>
1563
1563
  **/
1564
1564
  PalletProxyCall: {
1565
1565
  _enum: {
@@ -1612,11 +1612,11 @@ export default {
1612
1612
  },
1613
1613
  },
1614
1614
  /**
1615
- * Lookup181: pallet_ticks::pallet::Call<T>
1615
+ * Lookup179: pallet_ticks::pallet::Call<T>
1616
1616
  **/
1617
1617
  PalletTicksCall: 'Null',
1618
1618
  /**
1619
- * Lookup182: pallet_mining_slot::pallet::Call<T>
1619
+ * Lookup180: pallet_mining_slot::pallet::Call<T>
1620
1620
  **/
1621
1621
  PalletMiningSlotCall: {
1622
1622
  _enum: {
@@ -1624,9 +1624,10 @@ export default {
1624
1624
  _alias: {
1625
1625
  keys_: 'keys',
1626
1626
  },
1627
- bondedArgons: 'Option<PalletMiningSlotMiningSlotBid>',
1627
+ bid: 'u128',
1628
1628
  rewardDestination: 'ArgonPrimitivesBlockSealRewardDestination',
1629
1629
  keys_: 'ArgonRuntimeSessionKeys',
1630
+ miningAccountId: 'Option<AccountId32>',
1630
1631
  },
1631
1632
  configure_mining_slot_delay: {
1632
1633
  miningSlotDelay: 'Option<u64>',
@@ -1635,14 +1636,7 @@ export default {
1635
1636
  },
1636
1637
  },
1637
1638
  /**
1638
- * Lookup184: pallet_mining_slot::MiningSlotBid<VaultId, Balance>
1639
- **/
1640
- PalletMiningSlotMiningSlotBid: {
1641
- vaultId: 'u32',
1642
- amount: 'u128',
1643
- },
1644
- /**
1645
- * Lookup185: pallet_bitcoin_utxos::pallet::Call<T>
1639
+ * Lookup181: pallet_bitcoin_utxos::pallet::Call<T>
1646
1640
  **/
1647
1641
  PalletBitcoinUtxosCall: {
1648
1642
  _enum: {
@@ -1659,7 +1653,7 @@ export default {
1659
1653
  },
1660
1654
  },
1661
1655
  /**
1662
- * Lookup186: argon_primitives::inherents::BitcoinUtxoSync
1656
+ * Lookup182: argon_primitives::inherents::BitcoinUtxoSync
1663
1657
  **/
1664
1658
  ArgonPrimitivesInherentsBitcoinUtxoSync: {
1665
1659
  spent: 'BTreeMap<u64, u64>',
@@ -1668,14 +1662,14 @@ export default {
1668
1662
  syncToBlock: 'ArgonPrimitivesBitcoinBitcoinBlock',
1669
1663
  },
1670
1664
  /**
1671
- * Lookup196: argon_primitives::bitcoin::BitcoinBlock
1665
+ * Lookup192: argon_primitives::bitcoin::BitcoinBlock
1672
1666
  **/
1673
1667
  ArgonPrimitivesBitcoinBitcoinBlock: {
1674
1668
  blockHeight: 'Compact<u64>',
1675
1669
  blockHash: 'ArgonPrimitivesBitcoinH256Le',
1676
1670
  },
1677
1671
  /**
1678
- * Lookup197: pallet_vaults::pallet::Call<T>
1672
+ * Lookup193: pallet_vaults::pallet::Call<T>
1679
1673
  **/
1680
1674
  PalletVaultsCall: {
1681
1675
  _enum: {
@@ -1684,8 +1678,8 @@ export default {
1684
1678
  },
1685
1679
  modify_funding: {
1686
1680
  vaultId: 'u32',
1687
- totalMiningAmountOffered: 'u128',
1688
- totalBitcoinAmountOffered: 'u128',
1681
+ totalBondedBitcoinAmountOffered: 'u128',
1682
+ totalLockedBitcoinAmountOffered: 'u128',
1689
1683
  addedSecuritizationPercent: 'u128',
1690
1684
  },
1691
1685
  modify_terms: {
@@ -1702,31 +1696,28 @@ export default {
1702
1696
  },
1703
1697
  },
1704
1698
  /**
1705
- * Lookup198: pallet_vaults::pallet::VaultConfig<Balance>
1699
+ * Lookup194: pallet_vaults::pallet::VaultConfig<Balance>
1706
1700
  **/
1707
1701
  PalletVaultsVaultConfig: {
1708
1702
  terms: 'ArgonPrimitivesVaultVaultTerms',
1709
- bitcoinAmountAllocated: 'Compact<u128>',
1703
+ lockedBitcoinArgonsAllocated: 'Compact<u128>',
1710
1704
  bitcoinXpubkey: 'ArgonPrimitivesBitcoinOpaqueBitcoinXpub',
1711
- bondedArgonsAllocated: 'Compact<u128>',
1705
+ bondedBitcoinArgonsAllocated: 'Compact<u128>',
1712
1706
  addedSecuritizationPercent: 'Compact<u128>',
1713
1707
  },
1714
1708
  /**
1715
- * Lookup199: argon_primitives::vault::VaultTerms<Balance>
1709
+ * Lookup195: argon_primitives::vault::VaultTerms<Balance>
1716
1710
  **/
1717
1711
  ArgonPrimitivesVaultVaultTerms: {
1718
1712
  bitcoinAnnualPercentRate: 'Compact<u128>',
1719
1713
  bitcoinBaseFee: 'Compact<u128>',
1720
- bondedArgonsAnnualPercentRate: 'Compact<u128>',
1721
- bondedArgonsBaseFee: 'Compact<u128>',
1722
- miningRewardSharingPercentTake: 'Compact<u128>',
1723
1714
  },
1724
1715
  /**
1725
- * Lookup200: argon_primitives::bitcoin::OpaqueBitcoinXpub
1716
+ * Lookup197: argon_primitives::bitcoin::OpaqueBitcoinXpub
1726
1717
  **/
1727
1718
  ArgonPrimitivesBitcoinOpaqueBitcoinXpub: '[u8;78]',
1728
1719
  /**
1729
- * Lookup202: pallet_bitcoin_locks::pallet::Call<T>
1720
+ * Lookup199: pallet_bitcoin_locks::pallet::Call<T>
1730
1721
  **/
1731
1722
  PalletBitcoinLocksCall: {
1732
1723
  _enum: {
@@ -1750,11 +1741,11 @@ export default {
1750
1741
  },
1751
1742
  },
1752
1743
  /**
1753
- * Lookup203: argon_primitives::bitcoin::CompressedBitcoinPubkey
1744
+ * Lookup200: argon_primitives::bitcoin::CompressedBitcoinPubkey
1754
1745
  **/
1755
1746
  ArgonPrimitivesBitcoinCompressedBitcoinPubkey: '[u8;33]',
1756
1747
  /**
1757
- * Lookup207: pallet_notaries::pallet::Call<T>
1748
+ * Lookup204: pallet_notaries::pallet::Call<T>
1758
1749
  **/
1759
1750
  PalletNotariesCall: {
1760
1751
  _enum: {
@@ -1772,7 +1763,7 @@ export default {
1772
1763
  },
1773
1764
  },
1774
1765
  /**
1775
- * Lookup208: pallet_notebook::pallet::Call<T>
1766
+ * Lookup205: pallet_notebook::pallet::Call<T>
1776
1767
  **/
1777
1768
  PalletNotebookCall: {
1778
1769
  _enum: {
@@ -1785,14 +1776,14 @@ export default {
1785
1776
  },
1786
1777
  },
1787
1778
  /**
1788
- * Lookup210: argon_primitives::notebook::SignedNotebookHeader
1779
+ * Lookup207: argon_primitives::notebook::SignedNotebookHeader
1789
1780
  **/
1790
1781
  ArgonPrimitivesNotebookSignedNotebookHeader: {
1791
1782
  header: 'ArgonPrimitivesNotebookNotebookHeader',
1792
1783
  signature: '[u8;64]',
1793
1784
  },
1794
1785
  /**
1795
- * Lookup211: argon_primitives::notebook::NotebookHeader
1786
+ * Lookup208: argon_primitives::notebook::NotebookHeader
1796
1787
  **/
1797
1788
  ArgonPrimitivesNotebookNotebookHeader: {
1798
1789
  version: 'Compact<u16>',
@@ -1812,7 +1803,7 @@ export default {
1812
1803
  domains: 'Vec<(H256,AccountId32)>',
1813
1804
  },
1814
1805
  /**
1815
- * Lookup214: argon_primitives::notebook::ChainTransfer
1806
+ * Lookup211: argon_primitives::notebook::ChainTransfer
1816
1807
  **/
1817
1808
  ArgonPrimitivesNotebookChainTransfer: {
1818
1809
  _enum: {
@@ -1826,14 +1817,14 @@ export default {
1826
1817
  },
1827
1818
  },
1828
1819
  /**
1829
- * Lookup217: argon_primitives::balance_change::AccountOrigin
1820
+ * Lookup214: argon_primitives::balance_change::AccountOrigin
1830
1821
  **/
1831
1822
  ArgonPrimitivesBalanceChangeAccountOrigin: {
1832
1823
  notebookNumber: 'Compact<u32>',
1833
1824
  accountUid: 'Compact<u32>',
1834
1825
  },
1835
1826
  /**
1836
- * Lookup224: pallet_chain_transfer::pallet::Call<T>
1827
+ * Lookup221: pallet_chain_transfer::pallet::Call<T>
1837
1828
  **/
1838
1829
  PalletChainTransferCall: {
1839
1830
  _enum: {
@@ -1844,7 +1835,7 @@ export default {
1844
1835
  },
1845
1836
  },
1846
1837
  /**
1847
- * Lookup225: pallet_block_seal_spec::pallet::Call<T>
1838
+ * Lookup222: pallet_block_seal_spec::pallet::Call<T>
1848
1839
  **/
1849
1840
  PalletBlockSealSpecCall: {
1850
1841
  _enum: {
@@ -1855,7 +1846,7 @@ export default {
1855
1846
  },
1856
1847
  },
1857
1848
  /**
1858
- * Lookup226: pallet_domains::pallet::Call<T>
1849
+ * Lookup223: pallet_domains::pallet::Call<T>
1859
1850
  **/
1860
1851
  PalletDomainsCall: {
1861
1852
  _enum: {
@@ -1866,7 +1857,7 @@ export default {
1866
1857
  },
1867
1858
  },
1868
1859
  /**
1869
- * Lookup227: pallet_price_index::pallet::Call<T>
1860
+ * Lookup224: pallet_price_index::pallet::Call<T>
1870
1861
  **/
1871
1862
  PalletPriceIndexCall: {
1872
1863
  _enum: {
@@ -1879,7 +1870,7 @@ export default {
1879
1870
  },
1880
1871
  },
1881
1872
  /**
1882
- * Lookup228: pallet_price_index::PriceIndex
1873
+ * Lookup225: pallet_price_index::PriceIndex
1883
1874
  **/
1884
1875
  PalletPriceIndexPriceIndex: {
1885
1876
  btcUsdPrice: 'Compact<u128>',
@@ -1890,7 +1881,7 @@ export default {
1890
1881
  tick: 'Compact<u64>',
1891
1882
  },
1892
1883
  /**
1893
- * Lookup229: pallet_grandpa::pallet::Call<T>
1884
+ * Lookup226: pallet_grandpa::pallet::Call<T>
1894
1885
  **/
1895
1886
  PalletGrandpaCall: {
1896
1887
  _enum: {
@@ -1909,14 +1900,14 @@ export default {
1909
1900
  },
1910
1901
  },
1911
1902
  /**
1912
- * Lookup230: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
1903
+ * Lookup227: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
1913
1904
  **/
1914
1905
  SpConsensusGrandpaEquivocationProof: {
1915
1906
  setId: 'u64',
1916
1907
  equivocation: 'SpConsensusGrandpaEquivocation',
1917
1908
  },
1918
1909
  /**
1919
- * Lookup231: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
1910
+ * Lookup228: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
1920
1911
  **/
1921
1912
  SpConsensusGrandpaEquivocation: {
1922
1913
  _enum: {
@@ -1925,7 +1916,7 @@ export default {
1925
1916
  },
1926
1917
  },
1927
1918
  /**
1928
- * Lookup232: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
1919
+ * Lookup229: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
1929
1920
  **/
1930
1921
  FinalityGrandpaEquivocationPrevote: {
1931
1922
  roundNumber: 'u64',
@@ -1934,18 +1925,18 @@ export default {
1934
1925
  second: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)',
1935
1926
  },
1936
1927
  /**
1937
- * Lookup233: finality_grandpa::Prevote<primitive_types::H256, N>
1928
+ * Lookup230: finality_grandpa::Prevote<primitive_types::H256, N>
1938
1929
  **/
1939
1930
  FinalityGrandpaPrevote: {
1940
1931
  targetHash: 'H256',
1941
1932
  targetNumber: 'u32',
1942
1933
  },
1943
1934
  /**
1944
- * Lookup234: sp_consensus_grandpa::app::Signature
1935
+ * Lookup231: sp_consensus_grandpa::app::Signature
1945
1936
  **/
1946
1937
  SpConsensusGrandpaAppSignature: '[u8;64]',
1947
1938
  /**
1948
- * Lookup236: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
1939
+ * Lookup233: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
1949
1940
  **/
1950
1941
  FinalityGrandpaEquivocationPrecommit: {
1951
1942
  roundNumber: 'u64',
@@ -1954,18 +1945,18 @@ export default {
1954
1945
  second: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)',
1955
1946
  },
1956
1947
  /**
1957
- * Lookup237: finality_grandpa::Precommit<primitive_types::H256, N>
1948
+ * Lookup234: finality_grandpa::Precommit<primitive_types::H256, N>
1958
1949
  **/
1959
1950
  FinalityGrandpaPrecommit: {
1960
1951
  targetHash: 'H256',
1961
1952
  targetNumber: 'u32',
1962
1953
  },
1963
1954
  /**
1964
- * Lookup239: sp_core::Void
1955
+ * Lookup236: sp_core::Void
1965
1956
  **/
1966
1957
  SpCoreVoid: 'Null',
1967
1958
  /**
1968
- * Lookup240: pallet_block_seal::pallet::Call<T>
1959
+ * Lookup237: pallet_block_seal::pallet::Call<T>
1969
1960
  **/
1970
1961
  PalletBlockSealCall: {
1971
1962
  _enum: {
@@ -1975,7 +1966,7 @@ export default {
1975
1966
  },
1976
1967
  },
1977
1968
  /**
1978
- * Lookup241: argon_primitives::inherents::BlockSealInherent
1969
+ * Lookup238: argon_primitives::inherents::BlockSealInherent
1979
1970
  **/
1980
1971
  ArgonPrimitivesInherentsBlockSealInherent: {
1981
1972
  _enum: {
@@ -1990,7 +1981,7 @@ export default {
1990
1981
  },
1991
1982
  },
1992
1983
  /**
1993
- * Lookup242: argon_primitives::balance_change::MerkleProof
1984
+ * Lookup239: argon_primitives::balance_change::MerkleProof
1994
1985
  **/
1995
1986
  ArgonPrimitivesBalanceChangeMerkleProof: {
1996
1987
  proof: 'Vec<H256>',
@@ -1998,7 +1989,7 @@ export default {
1998
1989
  leafIndex: 'Compact<u32>',
1999
1990
  },
2000
1991
  /**
2001
- * Lookup244: argon_primitives::block_vote::BlockVoteT<primitive_types::H256>
1992
+ * Lookup241: argon_primitives::block_vote::BlockVoteT<primitive_types::H256>
2002
1993
  **/
2003
1994
  ArgonPrimitivesBlockVoteBlockVoteT: {
2004
1995
  accountId: 'AccountId32',
@@ -2010,7 +2001,7 @@ export default {
2010
2001
  tick: 'Compact<u64>',
2011
2002
  },
2012
2003
  /**
2013
- * Lookup245: sp_runtime::MultiSignature
2004
+ * Lookup242: sp_runtime::MultiSignature
2014
2005
  **/
2015
2006
  SpRuntimeMultiSignature: {
2016
2007
  _enum: {
@@ -2020,7 +2011,7 @@ export default {
2020
2011
  },
2021
2012
  },
2022
2013
  /**
2023
- * Lookup247: pallet_block_rewards::pallet::Call<T>
2014
+ * Lookup244: pallet_block_rewards::pallet::Call<T>
2024
2015
  **/
2025
2016
  PalletBlockRewardsCall: {
2026
2017
  _enum: {
@@ -2030,11 +2021,11 @@ export default {
2030
2021
  },
2031
2022
  },
2032
2023
  /**
2033
- * Lookup248: pallet_mint::pallet::Call<T>
2024
+ * Lookup245: pallet_mint::pallet::Call<T>
2034
2025
  **/
2035
2026
  PalletMintCall: 'Null',
2036
2027
  /**
2037
- * Lookup249: pallet_balances::pallet::Call<T, I>
2028
+ * Lookup246: pallet_balances::pallet::Call<T, I>
2038
2029
  **/
2039
2030
  PalletBalancesCall: {
2040
2031
  _enum: {
@@ -2079,13 +2070,13 @@ export default {
2079
2070
  },
2080
2071
  },
2081
2072
  /**
2082
- * Lookup250: pallet_balances::types::AdjustmentDirection
2073
+ * Lookup247: pallet_balances::types::AdjustmentDirection
2083
2074
  **/
2084
2075
  PalletBalancesAdjustmentDirection: {
2085
2076
  _enum: ['Increase', 'Decrease'],
2086
2077
  },
2087
2078
  /**
2088
- * Lookup252: pallet_tx_pause::pallet::Call<T>
2079
+ * Lookup249: pallet_tx_pause::pallet::Call<T>
2089
2080
  **/
2090
2081
  PalletTxPauseCall: {
2091
2082
  _enum: {
@@ -2098,7 +2089,7 @@ export default {
2098
2089
  },
2099
2090
  },
2100
2091
  /**
2101
- * Lookup253: pallet_utility::pallet::Call<T>
2092
+ * Lookup250: pallet_utility::pallet::Call<T>
2102
2093
  **/
2103
2094
  PalletUtilityCall: {
2104
2095
  _enum: {
@@ -2126,7 +2117,7 @@ export default {
2126
2117
  },
2127
2118
  },
2128
2119
  /**
2129
- * Lookup255: argon_runtime::OriginCaller
2120
+ * Lookup252: argon_runtime::OriginCaller
2130
2121
  **/
2131
2122
  ArgonRuntimeOriginCaller: {
2132
2123
  _enum: {
@@ -2135,7 +2126,7 @@ export default {
2135
2126
  },
2136
2127
  },
2137
2128
  /**
2138
- * Lookup256: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
2129
+ * Lookup253: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
2139
2130
  **/
2140
2131
  FrameSupportDispatchRawOrigin: {
2141
2132
  _enum: {
@@ -2145,7 +2136,7 @@ export default {
2145
2136
  },
2146
2137
  },
2147
2138
  /**
2148
- * Lookup257: pallet_sudo::pallet::Call<T>
2139
+ * Lookup254: pallet_sudo::pallet::Call<T>
2149
2140
  **/
2150
2141
  PalletSudoCall: {
2151
2142
  _enum: {
@@ -2170,7 +2161,7 @@ export default {
2170
2161
  },
2171
2162
  },
2172
2163
  /**
2173
- * Lookup258: pallet_ismp::pallet::Call<T>
2164
+ * Lookup255: pallet_ismp::pallet::Call<T>
2174
2165
  **/
2175
2166
  PalletIsmpCall: {
2176
2167
  _enum: {
@@ -2190,7 +2181,7 @@ export default {
2190
2181
  },
2191
2182
  },
2192
2183
  /**
2193
- * Lookup260: ismp::messaging::Message
2184
+ * Lookup257: ismp::messaging::Message
2194
2185
  **/
2195
2186
  IsmpMessagingMessage: {
2196
2187
  _enum: {
@@ -2202,7 +2193,7 @@ export default {
2202
2193
  },
2203
2194
  },
2204
2195
  /**
2205
- * Lookup261: ismp::messaging::ConsensusMessage
2196
+ * Lookup258: ismp::messaging::ConsensusMessage
2206
2197
  **/
2207
2198
  IsmpMessagingConsensusMessage: {
2208
2199
  consensusProof: 'Bytes',
@@ -2210,7 +2201,7 @@ export default {
2210
2201
  signer: 'Bytes',
2211
2202
  },
2212
2203
  /**
2213
- * Lookup262: ismp::messaging::FraudProofMessage
2204
+ * Lookup259: ismp::messaging::FraudProofMessage
2214
2205
  **/
2215
2206
  IsmpMessagingFraudProofMessage: {
2216
2207
  proof1: 'Bytes',
@@ -2218,7 +2209,7 @@ export default {
2218
2209
  consensusStateId: '[u8;4]',
2219
2210
  },
2220
2211
  /**
2221
- * Lookup263: ismp::messaging::RequestMessage
2212
+ * Lookup260: ismp::messaging::RequestMessage
2222
2213
  **/
2223
2214
  IsmpMessagingRequestMessage: {
2224
2215
  requests: 'Vec<IsmpRouterPostRequest>',
@@ -2226,7 +2217,7 @@ export default {
2226
2217
  signer: 'Bytes',
2227
2218
  },
2228
2219
  /**
2229
- * Lookup265: ismp::router::PostRequest
2220
+ * Lookup262: ismp::router::PostRequest
2230
2221
  **/
2231
2222
  IsmpRouterPostRequest: {
2232
2223
  source: 'IsmpHostStateMachine',
@@ -2238,14 +2229,14 @@ export default {
2238
2229
  body: 'Bytes',
2239
2230
  },
2240
2231
  /**
2241
- * Lookup266: ismp::messaging::Proof
2232
+ * Lookup263: ismp::messaging::Proof
2242
2233
  **/
2243
2234
  IsmpMessagingProof: {
2244
2235
  height: 'IsmpConsensusStateMachineHeight',
2245
2236
  proof: 'Bytes',
2246
2237
  },
2247
2238
  /**
2248
- * Lookup267: ismp::messaging::ResponseMessage
2239
+ * Lookup264: ismp::messaging::ResponseMessage
2249
2240
  **/
2250
2241
  IsmpMessagingResponseMessage: {
2251
2242
  datagram: 'IsmpRouterRequestResponse',
@@ -2253,7 +2244,7 @@ export default {
2253
2244
  signer: 'Bytes',
2254
2245
  },
2255
2246
  /**
2256
- * Lookup268: ismp::router::RequestResponse
2247
+ * Lookup265: ismp::router::RequestResponse
2257
2248
  **/
2258
2249
  IsmpRouterRequestResponse: {
2259
2250
  _enum: {
@@ -2262,7 +2253,7 @@ export default {
2262
2253
  },
2263
2254
  },
2264
2255
  /**
2265
- * Lookup270: ismp::router::Request
2256
+ * Lookup267: ismp::router::Request
2266
2257
  **/
2267
2258
  IsmpRouterRequest: {
2268
2259
  _enum: {
@@ -2271,7 +2262,7 @@ export default {
2271
2262
  },
2272
2263
  },
2273
2264
  /**
2274
- * Lookup271: ismp::router::GetRequest
2265
+ * Lookup268: ismp::router::GetRequest
2275
2266
  **/
2276
2267
  IsmpRouterGetRequest: {
2277
2268
  _alias: {
@@ -2287,7 +2278,7 @@ export default {
2287
2278
  timeoutTimestamp: 'u64',
2288
2279
  },
2289
2280
  /**
2290
- * Lookup273: ismp::router::Response
2281
+ * Lookup270: ismp::router::Response
2291
2282
  **/
2292
2283
  IsmpRouterResponse: {
2293
2284
  _enum: {
@@ -2296,7 +2287,7 @@ export default {
2296
2287
  },
2297
2288
  },
2298
2289
  /**
2299
- * Lookup274: ismp::router::PostResponse
2290
+ * Lookup271: ismp::router::PostResponse
2300
2291
  **/
2301
2292
  IsmpRouterPostResponse: {
2302
2293
  post: 'IsmpRouterPostRequest',
@@ -2304,21 +2295,21 @@ export default {
2304
2295
  timeoutTimestamp: 'u64',
2305
2296
  },
2306
2297
  /**
2307
- * Lookup275: ismp::router::GetResponse
2298
+ * Lookup272: ismp::router::GetResponse
2308
2299
  **/
2309
2300
  IsmpRouterGetResponse: {
2310
2301
  get: 'IsmpRouterGetRequest',
2311
2302
  values: 'Vec<IsmpRouterStorageValue>',
2312
2303
  },
2313
2304
  /**
2314
- * Lookup277: ismp::router::StorageValue
2305
+ * Lookup274: ismp::router::StorageValue
2315
2306
  **/
2316
2307
  IsmpRouterStorageValue: {
2317
2308
  key: 'Bytes',
2318
2309
  value: 'Option<Bytes>',
2319
2310
  },
2320
2311
  /**
2321
- * Lookup279: ismp::messaging::TimeoutMessage
2312
+ * Lookup276: ismp::messaging::TimeoutMessage
2322
2313
  **/
2323
2314
  IsmpMessagingTimeoutMessage: {
2324
2315
  _enum: {
@@ -2336,7 +2327,7 @@ export default {
2336
2327
  },
2337
2328
  },
2338
2329
  /**
2339
- * Lookup281: ismp::messaging::CreateConsensusState
2330
+ * Lookup278: ismp::messaging::CreateConsensusState
2340
2331
  **/
2341
2332
  IsmpMessagingCreateConsensusState: {
2342
2333
  consensusState: 'Bytes',
@@ -2347,14 +2338,14 @@ export default {
2347
2338
  stateMachineCommitments: 'Vec<(IsmpConsensusStateMachineId,IsmpMessagingStateCommitmentHeight)>',
2348
2339
  },
2349
2340
  /**
2350
- * Lookup287: ismp::messaging::StateCommitmentHeight
2341
+ * Lookup284: ismp::messaging::StateCommitmentHeight
2351
2342
  **/
2352
2343
  IsmpMessagingStateCommitmentHeight: {
2353
2344
  commitment: 'IsmpConsensusStateCommitment',
2354
2345
  height: 'u64',
2355
2346
  },
2356
2347
  /**
2357
- * Lookup288: ismp::consensus::StateCommitment
2348
+ * Lookup285: ismp::consensus::StateCommitment
2358
2349
  **/
2359
2350
  IsmpConsensusStateCommitment: {
2360
2351
  timestamp: 'u64',
@@ -2362,7 +2353,7 @@ export default {
2362
2353
  stateRoot: 'H256',
2363
2354
  },
2364
2355
  /**
2365
- * Lookup289: pallet_ismp::utils::UpdateConsensusState
2356
+ * Lookup286: pallet_ismp::utils::UpdateConsensusState
2366
2357
  **/
2367
2358
  PalletIsmpUtilsUpdateConsensusState: {
2368
2359
  consensusStateId: '[u8;4]',
@@ -2370,14 +2361,14 @@ export default {
2370
2361
  challengePeriods: 'BTreeMap<IsmpHostStateMachine, u64>',
2371
2362
  },
2372
2363
  /**
2373
- * Lookup290: pallet_ismp::utils::FundMessageParams<Balance>
2364
+ * Lookup287: pallet_ismp::utils::FundMessageParams<Balance>
2374
2365
  **/
2375
2366
  PalletIsmpUtilsFundMessageParams: {
2376
2367
  commitment: 'PalletIsmpUtilsMessageCommitment',
2377
2368
  amount: 'u128',
2378
2369
  },
2379
2370
  /**
2380
- * Lookup291: pallet_ismp::utils::MessageCommitment
2371
+ * Lookup288: pallet_ismp::utils::MessageCommitment
2381
2372
  **/
2382
2373
  PalletIsmpUtilsMessageCommitment: {
2383
2374
  _enum: {
@@ -2386,7 +2377,7 @@ export default {
2386
2377
  },
2387
2378
  },
2388
2379
  /**
2389
- * Lookup292: ismp_grandpa::pallet::Call<T>
2380
+ * Lookup289: ismp_grandpa::pallet::Call<T>
2390
2381
  **/
2391
2382
  IsmpGrandpaCall: {
2392
2383
  _enum: {
@@ -2399,14 +2390,14 @@ export default {
2399
2390
  },
2400
2391
  },
2401
2392
  /**
2402
- * Lookup294: ismp_grandpa::AddStateMachine
2393
+ * Lookup291: ismp_grandpa::AddStateMachine
2403
2394
  **/
2404
2395
  IsmpGrandpaAddStateMachine: {
2405
2396
  stateMachine: 'IsmpHostStateMachine',
2406
2397
  slotDuration: 'u64',
2407
2398
  },
2408
2399
  /**
2409
- * Lookup295: pallet_token_gateway::pallet::Call<T>
2400
+ * Lookup292: pallet_token_gateway::pallet::Call<T>
2410
2401
  **/
2411
2402
  PalletTokenGatewayCall: {
2412
2403
  _enum: {
@@ -2428,7 +2419,7 @@ export default {
2428
2419
  },
2429
2420
  },
2430
2421
  /**
2431
- * Lookup296: pallet_token_gateway::types::TeleportParams<AssetId, Balance>
2422
+ * Lookup293: pallet_token_gateway::types::TeleportParams<AssetId, Balance>
2432
2423
  **/
2433
2424
  PalletTokenGatewayTeleportParams: {
2434
2425
  assetId: 'u32',
@@ -2442,7 +2433,7 @@ export default {
2442
2433
  redeem: 'bool',
2443
2434
  },
2444
2435
  /**
2445
- * Lookup300: pallet_token_gateway::types::AssetRegistration<AssetId>
2436
+ * Lookup297: pallet_token_gateway::types::AssetRegistration<AssetId>
2446
2437
  **/
2447
2438
  PalletTokenGatewayAssetRegistration: {
2448
2439
  localId: 'u32',
@@ -2451,7 +2442,7 @@ export default {
2451
2442
  precision: 'BTreeMap<IsmpHostStateMachine, u8>',
2452
2443
  },
2453
2444
  /**
2454
- * Lookup301: token_gateway_primitives::GatewayAssetRegistration
2445
+ * Lookup298: token_gateway_primitives::GatewayAssetRegistration
2455
2446
  **/
2456
2447
  TokenGatewayPrimitivesGatewayAssetRegistration: {
2457
2448
  name: 'Bytes',
@@ -2460,7 +2451,7 @@ export default {
2460
2451
  minimumBalance: 'Option<u128>',
2461
2452
  },
2462
2453
  /**
2463
- * Lookup306: token_gateway_primitives::GatewayAssetUpdate
2454
+ * Lookup303: token_gateway_primitives::GatewayAssetUpdate
2464
2455
  **/
2465
2456
  TokenGatewayPrimitivesGatewayAssetUpdate: {
2466
2457
  assetId: 'H256',
@@ -2469,14 +2460,14 @@ export default {
2469
2460
  newAdmins: 'Vec<(IsmpHostStateMachine,H160)>',
2470
2461
  },
2471
2462
  /**
2472
- * Lookup312: pallet_token_gateway::types::PrecisionUpdate<AssetId>
2463
+ * Lookup309: pallet_token_gateway::types::PrecisionUpdate<AssetId>
2473
2464
  **/
2474
2465
  PalletTokenGatewayPrecisionUpdate: {
2475
2466
  assetId: 'u32',
2476
2467
  precisions: 'BTreeMap<IsmpHostStateMachine, u8>',
2477
2468
  },
2478
2469
  /**
2479
- * Lookup314: pallet_multisig::pallet::Error<T>
2470
+ * Lookup311: pallet_multisig::pallet::Error<T>
2480
2471
  **/
2481
2472
  PalletMultisigError: {
2482
2473
  _enum: [
@@ -2497,7 +2488,7 @@ export default {
2497
2488
  ],
2498
2489
  },
2499
2490
  /**
2500
- * Lookup317: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, argon_runtime::ProxyType, BlockNumber>
2491
+ * Lookup314: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, argon_runtime::ProxyType, BlockNumber>
2501
2492
  **/
2502
2493
  PalletProxyProxyDefinition: {
2503
2494
  delegate: 'AccountId32',
@@ -2505,7 +2496,7 @@ export default {
2505
2496
  delay: 'u32',
2506
2497
  },
2507
2498
  /**
2508
- * Lookup321: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
2499
+ * Lookup318: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
2509
2500
  **/
2510
2501
  PalletProxyAnnouncement: {
2511
2502
  real: 'AccountId32',
@@ -2513,7 +2504,7 @@ export default {
2513
2504
  height: 'u32',
2514
2505
  },
2515
2506
  /**
2516
- * Lookup323: pallet_proxy::pallet::Error<T>
2507
+ * Lookup320: pallet_proxy::pallet::Error<T>
2517
2508
  **/
2518
2509
  PalletProxyError: {
2519
2510
  _enum: [
@@ -2528,14 +2519,14 @@ export default {
2528
2519
  ],
2529
2520
  },
2530
2521
  /**
2531
- * Lookup324: argon_primitives::tick::Ticker
2522
+ * Lookup321: argon_primitives::tick::Ticker
2532
2523
  **/
2533
2524
  ArgonPrimitivesTickTicker: {
2534
2525
  tickDurationMillis: 'Compact<u64>',
2535
2526
  channelHoldExpirationTicks: 'Compact<u64>',
2536
2527
  },
2537
2528
  /**
2538
- * Lookup326: pallet_ticks::pallet::Error<T>
2529
+ * Lookup323: pallet_ticks::pallet::Error<T>
2539
2530
  **/
2540
2531
  PalletTicksError: 'Null',
2541
2532
  /**
@@ -2559,63 +2550,32 @@ export default {
2559
2550
  * Lookup337: pallet_mining_slot::pallet::Error<T>
2560
2551
  **/
2561
2552
  PalletMiningSlotError: {
2562
- _enum: {
2563
- SlotNotTakingBids: 'Null',
2564
- TooManyBlockRegistrants: 'Null',
2565
- InsufficientOwnershipTokens: 'Null',
2566
- BidTooLow: 'Null',
2567
- CannotRegisterOverlappingSessions: 'Null',
2568
- ObligationNotFound: 'Null',
2569
- NoMoreObligationIds: 'Null',
2570
- VaultClosed: 'Null',
2571
- MinimumObligationAmountNotMet: 'Null',
2572
- ExpirationAtBlockOverflow: 'Null',
2573
- InsufficientFunds: 'Null',
2574
- InsufficientVaultFunds: 'Null',
2575
- ExpirationTooSoon: 'Null',
2576
- NoPermissions: 'Null',
2577
- HoldUnexpectedlyModified: 'Null',
2578
- UnrecoverableHold: 'Null',
2579
- VaultNotFound: 'Null',
2580
- AccountWouldBeBelowMinimum: 'Null',
2581
- GenericObligationError: 'ArgonPrimitivesVaultObligationError',
2582
- CannotRegisterDuplicateKeys: 'Null',
2583
- InvalidKeyFormat: 'Null',
2584
- CannotReduceBondedArgons: 'Null',
2585
- InvalidVaultSwitch: 'Null',
2586
- },
2587
- },
2588
- /**
2589
- * Lookup338: argon_primitives::vault::ObligationError
2590
- **/
2591
- ArgonPrimitivesVaultObligationError: {
2592
2553
  _enum: [
2554
+ 'SlotNotTakingBids',
2555
+ 'TooManyBlockRegistrants',
2556
+ 'InsufficientOwnershipTokens',
2557
+ 'BidTooLow',
2558
+ 'CannotRegisterOverlappingSessions',
2593
2559
  'ObligationNotFound',
2594
2560
  'NoMoreObligationIds',
2595
- 'MinimumObligationAmountNotMet',
2596
2561
  'VaultClosed',
2562
+ 'MinimumObligationAmountNotMet',
2597
2563
  'ExpirationAtBlockOverflow',
2598
- 'AccountWouldBeBelowMinimum',
2599
2564
  'InsufficientFunds',
2600
2565
  'InsufficientVaultFunds',
2601
- 'InsufficientBondedArgons',
2602
- 'ExpirationTooSoon',
2603
2566
  'NoPermissions',
2604
2567
  'HoldUnexpectedlyModified',
2605
2568
  'UnrecoverableHold',
2606
2569
  'VaultNotFound',
2607
- 'NoVaultBitcoinPubkeysAvailable',
2608
- 'UnableToGenerateVaultBitcoinPubkey',
2609
- 'InvalidBitcoinScript',
2610
- 'InternalError',
2611
- 'ObligationCompletionError',
2612
- 'VaultNotYetActive',
2613
- 'BaseFeeOverflow',
2614
- 'InvalidVaultSwitch',
2570
+ 'AccountWouldBeBelowMinimum',
2571
+ 'CannotRegisterDuplicateKeys',
2572
+ 'InvalidKeyFormat',
2573
+ 'BidCannotBeReduced',
2574
+ 'InvalidBidAmount',
2615
2575
  ],
2616
2576
  },
2617
2577
  /**
2618
- * Lookup339: argon_primitives::bitcoin::UtxoValue
2578
+ * Lookup338: argon_primitives::bitcoin::UtxoValue
2619
2579
  **/
2620
2580
  ArgonPrimitivesBitcoinUtxoValue: {
2621
2581
  utxoId: 'u64',
@@ -2625,7 +2585,7 @@ export default {
2625
2585
  watchForSpentUntilHeight: 'Compact<u64>',
2626
2586
  },
2627
2587
  /**
2628
- * Lookup340: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
2588
+ * Lookup339: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
2629
2589
  **/
2630
2590
  ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey: {
2631
2591
  _enum: {
@@ -2635,13 +2595,13 @@ export default {
2635
2595
  },
2636
2596
  },
2637
2597
  /**
2638
- * Lookup345: argon_primitives::bitcoin::BitcoinNetwork
2598
+ * Lookup344: argon_primitives::bitcoin::BitcoinNetwork
2639
2599
  **/
2640
2600
  ArgonPrimitivesBitcoinBitcoinNetwork: {
2641
2601
  _enum: ['Bitcoin', 'Testnet', 'Signet', 'Regtest'],
2642
2602
  },
2643
2603
  /**
2644
- * Lookup348: pallet_bitcoin_utxos::pallet::Error<T>
2604
+ * Lookup347: pallet_bitcoin_utxos::pallet::Error<T>
2645
2605
  **/
2646
2606
  PalletBitcoinUtxosError: {
2647
2607
  _enum: [
@@ -2660,32 +2620,29 @@ export default {
2660
2620
  ],
2661
2621
  },
2662
2622
  /**
2663
- * Lookup349: argon_primitives::vault::Vault<sp_core::crypto::AccountId32, Balance>
2623
+ * Lookup348: argon_primitives::vault::Vault<sp_core::crypto::AccountId32, Balance>
2664
2624
  **/
2665
2625
  ArgonPrimitivesVault: {
2666
2626
  operatorAccountId: 'AccountId32',
2667
- bitcoinArgons: 'ArgonPrimitivesVaultVaultArgons',
2627
+ lockedBitcoinArgons: 'ArgonPrimitivesVaultVaultArgons',
2628
+ terms: 'ArgonPrimitivesVaultVaultTerms',
2668
2629
  addedSecuritizationPercent: 'Compact<u128>',
2669
2630
  addedSecuritizationArgons: 'Compact<u128>',
2670
- bondedArgons: 'ArgonPrimitivesVaultVaultArgons',
2671
- miningRewardSharingPercentTake: 'Compact<u128>',
2631
+ bondedBitcoinArgons: 'ArgonPrimitivesVaultVaultArgons',
2672
2632
  isClosed: 'bool',
2673
2633
  pendingTerms: 'Option<(u64,ArgonPrimitivesVaultVaultTerms)>',
2674
- pendingBondedArgons: 'Option<(u64,u128)>',
2675
2634
  pendingBitcoins: 'u128',
2676
2635
  activationTick: 'u64',
2677
2636
  },
2678
2637
  /**
2679
- * Lookup350: argon_primitives::vault::VaultArgons<Balance>
2638
+ * Lookup349: argon_primitives::vault::VaultArgons<Balance>
2680
2639
  **/
2681
2640
  ArgonPrimitivesVaultVaultArgons: {
2682
- annualPercentRate: 'Compact<u128>',
2683
2641
  allocated: 'Compact<u128>',
2684
2642
  reserved: 'Compact<u128>',
2685
- baseFee: 'Compact<u128>',
2686
2643
  },
2687
2644
  /**
2688
- * Lookup356: argon_primitives::bitcoin::BitcoinXPub
2645
+ * Lookup353: argon_primitives::bitcoin::BitcoinXPub
2689
2646
  **/
2690
2647
  ArgonPrimitivesBitcoinBitcoinXPub: {
2691
2648
  publicKey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
@@ -2696,13 +2653,13 @@ export default {
2696
2653
  network: 'ArgonPrimitivesBitcoinNetworkKind',
2697
2654
  },
2698
2655
  /**
2699
- * Lookup358: argon_primitives::bitcoin::NetworkKind
2656
+ * Lookup355: argon_primitives::bitcoin::NetworkKind
2700
2657
  **/
2701
2658
  ArgonPrimitivesBitcoinNetworkKind: {
2702
2659
  _enum: ['Main', 'Test'],
2703
2660
  },
2704
2661
  /**
2705
- * Lookup364: argon_primitives::vault::Obligation<sp_core::crypto::AccountId32, Balance>
2662
+ * Lookup358: argon_primitives::vault::Obligation<sp_core::crypto::AccountId32, Balance>
2706
2663
  **/
2707
2664
  ArgonPrimitivesVaultObligation: {
2708
2665
  obligationId: 'Compact<u64>',
@@ -2714,7 +2671,21 @@ export default {
2714
2671
  amount: 'Compact<u128>',
2715
2672
  startTick: 'Compact<u64>',
2716
2673
  expiration: 'ArgonPrimitivesVaultObligationExpiration',
2674
+ bitcoinAnnualPercentRate: 'Option<u128>',
2675
+ },
2676
+ /**
2677
+ * Lookup363: pallet_vaults::pallet::BidPoolEntrant<T>
2678
+ **/
2679
+ PalletVaultsBidPoolEntrant: {
2680
+ operatorAccountId: 'AccountId32',
2681
+ vaultId: 'Compact<u32>',
2682
+ bondedBitcoins: 'Compact<u128>',
2683
+ prorata: 'Perbill',
2717
2684
  },
2685
+ /**
2686
+ * Lookup366: frame_support::PalletId
2687
+ **/
2688
+ FrameSupportPalletId: '[u8;8]',
2718
2689
  /**
2719
2690
  * Lookup367: pallet_vaults::pallet::Error<T>
2720
2691
  **/
@@ -2727,7 +2698,6 @@ export default {
2727
2698
  'ExpirationAtBlockOverflow',
2728
2699
  'InsufficientFunds',
2729
2700
  'InsufficientVaultFunds',
2730
- 'InsufficientBondedArgons',
2731
2701
  'AccountBelowMinimumBalance',
2732
2702
  'VaultClosed',
2733
2703
  'InvalidVaultAmount',
@@ -2740,7 +2710,6 @@ export default {
2740
2710
  'UnsafeXpubkey',
2741
2711
  'UnableToDeriveVaultXpubChild',
2742
2712
  'BitcoinConversionFailed',
2743
- 'ExpirationTooSoon',
2744
2713
  'NoPermissions',
2745
2714
  'HoldUnexpectedlyModified',
2746
2715
  'UnrecoverableHold',
@@ -2799,7 +2768,6 @@ export default {
2799
2768
  ExpirationAtBlockOverflow: 'Null',
2800
2769
  InsufficientFunds: 'Null',
2801
2770
  InsufficientVaultFunds: 'Null',
2802
- InsufficientBondedArgons: 'Null',
2803
2771
  AccountWouldGoBelowMinimumBalance: 'Null',
2804
2772
  VaultClosed: 'Null',
2805
2773
  InvalidVaultAmount: 'Null',
@@ -2814,7 +2782,6 @@ export default {
2814
2782
  InsufficientSatoshisLocked: 'Null',
2815
2783
  NoBitcoinPricesAvailable: 'Null',
2816
2784
  InvalidBitcoinScript: 'Null',
2817
- ExpirationTooSoon: 'Null',
2818
2785
  NoPermissions: 'Null',
2819
2786
  HoldUnexpectedlyModified: 'Null',
2820
2787
  UnrecoverableHold: 'Null',
@@ -2826,7 +2793,32 @@ export default {
2826
2793
  },
2827
2794
  },
2828
2795
  /**
2829
- * Lookup388: pallet_notaries::pallet::Error<T>
2796
+ * Lookup377: argon_primitives::vault::ObligationError
2797
+ **/
2798
+ ArgonPrimitivesVaultObligationError: {
2799
+ _enum: [
2800
+ 'ObligationNotFound',
2801
+ 'NoMoreObligationIds',
2802
+ 'MinimumObligationAmountNotMet',
2803
+ 'VaultClosed',
2804
+ 'ExpirationAtBlockOverflow',
2805
+ 'AccountWouldBeBelowMinimum',
2806
+ 'InsufficientFunds',
2807
+ 'InsufficientVaultFunds',
2808
+ 'HoldUnexpectedlyModified',
2809
+ 'UnrecoverableHold',
2810
+ 'VaultNotFound',
2811
+ 'NoVaultBitcoinPubkeysAvailable',
2812
+ 'UnableToGenerateVaultBitcoinPubkey',
2813
+ 'InvalidBitcoinScript',
2814
+ 'InternalError',
2815
+ 'ObligationCompletionError',
2816
+ 'VaultNotYetActive',
2817
+ 'BaseFeeOverflow',
2818
+ ],
2819
+ },
2820
+ /**
2821
+ * Lookup389: pallet_notaries::pallet::Error<T>
2830
2822
  **/
2831
2823
  PalletNotariesError: {
2832
2824
  _enum: [
@@ -2842,7 +2834,7 @@ export default {
2842
2834
  ],
2843
2835
  },
2844
2836
  /**
2845
- * Lookup392: argon_primitives::notary::NotaryNotebookKeyDetails
2837
+ * Lookup393: argon_primitives::notary::NotaryNotebookKeyDetails
2846
2838
  **/
2847
2839
  ArgonPrimitivesNotaryNotaryNotebookKeyDetails: {
2848
2840
  notebookNumber: 'Compact<u32>',
@@ -2852,7 +2844,7 @@ export default {
2852
2844
  parentSecret: 'Option<H256>',
2853
2845
  },
2854
2846
  /**
2855
- * Lookup395: pallet_notebook::pallet::Error<T>
2847
+ * Lookup396: pallet_notebook::pallet::Error<T>
2856
2848
  **/
2857
2849
  PalletNotebookError: {
2858
2850
  _enum: [
@@ -2874,7 +2866,7 @@ export default {
2874
2866
  ],
2875
2867
  },
2876
2868
  /**
2877
- * Lookup396: pallet_chain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
2869
+ * Lookup397: pallet_chain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
2878
2870
  **/
2879
2871
  PalletChainTransferQueuedTransferOut: {
2880
2872
  accountId: 'AccountId32',
@@ -2882,10 +2874,6 @@ export default {
2882
2874
  expirationTick: 'u64',
2883
2875
  notaryId: 'u32',
2884
2876
  },
2885
- /**
2886
- * Lookup402: frame_support::PalletId
2887
- **/
2888
- FrameSupportPalletId: '[u8;8]',
2889
2877
  /**
2890
2878
  * Lookup403: pallet_chain_transfer::pallet::Error<T>
2891
2879
  **/
@@ -3013,11 +3001,11 @@ export default {
3013
3001
  ],
3014
3002
  },
3015
3003
  /**
3016
- * Lookup429: pallet_block_rewards::pallet::Error<T>
3004
+ * Lookup432: pallet_block_rewards::pallet::Error<T>
3017
3005
  **/
3018
3006
  PalletBlockRewardsError: 'Null',
3019
3007
  /**
3020
- * Lookup434: pallet_mint::MintAction<Balance>
3008
+ * Lookup439: pallet_mint::MintAction<Balance>
3021
3009
  **/
3022
3010
  PalletMintMintAction: {
3023
3011
  argonBurned: 'u128',
@@ -3025,13 +3013,13 @@ export default {
3025
3013
  bitcoinMinted: 'u128',
3026
3014
  },
3027
3015
  /**
3028
- * Lookup435: pallet_mint::pallet::Error<T>
3016
+ * Lookup440: pallet_mint::pallet::Error<T>
3029
3017
  **/
3030
3018
  PalletMintError: {
3031
3019
  _enum: ['TooManyPendingMints'],
3032
3020
  },
3033
3021
  /**
3034
- * Lookup437: pallet_balances::types::BalanceLock<Balance>
3022
+ * Lookup442: pallet_balances::types::BalanceLock<Balance>
3035
3023
  **/
3036
3024
  PalletBalancesBalanceLock: {
3037
3025
  id: '[u8;8]',
@@ -3039,27 +3027,27 @@ export default {
3039
3027
  reasons: 'PalletBalancesReasons',
3040
3028
  },
3041
3029
  /**
3042
- * Lookup438: pallet_balances::types::Reasons
3030
+ * Lookup443: pallet_balances::types::Reasons
3043
3031
  **/
3044
3032
  PalletBalancesReasons: {
3045
3033
  _enum: ['Fee', 'Misc', 'All'],
3046
3034
  },
3047
3035
  /**
3048
- * Lookup441: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
3036
+ * Lookup446: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
3049
3037
  **/
3050
3038
  PalletBalancesReserveData: {
3051
3039
  id: '[u8;8]',
3052
3040
  amount: 'u128',
3053
3041
  },
3054
3042
  /**
3055
- * Lookup444: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeHoldReason, Balance>
3043
+ * Lookup449: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeHoldReason, Balance>
3056
3044
  **/
3057
3045
  FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
3058
3046
  id: 'ArgonRuntimeRuntimeHoldReason',
3059
3047
  amount: 'u128',
3060
3048
  },
3061
3049
  /**
3062
- * Lookup445: argon_runtime::RuntimeHoldReason
3050
+ * Lookup450: argon_runtime::RuntimeHoldReason
3063
3051
  **/
3064
3052
  ArgonRuntimeRuntimeHoldReason: {
3065
3053
  _enum: {
@@ -3086,38 +3074,38 @@ export default {
3086
3074
  },
3087
3075
  },
3088
3076
  /**
3089
- * Lookup446: pallet_mining_slot::pallet::HoldReason
3077
+ * Lookup451: pallet_mining_slot::pallet::HoldReason
3090
3078
  **/
3091
3079
  PalletMiningSlotHoldReason: {
3092
3080
  _enum: ['RegisterAsMiner'],
3093
3081
  },
3094
3082
  /**
3095
- * Lookup447: pallet_vaults::pallet::HoldReason
3083
+ * Lookup452: pallet_vaults::pallet::HoldReason
3096
3084
  **/
3097
3085
  PalletVaultsHoldReason: {
3098
3086
  _enum: ['EnterVault', 'ObligationFee'],
3099
3087
  },
3100
3088
  /**
3101
- * Lookup448: pallet_bitcoin_locks::pallet::HoldReason
3089
+ * Lookup453: pallet_bitcoin_locks::pallet::HoldReason
3102
3090
  **/
3103
3091
  PalletBitcoinLocksHoldReason: {
3104
3092
  _enum: ['ReleaseBitcoinLock'],
3105
3093
  },
3106
3094
  /**
3107
- * Lookup449: pallet_block_rewards::pallet::HoldReason
3095
+ * Lookup454: pallet_block_rewards::pallet::HoldReason
3108
3096
  **/
3109
3097
  PalletBlockRewardsHoldReason: {
3110
3098
  _enum: ['MaturationPeriod'],
3111
3099
  },
3112
3100
  /**
3113
- * Lookup452: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeFreezeReason, Balance>
3101
+ * Lookup457: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeFreezeReason, Balance>
3114
3102
  **/
3115
3103
  FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
3116
3104
  id: 'ArgonRuntimeRuntimeFreezeReason',
3117
3105
  amount: 'u128',
3118
3106
  },
3119
3107
  /**
3120
- * Lookup453: argon_runtime::RuntimeFreezeReason
3108
+ * Lookup458: argon_runtime::RuntimeFreezeReason
3121
3109
  **/
3122
3110
  ArgonRuntimeRuntimeFreezeReason: {
3123
3111
  _enum: {
@@ -3144,13 +3132,13 @@ export default {
3144
3132
  },
3145
3133
  },
3146
3134
  /**
3147
- * Lookup454: pallet_block_rewards::pallet::FreezeReason
3135
+ * Lookup459: pallet_block_rewards::pallet::FreezeReason
3148
3136
  **/
3149
3137
  PalletBlockRewardsFreezeReason: {
3150
3138
  _enum: ['MaturationPeriod'],
3151
3139
  },
3152
3140
  /**
3153
- * Lookup456: pallet_balances::pallet::Error<T, I>
3141
+ * Lookup461: pallet_balances::pallet::Error<T, I>
3154
3142
  **/
3155
3143
  PalletBalancesError: {
3156
3144
  _enum: [
@@ -3169,31 +3157,31 @@ export default {
3169
3157
  ],
3170
3158
  },
3171
3159
  /**
3172
- * Lookup458: pallet_tx_pause::pallet::Error<T>
3160
+ * Lookup463: pallet_tx_pause::pallet::Error<T>
3173
3161
  **/
3174
3162
  PalletTxPauseError: {
3175
3163
  _enum: ['IsPaused', 'IsUnpaused', 'Unpausable', 'NotFound'],
3176
3164
  },
3177
3165
  /**
3178
- * Lookup459: pallet_transaction_payment::Releases
3166
+ * Lookup464: pallet_transaction_payment::Releases
3179
3167
  **/
3180
3168
  PalletTransactionPaymentReleases: {
3181
3169
  _enum: ['V1Ancient', 'V2'],
3182
3170
  },
3183
3171
  /**
3184
- * Lookup460: pallet_utility::pallet::Error<T>
3172
+ * Lookup465: pallet_utility::pallet::Error<T>
3185
3173
  **/
3186
3174
  PalletUtilityError: {
3187
3175
  _enum: ['TooManyCalls'],
3188
3176
  },
3189
3177
  /**
3190
- * Lookup461: pallet_sudo::pallet::Error<T>
3178
+ * Lookup466: pallet_sudo::pallet::Error<T>
3191
3179
  **/
3192
3180
  PalletSudoError: {
3193
3181
  _enum: ['RequireSudo'],
3194
3182
  },
3195
3183
  /**
3196
- * Lookup462: pallet_ismp::pallet::Error<T>
3184
+ * Lookup467: pallet_ismp::pallet::Error<T>
3197
3185
  **/
3198
3186
  PalletIsmpError: {
3199
3187
  _enum: [
@@ -3205,11 +3193,11 @@ export default {
3205
3193
  ],
3206
3194
  },
3207
3195
  /**
3208
- * Lookup463: pallet_hyperbridge::pallet::Error<T>
3196
+ * Lookup468: pallet_hyperbridge::pallet::Error<T>
3209
3197
  **/
3210
3198
  PalletHyperbridgeError: 'Null',
3211
3199
  /**
3212
- * Lookup465: pallet_token_gateway::pallet::Error<T>
3200
+ * Lookup470: pallet_token_gateway::pallet::Error<T>
3213
3201
  **/
3214
3202
  PalletTokenGatewayError: {
3215
3203
  _enum: [
@@ -3225,47 +3213,47 @@ export default {
3225
3213
  ],
3226
3214
  },
3227
3215
  /**
3228
- * Lookup468: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
3216
+ * Lookup473: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
3229
3217
  **/
3230
3218
  FrameSystemExtensionsCheckNonZeroSender: 'Null',
3231
3219
  /**
3232
- * Lookup469: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
3220
+ * Lookup474: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
3233
3221
  **/
3234
3222
  FrameSystemExtensionsCheckSpecVersion: 'Null',
3235
3223
  /**
3236
- * Lookup470: frame_system::extensions::check_tx_version::CheckTxVersion<T>
3224
+ * Lookup475: frame_system::extensions::check_tx_version::CheckTxVersion<T>
3237
3225
  **/
3238
3226
  FrameSystemExtensionsCheckTxVersion: 'Null',
3239
3227
  /**
3240
- * Lookup471: frame_system::extensions::check_genesis::CheckGenesis<T>
3228
+ * Lookup476: frame_system::extensions::check_genesis::CheckGenesis<T>
3241
3229
  **/
3242
3230
  FrameSystemExtensionsCheckGenesis: 'Null',
3243
3231
  /**
3244
- * Lookup474: frame_system::extensions::check_nonce::CheckNonce<T>
3232
+ * Lookup479: frame_system::extensions::check_nonce::CheckNonce<T>
3245
3233
  **/
3246
3234
  FrameSystemExtensionsCheckNonce: 'Compact<u32>',
3247
3235
  /**
3248
- * Lookup475: frame_system::extensions::check_weight::CheckWeight<T>
3236
+ * Lookup480: frame_system::extensions::check_weight::CheckWeight<T>
3249
3237
  **/
3250
3238
  FrameSystemExtensionsCheckWeight: 'Null',
3251
3239
  /**
3252
- * Lookup476: pallet_transaction_payment::ChargeTransactionPayment<T>
3240
+ * Lookup481: pallet_transaction_payment::ChargeTransactionPayment<T>
3253
3241
  **/
3254
3242
  PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
3255
3243
  /**
3256
- * Lookup477: frame_metadata_hash_extension::CheckMetadataHash<T>
3244
+ * Lookup482: frame_metadata_hash_extension::CheckMetadataHash<T>
3257
3245
  **/
3258
3246
  FrameMetadataHashExtensionCheckMetadataHash: {
3259
3247
  mode: 'FrameMetadataHashExtensionMode',
3260
3248
  },
3261
3249
  /**
3262
- * Lookup478: frame_metadata_hash_extension::Mode
3250
+ * Lookup483: frame_metadata_hash_extension::Mode
3263
3251
  **/
3264
3252
  FrameMetadataHashExtensionMode: {
3265
3253
  _enum: ['Disabled', 'Enabled'],
3266
3254
  },
3267
3255
  /**
3268
- * Lookup480: argon_runtime::Runtime
3256
+ * Lookup485: argon_runtime::Runtime
3269
3257
  **/
3270
3258
  ArgonRuntimeRuntime: 'Null',
3271
3259
  };