@argonprotocol/mainchain 1.0.8 → 1.0.10

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 (32) hide show
  1. package/lib/cjs/interfaces/augment-api-consts.d.ts +57 -57
  2. package/lib/cjs/interfaces/augment-api-errors.d.ts +91 -106
  3. package/lib/cjs/interfaces/augment-api-events.d.ts +108 -102
  4. package/lib/cjs/interfaces/augment-api-query.d.ts +76 -52
  5. package/lib/cjs/interfaces/augment-api-tx.d.ts +71 -55
  6. package/lib/cjs/interfaces/lookup.d.ts +234 -206
  7. package/lib/cjs/interfaces/lookup.js +250 -222
  8. package/lib/cjs/interfaces/lookup.js.map +1 -1
  9. package/lib/cjs/interfaces/registry.d.ts +15 -14
  10. package/lib/cjs/interfaces/types-lookup.d.ts +276 -251
  11. package/lib/esm/interfaces/augment-api-consts.d.ts +57 -57
  12. package/lib/esm/interfaces/augment-api-errors.d.ts +91 -106
  13. package/lib/esm/interfaces/augment-api-events.d.ts +108 -102
  14. package/lib/esm/interfaces/augment-api-query.d.ts +76 -52
  15. package/lib/esm/interfaces/augment-api-tx.d.ts +71 -55
  16. package/lib/esm/interfaces/lookup.d.ts +234 -206
  17. package/lib/esm/interfaces/lookup.js +250 -222
  18. package/lib/esm/interfaces/lookup.js.map +1 -1
  19. package/lib/esm/interfaces/registry.d.ts +15 -14
  20. package/lib/esm/interfaces/types-lookup.d.ts +276 -251
  21. package/lib/tsconfig-cjs.tsbuildinfo +1 -1
  22. package/lib/tsconfig-types.tsbuildinfo +1 -1
  23. package/lib/tsconfig.tsbuildinfo +1 -1
  24. package/lib/types/interfaces/augment-api-consts.d.ts +57 -57
  25. package/lib/types/interfaces/augment-api-errors.d.ts +91 -106
  26. package/lib/types/interfaces/augment-api-events.d.ts +108 -102
  27. package/lib/types/interfaces/augment-api-query.d.ts +76 -52
  28. package/lib/types/interfaces/augment-api-tx.d.ts +71 -55
  29. package/lib/types/interfaces/lookup.d.ts +234 -206
  30. package/lib/types/interfaces/registry.d.ts +15 -14
  31. package/lib/types/interfaces/types-lookup.d.ts +276 -251
  32. package/package.json +1 -1
@@ -263,22 +263,22 @@ exports.default = {
263
263
  },
264
264
  SlotBidderReplaced: {
265
265
  accountId: 'AccountId32',
266
- bondId: 'Option<u64>',
267
- keptOwnershipBond: 'bool',
266
+ obligationId: 'Option<u64>',
267
+ preservedArgonotHold: 'bool',
268
268
  },
