@argonprotocol/mainchain 1.0.9 → 1.0.11

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