@argonprotocol/mainchain 1.0.17 → 1.0.18

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