269
- UnbondedMiner: {
269
+ ReleasedMinerSeat: {
270
270
  accountId: 'AccountId32',
271
- bondId: 'Option<u64>',
272
- keptOwnershipBond: 'bool',
271
+ obligationId: 'Option<u64>',
272
+ preservedArgonotHold: 'bool',
273
273
  },
274
- UnbondMinerError: {
274
+ ReleaseMinerSeatError: {
275
275
  accountId: 'AccountId32',
276
- bondId: 'Option<u64>',
276
+ obligationId: 'Option<u64>',
277
277
  error: 'SpRuntimeDispatchError',
278
278
  },
279
279
  MiningConfigurationUpdated: {
280
- blocksBeforeBidEndForVrfClose: 'u32',
281
- blocksBetweenSlots: 'u32',
280
+ ticksBeforeBidEndForVrfClose: 'u64',
281
+ ticksBetweenSlots: 'u64',
282
282
  slotBiddingStartAfterTicks: 'u64'
283
283
  }
284
284
  }
@@ -289,11 +289,12 @@ exports.default = {
289
289
  ArgonPrimitivesBlockSealMiningRegistration: {
290
290
  accountId: 'AccountId32',
291
291
  rewardDestination: 'ArgonPrimitivesBlockSealRewardDestination',
292
- bondId: 'Option<u64>',
293
- bondAmount: 'Compact<u128>',
294
- ownershipTokens: 'Compact<u128>',
292
+ obligationId: 'Option<u64>',
293
+ bondedArgons: 'Compact<u128>',
294
+ argonots: 'Compact<u128>',
295
295
  rewardSharing: 'Option<ArgonPrimitivesBlockSealRewardSharing>',
296
- authorityKeys: 'ArgonRuntimeSessionKeys'
296
+ authorityKeys: 'ArgonRuntimeSessionKeys',
297
+ slotId: 'Compact<u64>'
297
298
  },
298
299
  /**
299
300
  * Lookup42: argon_runtime::SessionKeys
@@ -388,124 +389,130 @@ exports.default = {
388
389
  VaultCreated: {
389
390
  vaultId: 'u32',
390
391
  bitcoinArgons: 'u128',
391
- miningArgons: 'u128',
392
- securitizationPercent: 'u128',
392
+ bondedArgons: 'u128',
393
+ addedSecuritizationPercent: 'u128',
393
394
  operatorAccountId: 'AccountId32',
394
395
  },
395
396
  VaultModified: {
396
397
  vaultId: 'u32',
397
398
  bitcoinArgons: 'u128',
398
- miningArgons: 'u128',
399
- securitizationPercent: 'u128',
399
+ bondedArgons: 'u128',
400
+ addedSecuritizationPercent: 'u128',
400
401
  },
401
- VaultMiningBondsIncreased: {
402
+ VaultBondedArgonsIncreased: {
402
403
  vaultId: 'u32',
403
- miningArgons: 'u128',
404
+ bondedArgons: 'u128',
404
405
  },
405
- VaultMiningBondsChangeScheduled: {
406
+ VaultBondedArgonsChangeScheduled: {
406
407
  vaultId: 'u32',
407
- changeBlock: 'u32',
408
+ changeTick: 'u64',
408
409
  },
409
410
  VaultTermsChangeScheduled: {
410
411
  vaultId: 'u32',
411
- changeBlock: 'u32',
412
+ changeTick: 'u64',
412
413
  },
413
414
  VaultTermsChanged: {
414
415
  vaultId: 'u32',
415
416
  },
416
417
  VaultClosed: {
417
418
  vaultId: 'u32',
418
- bitcoinAmountStillBonded: 'u128',
419
- miningAmountStillBonded: 'u128',
420
- securitizationStillBonded: 'u128',
419
+ bitcoinAmountStillReserved: 'u128',
420
+ miningAmountStillReserved: 'u128',
421
+ securitizationStillReserved: 'u128',
421
422
  },
422
423
  VaultBitcoinXpubChange: {
423
- vaultId: 'u32'
424
- }
425
- }
426
- },
427
- /**
428
- * Lookup59: pallet_bond::pallet::Event<T>
429
- **/
430
- PalletBondEvent: {
431
- _enum: {
432
- BondCreated: {
433
424
  vaultId: 'u32',
434
- bondId: 'u64',
435
- bondType: 'ArgonPrimitivesBondBondType',
436
- bondedAccountId: 'AccountId32',
437
- utxoId: 'Option<u64>',
425
+ },
426
+ ObligationCreated: {
427
+ vaultId: 'u32',
428
+ obligationId: 'u64',
429
+ fundType: 'ArgonPrimitivesVaultFundType',
430
+ beneficiary: 'AccountId32',
438
431
  amount: 'u128',
439
- expiration: 'ArgonPrimitivesBondBondExpiration',
432
+ expiration: 'ArgonPrimitivesVaultObligationExpiration',
440
433
  },
441
- BondCompleted: {
434
+ ObligationCompleted: {
442
435
  vaultId: 'u32',
443
- bondId: 'u64',
436
+ obligationId: 'u64',
444
437
  },
445
- BondModified: {
438
+ ObligationModified: {
446
439
  vaultId: 'u32',
447
- bondId: 'u64',
440
+ obligationId: 'u64',
448
441
  amount: 'u128',
449
442
  },
450
- BondCanceled: {
443
+ ObligationCanceled: {
451
444
  vaultId: 'u32',
452
- bondId: 'u64',
453
- bondedAccountId: 'AccountId32',
454
- bondType: 'ArgonPrimitivesBondBondType',
445
+ obligationId: 'u64',
446
+ beneficiary: 'AccountId32',
447
+ fundType: 'ArgonPrimitivesVaultFundType',
455
448
  returnedFee: 'u128',
456
449
  },
457
- BitcoinBondBurned: {
450
+ ObligationCompletionError: {
451
+ obligationId: 'u64',
452
+ error: 'SpRuntimeDispatchError'
453
+ }
454
+ }
455
+ },
456
+ /**
457
+ * Lookup59: argon_primitives::vault::FundType
458
+ **/
459
+ ArgonPrimitivesVaultFundType: {
460
+ _enum: ['BondedArgons', 'Bitcoin']
461
+ },
462
+ /**
463
+ * Lookup60: argon_primitives::vault::ObligationExpiration
464
+ **/
465
+ ArgonPrimitivesVaultObligationExpiration: {
466
+ _enum: {
467
+ AtTick: 'Compact<u64>',
468
+ BitcoinBlock: 'Compact<u64>'
469
+ }
470
+ },
471
+ /**
472
+ * Lookup61: pallet_bitcoin_locks::pallet::Event<T>
473
+ **/
474
+ PalletBitcoinLocksEvent: {
475
+ _enum: {
476
+ BitcoinLockCreated: {
477
+ utxoId: 'u64',
458
478
  vaultId: 'u32',
459
- bondId: 'u64',
479
+ obligationId: 'u64',
480
+ lockPrice: 'u128',
481
+ accountId: 'AccountId32',
482
+ },
483
+ BitcoinLockBurned: {
460
484
  utxoId: 'u64',
485
+ vaultId: 'u32',
486
+ obligationId: 'u64',
461
487
  amountBurned: 'u128',
462
488
  amountHeld: 'u128',
463
489
  wasUtxoSpent: 'bool',
464
490
  },
465
491
  BitcoinUtxoCosignRequested: {
466
- bondId: 'u64',
467
- vaultId: 'u32',
468
492
  utxoId: 'u64',
493
+ obligationId: 'u64',
494
+ vaultId: 'u32',
469
495
  },
470
496
  BitcoinUtxoCosigned: {
471
- bondId: 'u64',
472
- vaultId: 'u32',
473
497
  utxoId: 'u64',
498
+ obligationId: 'u64',
499
+ vaultId: 'u32',
474
500
  signature: 'Bytes',
475
501
  },
476
502
  BitcoinCosignPastDue: {
477
- bondId: 'u64',
478
- vaultId: 'u32',
479
503
  utxoId: 'u64',
504
+ obligationId: 'u64',
505
+ vaultId: 'u32',
480
506
  compensationAmount: 'u128',
481
507
  compensationStillOwed: 'u128',
482
508
  compensatedAccountId: 'AccountId32',
483
509
  },
484
- BondCompletionError: {
485
- bondId: 'u64',
486
- error: 'SpRuntimeDispatchError',
487
- },
488
510
  CosignOverdueError: {
489
511
  utxoId: 'u64',
490
512
  error: 'SpRuntimeDispatchError'
491
513
  }
492
514
  }
493
515
  },
494
- /**
495
- * Lookup60: argon_primitives::bond::BondType
496
- **/
497
- ArgonPrimitivesBondBondType: {
498
- _enum: ['Mining', 'Bitcoin']
499
- },
500
- /**
501
- * Lookup61: argon_primitives::bond::BondExpiration<BlockNumber>
502
- **/
503
- ArgonPrimitivesBondBondExpiration: {
504
- _enum: {
505
- ArgonBlock: 'Compact<u32>',
506
- BitcoinBlock: 'Compact<u64>'
507
- }
508
- },
509
516
  /**
510
517
  * Lookup64: pallet_notaries::pallet::Event<T>
511
518
  **/
@@ -1559,7 +1566,7 @@ exports.default = {
1559
1566
  _alias: {
1560
1567
  keys_: 'keys',
1561
1568
  },
1562
- bondInfo: 'Option<PalletMiningSlotMiningSlotBid>',
1569
+ bondedArgons: 'Option<PalletMiningSlotMiningSlotBid>',
1563
1570
  rewardDestination: 'ArgonPrimitivesBlockSealRewardDestination',
1564
1571
  keys_: 'ArgonRuntimeSessionKeys',
1565
1572
  },
@@ -1620,11 +1627,11 @@ exports.default = {
1620
1627
  vaultId: 'u32',
1621
1628
  totalMiningAmountOffered: 'u128',
1622
1629
  totalBitcoinAmountOffered: 'u128',
1623
- securitizationPercent: 'u128',
1630
+ addedSecuritizationPercent: 'u128',
1624
1631
  },
1625
1632
  modify_terms: {
1626
1633
  vaultId: 'u32',
1627
- terms: 'ArgonPrimitivesBondVaultTerms',
1634
+ terms: 'ArgonPrimitivesVaultVaultTerms',
1628
1635
  },
1629
1636
  close: {
1630
1637
  vaultId: 'u32',
@@ -1639,20 +1646,20 @@ exports.default = {
1639
1646
  * Lookup198: pallet_vaults::pallet::VaultConfig<Balance>
1640
1647
  **/
1641
1648
  PalletVaultsVaultConfig: {
1642
- terms: 'ArgonPrimitivesBondVaultTerms',
1649
+ terms: 'ArgonPrimitivesVaultVaultTerms',
1643
1650
  bitcoinAmountAllocated: 'Compact<u128>',
1644
1651
  bitcoinXpubkey: 'ArgonPrimitivesBitcoinOpaqueBitcoinXpub',
1645
- miningAmountAllocated: 'Compact<u128>',
1646
- securitizationPercent: 'Compact<u128>'
1652
+ bondedArgonsAllocated: 'Compact<u128>',
1653
+ addedSecuritizationPercent: 'Compact<u128>'
1647
1654
  },
1648
1655
  /**
1649
- * Lookup199: argon_primitives::bond::VaultTerms<Balance>
1656
+ * Lookup199: argon_primitives::vault::VaultTerms<Balance>
1650
1657
  **/
1651
- ArgonPrimitivesBondVaultTerms: {
1658
+ ArgonPrimitivesVaultVaultTerms: {
1652
1659
  bitcoinAnnualPercentRate: 'Compact<u128>',
1653
1660
  bitcoinBaseFee: 'Compact<u128>',
1654
- miningAnnualPercentRate: 'Compact<u128>',
1655
- miningBaseFee: 'Compact<u128>',
1661
+ bondedArgonsAnnualPercentRate: 'Compact<u128>',
1662
+ bondedArgonsBaseFee: 'Compact<u128>',
1656
1663
  miningRewardSharingPercentTake: 'Compact<u128>'
1657
1664
  },
1658
1665
  /**
@@ -1660,26 +1667,26 @@ exports.default = {
1660
1667
  **/
1661
1668
  ArgonPrimitivesBitcoinOpaqueBitcoinXpub: '[u8;78]',
1662
1669
  /**
1663
- * Lookup202: pallet_bond::pallet::Call<T>
1670
+ * Lookup202: pallet_bitcoin_locks::pallet::Call<T>
1664
1671
  **/
1665
- PalletBondCall: {
1672
+ PalletBitcoinLocksCall: {
1666
1673
  _enum: {
1667
- bond_bitcoin: {
1674
+ initialize: {
1668
1675
  vaultId: 'u32',
1669
1676
  satoshis: 'Compact<u64>',
1670
1677
  bitcoinPubkey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
1671
1678
  },
1672
- __Unused1: 'Null',
1673
- __Unused2: 'Null',
1674
- __Unused3: 'Null',
1675
- unlock_bitcoin_bond: {
1676
- bondId: 'u64',
1679
+ request_release: {
1680
+ utxoId: 'u64',
1677
1681
  toScriptPubkey: 'Bytes',
1678
1682
  bitcoinNetworkFee: 'u64',
1679
1683
  },
1680
- cosign_bitcoin_unlock: {
1681
- bondId: 'u64',
1682
- signature: 'Bytes'
1684
+ cosign_release: {
1685
+ utxoId: 'u64',
1686
+ signature: 'Bytes',
1687
+ },
1688
+ admin_modify_minimum_locked_sats: {
1689
+ satoshis: 'u64'
1683
1690
  }
1684
1691
  }
1685
1692
  },
@@ -1954,7 +1961,13 @@ exports.default = {
1954
1961
  /**
1955
1962
  * Lookup247: pallet_block_rewards::pallet::Call<T>
1956
1963
  **/
1957
- PalletBlockRewardsCall: 'Null',
1964
+ PalletBlockRewardsCall: {
1965
+ _enum: {
1966
+ set_block_rewards_paused: {
1967
+ paused: 'bool'
1968
+ }
1969
+ }
1970
+ },
1958
1971
  /**
1959
1972
  * Lookup248: pallet_mint::pallet::Call<T>
1960
1973
  **/
@@ -2346,7 +2359,10 @@ exports.default = {
2346
2359
  asset: 'PalletTokenGatewayAssetRegistration',
2347
2360
  },
2348
2361
  update_erc6160_asset: {
2349
- asset: 'TokenGatewayPrimitivesGatewayAssetUpdate'
2362
+ asset: 'TokenGatewayPrimitivesGatewayAssetUpdate',
2363
+ },
2364
+ update_asset_precision: {
2365
+ update: 'PalletTokenGatewayPrecisionUpdate'
2350
2366
  }
2351
2367
  }
2352
2368
  },
@@ -2361,7 +2377,8 @@ exports.default = {
2361
2377
  timeout: 'u64',
2362
2378
  tokenGateway: 'Bytes',
2363
2379
  relayerFee: 'u128',
2364
- callData: 'Option<Bytes>'
2380
+ callData: 'Option<Bytes>',
2381
+ redeem: 'bool'
2365
2382
  },
2366
2383
  /**
2367
2384
  * Lookup300: pallet_token_gateway::types::AssetRegistration<AssetId>
@@ -2369,7 +2386,8 @@ exports.default = {
2369
2386
  PalletTokenGatewayAssetRegistration: {
2370
2387
  localId: 'u32',
2371
2388
  reg: 'TokenGatewayPrimitivesGatewayAssetRegistration',
2372
- native: 'bool'
2389
+ native: 'bool',
2390
+ precision: 'BTreeMap<IsmpHostStateMachine, u8>'
2373
2391
  },
2374
2392
  /**
2375
2393
  * Lookup301: token_gateway_primitives::GatewayAssetRegistration
@@ -2381,7 +2399,7 @@ exports.default = {
2381
2399
  minimumBalance: 'Option<u128>'
2382
2400
  },
2383
2401
  /**
2384
- * Lookup303: token_gateway_primitives::GatewayAssetUpdate
2402
+ * Lookup306: token_gateway_primitives::GatewayAssetUpdate
2385
2403
  **/
2386
2404
  TokenGatewayPrimitivesGatewayAssetUpdate: {
2387
2405
  assetId: 'H256',
@@ -2390,13 +2408,20 @@ exports.default = {
2390
2408
  newAdmins: 'Vec<(IsmpHostStateMachine,H160)>'
2391
2409
  },
2392
2410
  /**
2393
- * Lookup310: pallet_multisig::pallet::Error<T>
2411
+ * Lookup312: pallet_token_gateway::types::PrecisionUpdate<AssetId>
2412
+ **/
2413
+ PalletTokenGatewayPrecisionUpdate: {
2414
+ assetId: 'u32',
2415
+ precisions: 'BTreeMap<IsmpHostStateMachine, u8>'
2416
+ },
2417
+ /**
2418
+ * Lookup314: pallet_multisig::pallet::Error<T>
2394
2419
  **/
2395
2420
  PalletMultisigError: {
2396
2421
  _enum: ['MinimumThreshold', 'AlreadyApproved', 'NoApprovalsNeeded', 'TooFewSignatories', 'TooManySignatories', 'SignatoriesOutOfOrder', 'SenderInSignatories', 'NotFound', 'NotOwner', 'NoTimepoint', 'WrongTimepoint', 'UnexpectedTimepoint', 'MaxWeightTooLow', 'AlreadyStored']
2397
2422
  },
2398
2423
  /**
2399
- * Lookup313: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, argon_runtime::configs::ProxyType, BlockNumber>
2424
+ * Lookup317: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, argon_runtime::configs::ProxyType, BlockNumber>
2400
2425
  **/
2401
2426
  PalletProxyProxyDefinition: {
2402
2427
  delegate: 'AccountId32',
@@ -2404,7 +2429,7 @@ exports.default = {
2404
2429
  delay: 'u32'
2405
2430
  },
2406
2431
  /**
2407
- * Lookup317: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
2432
+ * Lookup321: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
2408
2433
  **/
2409
2434
  PalletProxyAnnouncement: {
2410
2435
  real: 'AccountId32',
@@ -2412,24 +2437,24 @@ exports.default = {
2412
2437
  height: 'u32'
2413
2438
  },
2414
2439
  /**
2415
- * Lookup319: pallet_proxy::pallet::Error<T>
2440
+ * Lookup323: pallet_proxy::pallet::Error<T>
2416
2441
  **/
2417
2442
  PalletProxyError: {
2418
2443
  _enum: ['TooMany', 'NotFound', 'NotProxy', 'Unproxyable', 'Duplicate', 'NoPermission', 'Unannounced', 'NoSelfProxy']
2419
2444
  },
2420
2445
  /**
2421
- * Lookup320: argon_primitives::tick::Ticker
2446
+ * Lookup324: argon_primitives::tick::Ticker
2422
2447
  **/
2423
2448
  ArgonPrimitivesTickTicker: {
2424
2449
  tickDurationMillis: 'Compact<u64>',
2425
2450
  channelHoldExpirationTicks: 'Compact<u64>'
2426
2451
  },
2427
2452
  /**
2428
- * Lookup322: pallet_ticks::pallet::Error<T>
2453
+ * Lookup326: pallet_ticks::pallet::Error<T>
2429
2454
  **/
2430
2455
  PalletTicksError: 'Null',
2431
2456
  /**
2432
- * Lookup328: argon_primitives::block_seal::MiningBidStats
2457
+ * Lookup332: argon_primitives::block_seal::MiningBidStats
2433
2458
  **/
2434
2459
  ArgonPrimitivesBlockSealMiningBidStats: {
2435
2460
  bidsCount: 'u32',
@@ -2438,15 +2463,15 @@ exports.default = {
2438
2463
  bidAmountSum: 'u128'
2439
2464
  },
2440
2465
  /**
2441
- * Lookup330: argon_primitives::block_seal::MiningSlotConfig<BlockNumber>
2466
+ * Lookup334: argon_primitives::block_seal::MiningSlotConfig
2442
2467
  **/
2443
2468
  ArgonPrimitivesBlockSealMiningSlotConfig: {
2444
- blocksBeforeBidEndForVrfClose: 'Compact<u32>',
2445
- blocksBetweenSlots: 'Compact<u32>',
2469
+ ticksBeforeBidEndForVrfClose: 'Compact<u64>',
2470
+ ticksBetweenSlots: 'Compact<u64>',
2446
2471
  slotBiddingStartAfterTicks: 'Compact<u64>'
2447
2472
  },
2448
2473
  /**
2449
- * Lookup332: pallet_mining_slot::pallet::Error<T>
2474
+ * Lookup336: pallet_mining_slot::pallet::Error<T>
2450
2475
  **/
2451
2476
  PalletMiningSlotError: {
2452
2477
  _enum: {
@@ -2455,10 +2480,10 @@ exports.default = {
2455
2480
  InsufficientOwnershipTokens: 'Null',
2456
2481
  BidTooLow: 'Null',
2457
2482
  CannotRegisterOverlappingSessions: 'Null',
2458
- BondNotFound: 'Null',
2459
- NoMoreBondIds: 'Null',
2483
+ ObligationNotFound: 'Null',
2484
+ NoMoreObligationIds: 'Null',
2460
2485
  VaultClosed: 'Null',
2461
- MinimumBondAmountNotMet: 'Null',
2486
+ MinimumObligationAmountNotMet: 'Null',
2462
2487
  ExpirationAtBlockOverflow: 'Null',
2463
2488
  InsufficientFunds: 'Null',
2464
2489
  InsufficientVaultFunds: 'Null',
@@ -2467,20 +2492,18 @@ exports.default = {
2467
2492
  HoldUnexpectedlyModified: 'Null',
2468
2493
  UnrecoverableHold: 'Null',
2469
2494
  VaultNotFound: 'Null',
2470
- BondAlreadyClosed: 'Null',
2471
- FeeExceedsBondAmount: 'Null',
2472
2495
  AccountWouldBeBelowMinimum: 'Null',
2473
- GenericBondError: 'ArgonPrimitivesBondBondError'
2496
+ GenericObligationError: 'ArgonPrimitivesVaultObligationError'
2474
2497
  }
2475
2498
  },
2476
2499
  /**
2477
- * Lookup333: argon_primitives::bond::BondError
2500
+ * Lookup337: argon_primitives::vault::ObligationError
2478
2501
  **/
2479
- ArgonPrimitivesBondBondError: {
2480
- _enum: ['BondNotFound', 'NoMoreBondIds', 'MinimumBondAmountNotMet', 'VaultClosed', 'ExpirationAtBlockOverflow', 'AccountWouldBeBelowMinimum', 'InsufficientFunds', 'InsufficientVaultFunds', 'InsufficientBitcoinsForMining', 'ExpirationTooSoon', 'NoPermissions', 'HoldUnexpectedlyModified', 'UnrecoverableHold', 'VaultNotFound', 'NoVaultBitcoinPubkeysAvailable', 'UnableToGenerateVaultBitcoinPubkey', 'UnableToDecodeVaultBitcoinPubkey', 'FeeExceedsBondAmount', 'InvalidBitcoinScript', 'InternalError']
2502
+ ArgonPrimitivesVaultObligationError: {
2503
+ _enum: ['ObligationNotFound', 'NoMoreObligationIds', 'MinimumObligationAmountNotMet', 'VaultClosed', 'ExpirationAtBlockOverflow', 'AccountWouldBeBelowMinimum', 'InsufficientFunds', 'InsufficientVaultFunds', 'InsufficientBondedArgons', 'ExpirationTooSoon', 'NoPermissions', 'HoldUnexpectedlyModified', 'UnrecoverableHold', 'VaultNotFound', 'NoVaultBitcoinPubkeysAvailable', 'UnableToGenerateVaultBitcoinPubkey', 'InvalidBitcoinScript', 'InternalError', 'ObligationCompletionError']
2481
2504
  },
2482
2505
  /**
2483
- * Lookup334: argon_primitives::bitcoin::UtxoValue
2506
+ * Lookup338: argon_primitives::bitcoin::UtxoValue
2484
2507
  **/
2485
2508
  ArgonPrimitivesBitcoinUtxoValue: {
2486
2509
  utxoId: 'u64',
@@ -2490,7 +2513,7 @@ exports.default = {
2490
2513
  watchForSpentUntilHeight: 'Compact<u64>'
2491
2514
  },
2492
2515
  /**
2493
- * Lookup335: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
2516
+ * Lookup339: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
2494
2517
  **/
2495
2518
  ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey: {
2496
2519
  _enum: {
@@ -2500,43 +2523,43 @@ exports.default = {
2500
2523
  }
2501
2524
  },
2502
2525
  /**
2503
- * Lookup340: argon_primitives::bitcoin::BitcoinNetwork
2526
+ * Lookup344: argon_primitives::bitcoin::BitcoinNetwork
2504
2527
  **/
2505
2528
  ArgonPrimitivesBitcoinBitcoinNetwork: {
2506
2529
  _enum: ['Bitcoin', 'Testnet', 'Signet', 'Regtest']
2507
2530
  },
2508
2531
  /**
2509
- * Lookup343: pallet_bitcoin_utxos::pallet::Error<T>
2532
+ * Lookup347: pallet_bitcoin_utxos::pallet::Error<T>
2510
2533
  **/
2511
2534
  PalletBitcoinUtxosError: {
2512
2535
  _enum: ['NoPermissions', 'NoBitcoinConfirmedBlock', 'InsufficientBitcoinAmount', 'NoBitcoinPricesAvailable', 'ScriptPubkeyConflict', 'UtxoNotLocked', 'RedemptionsUnavailable', 'InvalidBitcoinSyncHeight', 'BitcoinHeightNotConfirmed', 'MaxUtxosExceeded', 'InvalidBitcoinScript']
2513
2536
  },
2514
2537
  /**
2515
- * Lookup344: argon_primitives::bond::Vault<sp_core::crypto::AccountId32, Balance, BlockNumber>
2538
+ * Lookup348: argon_primitives::vault::Vault<sp_core::crypto::AccountId32, Balance>
2516
2539
  **/
2517
- ArgonPrimitivesBondVault: {
2540
+ ArgonPrimitivesVault: {
2518
2541
  operatorAccountId: 'AccountId32',
2519
- bitcoinArgons: 'ArgonPrimitivesBondVaultArgons',
2520
- securitizationPercent: 'Compact<u128>',
2521
- securitizedArgons: 'Compact<u128>',
2522
- miningArgons: 'ArgonPrimitivesBondVaultArgons',
2542
+ bitcoinArgons: 'ArgonPrimitivesVaultVaultArgons',
2543
+ addedSecuritizationPercent: 'Compact<u128>',
2544
+ addedSecuritizationArgons: 'Compact<u128>',
2545
+ bondedArgons: 'ArgonPrimitivesVaultVaultArgons',
2523
2546
  miningRewardSharingPercentTake: 'Compact<u128>',
2524
2547
  isClosed: 'bool',
2525
- pendingTerms: 'Option<(u32,ArgonPrimitivesBondVaultTerms)>',
2526
- pendingMiningArgons: 'Option<(u32,u128)>',
2548
+ pendingTerms: 'Option<(u64,ArgonPrimitivesVaultVaultTerms)>',
2549
+ pendingBondedArgons: 'Option<(u64,u128)>',
2527
2550
  pendingBitcoins: 'u128'
2528
2551
  },
2529
2552
  /**
2530
- * Lookup345: argon_primitives::bond::VaultArgons<Balance>
2553
+ * Lookup349: argon_primitives::vault::VaultArgons<Balance>
2531
2554
  **/
2532
- ArgonPrimitivesBondVaultArgons: {
2555
+ ArgonPrimitivesVaultVaultArgons: {
2533
2556
  annualPercentRate: 'Compact<u128>',
2534
2557
  allocated: 'Compact<u128>',
2535
- bonded: 'Compact<u128>',
2558
+ reserved: 'Compact<u128>',
2536
2559
  baseFee: 'Compact<u128>'
2537
2560
  },
2538
2561
  /**
2539
- * Lookup351: argon_primitives::bitcoin::BitcoinXPub
2562
+ * Lookup355: argon_primitives::bitcoin::BitcoinXPub
2540
2563
  **/
2541
2564
  ArgonPrimitivesBitcoinBitcoinXPub: {
2542
2565
  publicKey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
@@ -2547,36 +2570,39 @@ exports.default = {
2547
2570
  network: 'ArgonPrimitivesBitcoinNetworkKind'
2548
2571
  },
2549
2572
  /**
2550
- * Lookup353: argon_primitives::bitcoin::NetworkKind
2573
+ * Lookup357: argon_primitives::bitcoin::NetworkKind
2551
2574
  **/
2552
2575
  ArgonPrimitivesBitcoinNetworkKind: {
2553
2576
  _enum: ['Main', 'Test']
2554
2577
  },
2555
2578
  /**
2556
- * Lookup356: pallet_vaults::pallet::Error<T>
2579
+ * Lookup360: argon_primitives::vault::Obligation<sp_core::crypto::AccountId32, Balance>
2557
2580
  **/
2558
- PalletVaultsError: {
2559
- _enum: ['BondNotFound', 'NoMoreVaultIds', 'NoMoreBondIds', 'MinimumBondAmountNotMet', 'ExpirationAtBlockOverflow', 'InsufficientFunds', 'InsufficientVaultFunds', 'InsufficientBitcoinsForMining', 'AccountBelowMinimumBalance', 'VaultClosed', 'InvalidVaultAmount', 'VaultReductionBelowAllocatedFunds', 'InvalidSecuritization', 'ReusedVaultBitcoinXpub', 'MaxSecuritizationPercentExceeded', 'InvalidBondType', 'BitcoinUtxoNotFound', 'InsufficientSatoshisBonded', 'NoBitcoinPricesAvailable', 'InvalidBitcoinScript', 'InvalidXpubkey', 'WrongXpubNetwork', 'UnsafeXpubkey', 'UnableToDeriveVaultXpubChild', 'BitcoinConversionFailed', 'ExpirationTooSoon', 'NoPermissions', 'HoldUnexpectedlyModified', 'UnrecoverableHold', 'VaultNotFound', 'FeeExceedsBondAmount', 'NoVaultBitcoinPubkeysAvailable', 'TermsModificationOverflow', 'TermsChangeAlreadyScheduled', 'InternalError', 'UnableToGenerateVaultBitcoinPubkey', 'UnableToDecodeVaultBitcoinPubkey', 'FundingChangeAlreadyScheduled']
2560
- },
2561
- /**
2562
- * Lookup357: argon_primitives::bond::Bond<sp_core::crypto::AccountId32, Balance, BlockNumber>
2563
- **/
2564
- ArgonPrimitivesBond: {
2565
- bondType: 'ArgonPrimitivesBondBondType',
2581
+ ArgonPrimitivesVaultObligation: {
2582
+ obligationId: 'Compact<u64>',
2583
+ fundType: 'ArgonPrimitivesVaultFundType',
2566
2584
  vaultId: 'Compact<u32>',
2567
- utxoId: 'Option<u64>',
2568
- bondedAccountId: 'AccountId32',
2585
+ beneficiary: 'AccountId32',
2569
2586
  totalFee: 'Compact<u128>',
2570
2587
  prepaidFee: 'Compact<u128>',
2571
2588
  amount: 'Compact<u128>',
2572
- startBlock: 'Compact<u32>',
2573
- expiration: 'ArgonPrimitivesBondBondExpiration'
2589
+ startTick: 'Compact<u64>',
2590
+ expiration: 'ArgonPrimitivesVaultObligationExpiration'
2574
2591
  },
2575
2592
  /**
2576
- * Lookup360: pallet_bond::pallet::UtxoState
2593
+ * Lookup363: pallet_vaults::pallet::Error<T>
2577
2594
  **/
2578
- PalletBondUtxoState: {
2579
- bondId: 'Compact<u64>',
2595
+ PalletVaultsError: {
2596
+ _enum: ['ObligationNotFound', 'NoMoreVaultIds', 'NoMoreObligationIds', 'MinimumObligationAmountNotMet', 'ExpirationAtBlockOverflow', 'InsufficientFunds', 'InsufficientVaultFunds', 'InsufficientBondedArgons', 'AccountBelowMinimumBalance', 'VaultClosed', 'InvalidVaultAmount', 'VaultReductionBelowAllocatedFunds', 'InvalidSecuritization', 'ReusedVaultBitcoinXpub', 'InvalidBitcoinScript', 'InvalidXpubkey', 'WrongXpubNetwork', 'UnsafeXpubkey', 'UnableToDeriveVaultXpubChild', 'BitcoinConversionFailed', 'ExpirationTooSoon', 'NoPermissions', 'HoldUnexpectedlyModified', 'UnrecoverableHold', 'VaultNotFound', 'NoVaultBitcoinPubkeysAvailable', 'TermsModificationOverflow', 'TermsChangeAlreadyScheduled', 'InternalError', 'UnableToGenerateVaultBitcoinPubkey', 'FundingChangeAlreadyScheduled', 'ObligationCompletionError']
2597
+ },
2598
+ /**
2599
+ * Lookup364: pallet_bitcoin_locks::pallet::LockedBitcoin<T>
2600
+ **/
2601
+ PalletBitcoinLocksLockedBitcoin: {
2602
+ obligationId: 'Compact<u64>',
2603
+ vaultId: 'Compact<u32>',
2604
+ lockPrice: 'u128',
2605
+ ownerAccount: 'AccountId32',
2580
2606
  satoshis: 'Compact<u64>',
2581
2607
  vaultPubkey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
2582
2608
  vaultClaimPubkey: 'ArgonPrimitivesBitcoinCompressedBitcoinPubkey',
@@ -2589,10 +2615,11 @@ exports.default = {
2589
2615
  isVerified: 'bool'
2590
2616
  },
2591
2617
  /**
2592
- * Lookup364: pallet_bond::pallet::UtxoCosignRequest<Balance>
2618
+ * Lookup368: pallet_bitcoin_locks::pallet::LockReleaseRequest<Balance>
2593
2619
  **/
2594
- PalletBondUtxoCosignRequest: {
2595
- bondId: 'Compact<u64>',
2620
+ PalletBitcoinLocksLockReleaseRequest: {
2621
+ utxoId: 'Compact<u64>',
2622
+ obligationId: 'Compact<u64>',
2596
2623
  vaultId: 'Compact<u32>',
2597
2624
  bitcoinNetworkFee: 'Compact<u64>',
2598
2625
  cosignDueBlock: 'Compact<u64>',
@@ -2600,30 +2627,29 @@ exports.default = {
2600
2627
  redemptionPrice: 'Compact<u128>'
2601
2628
  },
2602
2629
  /**
2603
- * Lookup368: pallet_bond::pallet::Error<T>
2630
+ * Lookup372: pallet_bitcoin_locks::pallet::Error<T>
2604
2631
  **/
2605
- PalletBondError: {
2632
+ PalletBitcoinLocksError: {
2606
2633
  _enum: {
2607
- BondNotFound: 'Null',
2608
- NoMoreBondIds: 'Null',
2609
- MinimumBondAmountNotMet: 'Null',
2634
+ ObligationNotFound: 'Null',
2635
+ NoMoreObligationIds: 'Null',
2636
+ MinimumObligationAmountNotMet: 'Null',
2610
2637
  ExpirationAtBlockOverflow: 'Null',
2611
2638
  InsufficientFunds: 'Null',
2612
2639
  InsufficientVaultFunds: 'Null',
2613
- InsufficientBitcoinsForMining: 'Null',
2640
+ InsufficientBondedArgons: 'Null',
2614
2641
  AccountWouldGoBelowMinimumBalance: 'Null',
2615
2642
  VaultClosed: 'Null',
2616
2643
  InvalidVaultAmount: 'Null',
2617
- BondRedemptionNotLocked: 'Null',
2618
- BitcoinUnlockInitiationDeadlinePassed: 'Null',
2644
+ RedemptionNotLocked: 'Null',
2645
+ BitcoinReleaseInitiationDeadlinePassed: 'Null',
2619
2646
  BitcoinFeeTooHigh: 'Null',
2620
- InvalidBondType: 'Null',
2621
2647
  BitcoinUtxoNotFound: 'Null',
2622
- BitcoinUnableToBeDecodedForUnlock: 'Null',
2648
+ BitcoinUnableToBeDecodedForRelease: 'Null',
2623
2649
  BitcoinSignatureUnableToBeDecoded: 'Null',
2624
2650
  BitcoinPubkeyUnableToBeDecoded: 'Null',
2625
2651
  BitcoinInvalidCosignature: 'Null',
2626
- InsufficientSatoshisBonded: 'Null',
2652
+ InsufficientSatoshisLocked: 'Null',
2627
2653
  NoBitcoinPricesAvailable: 'Null',
2628
2654
  InvalidBitcoinScript: 'Null',
2629
2655
  ExpirationTooSoon: 'Null',
@@ -2631,18 +2657,20 @@ exports.default = {
2631
2657
  HoldUnexpectedlyModified: 'Null',
2632
2658
  UnrecoverableHold: 'Null',
2633
2659
  VaultNotFound: 'Null',
2634
- FeeExceedsBondAmount: 'Null',
2635
- GenericBondError: 'ArgonPrimitivesBondBondError'
2660
+ GenericObligationError: 'ArgonPrimitivesVaultObligationError',
2661
+ LockNotFound: 'Null',
2662
+ NoVaultBitcoinPubkeysAvailable: 'Null',
2663
+ UnableToGenerateVaultBitcoinPubkey: 'Null'
2636
2664
  }
2637
2665
  },
2638
2666
  /**
2639
- * Lookup380: pallet_notaries::pallet::Error<T>
2667
+ * Lookup384: pallet_notaries::pallet::Error<T>
2640
2668
  **/
2641
2669
  PalletNotariesError: {
2642
2670
  _enum: ['ProposalNotFound', 'MaxNotariesExceeded', 'MaxProposalsPerBlockExceeded', 'NotAnActiveNotary', 'InvalidNotaryOperator', 'NoMoreNotaryIds', 'EffectiveTickTooSoon', 'TooManyKeys', 'InvalidNotary']
2643
2671
  },
2644
2672
  /**
2645
- * Lookup384: argon_primitives::notary::NotaryNotebookKeyDetails
2673
+ * Lookup388: argon_primitives::notary::NotaryNotebookKeyDetails
2646
2674
  **/
2647
2675
  ArgonPrimitivesNotaryNotaryNotebookKeyDetails: {
2648
2676
  notebookNumber: 'Compact<u32>',
@@ -2652,13 +2680,13 @@ exports.default = {
2652
2680
  parentSecret: 'Option<H256>'
2653
2681
  },
2654
2682
  /**
2655
- * Lookup387: pallet_notebook::pallet::Error<T>
2683
+ * Lookup391: pallet_notebook::pallet::Error<T>
2656
2684
  **/
2657
2685
  PalletNotebookError: {
2658
2686
  _enum: ['DuplicateNotebookNumber', 'MissingNotebookNumber', 'NotebookTickAlreadyUsed', 'InvalidNotebookSignature', 'InvalidSecretProvided', 'CouldNotDecodeNotebook', 'DuplicateNotebookDigest', 'MissingNotebookDigest', 'InvalidNotebookDigest', 'MultipleNotebookInherentsProvided', 'InternalError', 'NotebookSubmittedForLockedNotary', 'InvalidReprocessNotebook', 'InvalidNotaryOperator', 'InvalidNotebookSubmissionTick']
2659
2687
  },
2660
2688
  /**
2661
- * Lookup388: pallet_chain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
2689
+ * Lookup392: pallet_chain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
2662
2690
  **/
2663
2691
  PalletChainTransferQueuedTransferOut: {
2664
2692
  accountId: 'AccountId32',
@@ -2667,17 +2695,17 @@ exports.default = {
2667
2695
  notaryId: 'u32'
2668
2696
  },
2669
2697
  /**
2670
- * Lookup394: frame_support::PalletId
2698
+ * Lookup398: frame_support::PalletId
2671
2699
  **/
2672
2700
  FrameSupportPalletId: '[u8;8]',
2673
2701
  /**
2674
- * Lookup395: pallet_chain_transfer::pallet::Error<T>
2702
+ * Lookup399: pallet_chain_transfer::pallet::Error<T>
2675
2703
  **/
2676
2704
  PalletChainTransferError: {
2677
2705
  _enum: ['MaxBlockTransfersExceeded', 'InsufficientFunds', 'InsufficientNotarizedFunds', 'InvalidOrDuplicatedLocalchainTransfer', 'NotebookIncludesExpiredLocalchainTransfer', 'InvalidNotaryUsedForTransfer']
2678
2706
  },
2679
2707
  /**
2680
- * Lookup400: argon_primitives::notary::NotaryNotebookVoteDigestDetails
2708
+ * Lookup404: argon_primitives::notary::NotaryNotebookVoteDigestDetails
2681
2709
  **/
2682
2710
  ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails: {
2683
2711
  notaryId: 'Compact<u32>',
@@ -2687,25 +2715,25 @@ exports.default = {
2687
2715
  blockVotingPower: 'Compact<u128>'
2688
2716
  },
2689
2717
  /**
2690
- * Lookup405: pallet_block_seal_spec::pallet::Error<T>
2718
+ * Lookup409: pallet_block_seal_spec::pallet::Error<T>
2691
2719
  **/
2692
2720
  PalletBlockSealSpecError: {
2693
2721
  _enum: ['MaxNotebooksAtTickExceeded']
2694
2722
  },
2695
2723
  /**
2696
- * Lookup407: pallet_domains::pallet::Error<T>
2724
+ * Lookup411: pallet_domains::pallet::Error<T>
2697
2725
  **/
2698
2726
  PalletDomainsError: {
2699
2727
  _enum: ['DomainNotRegistered', 'NotDomainOwner', 'FailedToAddToAddressHistory', 'FailedToAddExpiringDomain', 'AccountDecodingError']
2700
2728
  },
2701
2729
  /**
2702
- * Lookup408: pallet_price_index::pallet::Error<T>
2730
+ * Lookup412: pallet_price_index::pallet::Error<T>
2703
2731
  **/
2704
2732
  PalletPriceIndexError: {
2705
2733
  _enum: ['NotAuthorizedOperator', 'MissingValue', 'PricesTooOld', 'MaxPriceChangePerTickExceeded']
2706
2734
  },
2707
2735
  /**
2708
- * Lookup409: pallet_grandpa::StoredState<N>
2736
+ * Lookup413: pallet_grandpa::StoredState<N>
2709
2737
  **/
2710
2738
  PalletGrandpaStoredState: {
2711
2739
  _enum: {
@@ -2722,7 +2750,7 @@ exports.default = {
2722
2750
  }
2723
2751
  },
2724
2752
  /**
2725
- * Lookup410: pallet_grandpa::StoredPendingChange<N, Limit>
2753
+ * Lookup414: pallet_grandpa::StoredPendingChange<N, Limit>
2726
2754
  **/
2727
2755
  PalletGrandpaStoredPendingChange: {
2728
2756
  scheduledAt: 'u32',
@@ -2731,13 +2759,13 @@ exports.default = {
2731
2759
  forced: 'Option<u32>'
2732
2760
  },
2733
2761
  /**
2734
- * Lookup413: pallet_grandpa::pallet::Error<T>
2762
+ * Lookup417: pallet_grandpa::pallet::Error<T>
2735
2763
  **/
2736
2764
  PalletGrandpaError: {
2737
2765
  _enum: ['PauseFailed', 'ResumeFailed', 'ChangePending', 'TooSoon', 'InvalidKeyOwnershipProof', 'InvalidEquivocationProof', 'DuplicateOffenceReport']
2738
2766
  },
2739
2767
  /**
2740
- * Lookup414: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32>
2768
+ * Lookup418: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32>
2741
2769
  **/
2742
2770
  ArgonPrimitivesProvidersBlockSealerInfo: {
2743
2771
  blockAuthorAccountId: 'AccountId32',
@@ -2745,17 +2773,17 @@ exports.default = {
2745
2773
  blockSealAuthority: 'Option<ArgonPrimitivesBlockSealAppPublic>'
2746
2774
  },
2747
2775
  /**
2748
- * Lookup418: pallet_block_seal::pallet::Error<T>
2776
+ * Lookup422: pallet_block_seal::pallet::Error<T>
2749
2777
  **/
2750
2778
  PalletBlockSealError: {
2751
2779
  _enum: ['InvalidVoteSealStrength', 'InvalidSubmitter', 'UnableToDecodeVoteAccount', 'UnregisteredBlockAuthor', 'InvalidBlockVoteProof', 'NoGrandparentVoteMinimum', 'DuplicateBlockSealProvided', 'InsufficientVotingPower', 'ParentVotingKeyNotFound', 'InvalidVoteGrandparentHash', 'IneligibleNotebookUsed', 'NoEligibleVotingRoot', 'CouldNotDecodeVote', 'MaxNotebooksAtTickExceeded', 'NoClosestMinerFoundForVote', 'BlockVoteInvalidSignature', 'InvalidForkPowerParent', 'BlockSealDecodeError', 'InvalidComputeBlockTick']
2752
2780
  },
2753
2781
  /**
2754
- * Lookup421: pallet_block_rewards::pallet::Error<T>
2782
+ * Lookup425: pallet_block_rewards::pallet::Error<T>
2755
2783
  **/
2756
2784
  PalletBlockRewardsError: 'Null',
2757
2785
  /**
2758
- * Lookup426: pallet_mint::MintAction<Balance>
2786
+ * Lookup430: pallet_mint::MintAction<Balance>
2759
2787
  **/
2760
2788
  PalletMintMintAction: {
2761
2789
  argonBurned: 'u128',
@@ -2763,13 +2791,13 @@ exports.default = {
2763
2791
  bitcoinMinted: 'u128'
2764
2792
  },
2765
2793
  /**
2766
- * Lookup427: pallet_mint::pallet::Error<T>
2794
+ * Lookup431: pallet_mint::pallet::Error<T>
2767
2795
  **/
2768
2796
  PalletMintError: {
2769
2797
  _enum: ['TooManyPendingMints']
2770
2798
  },
2771
2799
  /**
2772
- * Lookup429: pallet_balances::types::BalanceLock<Balance>
2800
+ * Lookup433: pallet_balances::types::BalanceLock<Balance>
2773
2801
  **/
2774
2802
  PalletBalancesBalanceLock: {
2775
2803
  id: '[u8;8]',
@@ -2777,27 +2805,27 @@ exports.default = {
2777
2805
  reasons: 'PalletBalancesReasons'
2778
2806
  },
2779
2807
  /**
2780
- * Lookup430: pallet_balances::types::Reasons
2808
+ * Lookup434: pallet_balances::types::Reasons
2781
2809
  **/
2782
2810
  PalletBalancesReasons: {
2783
2811
  _enum: ['Fee', 'Misc', 'All']
2784
2812
  },
2785
2813
  /**
2786
- * Lookup433: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
2814
+ * Lookup437: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
2787
2815
  **/
2788
2816
  PalletBalancesReserveData: {
2789
2817
  id: '[u8;8]',
2790
2818
  amount: 'u128'
2791
2819
  },
2792
2820
  /**
2793
- * Lookup436: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeHoldReason, Balance>
2821
+ * Lookup440: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeHoldReason, Balance>
2794
2822
  **/
2795
2823
  FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
2796
2824
  id: 'ArgonRuntimeRuntimeHoldReason',
2797
2825
  amount: 'u128'
2798
2826
  },
2799
2827
  /**
2800
- * Lookup437: argon_runtime::RuntimeHoldReason
2828
+ * Lookup441: argon_runtime::RuntimeHoldReason
2801
2829
  **/
2802
2830
  ArgonRuntimeRuntimeHoldReason: {
2803
2831
  _enum: {
@@ -2810,7 +2838,7 @@ exports.default = {
2810
2838
  MiningSlot: 'PalletMiningSlotHoldReason',
2811
2839
  __Unused7: 'Null',
2812
2840
  Vaults: 'PalletVaultsHoldReason',
2813
- Bonds: 'PalletBondHoldReason',
2841
+ BitcoinLocks: 'PalletBitcoinLocksHoldReason',
2814
2842
  __Unused10: 'Null',
2815
2843
  __Unused11: 'Null',
2816
2844
  __Unused12: 'Null',
@@ -2824,38 +2852,38 @@ exports.default = {
2824
2852
  }
2825
2853
  },
2826
2854
  /**
2827
- * Lookup438: pallet_mining_slot::pallet::HoldReason
2855
+ * Lookup442: pallet_mining_slot::pallet::HoldReason
2828
2856
  **/
2829
2857
  PalletMiningSlotHoldReason: {
2830
2858
  _enum: ['RegisterAsMiner']
2831
2859
  },
2832
2860
  /**
2833
- * Lookup439: pallet_vaults::pallet::HoldReason
2861
+ * Lookup443: pallet_vaults::pallet::HoldReason
2834
2862
  **/
2835
2863
  PalletVaultsHoldReason: {
2836
- _enum: ['EnterVault', 'BondFee']
2864
+ _enum: ['EnterVault', 'ObligationFee']
2837
2865
  },
2838
2866
  /**
2839
- * Lookup440: pallet_bond::pallet::HoldReason
2867
+ * Lookup444: pallet_bitcoin_locks::pallet::HoldReason
2840
2868
  **/
2841
- PalletBondHoldReason: {
2842
- _enum: ['UnlockingBitcoin']
2869
+ PalletBitcoinLocksHoldReason: {
2870
+ _enum: ['ReleaseBitcoinLock']
2843
2871
  },
2844
2872
  /**
2845
- * Lookup441: pallet_block_rewards::pallet::HoldReason
2873
+ * Lookup445: pallet_block_rewards::pallet::HoldReason
2846
2874
  **/
2847
2875
  PalletBlockRewardsHoldReason: {
2848
2876
  _enum: ['MaturationPeriod']
2849
2877
  },
2850
2878
  /**
2851
- * Lookup444: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeFreezeReason, Balance>
2879
+ * Lookup448: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeFreezeReason, Balance>
2852
2880
  **/
2853
2881
  FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
2854
2882
  id: 'ArgonRuntimeRuntimeFreezeReason',
2855
2883
  amount: 'u128'
2856
2884
  },
2857
2885
  /**
2858
- * Lookup445: argon_runtime::RuntimeFreezeReason
2886
+ * Lookup449: argon_runtime::RuntimeFreezeReason
2859
2887
  **/
2860
2888
  ArgonRuntimeRuntimeFreezeReason: {
2861
2889
  _enum: {
@@ -2882,99 +2910,99 @@ exports.default = {
2882
2910
  }
2883
2911
  },
2884
2912
  /**
2885
- * Lookup446: pallet_block_rewards::pallet::FreezeReason
2913
+ * Lookup450: pallet_block_rewards::pallet::FreezeReason
2886
2914
  **/
2887
2915
  PalletBlockRewardsFreezeReason: {
2888
2916
  _enum: ['MaturationPeriod']
2889
2917
  },
2890
2918
  /**
2891
- * Lookup448: pallet_balances::pallet::Error<T, I>
2919
+ * Lookup452: pallet_balances::pallet::Error<T, I>
2892
2920
  **/
2893
2921
  PalletBalancesError: {
2894
2922
  _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'Expendability', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves', 'TooManyHolds', 'TooManyFreezes', 'IssuanceDeactivated', 'DeltaZero']
2895
2923
  },
2896
2924
  /**
2897
- * Lookup450: pallet_tx_pause::pallet::Error<T>
2925
+ * Lookup454: pallet_tx_pause::pallet::Error<T>
2898
2926
  **/
2899
2927
  PalletTxPauseError: {
2900
2928
  _enum: ['IsPaused', 'IsUnpaused', 'Unpausable', 'NotFound']
2901
2929
  },
2902
2930
  /**
2903
- * Lookup451: pallet_transaction_payment::Releases
2931
+ * Lookup455: pallet_transaction_payment::Releases
2904
2932
  **/
2905
2933
  PalletTransactionPaymentReleases: {
2906
2934
  _enum: ['V1Ancient', 'V2']
2907
2935
  },
2908
2936
  /**
2909
- * Lookup452: pallet_utility::pallet::Error<T>
2937
+ * Lookup456: pallet_utility::pallet::Error<T>
2910
2938
  **/
2911
2939
  PalletUtilityError: {
2912
2940
  _enum: ['TooManyCalls']
2913
2941
  },
2914
2942
  /**
2915
- * Lookup453: pallet_sudo::pallet::Error<T>
2943
+ * Lookup457: pallet_sudo::pallet::Error<T>
2916
2944
  **/
2917
2945
  PalletSudoError: {
2918
2946
  _enum: ['RequireSudo']
2919
2947
  },
2920
2948
  /**
2921
- * Lookup454: pallet_ismp::pallet::Error<T>
2949
+ * Lookup458: pallet_ismp::pallet::Error<T>
2922
2950
  **/
2923
2951
  PalletIsmpError: {
2924
2952
  _enum: ['InvalidMessage', 'MessageNotFound', 'ConsensusClientCreationFailed', 'UnbondingPeriodUpdateFailed', 'ChallengePeriodUpdateFailed']
2925
2953
  },
2926
2954
  /**
2927
- * Lookup455: pallet_hyperbridge::pallet::Error<T>
2955
+ * Lookup459: pallet_hyperbridge::pallet::Error<T>
2928
2956
  **/
2929
2957
  PalletHyperbridgeError: 'Null',
2930
2958
  /**
2931
- * Lookup456: pallet_token_gateway::pallet::Error<T>
2959
+ * Lookup461: pallet_token_gateway::pallet::Error<T>
2932
2960
  **/
2933
2961
  PalletTokenGatewayError: {
2934
2962
  _enum: ['UnregisteredAsset', 'AssetTeleportError', 'CoprocessorNotConfigured', 'DispatchError', 'AssetCreationError', 'AssetDecimalsNotFound', 'NotInitialized', 'UnknownAsset', 'NotAssetOwner']
2935
2963
  },
2936
2964
  /**
2937
- * Lookup459: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
2965
+ * Lookup464: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
2938
2966
  **/
2939
2967
  FrameSystemExtensionsCheckNonZeroSender: 'Null',
2940
2968
  /**
2941
- * Lookup460: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
2969
+ * Lookup465: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
2942
2970
  **/
2943
2971
  FrameSystemExtensionsCheckSpecVersion: 'Null',
2944
2972
  /**
2945
- * Lookup461: frame_system::extensions::check_tx_version::CheckTxVersion<T>
2973
+ * Lookup466: frame_system::extensions::check_tx_version::CheckTxVersion<T>
2946
2974
  **/
2947
2975
  FrameSystemExtensionsCheckTxVersion: 'Null',
2948
2976
  /**
2949
- * Lookup462: frame_system::extensions::check_genesis::CheckGenesis<T>
2977
+ * Lookup467: frame_system::extensions::check_genesis::CheckGenesis<T>
2950
2978
  **/
2951
2979
  FrameSystemExtensionsCheckGenesis: 'Null',
2952
2980
  /**
2953
- * Lookup465: frame_system::extensions::check_nonce::CheckNonce<T>
2981
+ * Lookup470: frame_system::extensions::check_nonce::CheckNonce<T>
2954
2982
  **/
2955
2983
  FrameSystemExtensionsCheckNonce: 'Compact<u32>',
2956
2984
  /**
2957
- * Lookup466: frame_system::extensions::check_weight::CheckWeight<T>
2985
+ * Lookup471: frame_system::extensions::check_weight::CheckWeight<T>
2958
2986
  **/
2959
2987
  FrameSystemExtensionsCheckWeight: 'Null',
2960
2988
  /**
2961
- * Lookup467: pallet_transaction_payment::ChargeTransactionPayment<T>
2989
+ * Lookup472: pallet_transaction_payment::ChargeTransactionPayment<T>
2962
2990
  **/
2963
2991
  PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
2964
2992
  /**
2965
- * Lookup468: frame_metadata_hash_extension::CheckMetadataHash<T>
2993
+ * Lookup473: frame_metadata_hash_extension::CheckMetadataHash<T>
2966
2994
  **/
2967
2995
  FrameMetadataHashExtensionCheckMetadataHash: {
2968
2996
  mode: 'FrameMetadataHashExtensionMode'
2969
2997
  },
2970
2998
  /**
2971
- * Lookup469: frame_metadata_hash_extension::Mode
2999
+ * Lookup474: frame_metadata_hash_extension::Mode
2972
3000
  **/
2973
3001
  FrameMetadataHashExtensionMode: {
2974
3002
  _enum: ['Disabled', 'Enabled']
2975
3003
  },
2976
3004
  /**
2977
- * Lookup471: argon_runtime::Runtime
3005
+ * Lookup476: argon_runtime::Runtime
2978
3006
  **/
2979
3007
  ArgonRuntimeRuntime: 'Null'
2980
3008
  };