@argonprotocol/mainchain 1.0.16 → 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 +30 -36
  7. package/lib/cjs/interfaces/lookup.d.ts +245 -276
  8. package/lib/cjs/interfaces/lookup.js +285 -293
  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 +283 -294
  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 +30 -36
  18. package/lib/esm/interfaces/lookup.d.ts +245 -276
  19. package/lib/esm/interfaces/lookup.js +285 -293
  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 +283 -294
  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 +30 -36
  32. package/lib/types/interfaces/lookup.d.ts +245 -276
  33. package/lib/types/interfaces/registry.d.ts +2 -3
  34. package/lib/types/interfaces/types-lookup.d.ts +283 -294
  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,24 +1624,19 @@ 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
- miningSlotDelay: 'u64',
1633
+ miningSlotDelay: 'Option<u64>',
1634
+ ticksBeforeBidEndForVrfClose: 'Option<u64>',
1633
1635
  },
1634
1636
  },
1635
1637
  },
1636
1638
  /**
1637
- * Lookup184: pallet_mining_slot::MiningSlotBid<VaultId, Balance>
1638
- **/
1639
- PalletMiningSlotMiningSlotBid: {
1640
- vaultId: 'u32',
1641
- amount: 'u128',
1642
- },
1643
- /**
1644
- * Lookup185: pallet_bitcoin_utxos::pallet::Call<T>
1639
+ * Lookup181: pallet_bitcoin_utxos::pallet::Call<T>
1645
1640
  **/
