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