@argonprotocol/mainchain 1.0.9 → 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 +72 -52
  5. package/lib/cjs/interfaces/augment-api-tx.d.ts +68 -54
  6. package/lib/cjs/interfaces/lookup.d.ts +227 -205
  7. package/lib/cjs/interfaces/lookup.js +243 -221
  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 +269 -250
  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 +72 -52
  15. package/lib/esm/interfaces/augment-api-tx.d.ts +68 -54
  16. package/lib/esm/interfaces/lookup.d.ts +227 -205
  17. package/lib/esm/interfaces/lookup.js +243 -221
  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 +269 -250
  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 +72 -52
  28. package/lib/types/interfaces/augment-api-tx.d.ts +68 -54
  29. package/lib/types/interfaces/lookup.d.ts +227 -205
  30. package/lib/types/interfaces/registry.d.ts +15 -14
  31. package/lib/types/interfaces/types-lookup.d.ts +269 -250
  32. package/package.json +1 -1
@@ -255,38 +255,39 @@ declare module '@polkadot/types/lookup' {
255
255
  readonly isSlotBidderReplaced: boolean;
256
256
  readonly asSlotBidderReplaced: {
257
257
  readonly accountId: AccountId32;
258
- readonly bondId: Option<u64>;
259
- readonly keptOwnershipBond: bool;
258
+ readonly obligationId: Option<u64>;
259
+ readonly preservedArgonotHold: bool;
260
260
  } & Struct;
261
- readonly isUnbondedMiner: boolean;
262
- readonly asUnbondedMiner: {
261
+ readonly isReleasedMinerSeat: boolean;
262
+ readonly asReleasedMinerSeat: {
263
263
  readonly accountId: AccountId32;
264
- readonly bondId: Option<u64>;
265
- readonly keptOwnershipBond: bool;
264
+ readonly obligationId: Option<u64>;
265
+ readonly preservedArgonotHold: bool;
266
266
  } & Struct;
267
- readonly isUnbondMinerError: boolean;
268
- readonly asUnbondMinerError: {
267
+ readonly isReleaseMinerSeatError: boolean;
268
+ readonly asReleaseMinerSeatError: {
269
269
  readonly accountId: AccountId32;
270
- readonly bondId: Option<u64>;
270
+ readonly obligationId: Option<u64>;
271
271
  readonly error: SpRuntimeDispatchError;
272
272
  } & Struct;
273
273
  readonly isMiningConfigurationUpdated: boolean;
274
274
  readonly asMiningConfigurationUpdated: {
275
- readonly blocksBeforeBidEndForVrfClose: u32;
276
- readonly blocksBetweenSlots: u32;
275
+ readonly ticksBeforeBidEndForVrfClose: u64;
276
+ readonly ticksBetweenSlots: u64;
277
277
  readonly slotBiddingStartAfterTicks: u64;
278
278
  } & Struct;
279
- readonly type: 'NewMiners' | 'SlotBidderAdded' | 'SlotBidderReplaced' | 'UnbondedMiner' | 'UnbondMinerError' | 'MiningConfigurationUpdated';
279
+ readonly type: 'NewMiners' | 'SlotBidderAdded' | 'SlotBidderReplaced' | 'ReleasedMinerSeat' | 'ReleaseMinerSeatError' | 'MiningConfigurationUpdated';
280
280
  }
281
281
  /** @name ArgonPrimitivesBlockSealMiningRegistration (41) */
282
282
  interface ArgonPrimitivesBlockSealMiningRegistration extends Struct {
283
283
  readonly accountId: AccountId32;
284
284
  readonly rewardDestination: ArgonPrimitivesBlockSealRewardDestination;
285
- readonly bondId: Option<u64>;
286
- readonly bondAmount: Compact<u128>;
287
- readonly ownershipTokens: Compact<u128>;
285
+ readonly obligationId: Option<u64>;
286
+ readonly bondedArgons: Compact<u128>;
287
+ readonly argonots: Compact<u128>;
288
288
  readonly rewardSharing: Option<ArgonPrimitivesBlockSealRewardSharing>;
289
289
  readonly authorityKeys: ArgonRuntimeSessionKeys;
290
+ readonly slotId: Compact<u64>;
290
291
  }
291
292
  /** @name ArgonRuntimeSessionKeys (42) */
292
293
  interface ArgonRuntimeSessionKeys extends Struct {
@@ -375,31 +376,31 @@ declare module '@polkadot/types/lookup' {
375
376
  readonly asVaultCreated: {
376
377
  readonly vaultId: u32;
377
378
  readonly bitcoinArgons: u128;
378
- readonly miningArgons: u128;
379
- readonly securitizationPercent: u128;
379
+ readonly bondedArgons: u128;
380
+ readonly addedSecuritizationPercent: u128;
380
381
  readonly operatorAccountId: AccountId32;
381
382
  } & Struct;
382
383
  readonly isVaultModified: boolean;
383
384
  readonly asVaultModified: {
384
385
  readonly vaultId: u32;
385
386
  readonly bitcoinArgons: u128;
386
- readonly miningArgons: u128;
387
- readonly securitizationPercent: u128;
387
+ readonly bondedArgons: u128;
388
+ readonly addedSecuritizationPercent: u128;
388
389
  } & Struct;
389
- readonly isVaultMiningBondsIncreased: boolean;
390
- readonly asVaultMiningBondsIncreased: {
390
+ readonly isVaultBondedArgonsIncreased: boolean;
391
+ readonly asVaultBondedArgonsIncreased: {
391
392
  readonly vaultId: u32;
392
- readonly miningArgons: u128;
393
+ readonly bondedArgons: u128;
393
394
  } & Struct;
394
- readonly isVaultMiningBondsChangeScheduled: boolean;
395
- readonly asVaultMiningBondsChangeScheduled: {
395
+ readonly isVaultBondedArgonsChangeScheduled: boolean;
396
+ readonly asVaultBondedArgonsChangeScheduled: {
396
397
  readonly vaultId: u32;
397
- readonly changeBlock: u32;
398
+ readonly changeTick: u64;
398
399
  } & Struct;
399
400
  readonly isVaultTermsChangeScheduled: boolean;
400
401
  readonly asVaultTermsChangeScheduled: {
401
402
  readonly vaultId: u32;
402
- readonly changeBlock: u32;
403
+ readonly changeTick: u64;
403
404
  } & Struct;
404
405
  readonly isVaultTermsChanged: boolean;
405
406
  readonly asVaultTermsChanged: {
@@ -408,103 +409,110 @@ declare module '@polkadot/types/lookup' {
408
409
  readonly isVaultClosed: boolean;
409
410
  readonly asVaultClosed: {
410
411
  readonly vaultId: u32;
411
- readonly bitcoinAmountStillBonded: u128;
412
- readonly miningAmountStillBonded: u128;
413
- readonly securitizationStillBonded: u128;
412
+ readonly bitcoinAmountStillReserved: u128;
413
+ readonly miningAmountStillReserved: u128;
414
+ readonly securitizationStillReserved: u128;
414
415
  } & Struct;
415
416
  readonly isVaultBitcoinXpubChange: boolean;
416
417
  readonly asVaultBitcoinXpubChange: {
417
418
  readonly vaultId: u32;
418
419
  } & Struct;
419
- readonly type: 'VaultCreated' | 'VaultModified' | 'VaultMiningBondsIncreased' | 'VaultMiningBondsChangeScheduled' | 'VaultTermsChangeScheduled' | 'VaultTermsChanged' | 'VaultClosed' | 'VaultBitcoinXpubChange';
420
- }
421
- /** @name PalletBondEvent (59) */
422
- interface PalletBondEvent extends Enum {
423
- readonly isBondCreated: boolean;
424
- readonly asBondCreated: {
420
+ readonly isObligationCreated: boolean;
421
+ readonly asObligationCreated: {
425
422
  readonly vaultId: u32;
426
- readonly bondId: u64;
427
- readonly bondType: ArgonPrimitivesBondBondType;
428
- readonly bondedAccountId: AccountId32;
429
- readonly utxoId: Option<u64>;
423
+ readonly obligationId: u64;
424
+ readonly fundType: ArgonPrimitivesVaultFundType;
425
+ readonly beneficiary: AccountId32;
430
426
  readonly amount: u128;
431
- readonly expiration: ArgonPrimitivesBondBondExpiration;
427
+ readonly expiration: ArgonPrimitivesVaultObligationExpiration;
432
428
  } & Struct;
433
- readonly isBondCompleted: boolean;
434
- readonly asBondCompleted: {
429
+ readonly isObligationCompleted: boolean;
430
+ readonly asObligationCompleted: {
435
431
  readonly vaultId: u32;
436
- readonly bondId: u64;
432
+ readonly obligationId: u64;
437
433
  } & Struct;
438
- readonly isBondModified: boolean;
439
- readonly asBondModified: {
434
+ readonly isObligationModified: boolean;
435
+ readonly asObligationModified: {
440
436
  readonly vaultId: u32;
441
- readonly bondId: u64;
437
+ readonly obligationId: u64;
442
438
  readonly amount: u128;
443
439
  } & Struct;
444
- readonly isBondCanceled: boolean;
445
- readonly asBondCanceled: {
440
+ readonly isObligationCanceled: boolean;
441
+ readonly asObligationCanceled: {
446
442
  readonly vaultId: u32;
447
- readonly bondId: u64;
448
- readonly bondedAccountId: AccountId32;
449
- readonly bondType: ArgonPrimitivesBondBondType;
443
+ readonly obligationId: u64;
444
+ readonly beneficiary: AccountId32;
445
+ readonly fundType: ArgonPrimitivesVaultFundType;
450
446
  readonly returnedFee: u128;
451
447
  } & Struct;
452
- readonly isBitcoinBondBurned: boolean;
453
- readonly asBitcoinBondBurned: {
448
+ readonly isObligationCompletionError: boolean;
449
+ readonly asObligationCompletionError: {
450
+ readonly obligationId: u64;
451
+ readonly error: SpRuntimeDispatchError;
452
+ } & Struct;
453
+ readonly type: 'VaultCreated' | 'VaultModified' | 'VaultBondedArgonsIncreased' | 'VaultBondedArgonsChangeScheduled' | 'VaultTermsChangeScheduled' | 'VaultTermsChanged' | 'VaultClosed' | 'VaultBitcoinXpubChange' | 'ObligationCreated' | 'ObligationCompleted' | 'ObligationModified' | 'ObligationCanceled' | 'ObligationCompletionError';
454
+ }
455
+ /** @name ArgonPrimitivesVaultFundType (59) */
456
+ interface ArgonPrimitivesVaultFundType extends Enum {
457
+ readonly isBondedArgons: boolean;
458
+ readonly isBitcoin: boolean;
459
+ readonly type: 'BondedArgons' | 'Bitcoin';
460
+ }
461
+ /** @name ArgonPrimitivesVaultObligationExpiration (60) */
462
+ interface ArgonPrimitivesVaultObligationExpiration extends Enum {
463
+ readonly isAtTick: boolean;
464
+ readonly asAtTick: Compact<u64>;
465
+ readonly isBitcoinBlock: boolean;
466
+ readonly asBitcoinBlock: Compact<u64>;
467
+ readonly type: 'AtTick' | 'BitcoinBlock';
468
+ }
469
+ /** @name PalletBitcoinLocksEvent (61) */
470
+ interface PalletBitcoinLocksEvent extends Enum {
471
+ readonly isBitcoinLockCreated: boolean;
472
+ readonly asBitcoinLockCreated: {
473
+ readonly utxoId: u64;
454
474
  readonly vaultId: u32;
455
- readonly bondId: u64;
475
+ readonly obligationId: u64;
476
+ readonly lockPrice: u128;
477
+ readonly accountId: AccountId32;
478
+ } & Struct;
479
+ readonly isBitcoinLockBurned: boolean;
480
+ readonly asBitcoinLockBurned: {
456
481
  readonly utxoId: u64;
482
+ readonly vaultId: u32;
483
+ readonly obligationId: u64;
457
484
  readonly amountBurned: u128;
458
485
  readonly amountHeld: u128;
459
486
  readonly wasUtxoSpent: bool;
460
487
  } & Struct;
461
488
  readonly isBitcoinUtxoCosignRequested: boolean;
462
489
  readonly asBitcoinUtxoCosignRequested: {
463
- readonly bondId: u64;
464
- readonly vaultId: u32;
465
490
  readonly utxoId: u64;
491
+ readonly obligationId: u64;
492
+ readonly vaultId: u32;
466
493
  } & Struct;
467
494
  readonly isBitcoinUtxoCosigned: boolean;
468
495
  readonly asBitcoinUtxoCosigned: {
469
- readonly bondId: u64;
470
- readonly vaultId: u32;
471
496
  readonly utxoId: u64;
497
+ readonly obligationId: u64;
498
+ readonly vaultId: u32;
472
499
  readonly signature: Bytes;
473
500
  } & Struct;
474
501
  readonly isBitcoinCosignPastDue: boolean;
475
502
  readonly asBitcoinCosignPastDue: {
476
- readonly bondId: u64;
477
- readonly vaultId: u32;
478
503
  readonly utxoId: u64;
504
+ readonly obligationId: u64;
505
+ readonly vaultId: u32;
479
506
  readonly compensationAmount: u128;
480
507
  readonly compensationStillOwed: u128;
481
508
  readonly compensatedAccountId: AccountId32;
482
509
  } & Struct;
483
- readonly isBondCompletionError: boolean;
484
- readonly asBondCompletionError: {
485
- readonly bondId: u64;
486
- readonly error: SpRuntimeDispatchError;
487
- } & Struct;
488
510
  readonly isCosignOverdueError: boolean;
489
511
  readonly asCosignOverdueError: {
490
512
  readonly utxoId: u64;
491
513
  readonly error: SpRuntimeDispatchError;
492
514
  } & Struct;
493
- readonly type: 'BondCreated' | 'BondCompleted' | 'BondModified' | 'BondCanceled' | 'BitcoinBondBurned' | 'BitcoinUtxoCosignRequested' | 'BitcoinUtxoCosigned' | 'BitcoinCosignPastDue' | 'BondCompletionError' | 'CosignOverdueError';
494
- }
495
- /** @name ArgonPrimitivesBondBondType (60) */
496
- interface ArgonPrimitivesBondBondType extends Enum {
497
- readonly isMining: boolean;
498
- readonly isBitcoin: boolean;
499
- readonly type: 'Mining' | 'Bitcoin';
500
- }
501
- /** @name ArgonPrimitivesBondBondExpiration (61) */
502
- interface ArgonPrimitivesBondBondExpiration extends Enum {
503
- readonly isArgonBlock: boolean;
504
- readonly asArgonBlock: Compact<u32>;
505
- readonly isBitcoinBlock: boolean;
506
- readonly asBitcoinBlock: Compact<u64>;
507
- readonly type: 'ArgonBlock' | 'BitcoinBlock';
515
+ readonly type: 'BitcoinLockCreated' | 'BitcoinLockBurned' | 'BitcoinUtxoCosignRequested' | 'BitcoinUtxoCosigned' | 'BitcoinCosignPastDue' | 'CosignOverdueError';
508
516
  }
509
517
  /** @name PalletNotariesEvent (64) */
510
518
  interface PalletNotariesEvent extends Enum {
@@ -1552,7 +1560,7 @@ declare module '@polkadot/types/lookup' {
1552
1560
  interface PalletMiningSlotCall extends Enum {
1553
1561
  readonly isBid: boolean;
1554
1562
  readonly asBid: {
1555
- readonly bondInfo: Option<PalletMiningSlotMiningSlotBid>;
1563
+ readonly bondedArgons: Option<PalletMiningSlotMiningSlotBid>;
1556
1564
  readonly rewardDestination: ArgonPrimitivesBlockSealRewardDestination;
1557
1565
  readonly keys_: ArgonRuntimeSessionKeys;
1558
1566
  } & Struct;
@@ -1607,12 +1615,12 @@ declare module '@polkadot/types/lookup' {
1607
1615
  readonly vaultId: u32;
1608
1616
  readonly totalMiningAmountOffered: u128;
1609
1617
  readonly totalBitcoinAmountOffered: u128;
1610
- readonly securitizationPercent: u128;
1618
+ readonly addedSecuritizationPercent: u128;
1611
1619
  } & Struct;
1612
1620
  readonly isModifyTerms: boolean;
1613
1621
  readonly asModifyTerms: {
1614
1622
  readonly vaultId: u32;
1615
- readonly terms: ArgonPrimitivesBondVaultTerms;
1623
+ readonly terms: ArgonPrimitivesVaultVaultTerms;
1616
1624
  } & Struct;
1617
1625
  readonly isClose: boolean;
1618
1626
  readonly asClose: {
@@ -1627,43 +1635,47 @@ declare module '@polkadot/types/lookup' {
1627
1635
  }
1628
1636
  /** @name PalletVaultsVaultConfig (198) */
1629
1637
  interface PalletVaultsVaultConfig extends Struct {
1630
- readonly terms: ArgonPrimitivesBondVaultTerms;
1638
+ readonly terms: ArgonPrimitivesVaultVaultTerms;
1631
1639
  readonly bitcoinAmountAllocated: Compact<u128>;
1632
1640
  readonly bitcoinXpubkey: ArgonPrimitivesBitcoinOpaqueBitcoinXpub;
1633
- readonly miningAmountAllocated: Compact<u128>;
1634
- readonly securitizationPercent: Compact<u128>;
1641
+ readonly bondedArgonsAllocated: Compact<u128>;
1642
+ readonly addedSecuritizationPercent: Compact<u128>;
1635
1643
  }
1636
- /** @name ArgonPrimitivesBondVaultTerms (199) */
1637
- interface ArgonPrimitivesBondVaultTerms extends Struct {
1644
+ /** @name ArgonPrimitivesVaultVaultTerms (199) */
1645
+ interface ArgonPrimitivesVaultVaultTerms extends Struct {
1638
1646
  readonly bitcoinAnnualPercentRate: Compact<u128>;
1639
1647
  readonly bitcoinBaseFee: Compact<u128>;
1640
- readonly miningAnnualPercentRate: Compact<u128>;
1641
- readonly miningBaseFee: Compact<u128>;
1648
+ readonly bondedArgonsAnnualPercentRate: Compact<u128>;
1649
+ readonly bondedArgonsBaseFee: Compact<u128>;
1642
1650
  readonly miningRewardSharingPercentTake: Compact<u128>;
1643
1651
  }
1644
1652
  /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (200) */
1645
1653
  interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {
1646
1654
  }
1647
- /** @name PalletBondCall (202) */
1648
- interface PalletBondCall extends Enum {
1649
- readonly isBondBitcoin: boolean;
1650
- readonly asBondBitcoin: {
1655
+ /** @name PalletBitcoinLocksCall (202) */
1656
+ interface PalletBitcoinLocksCall extends Enum {
1657
+ readonly isInitialize: boolean;
1658
+ readonly asInitialize: {
1651
1659
  readonly vaultId: u32;
1652
1660
  readonly satoshis: Compact<u64>;
1653
1661
  readonly bitcoinPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
1654
1662
  } & Struct;
1655
- readonly isUnlockBitcoinBond: boolean;
1656
- readonly asUnlockBitcoinBond: {
1657
- readonly bondId: u64;
1663
+ readonly isRequestRelease: boolean;
1664
+ readonly asRequestRelease: {
1665
+ readonly utxoId: u64;
1658
1666
  readonly toScriptPubkey: Bytes;
1659
1667
  readonly bitcoinNetworkFee: u64;
1660
1668
  } & Struct;
1661
- readonly isCosignBitcoinUnlock: boolean;
1662
- readonly asCosignBitcoinUnlock: {
1663
- readonly bondId: u64;
1669
+ readonly isCosignRelease: boolean;
1670
+ readonly asCosignRelease: {
1671
+ readonly utxoId: u64;
1664
1672
  readonly signature: Bytes;
1665
1673
  } & Struct;
1666
- readonly type: 'BondBitcoin' | 'UnlockBitcoinBond' | 'CosignBitcoinUnlock';
1674
+ readonly isAdminModifyMinimumLockedSats: boolean;
1675
+ readonly asAdminModifyMinimumLockedSats: {
1676
+ readonly satoshis: u64;
1677
+ } & Struct;
1678
+ readonly type: 'Initialize' | 'RequestRelease' | 'CosignRelease' | 'AdminModifyMinimumLockedSats';
1667
1679
  }
1668
1680
  /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (203) */
1669
1681
  interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {
@@ -2255,7 +2267,11 @@ declare module '@polkadot/types/lookup' {
2255
2267
  readonly asUpdateErc6160Asset: {
2256
2268
  readonly asset: TokenGatewayPrimitivesGatewayAssetUpdate;
2257
2269
  } & Struct;
2258
- readonly type: 'Teleport' | 'SetTokenGatewayAddresses' | 'CreateErc6160Asset' | 'UpdateErc6160Asset';
2270
+ readonly isUpdateAssetPrecision: boolean;
2271
+ readonly asUpdateAssetPrecision: {
2272
+ readonly update: PalletTokenGatewayPrecisionUpdate;
2273
+ } & Struct;
2274
+ readonly type: 'Teleport' | 'SetTokenGatewayAddresses' | 'CreateErc6160Asset' | 'UpdateErc6160Asset' | 'UpdateAssetPrecision';
2259
2275
  }
2260
2276
  /** @name PalletTokenGatewayTeleportParams (296) */
2261
2277
  interface PalletTokenGatewayTeleportParams extends Struct {
@@ -2267,12 +2283,14 @@ declare module '@polkadot/types/lookup' {
2267
2283
  readonly tokenGateway: Bytes;
2268
2284
  readonly relayerFee: u128;
2269
2285
  readonly callData: Option<Bytes>;
2286
+ readonly redeem: bool;
2270
2287
  }
2271
2288
  /** @name PalletTokenGatewayAssetRegistration (300) */
2272
2289
  interface PalletTokenGatewayAssetRegistration extends Struct {
2273
2290
  readonly localId: u32;
2274
2291
  readonly reg: TokenGatewayPrimitivesGatewayAssetRegistration;
2275
2292
  readonly native: bool;
2293
+ readonly precision: BTreeMap<IsmpHostStateMachine, u8>;
2276
2294
  }
2277
2295
  /** @name TokenGatewayPrimitivesGatewayAssetRegistration (301) */
2278
2296
  interface TokenGatewayPrimitivesGatewayAssetRegistration extends Struct {
@@ -2281,14 +2299,19 @@ declare module '@polkadot/types/lookup' {
2281
2299
  readonly chains: Vec<IsmpHostStateMachine>;
2282
2300
  readonly minimumBalance: Option<u128>;
2283
2301
  }
2284
- /** @name TokenGatewayPrimitivesGatewayAssetUpdate (303) */
2302
+ /** @name TokenGatewayPrimitivesGatewayAssetUpdate (306) */
2285
2303
  interface TokenGatewayPrimitivesGatewayAssetUpdate extends Struct {
2286
2304
  readonly assetId: H256;
2287
2305
  readonly addChains: Vec<IsmpHostStateMachine>;
2288
2306
  readonly removeChains: Vec<IsmpHostStateMachine>;
2289
2307
  readonly newAdmins: Vec<ITuple<[IsmpHostStateMachine, H160]>>;
2290
2308
  }
2291
- /** @name PalletMultisigError (310) */
2309
+ /** @name PalletTokenGatewayPrecisionUpdate (312) */
2310
+ interface PalletTokenGatewayPrecisionUpdate extends Struct {
2311
+ readonly assetId: u32;
2312
+ readonly precisions: BTreeMap<IsmpHostStateMachine, u8>;
2313
+ }
2314
+ /** @name PalletMultisigError (314) */
2292
2315
  interface PalletMultisigError extends Enum {
2293
2316
  readonly isMinimumThreshold: boolean;
2294
2317
  readonly isAlreadyApproved: boolean;
@@ -2306,19 +2329,19 @@ declare module '@polkadot/types/lookup' {
2306
2329
  readonly isAlreadyStored: boolean;
2307
2330
  readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored';
2308
2331
  }
2309
- /** @name PalletProxyProxyDefinition (313) */
2332
+ /** @name PalletProxyProxyDefinition (317) */
2310
2333
  interface PalletProxyProxyDefinition extends Struct {
2311
2334
  readonly delegate: AccountId32;
2312
2335
  readonly proxyType: ArgonRuntimeConfigsProxyType;
2313
2336
  readonly delay: u32;
2314
2337
  }
2315
- /** @name PalletProxyAnnouncement (317) */
2338
+ /** @name PalletProxyAnnouncement (321) */
2316
2339
  interface PalletProxyAnnouncement extends Struct {
2317
2340
  readonly real: AccountId32;
2318
2341
  readonly callHash: H256;
2319
2342
  readonly height: u32;
2320
2343
  }
2321
- /** @name PalletProxyError (319) */
2344
+ /** @name PalletProxyError (323) */
2322
2345
  interface PalletProxyError extends Enum {
2323
2346
  readonly isTooMany: boolean;
2324
2347
  readonly isNotFound: boolean;
@@ -2330,37 +2353,37 @@ declare module '@polkadot/types/lookup' {
2330
2353
  readonly isNoSelfProxy: boolean;
2331
2354
  readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy';
2332
2355
  }
2333
- /** @name ArgonPrimitivesTickTicker (320) */
2356
+ /** @name ArgonPrimitivesTickTicker (324) */
2334
2357
  interface ArgonPrimitivesTickTicker extends Struct {
2335
2358
  readonly tickDurationMillis: Compact<u64>;
2336
2359
  readonly channelHoldExpirationTicks: Compact<u64>;
2337
2360
  }
2338
- /** @name PalletTicksError (322) */
2361
+ /** @name PalletTicksError (326) */
2339
2362
  type PalletTicksError = Null;
2340
- /** @name ArgonPrimitivesBlockSealMiningBidStats (328) */
2363
+ /** @name ArgonPrimitivesBlockSealMiningBidStats (332) */
2341
2364
  interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
2342
2365
  readonly bidsCount: u32;
2343
2366
  readonly bidAmountMin: u128;
2344
2367
  readonly bidAmountMax: u128;
2345
2368
  readonly bidAmountSum: u128;
2346
2369
  }
2347
- /** @name ArgonPrimitivesBlockSealMiningSlotConfig (330) */
2370
+ /** @name ArgonPrimitivesBlockSealMiningSlotConfig (334) */
2348
2371
  interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
2349
- readonly blocksBeforeBidEndForVrfClose: Compact<u32>;
2350
- readonly blocksBetweenSlots: Compact<u32>;
2372
+ readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
2373
+ readonly ticksBetweenSlots: Compact<u64>;
2351
2374
  readonly slotBiddingStartAfterTicks: Compact<u64>;
2352
2375
  }
2353
- /** @name PalletMiningSlotError (332) */
2376
+ /** @name PalletMiningSlotError (336) */
2354
2377
  interface PalletMiningSlotError extends Enum {
2355
2378
  readonly isSlotNotTakingBids: boolean;
2356
2379
  readonly isTooManyBlockRegistrants: boolean;
2357
2380
  readonly isInsufficientOwnershipTokens: boolean;
2358
2381
  readonly isBidTooLow: boolean;
2359
2382
  readonly isCannotRegisterOverlappingSessions: boolean;
2360
- readonly isBondNotFound: boolean;
2361
- readonly isNoMoreBondIds: boolean;
2383
+ readonly isObligationNotFound: boolean;
2384
+ readonly isNoMoreObligationIds: boolean;
2362
2385
  readonly isVaultClosed: boolean;
2363
- readonly isMinimumBondAmountNotMet: boolean;
2386
+ readonly isMinimumObligationAmountNotMet: boolean;
2364
2387
  readonly isExpirationAtBlockOverflow: boolean;
2365
2388
  readonly isInsufficientFunds: boolean;
2366
2389
  readonly isInsufficientVaultFunds: boolean;
@@ -2369,24 +2392,22 @@ declare module '@polkadot/types/lookup' {
2369
2392
  readonly isHoldUnexpectedlyModified: boolean;
2370
2393
  readonly isUnrecoverableHold: boolean;
2371
2394
  readonly isVaultNotFound: boolean;
2372
- readonly isBondAlreadyClosed: boolean;
2373
- readonly isFeeExceedsBondAmount: boolean;
2374
2395
  readonly isAccountWouldBeBelowMinimum: boolean;
2375
- readonly isGenericBondError: boolean;
2376
- readonly asGenericBondError: ArgonPrimitivesBondBondError;
2377
- readonly type: 'SlotNotTakingBids' | 'TooManyBlockRegistrants' | 'InsufficientOwnershipTokens' | 'BidTooLow' | 'CannotRegisterOverlappingSessions' | 'BondNotFound' | 'NoMoreBondIds' | 'VaultClosed' | 'MinimumBondAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'BondAlreadyClosed' | 'FeeExceedsBondAmount' | 'AccountWouldBeBelowMinimum' | 'GenericBondError';
2378
- }
2379
- /** @name ArgonPrimitivesBondBondError (333) */
2380
- interface ArgonPrimitivesBondBondError extends Enum {
2381
- readonly isBondNotFound: boolean;
2382
- readonly isNoMoreBondIds: boolean;
2383
- readonly isMinimumBondAmountNotMet: boolean;
2396
+ readonly isGenericObligationError: boolean;
2397
+ readonly asGenericObligationError: ArgonPrimitivesVaultObligationError;
2398
+ readonly type: 'SlotNotTakingBids' | 'TooManyBlockRegistrants' | 'InsufficientOwnershipTokens' | 'BidTooLow' | 'CannotRegisterOverlappingSessions' | 'ObligationNotFound' | 'NoMoreObligationIds' | 'VaultClosed' | 'MinimumObligationAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'AccountWouldBeBelowMinimum' | 'GenericObligationError';
2399
+ }
2400
+ /** @name ArgonPrimitivesVaultObligationError (337) */
2401
+ interface ArgonPrimitivesVaultObligationError extends Enum {
2402
+ readonly isObligationNotFound: boolean;
2403
+ readonly isNoMoreObligationIds: boolean;
2404
+ readonly isMinimumObligationAmountNotMet: boolean;
2384
2405
  readonly isVaultClosed: boolean;
2385
2406
  readonly isExpirationAtBlockOverflow: boolean;
2386
2407
  readonly isAccountWouldBeBelowMinimum: boolean;
2387
2408
  readonly isInsufficientFunds: boolean;
2388
2409
  readonly isInsufficientVaultFunds: boolean;
2389
- readonly isInsufficientBitcoinsForMining: boolean;
2410
+ readonly isInsufficientBondedArgons: boolean;
2390
2411
  readonly isExpirationTooSoon: boolean;
2391
2412
  readonly isNoPermissions: boolean;
2392
2413
  readonly isHoldUnexpectedlyModified: boolean;
@@ -2394,13 +2415,12 @@ declare module '@polkadot/types/lookup' {
2394
2415
  readonly isVaultNotFound: boolean;
2395
2416
  readonly isNoVaultBitcoinPubkeysAvailable: boolean;
2396
2417
  readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
2397
- readonly isUnableToDecodeVaultBitcoinPubkey: boolean;
2398
- readonly isFeeExceedsBondAmount: boolean;
2399
2418
  readonly isInvalidBitcoinScript: boolean;
2400
2419
  readonly isInternalError: boolean;
2401
- readonly type: 'BondNotFound' | 'NoMoreBondIds' | 'MinimumBondAmountNotMet' | 'VaultClosed' | 'ExpirationAtBlockOverflow' | 'AccountWouldBeBelowMinimum' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'InsufficientBitcoinsForMining' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'UnableToDecodeVaultBitcoinPubkey' | 'FeeExceedsBondAmount' | 'InvalidBitcoinScript' | 'InternalError';
2420
+ readonly isObligationCompletionError: boolean;
2421
+ readonly type: 'ObligationNotFound' | 'NoMoreObligationIds' | 'MinimumObligationAmountNotMet' | 'VaultClosed' | 'ExpirationAtBlockOverflow' | 'AccountWouldBeBelowMinimum' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'InsufficientBondedArgons' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'InvalidBitcoinScript' | 'InternalError' | 'ObligationCompletionError';
2402
2422
  }
2403
- /** @name ArgonPrimitivesBitcoinUtxoValue (334) */
2423
+ /** @name ArgonPrimitivesBitcoinUtxoValue (338) */
2404
2424
  interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
2405
2425
  readonly utxoId: u64;
2406
2426
  readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
@@ -2408,7 +2428,7 @@ declare module '@polkadot/types/lookup' {
2408
2428
  readonly submittedAtHeight: Compact<u64>;
2409
2429
  readonly watchForSpentUntilHeight: Compact<u64>;
2410
2430
  }
2411
- /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (335) */
2431
+ /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (339) */
2412
2432
  interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
2413
2433
  readonly isP2wsh: boolean;
2414
2434
  readonly asP2wsh: {
@@ -2416,7 +2436,7 @@ declare module '@polkadot/types/lookup' {
2416
2436
  } & Struct;
2417
2437
  readonly type: 'P2wsh';
2418
2438
  }
2419
- /** @name ArgonPrimitivesBitcoinBitcoinNetwork (340) */
2439
+ /** @name ArgonPrimitivesBitcoinBitcoinNetwork (344) */
2420
2440
  interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
2421
2441
  readonly isBitcoin: boolean;
2422
2442
  readonly isTestnet: boolean;
@@ -2424,7 +2444,7 @@ declare module '@polkadot/types/lookup' {
2424
2444
  readonly isRegtest: boolean;
2425
2445
  readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
2426
2446
  }
2427
- /** @name PalletBitcoinUtxosError (343) */
2447
+ /** @name PalletBitcoinUtxosError (347) */
2428
2448
  interface PalletBitcoinUtxosError extends Enum {
2429
2449
  readonly isNoPermissions: boolean;
2430
2450
  readonly isNoBitcoinConfirmedBlock: boolean;
@@ -2439,27 +2459,27 @@ declare module '@polkadot/types/lookup' {
2439
2459
  readonly isInvalidBitcoinScript: boolean;
2440
2460
  readonly type: 'NoPermissions' | 'NoBitcoinConfirmedBlock' | 'InsufficientBitcoinAmount' | 'NoBitcoinPricesAvailable' | 'ScriptPubkeyConflict' | 'UtxoNotLocked' | 'RedemptionsUnavailable' | 'InvalidBitcoinSyncHeight' | 'BitcoinHeightNotConfirmed' | 'MaxUtxosExceeded' | 'InvalidBitcoinScript';
2441
2461
  }
2442
- /** @name ArgonPrimitivesBondVault (344) */
2443
- interface ArgonPrimitivesBondVault extends Struct {
2462
+ /** @name ArgonPrimitivesVault (348) */
2463
+ interface ArgonPrimitivesVault extends Struct {
2444
2464
  readonly operatorAccountId: AccountId32;
2445
- readonly bitcoinArgons: ArgonPrimitivesBondVaultArgons;
2446
- readonly securitizationPercent: Compact<u128>;
2447
- readonly securitizedArgons: Compact<u128>;
2448
- readonly miningArgons: ArgonPrimitivesBondVaultArgons;
2465
+ readonly bitcoinArgons: ArgonPrimitivesVaultVaultArgons;
2466
+ readonly addedSecuritizationPercent: Compact<u128>;
2467
+ readonly addedSecuritizationArgons: Compact<u128>;
2468
+ readonly bondedArgons: ArgonPrimitivesVaultVaultArgons;
2449
2469
  readonly miningRewardSharingPercentTake: Compact<u128>;
2450
2470
  readonly isClosed: bool;
2451
- readonly pendingTerms: Option<ITuple<[u32, ArgonPrimitivesBondVaultTerms]>>;
2452
- readonly pendingMiningArgons: Option<ITuple<[u32, u128]>>;
2471
+ readonly pendingTerms: Option<ITuple<[u64, ArgonPrimitivesVaultVaultTerms]>>;
2472
+ readonly pendingBondedArgons: Option<ITuple<[u64, u128]>>;
2453
2473
  readonly pendingBitcoins: u128;
2454
2474
  }
2455
- /** @name ArgonPrimitivesBondVaultArgons (345) */
2456
- interface ArgonPrimitivesBondVaultArgons extends Struct {
2475
+ /** @name ArgonPrimitivesVaultVaultArgons (349) */
2476
+ interface ArgonPrimitivesVaultVaultArgons extends Struct {
2457
2477
  readonly annualPercentRate: Compact<u128>;
2458
2478
  readonly allocated: Compact<u128>;
2459
- readonly bonded: Compact<u128>;
2479
+ readonly reserved: Compact<u128>;
2460
2480
  readonly baseFee: Compact<u128>;
2461
2481
  }
2462
- /** @name ArgonPrimitivesBitcoinBitcoinXPub (351) */
2482
+ /** @name ArgonPrimitivesBitcoinBitcoinXPub (355) */
2463
2483
  interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
2464
2484
  readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
2465
2485
  readonly depth: Compact<u8>;
@@ -2468,33 +2488,40 @@ declare module '@polkadot/types/lookup' {
2468
2488
  readonly chainCode: U8aFixed;
2469
2489
  readonly network: ArgonPrimitivesBitcoinNetworkKind;
2470
2490
  }
2471
- /** @name ArgonPrimitivesBitcoinNetworkKind (353) */
2491
+ /** @name ArgonPrimitivesBitcoinNetworkKind (357) */
2472
2492
  interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
2473
2493
  readonly isMain: boolean;
2474
2494
  readonly isTest: boolean;
2475
2495
  readonly type: 'Main' | 'Test';
2476
2496
  }
2477
- /** @name PalletVaultsError (356) */
2497
+ /** @name ArgonPrimitivesVaultObligation (360) */
2498
+ interface ArgonPrimitivesVaultObligation extends Struct {
2499
+ readonly obligationId: Compact<u64>;
2500
+ readonly fundType: ArgonPrimitivesVaultFundType;
2501
+ readonly vaultId: Compact<u32>;
2502
+ readonly beneficiary: AccountId32;
2503
+ readonly totalFee: Compact<u128>;
2504
+ readonly prepaidFee: Compact<u128>;
2505
+ readonly amount: Compact<u128>;
2506
+ readonly startTick: Compact<u64>;
2507
+ readonly expiration: ArgonPrimitivesVaultObligationExpiration;
2508
+ }
2509
+ /** @name PalletVaultsError (363) */
2478
2510
  interface PalletVaultsError extends Enum {
2479
- readonly isBondNotFound: boolean;
2511
+ readonly isObligationNotFound: boolean;
2480
2512
  readonly isNoMoreVaultIds: boolean;
2481
- readonly isNoMoreBondIds: boolean;
2482
- readonly isMinimumBondAmountNotMet: boolean;
2513
+ readonly isNoMoreObligationIds: boolean;
2514
+ readonly isMinimumObligationAmountNotMet: boolean;
2483
2515
  readonly isExpirationAtBlockOverflow: boolean;
2484
2516
  readonly isInsufficientFunds: boolean;
2485
2517
  readonly isInsufficientVaultFunds: boolean;
2486
- readonly isInsufficientBitcoinsForMining: boolean;
2518
+ readonly isInsufficientBondedArgons: boolean;
2487
2519
  readonly isAccountBelowMinimumBalance: boolean;
2488
2520
  readonly isVaultClosed: boolean;
2489
2521
  readonly isInvalidVaultAmount: boolean;
2490
2522
  readonly isVaultReductionBelowAllocatedFunds: boolean;
2491
2523
  readonly isInvalidSecuritization: boolean;
2492
2524
  readonly isReusedVaultBitcoinXpub: boolean;
2493
- readonly isMaxSecuritizationPercentExceeded: boolean;
2494
- readonly isInvalidBondType: boolean;
2495
- readonly isBitcoinUtxoNotFound: boolean;
2496
- readonly isInsufficientSatoshisBonded: boolean;
2497
- readonly isNoBitcoinPricesAvailable: boolean;
2498
2525
  readonly isInvalidBitcoinScript: boolean;
2499
2526
  readonly isInvalidXpubkey: boolean;
2500
2527
  readonly isWrongXpubNetwork: boolean;
@@ -2506,31 +2533,21 @@ declare module '@polkadot/types/lookup' {
2506
2533
  readonly isHoldUnexpectedlyModified: boolean;
2507
2534
  readonly isUnrecoverableHold: boolean;
2508
2535
  readonly isVaultNotFound: boolean;
2509
- readonly isFeeExceedsBondAmount: boolean;
2510
2536
  readonly isNoVaultBitcoinPubkeysAvailable: boolean;
2511
2537
  readonly isTermsModificationOverflow: boolean;
2512
2538
  readonly isTermsChangeAlreadyScheduled: boolean;
2513
2539
  readonly isInternalError: boolean;
2514
2540
  readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
2515
- readonly isUnableToDecodeVaultBitcoinPubkey: boolean;
2516
2541
  readonly isFundingChangeAlreadyScheduled: boolean;
2517
- readonly type: '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';
2542
+ readonly isObligationCompletionError: boolean;
2543
+ readonly type: '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';
2518
2544
  }
2519
- /** @name ArgonPrimitivesBond (357) */
2520
- interface ArgonPrimitivesBond extends Struct {
2521
- readonly bondType: ArgonPrimitivesBondBondType;
2545
+ /** @name PalletBitcoinLocksLockedBitcoin (364) */
2546
+ interface PalletBitcoinLocksLockedBitcoin extends Struct {
2547
+ readonly obligationId: Compact<u64>;
2522
2548
  readonly vaultId: Compact<u32>;
2523
- readonly utxoId: Option<u64>;
2524
- readonly bondedAccountId: AccountId32;
2525
- readonly totalFee: Compact<u128>;
2526
- readonly prepaidFee: Compact<u128>;
2527
- readonly amount: Compact<u128>;
2528
- readonly startBlock: Compact<u32>;
2529
- readonly expiration: ArgonPrimitivesBondBondExpiration;
2530
- }
2531
- /** @name PalletBondUtxoState (360) */
2532
- interface PalletBondUtxoState extends Struct {
2533
- readonly bondId: Compact<u64>;
2549
+ readonly lockPrice: u128;
2550
+ readonly ownerAccount: AccountId32;
2534
2551
  readonly satoshis: Compact<u64>;
2535
2552
  readonly vaultPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
2536
2553
  readonly vaultClaimPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
@@ -2542,37 +2559,37 @@ declare module '@polkadot/types/lookup' {
2542
2559
  readonly utxoScriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
2543
2560
  readonly isVerified: bool;
2544
2561
  }
2545
- /** @name PalletBondUtxoCosignRequest (364) */
2546
- interface PalletBondUtxoCosignRequest extends Struct {
2547
- readonly bondId: Compact<u64>;
2562
+ /** @name PalletBitcoinLocksLockReleaseRequest (368) */
2563
+ interface PalletBitcoinLocksLockReleaseRequest extends Struct {
2564
+ readonly utxoId: Compact<u64>;
2565
+ readonly obligationId: Compact<u64>;
2548
2566
  readonly vaultId: Compact<u32>;
2549
2567
  readonly bitcoinNetworkFee: Compact<u64>;
2550
2568
  readonly cosignDueBlock: Compact<u64>;
2551
2569
  readonly toScriptPubkey: Bytes;
2552
2570
  readonly redemptionPrice: Compact<u128>;
2553
2571
  }
2554
- /** @name PalletBondError (368) */
2555
- interface PalletBondError extends Enum {
2556
- readonly isBondNotFound: boolean;
2557
- readonly isNoMoreBondIds: boolean;
2558
- readonly isMinimumBondAmountNotMet: boolean;
2572
+ /** @name PalletBitcoinLocksError (372) */
2573
+ interface PalletBitcoinLocksError extends Enum {
2574
+ readonly isObligationNotFound: boolean;
2575
+ readonly isNoMoreObligationIds: boolean;
2576
+ readonly isMinimumObligationAmountNotMet: boolean;
2559
2577
  readonly isExpirationAtBlockOverflow: boolean;
2560
2578
  readonly isInsufficientFunds: boolean;
2561
2579
  readonly isInsufficientVaultFunds: boolean;
2562
- readonly isInsufficientBitcoinsForMining: boolean;
2580
+ readonly isInsufficientBondedArgons: boolean;
2563
2581
  readonly isAccountWouldGoBelowMinimumBalance: boolean;
2564
2582
  readonly isVaultClosed: boolean;
2565
2583
  readonly isInvalidVaultAmount: boolean;
2566
- readonly isBondRedemptionNotLocked: boolean;
2567
- readonly isBitcoinUnlockInitiationDeadlinePassed: boolean;
2584
+ readonly isRedemptionNotLocked: boolean;
2585
+ readonly isBitcoinReleaseInitiationDeadlinePassed: boolean;
2568
2586
  readonly isBitcoinFeeTooHigh: boolean;
2569
- readonly isInvalidBondType: boolean;
2570
2587
  readonly isBitcoinUtxoNotFound: boolean;
2571
- readonly isBitcoinUnableToBeDecodedForUnlock: boolean;
2588
+ readonly isBitcoinUnableToBeDecodedForRelease: boolean;
2572
2589
  readonly isBitcoinSignatureUnableToBeDecoded: boolean;
2573
2590
  readonly isBitcoinPubkeyUnableToBeDecoded: boolean;
2574
2591
  readonly isBitcoinInvalidCosignature: boolean;
2575
- readonly isInsufficientSatoshisBonded: boolean;
2592
+ readonly isInsufficientSatoshisLocked: boolean;
2576
2593
  readonly isNoBitcoinPricesAvailable: boolean;
2577
2594
  readonly isInvalidBitcoinScript: boolean;
2578
2595
  readonly isExpirationTooSoon: boolean;
@@ -2580,12 +2597,14 @@ declare module '@polkadot/types/lookup' {
2580
2597
  readonly isHoldUnexpectedlyModified: boolean;
2581
2598
  readonly isUnrecoverableHold: boolean;
2582
2599
  readonly isVaultNotFound: boolean;
2583
- readonly isFeeExceedsBondAmount: boolean;
2584
- readonly isGenericBondError: boolean;
2585
- readonly asGenericBondError: ArgonPrimitivesBondBondError;
2586
- readonly type: 'BondNotFound' | 'NoMoreBondIds' | 'MinimumBondAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'InsufficientBitcoinsForMining' | 'AccountWouldGoBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'BondRedemptionNotLocked' | 'BitcoinUnlockInitiationDeadlinePassed' | 'BitcoinFeeTooHigh' | 'InvalidBondType' | 'BitcoinUtxoNotFound' | 'BitcoinUnableToBeDecodedForUnlock' | 'BitcoinSignatureUnableToBeDecoded' | 'BitcoinPubkeyUnableToBeDecoded' | 'BitcoinInvalidCosignature' | 'InsufficientSatoshisBonded' | 'NoBitcoinPricesAvailable' | 'InvalidBitcoinScript' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'FeeExceedsBondAmount' | 'GenericBondError';
2600
+ readonly isGenericObligationError: boolean;
2601
+ readonly asGenericObligationError: ArgonPrimitivesVaultObligationError;
2602
+ readonly isLockNotFound: boolean;
2603
+ readonly isNoVaultBitcoinPubkeysAvailable: boolean;
2604
+ readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
2605
+ readonly type: 'ObligationNotFound' | 'NoMoreObligationIds' | 'MinimumObligationAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'InsufficientBondedArgons' | 'AccountWouldGoBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'RedemptionNotLocked' | 'BitcoinReleaseInitiationDeadlinePassed' | 'BitcoinFeeTooHigh' | 'BitcoinUtxoNotFound' | 'BitcoinUnableToBeDecodedForRelease' | 'BitcoinSignatureUnableToBeDecoded' | 'BitcoinPubkeyUnableToBeDecoded' | 'BitcoinInvalidCosignature' | 'InsufficientSatoshisLocked' | 'NoBitcoinPricesAvailable' | 'InvalidBitcoinScript' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'GenericObligationError' | 'LockNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey';
2587
2606
  }
2588
- /** @name PalletNotariesError (380) */
2607
+ /** @name PalletNotariesError (384) */
2589
2608
  interface PalletNotariesError extends Enum {
2590
2609
  readonly isProposalNotFound: boolean;
2591
2610
  readonly isMaxNotariesExceeded: boolean;
@@ -2598,7 +2617,7 @@ declare module '@polkadot/types/lookup' {
2598
2617
  readonly isInvalidNotary: boolean;
2599
2618
  readonly type: 'ProposalNotFound' | 'MaxNotariesExceeded' | 'MaxProposalsPerBlockExceeded' | 'NotAnActiveNotary' | 'InvalidNotaryOperator' | 'NoMoreNotaryIds' | 'EffectiveTickTooSoon' | 'TooManyKeys' | 'InvalidNotary';
2600
2619
  }
2601
- /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (384) */
2620
+ /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (388) */
2602
2621
  interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
2603
2622
  readonly notebookNumber: Compact<u32>;
2604
2623
  readonly tick: Compact<u64>;
@@ -2606,7 +2625,7 @@ declare module '@polkadot/types/lookup' {
2606
2625
  readonly secretHash: H256;
2607
2626
  readonly parentSecret: Option<H256>;
2608
2627
  }
2609
- /** @name PalletNotebookError (387) */
2628
+ /** @name PalletNotebookError (391) */
2610
2629
  interface PalletNotebookError extends Enum {
2611
2630
  readonly isDuplicateNotebookNumber: boolean;
2612
2631
  readonly isMissingNotebookNumber: boolean;
@@ -2625,17 +2644,17 @@ declare module '@polkadot/types/lookup' {
2625
2644
  readonly isInvalidNotebookSubmissionTick: boolean;
2626
2645
  readonly type: 'DuplicateNotebookNumber' | 'MissingNotebookNumber' | 'NotebookTickAlreadyUsed' | 'InvalidNotebookSignature' | 'InvalidSecretProvided' | 'CouldNotDecodeNotebook' | 'DuplicateNotebookDigest' | 'MissingNotebookDigest' | 'InvalidNotebookDigest' | 'MultipleNotebookInherentsProvided' | 'InternalError' | 'NotebookSubmittedForLockedNotary' | 'InvalidReprocessNotebook' | 'InvalidNotaryOperator' | 'InvalidNotebookSubmissionTick';
2627
2646
  }
2628
- /** @name PalletChainTransferQueuedTransferOut (388) */
2647
+ /** @name PalletChainTransferQueuedTransferOut (392) */
2629
2648
  interface PalletChainTransferQueuedTransferOut extends Struct {
2630
2649
  readonly accountId: AccountId32;
2631
2650
  readonly amount: u128;
2632
2651
  readonly expirationTick: u64;
2633
2652
  readonly notaryId: u32;
2634
2653
  }
2635
- /** @name FrameSupportPalletId (394) */
2654
+ /** @name FrameSupportPalletId (398) */
2636
2655
  interface FrameSupportPalletId extends U8aFixed {
2637
2656
  }
2638
- /** @name PalletChainTransferError (395) */
2657
+ /** @name PalletChainTransferError (399) */
2639
2658
  interface PalletChainTransferError extends Enum {
2640
2659
  readonly isMaxBlockTransfersExceeded: boolean;
2641
2660
  readonly isInsufficientFunds: boolean;
@@ -2645,7 +2664,7 @@ declare module '@polkadot/types/lookup' {
2645
2664
  readonly isInvalidNotaryUsedForTransfer: boolean;
2646
2665
  readonly type: 'MaxBlockTransfersExceeded' | 'InsufficientFunds' | 'InsufficientNotarizedFunds' | 'InvalidOrDuplicatedLocalchainTransfer' | 'NotebookIncludesExpiredLocalchainTransfer' | 'InvalidNotaryUsedForTransfer';
2647
2666
  }
2648
- /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (400) */
2667
+ /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (404) */
2649
2668
  interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
2650
2669
  readonly notaryId: Compact<u32>;
2651
2670
  readonly notebookNumber: Compact<u32>;
@@ -2653,12 +2672,12 @@ declare module '@polkadot/types/lookup' {
2653
2672
  readonly blockVotesCount: Compact<u32>;
2654
2673
  readonly blockVotingPower: Compact<u128>;
2655
2674
  }
2656
- /** @name PalletBlockSealSpecError (405) */
2675
+ /** @name PalletBlockSealSpecError (409) */
2657
2676
  interface PalletBlockSealSpecError extends Enum {
2658
2677
  readonly isMaxNotebooksAtTickExceeded: boolean;
2659
2678
  readonly type: 'MaxNotebooksAtTickExceeded';
2660
2679
  }
2661
- /** @name PalletDomainsError (407) */
2680
+ /** @name PalletDomainsError (411) */
2662
2681
  interface PalletDomainsError extends Enum {
2663
2682
  readonly isDomainNotRegistered: boolean;
2664
2683
  readonly isNotDomainOwner: boolean;
@@ -2667,7 +2686,7 @@ declare module '@polkadot/types/lookup' {
2667
2686
  readonly isAccountDecodingError: boolean;
2668
2687
  readonly type: 'DomainNotRegistered' | 'NotDomainOwner' | 'FailedToAddToAddressHistory' | 'FailedToAddExpiringDomain' | 'AccountDecodingError';
2669
2688
  }
2670
- /** @name PalletPriceIndexError (408) */
2689
+ /** @name PalletPriceIndexError (412) */
2671
2690
  interface PalletPriceIndexError extends Enum {
2672
2691
  readonly isNotAuthorizedOperator: boolean;
2673
2692
  readonly isMissingValue: boolean;
@@ -2675,7 +2694,7 @@ declare module '@polkadot/types/lookup' {
2675
2694
  readonly isMaxPriceChangePerTickExceeded: boolean;
2676
2695
  readonly type: 'NotAuthorizedOperator' | 'MissingValue' | 'PricesTooOld' | 'MaxPriceChangePerTickExceeded';
2677
2696
  }
2678
- /** @name PalletGrandpaStoredState (409) */
2697
+ /** @name PalletGrandpaStoredState (413) */
2679
2698
  interface PalletGrandpaStoredState extends Enum {
2680
2699
  readonly isLive: boolean;
2681
2700
  readonly isPendingPause: boolean;
@@ -2691,14 +2710,14 @@ declare module '@polkadot/types/lookup' {
2691
2710
  } & Struct;
2692
2711
  readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
2693
2712
  }
2694
- /** @name PalletGrandpaStoredPendingChange (410) */
2713
+ /** @name PalletGrandpaStoredPendingChange (414) */
2695
2714
  interface PalletGrandpaStoredPendingChange extends Struct {
2696
2715
  readonly scheduledAt: u32;
2697
2716
  readonly delay: u32;
2698
2717
  readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
2699
2718
  readonly forced: Option<u32>;
2700
2719
  }
2701
- /** @name PalletGrandpaError (413) */
2720
+ /** @name PalletGrandpaError (417) */
2702
2721
  interface PalletGrandpaError extends Enum {
2703
2722
  readonly isPauseFailed: boolean;
2704
2723
  readonly isResumeFailed: boolean;
@@ -2709,13 +2728,13 @@ declare module '@polkadot/types/lookup' {
2709
2728
  readonly isDuplicateOffenceReport: boolean;
2710
2729
  readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
2711
2730
  }
2712
- /** @name ArgonPrimitivesProvidersBlockSealerInfo (414) */
2731
+ /** @name ArgonPrimitivesProvidersBlockSealerInfo (418) */
2713
2732
  interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
2714
2733
  readonly blockAuthorAccountId: AccountId32;
2715
2734
  readonly blockVoteRewardsAccount: Option<AccountId32>;
2716
2735
  readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
2717
2736
  }
2718
- /** @name PalletBlockSealError (418) */
2737
+ /** @name PalletBlockSealError (422) */
2719
2738
  interface PalletBlockSealError extends Enum {
2720
2739
  readonly isInvalidVoteSealStrength: boolean;
2721
2740
  readonly isInvalidSubmitter: boolean;
@@ -2738,92 +2757,92 @@ declare module '@polkadot/types/lookup' {
2738
2757
  readonly isInvalidComputeBlockTick: boolean;
2739
2758
  readonly type: 'InvalidVoteSealStrength' | 'InvalidSubmitter' | 'UnableToDecodeVoteAccount' | 'UnregisteredBlockAuthor' | 'InvalidBlockVoteProof' | 'NoGrandparentVoteMinimum' | 'DuplicateBlockSealProvided' | 'InsufficientVotingPower' | 'ParentVotingKeyNotFound' | 'InvalidVoteGrandparentHash' | 'IneligibleNotebookUsed' | 'NoEligibleVotingRoot' | 'CouldNotDecodeVote' | 'MaxNotebooksAtTickExceeded' | 'NoClosestMinerFoundForVote' | 'BlockVoteInvalidSignature' | 'InvalidForkPowerParent' | 'BlockSealDecodeError' | 'InvalidComputeBlockTick';
2740
2759
  }
2741
- /** @name PalletBlockRewardsError (421) */
2760
+ /** @name PalletBlockRewardsError (425) */
2742
2761
  type PalletBlockRewardsError = Null;
2743
- /** @name PalletMintMintAction (426) */
2762
+ /** @name PalletMintMintAction (430) */
2744
2763
  interface PalletMintMintAction extends Struct {
2745
2764
  readonly argonBurned: u128;
2746
2765
  readonly argonMinted: u128;
2747
2766
  readonly bitcoinMinted: u128;
2748
2767
  }
2749
- /** @name PalletMintError (427) */
2768
+ /** @name PalletMintError (431) */
2750
2769
  interface PalletMintError extends Enum {
2751
2770
  readonly isTooManyPendingMints: boolean;
2752
2771
  readonly type: 'TooManyPendingMints';
2753
2772
  }
2754
- /** @name PalletBalancesBalanceLock (429) */
2773
+ /** @name PalletBalancesBalanceLock (433) */
2755
2774
  interface PalletBalancesBalanceLock extends Struct {
2756
2775
  readonly id: U8aFixed;
2757
2776
  readonly amount: u128;
2758
2777
  readonly reasons: PalletBalancesReasons;
2759
2778
  }
2760
- /** @name PalletBalancesReasons (430) */
2779
+ /** @name PalletBalancesReasons (434) */
2761
2780
  interface PalletBalancesReasons extends Enum {
2762
2781
  readonly isFee: boolean;
2763
2782
  readonly isMisc: boolean;
2764
2783
  readonly isAll: boolean;
2765
2784
  readonly type: 'Fee' | 'Misc' | 'All';
2766
2785
  }
2767
- /** @name PalletBalancesReserveData (433) */
2786
+ /** @name PalletBalancesReserveData (437) */
2768
2787
  interface PalletBalancesReserveData extends Struct {
2769
2788
  readonly id: U8aFixed;
2770
2789
  readonly amount: u128;
2771
2790
  }
2772
- /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (436) */
2791
+ /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (440) */
2773
2792
  interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
2774
2793
  readonly id: ArgonRuntimeRuntimeHoldReason;
2775
2794
  readonly amount: u128;
2776
2795
  }
2777
- /** @name ArgonRuntimeRuntimeHoldReason (437) */
2796
+ /** @name ArgonRuntimeRuntimeHoldReason (441) */
2778
2797
  interface ArgonRuntimeRuntimeHoldReason extends Enum {
2779
2798
  readonly isMiningSlot: boolean;
2780
2799
  readonly asMiningSlot: PalletMiningSlotHoldReason;
2781
2800
  readonly isVaults: boolean;
2782
2801
  readonly asVaults: PalletVaultsHoldReason;
2783
- readonly isBonds: boolean;
2784
- readonly asBonds: PalletBondHoldReason;
2802
+ readonly isBitcoinLocks: boolean;
2803
+ readonly asBitcoinLocks: PalletBitcoinLocksHoldReason;
2785
2804
  readonly isBlockRewards: boolean;
2786
2805
  readonly asBlockRewards: PalletBlockRewardsHoldReason;
2787
- readonly type: 'MiningSlot' | 'Vaults' | 'Bonds' | 'BlockRewards';
2806
+ readonly type: 'MiningSlot' | 'Vaults' | 'BitcoinLocks' | 'BlockRewards';
2788
2807
  }
2789
- /** @name PalletMiningSlotHoldReason (438) */
2808
+ /** @name PalletMiningSlotHoldReason (442) */
2790
2809
  interface PalletMiningSlotHoldReason extends Enum {
2791
2810
  readonly isRegisterAsMiner: boolean;
2792
2811
  readonly type: 'RegisterAsMiner';
2793
2812
  }
2794
- /** @name PalletVaultsHoldReason (439) */
2813
+ /** @name PalletVaultsHoldReason (443) */
2795
2814
  interface PalletVaultsHoldReason extends Enum {
2796
2815
  readonly isEnterVault: boolean;
2797
- readonly isBondFee: boolean;
2798
- readonly type: 'EnterVault' | 'BondFee';
2816
+ readonly isObligationFee: boolean;
2817
+ readonly type: 'EnterVault' | 'ObligationFee';
2799
2818
  }
2800
- /** @name PalletBondHoldReason (440) */
2801
- interface PalletBondHoldReason extends Enum {
2802
- readonly isUnlockingBitcoin: boolean;
2803
- readonly type: 'UnlockingBitcoin';
2819
+ /** @name PalletBitcoinLocksHoldReason (444) */
2820
+ interface PalletBitcoinLocksHoldReason extends Enum {
2821
+ readonly isReleaseBitcoinLock: boolean;
2822
+ readonly type: 'ReleaseBitcoinLock';
2804
2823
  }
2805
- /** @name PalletBlockRewardsHoldReason (441) */
2824
+ /** @name PalletBlockRewardsHoldReason (445) */
2806
2825
  interface PalletBlockRewardsHoldReason extends Enum {
2807
2826
  readonly isMaturationPeriod: boolean;
2808
2827
  readonly type: 'MaturationPeriod';
2809
2828
  }
2810
- /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (444) */
2829
+ /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (448) */
2811
2830
  interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
2812
2831
  readonly id: ArgonRuntimeRuntimeFreezeReason;
2813
2832
  readonly amount: u128;
2814
2833
  }
2815
- /** @name ArgonRuntimeRuntimeFreezeReason (445) */
2834
+ /** @name ArgonRuntimeRuntimeFreezeReason (449) */
2816
2835
  interface ArgonRuntimeRuntimeFreezeReason extends Enum {
2817
2836
  readonly isBlockRewards: boolean;
2818
2837
  readonly asBlockRewards: PalletBlockRewardsFreezeReason;
2819
2838
  readonly type: 'BlockRewards';
2820
2839
  }
2821
- /** @name PalletBlockRewardsFreezeReason (446) */
2840
+ /** @name PalletBlockRewardsFreezeReason (450) */
2822
2841
  interface PalletBlockRewardsFreezeReason extends Enum {
2823
2842
  readonly isMaturationPeriod: boolean;
2824
2843
  readonly type: 'MaturationPeriod';
2825
2844
  }
2826
- /** @name PalletBalancesError (448) */
2845
+ /** @name PalletBalancesError (452) */
2827
2846
  interface PalletBalancesError extends Enum {
2828
2847
  readonly isVestingBalance: boolean;
2829
2848
  readonly isLiquidityRestrictions: boolean;
@@ -2839,7 +2858,7 @@ declare module '@polkadot/types/lookup' {
2839
2858
  readonly isDeltaZero: boolean;
2840
2859
  readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
2841
2860
  }
2842
- /** @name PalletTxPauseError (450) */
2861
+ /** @name PalletTxPauseError (454) */
2843
2862
  interface PalletTxPauseError extends Enum {
2844
2863
  readonly isIsPaused: boolean;
2845
2864
  readonly isIsUnpaused: boolean;
@@ -2847,23 +2866,23 @@ declare module '@polkadot/types/lookup' {
2847
2866
  readonly isNotFound: boolean;
2848
2867
  readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
2849
2868
  }
2850
- /** @name PalletTransactionPaymentReleases (451) */
2869
+ /** @name PalletTransactionPaymentReleases (455) */
2851
2870
  interface PalletTransactionPaymentReleases extends Enum {
2852
2871
  readonly isV1Ancient: boolean;
2853
2872
  readonly isV2: boolean;
2854
2873
  readonly type: 'V1Ancient' | 'V2';
2855
2874
  }
2856
- /** @name PalletUtilityError (452) */
2875
+ /** @name PalletUtilityError (456) */
2857
2876
  interface PalletUtilityError extends Enum {
2858
2877
  readonly isTooManyCalls: boolean;
2859
2878
  readonly type: 'TooManyCalls';
2860
2879
  }
2861
- /** @name PalletSudoError (453) */
2880
+ /** @name PalletSudoError (457) */
2862
2881
  interface PalletSudoError extends Enum {
2863
2882
  readonly isRequireSudo: boolean;
2864
2883
  readonly type: 'RequireSudo';
2865
2884
  }
2866
- /** @name PalletIsmpError (454) */
2885
+ /** @name PalletIsmpError (458) */
2867
2886
  interface PalletIsmpError extends Enum {
2868
2887
  readonly isInvalidMessage: boolean;
2869
2888
  readonly isMessageNotFound: boolean;
@@ -2872,9 +2891,9 @@ declare module '@polkadot/types/lookup' {
2872
2891
  readonly isChallengePeriodUpdateFailed: boolean;
2873
2892
  readonly type: 'InvalidMessage' | 'MessageNotFound' | 'ConsensusClientCreationFailed' | 'UnbondingPeriodUpdateFailed' | 'ChallengePeriodUpdateFailed';
2874
2893
  }
2875
- /** @name PalletHyperbridgeError (455) */
2894
+ /** @name PalletHyperbridgeError (459) */
2876
2895
  type PalletHyperbridgeError = Null;
2877
- /** @name PalletTokenGatewayError (456) */
2896
+ /** @name PalletTokenGatewayError (461) */
2878
2897
  interface PalletTokenGatewayError extends Enum {
2879
2898
  readonly isUnregisteredAsset: boolean;
2880
2899
  readonly isAssetTeleportError: boolean;
@@ -2887,32 +2906,32 @@ declare module '@polkadot/types/lookup' {
2887
2906
  readonly isNotAssetOwner: boolean;
2888
2907
  readonly type: 'UnregisteredAsset' | 'AssetTeleportError' | 'CoprocessorNotConfigured' | 'DispatchError' | 'AssetCreationError' | 'AssetDecimalsNotFound' | 'NotInitialized' | 'UnknownAsset' | 'NotAssetOwner';
2889
2908
  }
2890
- /** @name FrameSystemExtensionsCheckNonZeroSender (459) */
2909
+ /** @name FrameSystemExtensionsCheckNonZeroSender (464) */
2891
2910
  type FrameSystemExtensionsCheckNonZeroSender = Null;
2892
- /** @name FrameSystemExtensionsCheckSpecVersion (460) */
2911
+ /** @name FrameSystemExtensionsCheckSpecVersion (465) */
2893
2912
  type FrameSystemExtensionsCheckSpecVersion = Null;
2894
- /** @name FrameSystemExtensionsCheckTxVersion (461) */
2913
+ /** @name FrameSystemExtensionsCheckTxVersion (466) */
2895
2914
  type FrameSystemExtensionsCheckTxVersion = Null;
2896
- /** @name FrameSystemExtensionsCheckGenesis (462) */
2915
+ /** @name FrameSystemExtensionsCheckGenesis (467) */
2897
2916
  type FrameSystemExtensionsCheckGenesis = Null;
2898
- /** @name FrameSystemExtensionsCheckNonce (465) */
2917
+ /** @name FrameSystemExtensionsCheckNonce (470) */
2899
2918
  interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
2900
2919
  }
2901
- /** @name FrameSystemExtensionsCheckWeight (466) */
2920
+ /** @name FrameSystemExtensionsCheckWeight (471) */
2902
2921
  type FrameSystemExtensionsCheckWeight = Null;
2903
- /** @name PalletTransactionPaymentChargeTransactionPayment (467) */
2922
+ /** @name PalletTransactionPaymentChargeTransactionPayment (472) */
2904
2923
  interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
2905
2924
  }
2906
- /** @name FrameMetadataHashExtensionCheckMetadataHash (468) */
2925
+ /** @name FrameMetadataHashExtensionCheckMetadataHash (473) */
2907
2926
  interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
2908
2927
  readonly mode: FrameMetadataHashExtensionMode;
2909
2928
  }
2910
- /** @name FrameMetadataHashExtensionMode (469) */
2929
+ /** @name FrameMetadataHashExtensionMode (474) */
2911
2930
  interface FrameMetadataHashExtensionMode extends Enum {
2912
2931
  readonly isDisabled: boolean;
2913
2932
  readonly isEnabled: boolean;
2914
2933
  readonly type: 'Disabled' | 'Enabled';
2915
2934
  }
2916
- /** @name ArgonRuntimeRuntime (471) */
2935
+ /** @name ArgonRuntimeRuntime (476) */
2917
2936
  type ArgonRuntimeRuntime = Null;
2918
2937
  }