1646
1641
  PalletBitcoinUtxosCall: {
1647
1642
  _enum: {
@@ -1658,7 +1653,7 @@ export default {
1658
1653
  },
1659
1654
  },
1660
1655
  /**
1661
- * Lookup186: argon_primitives::inherents::BitcoinUtxoSync
1656
+ * Lookup182: argon_primitives::inherents::BitcoinUtxoSync
1662
1657
  **/
1663
1658
  ArgonPrimitivesInherentsBitcoinUtxoSync: {
1664
1659
  spent: 'BTreeMap<u64, u64>',
@@ -1667,14 +1662,14 @@ export default {
1667
1662
  syncToBlock: 'ArgonPrimitivesBitcoinBitcoinBlock',
1668
1663
  },
1669
1664
  /**
1670
- * Lookup196: argon_primitives::bitcoin::BitcoinBlock
1665
+ * Lookup192: argon_primitives::bitcoin::BitcoinBlock
1671
1666
  **/
1672
1667
  ArgonPrimitivesBitcoinBitcoinBlock: {
1673
1668
  blockHeight: 'Compact<u64>',
1674
1669
  blockHash: 'ArgonPrimitivesBitcoinH256Le',
1675
1670
  },
1676
1671
  /**
1677
- * Lookup197: pallet_vaults::pallet::Call<T>
1672
+ * Lookup193: pallet_vaults::pallet::Call<T>
1678
1673
  **/
1679
1674
  PalletVaultsCall: {
1680
1675
  _enum: {
@@ -1683,8 +1678,8 @@ export default {
1683
1678
  },
1684
1679
  modify_funding: {
1685
1680
  vaultId: 'u32',
1686
- totalMiningAmountOffered: 'u128',
1687
- totalBitcoinAmountOffered: 'u128',
1681
+ totalBondedBitcoinAmountOffered: 'u128',
1682
+ totalLockedBitcoinAmountOffered: 'u128',
1688
1683
  addedSecuritizationPercent: 'u128',
1689
1684
  },
1690
1685
  modify_terms: {
@@ -1701,31 +1696,28 @@ export default {
1701
1696
  },
1702
1697
  },
1703
1698
  /**
1704
- * Lookup198: pallet_vaults::pallet::VaultConfig<Balance>
1699
+ * Lookup194: pallet_vaults::pallet::VaultConfig<Balance>
1705
1700
  **/
1706
1701
  PalletVaultsVaultConfig: {
1707
1702
  terms: 'ArgonPrimitivesVaultVaultTerms',
1708
- bitcoinAmountAllocated: 'Compact<u128>',
1703
+ lockedBitcoinArgonsAllocated: 'Compact<u128>',
1709
1704
  bitcoinXpubkey: 'ArgonPrimitivesBitcoinOpaqueBitcoinXpub',
1710
- bondedArgonsAllocated: 'Compact<u128>',
1705
+ bondedBitcoinArgonsAllocated: 'Compact<u128>',
1711
1706
  addedSecuritizationPercent: 'Compact<u128>',
1712
1707
  },
1713
1708
  /**
1714
- * Lookup199: argon_primitives::vault::VaultTerms<Balance>
1709
+ * Lookup195: argon_primitives::vault::VaultTerms<Balance>
1715
1710
  **/
1716
1711
  ArgonPrimitivesVaultVaultTerms: {
1717
1712
  bitcoinAnnualPercentRate: 'Compact<u128>',
1718
1713
  bitcoinBaseFee: 'Compact<u128>',
1719
- bondedArgonsAnnualPercentRate: 'Compact<u128>',
1720
- bondedArgonsBaseFee: 'Compact<u128>',
1721
- miningRewardSharingPercentTake: 'Compact<u128>',
1722
1714
  },
1723
1715
  /**
1724
- * Lookup200: argon_primitives::bitcoin::OpaqueBitcoinXpub
1716
+ * Lookup197: argon_primitives::bitcoin::OpaqueBitcoinXpub
1725
1717
  **/
1726
1718
  ArgonPrimitivesBitcoinOpaqueBitcoinXpub: '[u8;78]',
1727
1719
  /**
1728
- * Lookup202: pallet_bitcoin_locks::pallet::Call<T>
1720
+ * Lookup199: pallet_bitcoin_locks::pallet::Call<T>
1729
1721
  **/
1730
1722
  PalletBitcoinLocksCall: {
1731
1723
  _enum: {
@@ -1749,11 +1741,11 @@ export default {
1749
1741
  },
1750
1742
  },
1751
1743
  /**
1752
- * Lookup203: argon_primitives::bitcoin::CompressedBitcoinPubkey
1744
+ * Lookup200: argon_primitives::bitcoin::CompressedBitcoinPubkey
1753
1745
  **/
1754
1746
  ArgonPrimitivesBitcoinCompressedBitcoinPubkey: '[u8;33]',
1755
1747
  /**
1756
- * Lookup207: pallet_notaries::pallet::Call<T>
1748
+ * Lookup204: pallet_notaries::pallet::Call<T>
1757
1749
  **/
1758
1750
  PalletNotariesCall: {
1759
1751
  _enum: {
@@ -1771,7 +1763,7 @@ export default {
1771
1763
  },
1772
1764
  },
1773
1765
  /**
1774
- * Lookup208: pallet_notebook::pallet::Call<T>
1766
+ * Lookup205: pallet_notebook::pallet::Call<T>
1775
1767
  **/
1776
1768
  PalletNotebookCall: {
1777
1769
  _enum: {
@@ -1784,14 +1776,14 @@ export default {
1784
1776
  },
1785
1777
  },
1786
1778
  /**
1787
- * Lookup210: argon_primitives::notebook::SignedNotebookHeader
1779
+ * Lookup207: argon_primitives::notebook::SignedNotebookHeader
1788
1780
  **/
1789
1781
  ArgonPrimitivesNotebookSignedNotebookHeader: {
1790
1782
  header: 'ArgonPrimitivesNotebookNotebookHeader',
1791
1783
  signature: '[u8;64]',
1792
1784
  },
1793
1785
  /**
1794
- * Lookup211: argon_primitives::notebook::NotebookHeader
1786
+ * Lookup208: argon_primitives::notebook::NotebookHeader
1795
1787
  **/
1796
1788
  ArgonPrimitivesNotebookNotebookHeader: {
1797
1789
  version: 'Compact<u16>',
@@ -1811,7 +1803,7 @@ export default {
1811
1803
  domains: 'Vec<(H256,AccountId32)>',
1812
1804
  },
1813
1805
  /**
1814
- * Lookup214: argon_primitives::notebook::ChainTransfer
1806
+ * Lookup211: argon_primitives::notebook::ChainTransfer
1815
1807
  **/
1816
1808
  ArgonPrimitivesNotebookChainTransfer: {
1817
1809
  _enum: {
@@ -1825,14 +1817,14 @@ export default {
1825
1817
  },
1826
1818
  },
1827
1819
  /**
1828
- * Lookup217: argon_primitives::balance_change::AccountOrigin
1820
+ * Lookup214: argon_primitives::balance_change::AccountOrigin
1829
1821
  **/
1830
1822
  ArgonPrimitivesBalanceChangeAccountOrigin: {
1831
1823
  notebookNumber: 'Compact<u32>',
1832
1824
  accountUid: 'Compact<u32>',
1833
1825
  },
1834
1826
  /**
1835
- * Lookup224: pallet_chain_transfer::pallet::Call<T>
1827
+ * Lookup221: pallet_chain_transfer::pallet::Call<T>
1836
1828
  **/
1837
1829
  PalletChainTransferCall: {
1838
1830
  _enum: {
@@ -1843,7 +1835,7 @@ export default {
1843
1835
  },
1844
1836
  },
1845
1837
  /**
1846
- * Lookup225: pallet_block_seal_spec::pallet::Call<T>
1838
+ * Lookup222: pallet_block_seal_spec::pallet::Call<T>
1847
1839
  **/
1848
1840
  PalletBlockSealSpecCall: {
1849
1841
  _enum: {
@@ -1854,7 +1846,7 @@ export default {
1854
1846
  },
1855
1847
  },
1856
1848
  /**
1857
- * Lookup226: pallet_domains::pallet::Call<T>
1849
+ * Lookup223: pallet_domains::pallet::Call<T>
1858
1850
  **/
1859
1851
  PalletDomainsCall: {
1860
1852
  _enum: {
@@ -1865,7 +1857,7 @@ export default {
1865
1857
  },
1866
1858
  },
1867
1859
  /**
1868
- * Lookup227: pallet_price_index::pallet::Call<T>
1860
+ * Lookup224: pallet_price_index::pallet::Call<T>
1869
1861
  **/
1870
1862
  PalletPriceIndexCall: {
1871
1863
  _enum: {
@@ -1878,16 +1870,18 @@ export default {
1878
1870
  },
1879
1871
  },
1880
1872
  /**
1881
- * Lookup228: pallet_price_index::PriceIndex
1873
+ * Lookup225: pallet_price_index::PriceIndex
1882
1874
  **/
1883
1875
  PalletPriceIndexPriceIndex: {
1884
1876
  btcUsdPrice: 'Compact<u128>',
1877
+ argonotUsdPrice: 'u128',
1885
1878
  argonUsdPrice: 'Compact<u128>',
1886
1879
  argonUsdTargetPrice: 'u128',
1880
+ argonTimeWeightedAverageLiquidity: 'u128',
1887
1881
  tick: 'Compact<u64>',
1888
1882
  },
1889
1883
  /**
1890
- * Lookup229: pallet_grandpa::pallet::Call<T>
1884
+ * Lookup226: pallet_grandpa::pallet::Call<T>
1891
1885
  **/
1892
1886
  PalletGrandpaCall: {
1893
1887
  _enum: {
@@ -1906,14 +1900,14 @@ export default {
1906
1900
  },
1907
1901
  },
1908
1902
  /**
1909
- * Lookup230: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
1903
+ * Lookup227: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
1910
1904
  **/
1911
1905
  SpConsensusGrandpaEquivocationProof: {
1912
1906
  setId: 'u64',
1913
1907
  equivocation: 'SpConsensusGrandpaEquivocation',
1914
1908
  },
1915
1909
  /**
1916
- * Lookup231: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
1910
+ * Lookup228: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
1917
1911
  **/
1918
1912
  SpConsensusGrandpaEquivocation: {
1919
1913
  _enum: {
@@ -1922,7 +1916,7 @@ export default {
1922
1916
  },
1923
1917
  },
1924
1918
  /**
1925
- * 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>
1926
1920
  **/
1927
1921
  FinalityGrandpaEquivocationPrevote: {
1928
1922
  roundNumber: 'u64',
@@ -1931,18 +1925,18 @@ export default {
1931
1925
  second: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)',
1932
1926
  },
1933
1927
  /**
1934
- * Lookup233: finality_grandpa::Prevote<primitive_types::H256, N>
1928
+ * Lookup230: finality_grandpa::Prevote<primitive_types::H256, N>
1935
1929
  **/
1936
1930
  FinalityGrandpaPrevote: {
1937
1931
  targetHash: 'H256',
1938
1932
  targetNumber: 'u32',
1939
1933
  },
1940
1934
  /**
1941
- * Lookup234: sp_consensus_grandpa::app::Signature
1935
+ * Lookup231: sp_consensus_grandpa::app::Signature
1942
1936
  **/
1943
1937
  SpConsensusGrandpaAppSignature: '[u8;64]',
1944
1938
  /**
1945
- * 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>
1946
1940
  **/
1947
1941
  FinalityGrandpaEquivocationPrecommit: {
1948
1942
  roundNumber: 'u64',
@@ -1951,18 +1945,18 @@ export default {
1951
1945
  second: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)',
1952
1946
  },
1953
1947
  /**
1954
- * Lookup237: finality_grandpa::Precommit<primitive_types::H256, N>
1948
+ * Lookup234: finality_grandpa::Precommit<primitive_types::H256, N>
1955
1949
  **/
1956
1950
  FinalityGrandpaPrecommit: {
1957
1951
  targetHash: 'H256',
1958
1952
  targetNumber: 'u32',
1959
1953
  },
1960
1954
  /**
1961
- * Lookup239: sp_core::Void
1955
+ * Lookup236: sp_core::Void
1962
1956
  **/
1963
1957
  SpCoreVoid: 'Null',
1964
1958
  /**
1965
- * Lookup240: pallet_block_seal::pallet::Call<T>
1959
+ * Lookup237: pallet_block_seal::pallet::Call<T>
1966
1960
  **/
1967
1961
  PalletBlockSealCall: {
1968
1962
  _enum: {
@@ -1972,7 +1966,7 @@ export default {
1972
1966
  },
1973
1967
  },
1974
1968
  /**
1975
- * Lookup241: argon_primitives::inherents::BlockSealInherent
1969
+ * Lookup238: argon_primitives::inherents::BlockSealInherent
1976
1970
  **/
1977
1971
  ArgonPrimitivesInherentsBlockSealInherent: {
1978
1972
  _enum: {
@@ -1987,7 +1981,7 @@ export default {
1987
1981
  },
1988
1982
  },
1989
1983
  /**
1990
- * Lookup242: argon_primitives::balance_change::MerkleProof
1984
+ * Lookup239: argon_primitives::balance_change::MerkleProof
1991
1985
  **/
1992
1986
  ArgonPrimitivesBalanceChangeMerkleProof: {
1993
1987
  proof: 'Vec<H256>',
@@ -1995,7 +1989,7 @@ export default {
1995
1989
  leafIndex: 'Compact<u32>',
1996
1990
  },
1997
1991
  /**
1998
- * Lookup244: argon_primitives::block_vote::BlockVoteT<primitive_types::H256>
1992
+ * Lookup241: argon_primitives::block_vote::BlockVoteT<primitive_types::H256>
1999
1993
  **/
2000
1994
  ArgonPrimitivesBlockVoteBlockVoteT: {
2001
1995
  accountId: 'AccountId32',
@@ -2007,7 +2001,7 @@ export default {
2007
2001
  tick: 'Compact<u64>',
2008
2002
  },
2009
2003
  /**
2010
- * Lookup245: sp_runtime::MultiSignature
2004
+ * Lookup242: sp_runtime::MultiSignature
2011
2005
  **/
2012
2006
  SpRuntimeMultiSignature: {
2013
2007
  _enum: {
@@ -2017,7 +2011,7 @@ export default {
2017
2011
  },
2018
2012
  },
2019
2013
  /**
2020
- * Lookup247: pallet_block_rewards::pallet::Call<T>
2014
+ * Lookup244: pallet_block_rewards::pallet::Call<T>
2021
2015
  **/
2022
2016
  PalletBlockRewardsCall: {
2023
2017
  _enum: {
@@ -2027,11 +2021,11 @@ export default {
2027
2021
  },
2028
2022
  },
2029
2023
  /**
2030
- * Lookup248: pallet_mint::pallet::Call<T>
2024
+ * Lookup245: pallet_mint::pallet::Call<T>
2031
2025
  **/
2032
2026
  PalletMintCall: 'Null',
2033
2027
  /**
2034
- * Lookup249: pallet_balances::pallet::Call<T, I>
2028
+ * Lookup246: pallet_balances::pallet::Call<T, I>
2035
2029
  **/
2036
2030
  PalletBalancesCall: {
2037
2031
  _enum: {
@@ -2076,13 +2070,13 @@ export default {
2076
2070
  },
2077
2071
  },
2078
2072
  /**
2079
- * Lookup250: pallet_balances::types::AdjustmentDirection
2073
+ * Lookup247: pallet_balances::types::AdjustmentDirection
2080
2074
  **/
2081
2075
  PalletBalancesAdjustmentDirection: {
2082
2076
  _enum: ['Increase', 'Decrease'],
2083
2077
  },
2084
2078
  /**
2085
- * Lookup252: pallet_tx_pause::pallet::Call<T>
2079
+ * Lookup249: pallet_tx_pause::pallet::Call<T>
2086
2080
  **/
2087
2081
  PalletTxPauseCall: {
2088
2082
  _enum: {
@@ -2095,7 +2089,7 @@ export default {
2095
2089
  },
2096
2090
  },
2097
2091
  /**
2098
- * Lookup253: pallet_utility::pallet::Call<T>
2092
+ * Lookup250: pallet_utility::pallet::Call<T>
2099
2093
  **/
2100
2094
  PalletUtilityCall: {
2101
2095
  _enum: {
@@ -2123,7 +2117,7 @@ export default {
2123
2117
  },
2124
2118
  },
2125
2119
  /**
2126
- * Lookup255: argon_runtime::OriginCaller
2120
+ * Lookup252: argon_runtime::OriginCaller
2127
2121
  **/
2128
2122
  ArgonRuntimeOriginCaller: {
2129
2123
  _enum: {
@@ -2132,7 +2126,7 @@ export default {
2132
2126
  },
2133
2127
  },
2134
2128
  /**
2135
- * Lookup256: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
2129
+ * Lookup253: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
2136
2130
  **/
2137
2131
  FrameSupportDispatchRawOrigin: {
2138
2132
  _enum: {
@@ -2142,7 +2136,7 @@ export default {
2142
2136
  },
2143
2137
  },
2144
2138
  /**
2145
- * Lookup257: pallet_sudo::pallet::Call<T>
2139
+ * Lookup254: pallet_sudo::pallet::Call<T>
2146
2140
  **/
2147
2141
  PalletSudoCall: {
2148
2142
  _enum: {
@@ -2167,7 +2161,7 @@ export default {
2167
2161
  },
2168
2162
  },
2169
2163
  /**
2170
- * Lookup258: pallet_ismp::pallet::Call<T>
2164
+ * Lookup255: pallet_ismp::pallet::Call<T>
2171
2165
  **/
2172
2166
  PalletIsmpCall: {
2173
2167
  _enum: {
@@ -2187,7 +2181,7 @@ export default {
2187
2181
  },
2188
2182
  },
2189
2183
  /**
2190
- * Lookup260: ismp::messaging::Message
2184
+ * Lookup257: ismp::messaging::Message
2191
2185
  **/
2192
2186
  IsmpMessagingMessage: {
2193
2187
  _enum: {
@@ -2199,7 +2193,7 @@ export default {
2199
2193
  },
2200
2194
  },
2201
2195
  /**
2202
- * Lookup261: ismp::messaging::ConsensusMessage
2196
+ * Lookup258: ismp::messaging::ConsensusMessage
2203
2197
  **/
2204
2198
  IsmpMessagingConsensusMessage: {
2205
2199
  consensusProof: 'Bytes',
@@ -2207,7 +2201,7 @@ export default {
2207
2201
  signer: 'Bytes',
2208
2202
  },
2209
2203
  /**
2210
- * Lookup262: ismp::messaging::FraudProofMessage
2204
+ * Lookup259: ismp::messaging::FraudProofMessage
2211
2205
  **/
2212
2206
  IsmpMessagingFraudProofMessage: {
2213
2207
  proof1: 'Bytes',
@@ -2215,7 +2209,7 @@ export default {
2215
2209
  consensusStateId: '[u8;4]',
2216
2210
  },
2217
2211
  /**
2218
- * Lookup263: ismp::messaging::RequestMessage
2212
+ * Lookup260: ismp::messaging::RequestMessage
2219
2213
  **/
2220
2214
  IsmpMessagingRequestMessage: {
2221
2215
  requests: 'Vec<IsmpRouterPostRequest>',
@@ -2223,7 +2217,7 @@ export default {
2223
2217
  signer: 'Bytes',
2224
2218
  },
2225
2219
  /**
2226
- * Lookup265: ismp::router::PostRequest
2220
+ * Lookup262: ismp::router::PostRequest
2227
2221
  **/
2228
2222
  IsmpRouterPostRequest: {
2229
2223
  source: 'IsmpHostStateMachine',
@@ -2235,14 +2229,14 @@ export default {
2235
2229
  body: 'Bytes',
2236
2230
  },
2237
2231
  /**
2238
- * Lookup266: ismp::messaging::Proof
2232
+ * Lookup263: ismp::messaging::Proof
2239
2233
  **/
2240
2234
  IsmpMessagingProof: {
2241
2235
  height: 'IsmpConsensusStateMachineHeight',
2242
2236
  proof: 'Bytes',
2243
2237
  },
2244
2238
  /**
2245
- * Lookup267: ismp::messaging::ResponseMessage
2239
+ * Lookup264: ismp::messaging::ResponseMessage
2246
2240
  **/
2247
2241
  IsmpMessagingResponseMessage: {
2248
2242
  datagram: 'IsmpRouterRequestResponse',
@@ -2250,7 +2244,7 @@ export default {
2250
2244
  signer: 'Bytes',
2251
2245
  },
2252
2246
  /**
2253
- * Lookup268: ismp::router::RequestResponse
2247
+ * Lookup265: ismp::router::RequestResponse
2254
2248
  **/
2255
2249
  IsmpRouterRequestResponse: {
2256
2250
  _enum: {
@@ -2259,7 +2253,7 @@ export default {
2259
2253
  },
2260
2254
  },
2261
2255
  /**
2262
- * Lookup270: ismp::router::Request
2256
+ * Lookup267: ismp::router::Request
2263
2257
  **/
2264
2258
  IsmpRouterRequest: {
2265
2259
  _enum: {
@@ -2268,7 +2262,7 @@ export default {
2268
2262
  },
2269
2263
  },
2270
2264
  /**
2271
- * Lookup271: ismp::router::GetRequest
2265
+ * Lookup268: ismp::router::GetRequest
2272
2266
  **/
2273
2267
  IsmpRouterGetRequest: {
2274
2268
  _alias: {
@@ -2284,7 +2278,7 @@ export default {
2284
2278
  timeoutTimestamp: 'u64',
2285
2279
  },
2286
2280
  /**
2287
- * Lookup273: ismp::router::Response
2281
+ * Lookup270: ismp::router::Response
2288
2282
  **/
2289
2283
  IsmpRouterResponse: {
2290
2284
  _enum: {
@@ -2293,7 +2287,7 @@ export default {
2293
2287
  },
2294
2288
  },
2295
2289
  /**
2296
- * Lookup274: ismp::router::PostResponse
2290
+ * Lookup271: ismp::router::PostResponse
2297
2291
  **/
2298
2292
  IsmpRouterPostResponse: {
2299
2293
  post: 'IsmpRouterPostRequest',
@@ -2301,21 +2295,21 @@ export default {
2301
2295
  timeoutTimestamp: 'u64',
2302
2296
  },
2303
2297
  /**
2304
- * Lookup275: ismp::router::GetResponse
2298
+ * Lookup272: ismp::router::GetResponse
2305
2299
  **/
2306
2300
  IsmpRouterGetResponse: {
2307
2301
  get: 'IsmpRouterGetRequest',
2308
2302
  values: 'Vec<IsmpRouterStorageValue>',
2309
2303
  },
2310
2304
  /**
2311
- * Lookup277: ismp::router::StorageValue
2305
+ * Lookup274: ismp::router::StorageValue
2312
2306
  **/
2313
2307
  IsmpRouterStorageValue: {
2314
2308
  key: 'Bytes',
2315
2309
  value: 'Option<Bytes>',
2316
2310
  },
2317
2311
  /**
2318
- * Lookup279: ismp::messaging::TimeoutMessage
2312
+ * Lookup276: ismp::messaging::TimeoutMessage
2319
2313
  **/
2320
2314
  IsmpMessagingTimeoutMessage: {
2321
2315
  _enum: {
@@ -2333,7 +2327,7 @@ export default {
2333
2327
  },
2334
2328
  },
2335
2329
  /**
2336
- * Lookup281: ismp::messaging::CreateConsensusState
2330
+ * Lookup278: ismp::messaging::CreateConsensusState
2337
2331
  **/
2338
2332
  IsmpMessagingCreateConsensusState: {
2339
2333
  consensusState: 'Bytes',
@@ -2344,14 +2338,14 @@ export default {
2344
2338
  stateMachineCommitments: 'Vec<(IsmpConsensusStateMachineId,IsmpMessagingStateCommitmentHeight)>',
2345
2339
  },
2346
2340
  /**
2347
- * Lookup287: ismp::messaging::StateCommitmentHeight
2341
+ * Lookup284: ismp::messaging::StateCommitmentHeight
2348
2342
  **/
2349
2343
  IsmpMessagingStateCommitmentHeight: {
2350
2344
  commitment: 'IsmpConsensusStateCommitment',
2351
2345
  height: 'u64',
2352
2346
  },
2353
2347
  /**
2354
- * Lookup288: ismp::consensus::StateCommitment
2348
+ * Lookup285: ismp::consensus::StateCommitment
2355
2349
  **/
2356
2350
  IsmpConsensusStateCommitment: {
2357
2351
  timestamp: 'u64',
@@ -2359,7 +2353,7 @@ export default {
2359
2353
  stateRoot: 'H256',
2360
2354
  },
2361
2355
  /**
2362
- * Lookup289: pallet_ismp::utils::UpdateConsensusState
2356
+ * Lookup286: pallet_ismp::utils::UpdateConsensusState
2363
2357
  **/
2364
2358
  PalletIsmpUtilsUpdateConsensusState: {
2365
2359
  consensusStateId: '[u8;4]',
@@ -2367,14 +2361,14 @@ export default {
2367
2361
  challengePeriods: 'BTreeMap<IsmpHostStateMachine, u64>',
2368
2362
  },
2369
2363
  /**
2370
- * Lookup290: pallet_ismp::utils::FundMessageParams<Balance>
2364
+ * Lookup287: pallet_ismp::utils::FundMessageParams<Balance>
2371
2365
  **/
2372
2366
  PalletIsmpUtilsFundMessageParams: {
2373
2367
  commitment: 'PalletIsmpUtilsMessageCommitment',
2374
2368
  amount: 'u128',
2375
2369
  },
2376
2370
  /**
2377
- * Lookup291: pallet_ismp::utils::MessageCommitment
2371
+ * Lookup288: pallet_ismp::utils::MessageCommitment
2378
2372
  **/
2379
2373
  PalletIsmpUtilsMessageCommitment: {
2380
2374
  _enum: {
@@ -2383,7 +2377,7 @@ export default {
2383
2377
  },
2384
2378
  },
2385
2379
  /**
2386
- * Lookup292: ismp_grandpa::pallet::Call<T>
2380
+ * Lookup289: ismp_grandpa::pallet::Call<T>
2387
2381
  **/
2388
2382
  IsmpGrandpaCall: {
2389
2383
  _enum: {
@@ -2396,14 +2390,14 @@ export default {
2396
2390
  },
2397
2391
  },
2398
2392
  /**
2399
- * Lookup294: ismp_grandpa::AddStateMachine
2393
+ * Lookup291: ismp_grandpa::AddStateMachine
2400
2394
  **/
2401
2395
  IsmpGrandpaAddStateMachine: {
2402
2396
  stateMachine: 'IsmpHostStateMachine',
2403
2397
  slotDuration: 'u64',
2404
2398
  },
2405
2399
  /**
2406
- * Lookup295: pallet_token_gateway::pallet::Call<T>
2400
+ * Lookup292: pallet_token_gateway::pallet::Call<T>
2407
2401
  **/
2408
2402
  PalletTokenGatewayCall: {
2409
2403
  _enum: {
@@ -2425,7 +2419,7 @@ export default {
2425
2419
  },
2426
2420
  },
2427
2421
  /**
2428
- * Lookup296: pallet_token_gateway::types::TeleportParams<AssetId, Balance>
2422
+ * Lookup293: pallet_token_gateway::types::TeleportParams<AssetId, Balance>
2429
2423
  **/
2430
2424
  PalletTokenGatewayTeleportParams: {
2431
2425
  assetId: 'u32',
@@ -2439,7 +2433,7 @@ export default {
2439
2433
  redeem: 'bool',
2440
2434
  },
2441
2435
  /**
2442
- * Lookup300: pallet_token_gateway::types::AssetRegistration<AssetId>
2436
+ * Lookup297: pallet_token_gateway::types::AssetRegistration<AssetId>
2443
2437
  **/
2444
2438
  PalletTokenGatewayAssetRegistration: {
2445
2439
  localId: 'u32',
@@ -2448,7 +2442,7 @@ export default {
2448
2442
  precision: 'BTreeMap<IsmpHostStateMachine, u8>',
2449
2443
  },
2450
2444
  /**
2451
- * Lookup301: token_gateway_primitives::GatewayAssetRegistration
2445
+ * Lookup298: token_gateway_primitives::GatewayAssetRegistration
2452
2446
  **/
2453
2447
  TokenGatewayPrimitivesGatewayAssetRegistration: {
2454
2448
  name: 'Bytes',
@@ -2457,7 +2451,7 @@ export default {
2457
2451
  minimumBalance: 'Option<u128>',
2458
2452
  },
2459
2453
  /**
2460
- * Lookup306: token_gateway_primitives::GatewayAssetUpdate
2454
+ * Lookup303: token_gateway_primitives::GatewayAssetUpdate
2461
2455
  **/
2462
2456
  TokenGatewayPrimitivesGatewayAssetUpdate: {
2463
2457
  assetId: 'H256',
@@ -2466,14 +2460,14 @@ export default {
2466
2460
  newAdmins: 'Vec<(IsmpHostStateMachine,H160)>',
2467
2461
  },
2468
2462
  /**
2469
- * Lookup312: pallet_token_gateway::types::PrecisionUpdate<AssetId>
2463
+ * Lookup309: pallet_token_gateway::types::PrecisionUpdate<AssetId>
2470
2464
  **/
2471
2465
  PalletTokenGatewayPrecisionUpdate: {
2472
2466
  assetId: 'u32',
2473
2467
  precisions: 'BTreeMap<IsmpHostStateMachine, u8>',
2474
2468
  },
2475
2469
  /**
2476
- * Lookup314: pallet_multisig::pallet::Error<T>
2470
+ * Lookup311: pallet_multisig::pallet::Error<T>
2477
2471
  **/
2478
2472
  PalletMultisigError: {
2479
2473
  _enum: [
@@ -2494,7 +2488,7 @@ export default {
2494
2488
  ],
2495
2489
  },
2496
2490
  /**
2497
- * 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>
2498
2492
  **/
2499
2493
  PalletProxyProxyDefinition: {
2500
2494
  delegate: 'AccountId32',
@@ -2502,7 +2496,7 @@ export default {
2502
2496
  delay: 'u32',
2503
2497
  },
2504
2498
  /**
2505
- * 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>
2506
2500
  **/
2507
2501
  PalletProxyAnnouncement: {
2508
2502
  real: 'AccountId32',
@@ -2510,7 +2504,7 @@ export default {
2510
2504
  height: 'u32',
2511
2505
  },
2512
2506
  /**
2513
- * Lookup323: pallet_proxy::pallet::Error<T>
2507
+ * Lookup320: pallet_proxy::pallet::Error<T>
2514
2508
  **/
2515
2509
  PalletProxyError: {
2516
2510
  _enum: [
@@ -2525,14 +2519,14 @@ export default {
2525
2519
  ],
2526
2520
  },
2527
2521
  /**
2528
- * Lookup324: argon_primitives::tick::Ticker
2522
+ * Lookup321: argon_primitives::tick::Ticker
2529
2523
  **/
2530
2524
  ArgonPrimitivesTickTicker: {
2531
2525
  tickDurationMillis: 'Compact<u64>',
2532
2526
  channelHoldExpirationTicks: 'Compact<u64>',
2533
2527
  },
2534
2528
  /**
2535
- * Lookup326: pallet_ticks::pallet::Error<T>
2529
+ * Lookup323: pallet_ticks::pallet::Error<T>
2536
2530
  **/
2537
2531
  PalletTicksError: 'Null',
2538
2532
  /**
@@ -2556,63 +2550,32 @@ export default {
2556
2550
  * Lookup337: pallet_mining_slot::pallet::Error<T>
2557
2551
  **/
2558
2552
  PalletMiningSlotError: {
2559
- _enum: {
2560
- SlotNotTakingBids: 'Null',
2561
- TooManyBlockRegistrants: 'Null',
2562
- InsufficientOwnershipTokens: 'Null',
2563
- BidTooLow: 'Null',
2564
- CannotRegisterOverlappingSessions: 'Null',
2565
- ObligationNotFound: 'Null',
2566
- NoMoreObligationIds: 'Null',
2567
- VaultClosed: 'Null',
2568
- MinimumObligationAmountNotMet: 'Null',
2569
- ExpirationAtBlockOverflow: 'Null',
2570
- InsufficientFunds: 'Null',
2571
- InsufficientVaultFunds: 'Null',
2572
- ExpirationTooSoon: 'Null',
2573
- NoPermissions: 'Null',
2574
- HoldUnexpectedlyModified: 'Null',
2575
- UnrecoverableHold: 'Null',
2576
- VaultNotFound: 'Null',
2577
- AccountWouldBeBelowMinimum: 'Null',
2578
- GenericObligationError: 'ArgonPrimitivesVaultObligationError',
2579
- CannotRegisterDuplicateKeys: 'Null',
2580
- InvalidKeyFormat: 'Null',
2581
- CannotReduceBondedArgons: 'Null',
2582
- InvalidVaultSwitch: 'Null',
2583
- },
2584
- },
2585
- /**
2586
- * Lookup338: argon_primitives::vault::ObligationError
2587
- **/
2588
- ArgonPrimitivesVaultObligationError: {
2589
2553
  _enum: [
2554
+ 'SlotNotTakingBids',
2555
+ 'TooManyBlockRegistrants',
2556
+ 'InsufficientOwnershipTokens',
2557
+ 'BidTooLow',
2558
+ 'CannotRegisterOverlappingSessions',
2590
2559
  'ObligationNotFound',
2591
2560
  'NoMoreObligationIds',
2592
- 'MinimumObligationAmountNotMet',
2593
2561
  'VaultClosed',
2562
+ 'MinimumObligationAmountNotMet',
2594
2563
  'ExpirationAtBlockOverflow',
2595
- 'AccountWouldBeBelowMinimum',
2596
2564
  'InsufficientFunds',
2597
2565
  'InsufficientVaultFunds',
2598
- 'InsufficientBondedArgons',
2599
- 'ExpirationTooSoon',
2600
2566
  'NoPermissions',
2601
2567
  'HoldUnexpectedlyModified',
2602
2568
  'UnrecoverableHold',
2603
2569
  'VaultNotFound',
2604
- 'NoVaultBitcoinPubkeysAvailable',
2605
- 'UnableToGenerateVaultBitcoinPubkey',
2606
- 'InvalidBitcoinScript',
2607
- 'InternalError',
2608
- 'ObligationCompletionError',
2609
- 'VaultNotYetActive',
2610
- 'BaseFeeOverflow',
2611
- 'InvalidVaultSwitch',
2570
+ 'AccountWouldBeBelowMinimum',
2571
+ 'CannotRegisterDuplicateKeys',
2572
+ 'InvalidKeyFormat',
2573
+ 'BidCannotBeReduced',
2574
+ 'InvalidBidAmount',
2612
2575
  ],
2613
2576
  },
2614
2577
  /**
2615
- * Lookup339: argon_primitives::bitcoin::UtxoValue
2578
+ * Lookup338: argon_primitives::bitcoin::UtxoValue
2616
2579
  **/
2617
2580
  ArgonPrimitivesBitcoinUtxoValue: {
2618
2581
  utxoId: 'u64',
@@ -2622,7 +2585,7 @@ export default {
2622
2585
  watchForSpentUntilHeight: 'Compact<u64>',
2623
2586
  },
2624
2587
  /**
2625
- * Lookup340: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
2588
+ * Lookup339: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
2626
2589
  **/
2627
2590
  ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey: {
2628
2591
  _enum: {
@@ -2632,13 +2595,13 @@ export default {
2632
2595
  },
2633
2596
  },
2634
2597
  /**
2635
- * Lookup345: argon_primitives::bitcoin::BitcoinNetwork
2598
+ * Lookup344: argon_primitives::bitcoin::BitcoinNetwork
2636
2599
  **/
2637
2600
  ArgonPrimitivesBitcoinBitcoinNetwork: {
2638
2601
  _enum: ['Bitcoin', 'Testnet', 'Signet', 'Regtest'],
2639
2602
  },
2640
2603
  /**
2641
- * Lookup348: pallet_bitcoin_utxos::pallet::Error<T>
2604
+ * Lookup347: pallet_bitcoin_utxos::pallet::Error<T>
2642
2605
  **/
2643
2606
  PalletBitcoinUtxosError: {
2644
2607
  _enum: [
@@ -2657,32 +2620,29 @@ export default {
2657
2620
  ],
2658
2621
  },
2659
2622
  /**
2660
- * Lookup349: argon_primitives::vault::Vault<sp_core::crypto::AccountId32, Balance>
2623
+ * Lookup348: argon_primitives::vault::Vault<sp_core::crypto::AccountId32, Balance>
2661
2624
  **/
2662
2625
  ArgonPrimitivesVault: {
2663
2626
  operatorAccountId: 'AccountId32',
2664
- bitcoinArgons: 'ArgonPrimitivesVaultVaultArgons',
2627
+ lockedBitcoinArgons: 'ArgonPrimitivesVaultVaultArgons',
2628
+ terms: 'ArgonPrimitivesVaultVaultTerms',
2665
2629
  addedSecuritizationPercent: 'Compact<u128>',
2666
2630
  addedSecuritizationArgons: 'Compact<u128>',
2667
- bondedArgons: 'ArgonPrimitivesVaultVaultArgons',
2668
- miningRewardSharingPercentTake: 'Compact<u128>',
2631
+ bondedBitcoinArgons: 'ArgonPrimitivesVaultVaultArgons',
2669
2632
  isClosed: 'bool',
2670
2633
  pendingTerms: 'Option<(u64,ArgonPrimitivesVaultVaultTerms)>',
2671
- pendingBondedArgons: 'Option<(u64,u128)>',
2672
2634
  pendingBitcoins: 'u128',
2673
2635
  activationTick: 'u64',
2674
2636
  },
2675
2637
  /**
2676
- * Lookup350: argon_primitives::vault::VaultArgons<Balance>
2638
+ * Lookup349: argon_primitives::vault::VaultArgons<Balance>
2677
2639
  **/
2678
2640
  ArgonPrimitivesVaultVaultArgons: {
2679
- annualPercentRate: 'Compact<u128>',
2680
2641
  allocated: 'Compact<u128>',
2681
2642
  reserved: 'Compact<u128>',
2682
- baseFee: 'Compact<u128>',
2683
2643
  },
2684
2644
  /**
2685
- * Lookup356: argon_primitives::bitcoin::BitcoinXPub
2645
+ * Lookup353: argon_primitives::bitcoin::BitcoinXPub
2686
2646
  **/
2687
2647
  ArgonPrimitivesBitcoinBitcoinXPub: {
2688
2648
  publicKey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
@@ -2693,13 +2653,13 @@ export default {
2693
2653
  network: 'ArgonPrimitivesBitcoinNetworkKind',
2694
2654
  },
2695
2655
  /**
2696
- * Lookup358: argon_primitives::bitcoin::NetworkKind
2656
+ * Lookup355: argon_primitives::bitcoin::NetworkKind
2697
2657
  **/
2698
2658
  ArgonPrimitivesBitcoinNetworkKind: {
2699
2659
  _enum: ['Main', 'Test'],
2700
2660
  },
2701
2661
  /**
2702
- * Lookup364: argon_primitives::vault::Obligation<sp_core::crypto::AccountId32, Balance>
2662
+ * Lookup358: argon_primitives::vault::Obligation<sp_core::crypto::AccountId32, Balance>
2703
2663
  **/
2704
2664
  ArgonPrimitivesVaultObligation: {
2705
2665
  obligationId: 'Compact<u64>',
@@ -2711,7 +2671,21 @@ export default {
2711
2671
  amount: 'Compact<u128>',
2712
2672
  startTick: 'Compact<u64>',
2713
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',
2714
2684
  },
2685
+ /**
2686
+ * Lookup366: frame_support::PalletId
2687
+ **/
2688
+ FrameSupportPalletId: '[u8;8]',
2715
2689
  /**
2716
2690
  * Lookup367: pallet_vaults::pallet::Error<T>
2717
2691
  **/
@@ -2724,7 +2698,6 @@ export default {
2724
2698
  'ExpirationAtBlockOverflow',
2725
2699
  'InsufficientFunds',
2726
2700
  'InsufficientVaultFunds',
2727
- 'InsufficientBondedArgons',
2728
2701
  'AccountBelowMinimumBalance',
2729
2702
  'VaultClosed',
2730
2703
  'InvalidVaultAmount',
@@ -2737,7 +2710,6 @@ export default {
2737
2710
  'UnsafeXpubkey',
2738
2711
  'UnableToDeriveVaultXpubChild',
2739
2712
  'BitcoinConversionFailed',
2740
- 'ExpirationTooSoon',
2741
2713
  'NoPermissions',
2742
2714
  'HoldUnexpectedlyModified',
2743
2715
  'UnrecoverableHold',
@@ -2771,6 +2743,7 @@ export default {
2771
2743
  createdAtHeight: 'Compact<u64>',
2772
2744
  utxoScriptPubkey: 'ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey',
2773
2745
  isVerified: 'bool',
2746
+ isRejectedNeedsRelease: 'bool',
2774
2747
  },
2775
2748
  /**
2776
2749
  * Lookup372: pallet_bitcoin_locks::pallet::LockReleaseRequest<Balance>
@@ -2795,7 +2768,6 @@ export default {
2795
2768
  ExpirationAtBlockOverflow: 'Null',
2796
2769
  InsufficientFunds: 'Null',
2797
2770
  InsufficientVaultFunds: 'Null',
2798
- InsufficientBondedArgons: 'Null',
2799
2771
  AccountWouldGoBelowMinimumBalance: 'Null',
2800
2772
  VaultClosed: 'Null',
2801
2773
  InvalidVaultAmount: 'Null',
@@ -2810,7 +2782,6 @@ export default {
2810
2782
  InsufficientSatoshisLocked: 'Null',
2811
2783
  NoBitcoinPricesAvailable: 'Null',
2812
2784
  InvalidBitcoinScript: 'Null',
2813
- ExpirationTooSoon: 'Null',
2814
2785
  NoPermissions: 'Null',
2815
2786
  HoldUnexpectedlyModified: 'Null',
2816
2787
  UnrecoverableHold: 'Null',
@@ -2822,7 +2793,32 @@ export default {
2822
2793
  },
2823
2794
  },
2824
2795
  /**
2825
- * 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>
2826
2822
  **/
2827
2823
  PalletNotariesError: {
2828
2824
  _enum: [
@@ -2838,7 +2834,7 @@ export default {
2838
2834
  ],
2839
2835
  },
2840
2836
  /**
2841
- * Lookup392: argon_primitives::notary::NotaryNotebookKeyDetails
2837
+ * Lookup393: argon_primitives::notary::NotaryNotebookKeyDetails
2842
2838
  **/
2843
2839
  ArgonPrimitivesNotaryNotaryNotebookKeyDetails: {
2844
2840
  notebookNumber: 'Compact<u32>',
@@ -2848,7 +2844,7 @@ export default {
2848
2844
  parentSecret: 'Option<H256>',
2849
2845
  },
2850
2846
  /**
2851
- * Lookup395: pallet_notebook::pallet::Error<T>
2847
+ * Lookup396: pallet_notebook::pallet::Error<T>
2852
2848
  **/
2853
2849
  PalletNotebookError: {
2854
2850
  _enum: [
@@ -2870,7 +2866,7 @@ export default {
2870
2866
  ],
2871
2867
  },
2872
2868
  /**
2873
- * Lookup396: pallet_chain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
2869
+ * Lookup397: pallet_chain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
2874
2870
  **/
2875
2871
  PalletChainTransferQueuedTransferOut: {
2876
2872
  accountId: 'AccountId32',
@@ -2878,10 +2874,6 @@ export default {
2878
2874
  expirationTick: 'u64',
2879
2875
  notaryId: 'u32',
2880
2876
  },
2881
- /**
2882
- * Lookup402: frame_support::PalletId
2883
- **/
2884
- FrameSupportPalletId: '[u8;8]',
2885
2877
  /**
2886
2878
  * Lookup403: pallet_chain_transfer::pallet::Error<T>
2887
2879
  **/
@@ -3009,11 +3001,11 @@ export default {
3009
3001
  ],
3010
3002
  },
3011
3003
  /**
3012
- * Lookup429: pallet_block_rewards::pallet::Error<T>
3004
+ * Lookup432: pallet_block_rewards::pallet::Error<T>
3013
3005
  **/
3014
3006
  PalletBlockRewardsError: 'Null',
3015
3007
  /**
3016
- * Lookup434: pallet_mint::MintAction<Balance>
3008
+ * Lookup439: pallet_mint::MintAction<Balance>
3017
3009
  **/
3018
3010
  PalletMintMintAction: {
3019
3011
  argonBurned: 'u128',
@@ -3021,13 +3013,13 @@ export default {
3021
3013
  bitcoinMinted: 'u128',
3022
3014
  },
3023
3015
  /**
3024
- * Lookup435: pallet_mint::pallet::Error<T>
3016
+ * Lookup440: pallet_mint::pallet::Error<T>
3025
3017
  **/
3026
3018
  PalletMintError: {
3027
3019
  _enum: ['TooManyPendingMints'],
3028
3020
  },
3029
3021
  /**
3030
- * Lookup437: pallet_balances::types::BalanceLock<Balance>
3022
+ * Lookup442: pallet_balances::types::BalanceLock<Balance>
3031
3023
  **/
3032
3024
  PalletBalancesBalanceLock: {
3033
3025
  id: '[u8;8]',
@@ -3035,27 +3027,27 @@ export default {
3035
3027
  reasons: 'PalletBalancesReasons',
3036
3028
  },
3037
3029
  /**
3038
- * Lookup438: pallet_balances::types::Reasons
3030
+ * Lookup443: pallet_balances::types::Reasons
3039
3031
  **/
3040
3032
  PalletBalancesReasons: {
3041
3033
  _enum: ['Fee', 'Misc', 'All'],
3042
3034
  },
3043
3035
  /**
3044
- * Lookup441: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
3036
+ * Lookup446: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
3045
3037
  **/
3046
3038
  PalletBalancesReserveData: {
3047
3039
  id: '[u8;8]',
3048
3040
  amount: 'u128',
3049
3041
  },
3050
3042
  /**
3051
- * Lookup444: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeHoldReason, Balance>
3043
+ * Lookup449: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeHoldReason, Balance>
3052
3044
  **/
3053
3045
  FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
3054
3046
  id: 'ArgonRuntimeRuntimeHoldReason',
3055
3047
  amount: 'u128',
3056
3048
  },
3057
3049
  /**
3058
- * Lookup445: argon_runtime::RuntimeHoldReason
3050
+ * Lookup450: argon_runtime::RuntimeHoldReason
3059
3051
  **/
3060
3052
  ArgonRuntimeRuntimeHoldReason: {
3061
3053
  _enum: {
@@ -3082,38 +3074,38 @@ export default {
3082
3074
  },
3083
3075
  },
3084
3076
  /**
3085
- * Lookup446: pallet_mining_slot::pallet::HoldReason
3077
+ * Lookup451: pallet_mining_slot::pallet::HoldReason
3086
3078
  **/
3087
3079
  PalletMiningSlotHoldReason: {
3088
3080
  _enum: ['RegisterAsMiner'],
3089
3081
  },
3090
3082
  /**
3091
- * Lookup447: pallet_vaults::pallet::HoldReason
3083
+ * Lookup452: pallet_vaults::pallet::HoldReason
3092
3084
  **/
3093
3085
  PalletVaultsHoldReason: {
3094
3086
  _enum: ['EnterVault', 'ObligationFee'],
3095
3087
  },
3096
3088
  /**
3097
- * Lookup448: pallet_bitcoin_locks::pallet::HoldReason
3089
+ * Lookup453: pallet_bitcoin_locks::pallet::HoldReason
3098
3090
  **/
3099
3091
  PalletBitcoinLocksHoldReason: {
3100
3092
  _enum: ['ReleaseBitcoinLock'],
3101
3093
  },
3102
3094
  /**
3103
- * Lookup449: pallet_block_rewards::pallet::HoldReason
3095
+ * Lookup454: pallet_block_rewards::pallet::HoldReason
3104
3096
  **/
3105
3097
  PalletBlockRewardsHoldReason: {
3106
3098
  _enum: ['MaturationPeriod'],
3107
3099
  },
3108
3100
  /**
3109
- * Lookup452: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeFreezeReason, Balance>
3101
+ * Lookup457: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeFreezeReason, Balance>
3110
3102
  **/
3111
3103
  FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
3112
3104
  id: 'ArgonRuntimeRuntimeFreezeReason',
3113
3105
  amount: 'u128',
3114
3106
  },
3115
3107
  /**
3116
- * Lookup453: argon_runtime::RuntimeFreezeReason
3108
+ * Lookup458: argon_runtime::RuntimeFreezeReason
3117
3109
  **/
3118
3110
  ArgonRuntimeRuntimeFreezeReason: {
3119
3111
  _enum: {
@@ -3140,13 +3132,13 @@ export default {
3140
3132
  },
3141
3133
  },
3142
3134
  /**
3143
- * Lookup454: pallet_block_rewards::pallet::FreezeReason
3135
+ * Lookup459: pallet_block_rewards::pallet::FreezeReason
3144
3136
  **/
3145
3137
  PalletBlockRewardsFreezeReason: {
3146
3138
  _enum: ['MaturationPeriod'],
3147
3139
  },
3148
3140
  /**
3149
- * Lookup456: pallet_balances::pallet::Error<T, I>
3141
+ * Lookup461: pallet_balances::pallet::Error<T, I>
3150
3142
  **/
3151
3143
  PalletBalancesError: {
3152
3144
  _enum: [
@@ -3165,31 +3157,31 @@ export default {
3165
3157
  ],
3166
3158
  },
3167
3159
  /**
3168
- * Lookup458: pallet_tx_pause::pallet::Error<T>
3160
+ * Lookup463: pallet_tx_pause::pallet::Error<T>
3169
3161
  **/
3170
3162
  PalletTxPauseError: {
3171
3163
  _enum: ['IsPaused', 'IsUnpaused', 'Unpausable', 'NotFound'],
3172
3164
  },
3173
3165
  /**
3174
- * Lookup459: pallet_transaction_payment::Releases
3166
+ * Lookup464: pallet_transaction_payment::Releases
3175
3167
  **/
3176
3168
  PalletTransactionPaymentReleases: {
3177
3169
  _enum: ['V1Ancient', 'V2'],
3178
3170
  },
3179
3171
  /**
3180
- * Lookup460: pallet_utility::pallet::Error<T>
3172
+ * Lookup465: pallet_utility::pallet::Error<T>
3181
3173
  **/
3182
3174
  PalletUtilityError: {
3183
3175
  _enum: ['TooManyCalls'],
3184
3176
  },
3185
3177
  /**
3186
- * Lookup461: pallet_sudo::pallet::Error<T>
3178
+ * Lookup466: pallet_sudo::pallet::Error<T>
3187
3179
  **/
3188
3180
  PalletSudoError: {
3189
3181
  _enum: ['RequireSudo'],
3190
3182
  },
3191
3183
  /**
3192
- * Lookup462: pallet_ismp::pallet::Error<T>
3184
+ * Lookup467: pallet_ismp::pallet::Error<T>
3193
3185
  **/
3194
3186
  PalletIsmpError: {
3195
3187
  _enum: [
@@ -3201,11 +3193,11 @@ export default {
3201
3193
  ],
3202
3194
  },
3203
3195
  /**
3204
- * Lookup463: pallet_hyperbridge::pallet::Error<T>
3196
+ * Lookup468: pallet_hyperbridge::pallet::Error<T>
3205
3197
  **/
3206
3198
  PalletHyperbridgeError: 'Null',
3207
3199
  /**
3208
- * Lookup465: pallet_token_gateway::pallet::Error<T>
3200
+ * Lookup470: pallet_token_gateway::pallet::Error<T>
3209
3201
  **/
3210
3202
  PalletTokenGatewayError: {
3211
3203
  _enum: [
@@ -3221,47 +3213,47 @@ export default {
3221
3213
  ],
3222
3214
  },
3223
3215
  /**
3224
- * Lookup468: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
3216
+ * Lookup473: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
3225
3217
  **/
3226
3218
  FrameSystemExtensionsCheckNonZeroSender: 'Null',
3227
3219
  /**
3228
- * Lookup469: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
3220
+ * Lookup474: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
3229
3221
  **/
3230
3222
  FrameSystemExtensionsCheckSpecVersion: 'Null',
3231
3223
  /**
3232
- * Lookup470: frame_system::extensions::check_tx_version::CheckTxVersion<T>
3224
+ * Lookup475: frame_system::extensions::check_tx_version::CheckTxVersion<T>
3233
3225
  **/
3234
3226
  FrameSystemExtensionsCheckTxVersion: 'Null',
3235
3227
  /**
3236
- * Lookup471: frame_system::extensions::check_genesis::CheckGenesis<T>
3228
+ * Lookup476: frame_system::extensions::check_genesis::CheckGenesis<T>
3237
3229
  **/
3238
3230
  FrameSystemExtensionsCheckGenesis: 'Null',
3239
3231
  /**
3240
- * Lookup474: frame_system::extensions::check_nonce::CheckNonce<T>
3232
+ * Lookup479: frame_system::extensions::check_nonce::CheckNonce<T>
3241
3233
  **/
3242
3234
  FrameSystemExtensionsCheckNonce: 'Compact<u32>',
3243
3235
  /**
3244
- * Lookup475: frame_system::extensions::check_weight::CheckWeight<T>
3236
+ * Lookup480: frame_system::extensions::check_weight::CheckWeight<T>
3245
3237
  **/
3246
3238
  FrameSystemExtensionsCheckWeight: 'Null',
3247
3239
  /**
3248
- * Lookup476: pallet_transaction_payment::ChargeTransactionPayment<T>
3240
+ * Lookup481: pallet_transaction_payment::ChargeTransactionPayment<T>
3249
3241
  **/
3250
3242
  PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
3251
3243
  /**
3252
- * Lookup477: frame_metadata_hash_extension::CheckMetadataHash<T>
3244
+ * Lookup482: frame_metadata_hash_extension::CheckMetadataHash<T>
3253
3245
  **/
3254
3246
  FrameMetadataHashExtensionCheckMetadataHash: {
3255
3247
  mode: 'FrameMetadataHashExtensionMode',
3256
3248
  },
3257
3249
  /**
3258
- * Lookup478: frame_metadata_hash_extension::Mode
3250
+ * Lookup483: frame_metadata_hash_extension::Mode
3259
3251
  **/
3260
3252
  FrameMetadataHashExtensionMode: {
3261
3253
  _enum: ['Disabled', 'Enabled'],
3262
3254
  },
3263
3255
  /**
3264
- * Lookup480: argon_runtime::Runtime
3256
+ * Lookup485: argon_runtime::Runtime
3265
3257
  **/
3266
3258
  ArgonRuntimeRuntime: 'Null',
3267
3259
  };