@argonprotocol/mainchain 1.4.11-dev.f3bdc948 → 1.4.12-dev.2afa6e4a

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.
@@ -498,21 +498,17 @@ declare module '@polkadot/types/lookup' {
498
498
 
499
499
  /** @name PalletBitcoinUtxosEvent (50) */
500
500
  interface PalletBitcoinUtxosEvent extends Enum {
501
- readonly isUtxoVerified: boolean;
502
- readonly asUtxoVerified: {
503
- readonly utxoId: u64;
504
- readonly satoshisReceived: u64;
505
- } & Struct;
506
- readonly isUtxoRejected: boolean;
507
- readonly asUtxoRejected: {
501
+ readonly isUtxoDetected: boolean;
502
+ readonly asUtxoDetected: {
508
503
  readonly utxoId: u64;
509
504
  readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
510
- readonly rejectedReason: ArgonPrimitivesBitcoinBitcoinRejectedReason;
511
505
  readonly satoshisReceived: u64;
506
+ readonly bitcoinHeight: u64;
512
507
  } & Struct;
513
508
  readonly isUtxoSpent: boolean;
514
509
  readonly asUtxoSpent: {
515
510
  readonly utxoId: u64;
511
+ readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
516
512
  readonly blockHeight: u64;
517
513
  } & Struct;
518
514
  readonly isUtxoUnwatched: boolean;
@@ -524,24 +520,17 @@ declare module '@polkadot/types/lookup' {
524
520
  readonly utxoId: u64;
525
521
  readonly error: SpRuntimeDispatchError;
526
522
  } & Struct;
527
- readonly isUtxoVerifiedError: boolean;
528
- readonly asUtxoVerifiedError: {
529
- readonly utxoId: u64;
530
- readonly error: SpRuntimeDispatchError;
531
- } & Struct;
532
- readonly isUtxoRejectedError: boolean;
533
- readonly asUtxoRejectedError: {
523
+ readonly isUtxoDetectedError: boolean;
524
+ readonly asUtxoDetectedError: {
534
525
  readonly utxoId: u64;
535
526
  readonly error: SpRuntimeDispatchError;
536
527
  } & Struct;
537
528
  readonly type:
538
- | 'UtxoVerified'
539
- | 'UtxoRejected'
529
+ | 'UtxoDetected'
540
530
  | 'UtxoSpent'
541
531
  | 'UtxoUnwatched'
542
532
  | 'UtxoSpentError'
543
- | 'UtxoVerifiedError'
544
- | 'UtxoRejectedError';
533
+ | 'UtxoDetectedError';
545
534
  }
546
535
 
547
536
  /** @name ArgonPrimitivesBitcoinUtxoRef (51) */
@@ -553,20 +542,7 @@ declare module '@polkadot/types/lookup' {
553
542
  /** @name ArgonPrimitivesBitcoinH256Le (52) */
554
543
  interface ArgonPrimitivesBitcoinH256Le extends U8aFixed {}
555
544
 
556
- /** @name ArgonPrimitivesBitcoinBitcoinRejectedReason (54) */
557
- interface ArgonPrimitivesBitcoinBitcoinRejectedReason extends Enum {
558
- readonly isSatoshisOutsideAcceptedRange: boolean;
559
- readonly isSpent: boolean;
560
- readonly isVerificationExpired: boolean;
561
- readonly isAlreadyVerified: boolean;
562
- readonly type:
563
- | 'SatoshisOutsideAcceptedRange'
564
- | 'Spent'
565
- | 'VerificationExpired'
566
- | 'AlreadyVerified';
567
- }
568
-
569
- /** @name PalletVaultsEvent (55) */
545
+ /** @name PalletVaultsEvent (54) */
570
546
  interface PalletVaultsEvent extends Enum {
571
547
  readonly isVaultCreated: boolean;
572
548
  readonly asVaultCreated: {
@@ -618,17 +594,16 @@ declare module '@polkadot/types/lookup' {
618
594
  readonly vaultId: u32;
619
595
  readonly revenue: u128;
620
596
  } & Struct;
621
- readonly isFundsLocked: boolean;
622
- readonly asFundsLocked: {
597
+ readonly isSecuritizationReserved: boolean;
598
+ readonly asSecuritizationReserved: {
623
599
  readonly vaultId: u32;
624
600
  readonly locker: AccountId32;
625
- readonly liquidityPromised: u128;
626
- readonly isRatchet: bool;
601
+ readonly securitizationCoverageMicrogons: u128;
627
602
  readonly feeRevenue: u128;
628
603
  readonly didUseFeeCoupon: bool;
629
604
  } & Struct;
630
- readonly isFundLockCanceled: boolean;
631
- readonly asFundLockCanceled: {
605
+ readonly isSecuritizationReturned: boolean;
606
+ readonly asSecuritizationReturned: {
632
607
  readonly vaultId: u32;
633
608
  readonly amount: u128;
634
609
  } & Struct;
@@ -678,8 +653,8 @@ declare module '@polkadot/types/lookup' {
678
653
  | 'ReservedSecuritizationSpaceChanged'
679
654
  | 'VaultRevenueUncollected'
680
655
  | 'VaultCollected'
681
- | 'FundsLocked'
682
- | 'FundLockCanceled'
656
+ | 'SecuritizationReserved'
657
+ | 'SecuritizationReturned'
683
658
  | 'FundsScheduledForRelease'
684
659
  | 'LostBitcoinCompensated'
685
660
  | 'FundsReleased'
@@ -688,29 +663,18 @@ declare module '@polkadot/types/lookup' {
688
663
  | 'CommittedArgonotsSet';
689
664
  }
690
665
 
691
- /** @name PalletBitcoinLocksEvent (57) */
666
+ /** @name PalletBitcoinLocksEvent (56) */
692
667
  interface PalletBitcoinLocksEvent extends Enum {
693
668
  readonly isBitcoinLockCreated: boolean;
694
669
  readonly asBitcoinLockCreated: {
695
670
  readonly utxoId: u64;
696
671
  readonly vaultId: u32;
697
- readonly liquidityPromised: u128;
698
- readonly securitization: u128;
699
- readonly lockedTargetPrice: u128;
672
+ readonly securitizedSatoshis: u64;
673
+ readonly microgonsAtTargetPerBtc: u128;
674
+ readonly collateralRequired: u128;
700
675
  readonly accountId: AccountId32;
701
676
  readonly securityFee: u128;
702
677
  } & Struct;
703
- readonly isBitcoinLockRatcheted: boolean;
704
- readonly asBitcoinLockRatcheted: {
705
- readonly utxoId: u64;
706
- readonly vaultId: u32;
707
- readonly liquidityPromised: u128;
708
- readonly oldTargetPrice: u128;
709
- readonly securityFee: u128;
710
- readonly newTargetPrice: u128;
711
- readonly amountBurned: u128;
712
- readonly accountId: AccountId32;
713
- } & Struct;
714
678
  readonly isBitcoinLockBurned: boolean;
715
679
  readonly asBitcoinLockBurned: {
716
680
  readonly utxoId: u64;
@@ -772,18 +736,24 @@ declare module '@polkadot/types/lookup' {
772
736
  readonly accountId: AccountId32;
773
737
  readonly signature: Bytes;
774
738
  } & Struct;
775
- readonly isUtxoFundedFromCandidate: boolean;
776
- readonly asUtxoFundedFromCandidate: {
777
- readonly utxoId: u64;
739
+ readonly isOrphanedUtxoExpirationError: boolean;
740
+ readonly asOrphanedUtxoExpirationError: {
741
+ readonly accountId: AccountId32;
778
742
  readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
779
- readonly vaultId: u32;
743
+ readonly error: SpRuntimeDispatchError;
744
+ } & Struct;
745
+ readonly isOrphanedUtxoCleanupScheduleOverflow: boolean;
746
+ readonly asOrphanedUtxoCleanupScheduleOverflow: {
780
747
  readonly accountId: AccountId32;
748
+ readonly utxoId: u64;
749
+ readonly expirationFrame: u64;
781
750
  } & Struct;
782
- readonly isSecuritizationIncreased: boolean;
783
- readonly asSecuritizationIncreased: {
751
+ readonly isBitcoinLockResecuritized: boolean;
752
+ readonly asBitcoinLockResecuritized: {
784
753
  readonly utxoId: u64;
785
754
  readonly vaultId: u32;
786
- readonly newSatoshis: u64;
755
+ readonly securitizedSatoshis: u64;
756
+ readonly microgonsAtTargetPerBtc: u128;
787
757
  readonly accountId: AccountId32;
788
758
  } & Struct;
789
759
  readonly isBitcoinLockFlexibleChanged: boolean;
@@ -794,7 +764,6 @@ declare module '@polkadot/types/lookup' {
794
764
  } & Struct;
795
765
  readonly type:
796
766
  | 'BitcoinLockCreated'
797
- | 'BitcoinLockRatcheted'
798
767
  | 'BitcoinLockBurned'
799
768
  | 'BitcoinUtxoCosignRequested'
800
769
  | 'BitcoinUtxoCosigned'
@@ -805,12 +774,13 @@ declare module '@polkadot/types/lookup' {
805
774
  | 'OrphanedUtxoReceived'
806
775
  | 'OrphanedUtxoReleaseRequested'
807
776
  | 'OrphanedUtxoCosigned'
808
- | 'UtxoFundedFromCandidate'
809
- | 'SecuritizationIncreased'
777
+ | 'OrphanedUtxoExpirationError'
778
+ | 'OrphanedUtxoCleanupScheduleOverflow'
779
+ | 'BitcoinLockResecuritized'
810
780
  | 'BitcoinLockFlexibleChanged';
811
781
  }
812
782
 
813
- /** @name PalletNotariesEvent (60) */
783
+ /** @name PalletNotariesEvent (59) */
814
784
  interface PalletNotariesEvent extends Enum {
815
785
  readonly isNotaryProposed: boolean;
816
786
  readonly asNotaryProposed: {
@@ -847,14 +817,14 @@ declare module '@polkadot/types/lookup' {
847
817
  | 'NotaryMetaUpdateError';
848
818
  }
849
819
 
850
- /** @name ArgonPrimitivesNotaryNotaryMeta (61) */
820
+ /** @name ArgonPrimitivesNotaryNotaryMeta (60) */
851
821
  interface ArgonPrimitivesNotaryNotaryMeta extends Struct {
852
822
  readonly name: Bytes;
853
823
  readonly public: U8aFixed;
854
824
  readonly hosts: Vec<Bytes>;
855
825
  }
856
826
 
857
- /** @name ArgonPrimitivesNotaryNotaryRecord (68) */
827
+ /** @name ArgonPrimitivesNotaryNotaryRecord (67) */
858
828
  interface ArgonPrimitivesNotaryNotaryRecord extends Struct {
859
829
  readonly notaryId: Compact<u32>;
860
830
  readonly operatorAccountId: AccountId32;
@@ -864,7 +834,7 @@ declare module '@polkadot/types/lookup' {
864
834
  readonly meta: ArgonPrimitivesNotaryNotaryMeta;
865
835
  }
866
836
 
867
- /** @name PalletNotebookEvent (69) */
837
+ /** @name PalletNotebookEvent (68) */
868
838
  interface PalletNotebookEvent extends Enum {
869
839
  readonly isNotebookSubmitted: boolean;
870
840
  readonly asNotebookSubmitted: {
@@ -886,7 +856,7 @@ declare module '@polkadot/types/lookup' {
886
856
  readonly type: 'NotebookSubmitted' | 'NotebookAuditFailure' | 'NotebookReadyForReprocess';
887
857
  }
888
858
 
889
- /** @name ArgonNotaryAuditErrorVerifyError (70) */
859
+ /** @name ArgonNotaryAuditErrorVerifyError (69) */
890
860
  interface ArgonNotaryAuditErrorVerifyError extends Enum {
891
861
  readonly isMissingAccountOrigin: boolean;
892
862
  readonly asMissingAccountOrigin: {
@@ -1066,14 +1036,14 @@ declare module '@polkadot/types/lookup' {
1066
1036
  | 'NoDefaultBlockVote';
1067
1037
  }
1068
1038
 
1069
- /** @name ArgonPrimitivesAccountAccountType (71) */
1039
+ /** @name ArgonPrimitivesAccountAccountType (70) */
1070
1040
  interface ArgonPrimitivesAccountAccountType extends Enum {
1071
1041
  readonly isTax: boolean;
1072
1042
  readonly isDeposit: boolean;
1073
1043
  readonly type: 'Tax' | 'Deposit';
1074
1044
  }
1075
1045
 
1076
- /** @name ArgonNotaryAuditAccountHistoryLookupError (72) */
1046
+ /** @name ArgonNotaryAuditAccountHistoryLookupError (71) */
1077
1047
  interface ArgonNotaryAuditAccountHistoryLookupError extends Enum {
1078
1048
  readonly isRootNotFound: boolean;
1079
1049
  readonly isLastChangeNotFound: boolean;
@@ -1086,7 +1056,7 @@ declare module '@polkadot/types/lookup' {
1086
1056
  | 'BlockSpecificationNotFound';
1087
1057
  }
1088
1058
 
1089
- /** @name PalletLocalchainTransferEvent (76) */
1059
+ /** @name PalletLocalchainTransferEvent (75) */
1090
1060
  interface PalletLocalchainTransferEvent extends Enum {
1091
1061
  readonly isTransferToLocalchain: boolean;
1092
1062
  readonly asTransferToLocalchain: {
@@ -1147,7 +1117,7 @@ declare module '@polkadot/types/lookup' {
1147
1117
  | 'TaxationError';
1148
1118
  }
1149
1119
 
1150
- /** @name PalletBlockSealSpecEvent (77) */
1120
+ /** @name PalletBlockSealSpecEvent (76) */
1151
1121
  interface PalletBlockSealSpecEvent extends Enum {
1152
1122
  readonly isVoteMinimumAdjusted: boolean;
1153
1123
  readonly asVoteMinimumAdjusted: {
@@ -1166,7 +1136,7 @@ declare module '@polkadot/types/lookup' {
1166
1136
  readonly type: 'VoteMinimumAdjusted' | 'ComputeDifficultyAdjusted';
1167
1137
  }
1168
1138
 
1169
- /** @name PalletDomainsEvent (78) */
1139
+ /** @name PalletDomainsEvent (77) */
1170
1140
  interface PalletDomainsEvent extends Enum {
1171
1141
  readonly isZoneRecordUpdated: boolean;
1172
1142
  readonly asZoneRecordUpdated: {
@@ -1206,33 +1176,33 @@ declare module '@polkadot/types/lookup' {
1206
1176
  | 'DomainRegistrationError';
1207
1177
  }
1208
1178
 
1209
- /** @name ArgonPrimitivesDomainZoneRecord (79) */
1179
+ /** @name ArgonPrimitivesDomainZoneRecord (78) */
1210
1180
  interface ArgonPrimitivesDomainZoneRecord extends Struct {
1211
1181
  readonly paymentAccount: AccountId32;
1212
1182
  readonly notaryId: u32;
1213
1183
  readonly versions: BTreeMap<ArgonPrimitivesDomainSemver, ArgonPrimitivesDomainVersionHost>;
1214
1184
  }
1215
1185
 
1216
- /** @name ArgonPrimitivesDomainSemver (81) */
1186
+ /** @name ArgonPrimitivesDomainSemver (80) */
1217
1187
  interface ArgonPrimitivesDomainSemver extends Struct {
1218
1188
  readonly major: u32;
1219
1189
  readonly minor: u32;
1220
1190
  readonly patch: u32;
1221
1191
  }
1222
1192
 
1223
- /** @name ArgonPrimitivesDomainVersionHost (82) */
1193
+ /** @name ArgonPrimitivesDomainVersionHost (81) */
1224
1194
  interface ArgonPrimitivesDomainVersionHost extends Struct {
1225
1195
  readonly datastoreId: Bytes;
1226
1196
  readonly host: Bytes;
1227
1197
  }
1228
1198
 
1229
- /** @name PalletDomainsDomainRegistration (87) */
1199
+ /** @name PalletDomainsDomainRegistration (86) */
1230
1200
  interface PalletDomainsDomainRegistration extends Struct {
1231
1201
  readonly accountId: AccountId32;
1232
1202
  readonly registeredAtTick: u64;
1233
1203
  }
1234
1204
 
1235
- /** @name PalletPriceIndexEvent (88) */
1205
+ /** @name PalletPriceIndexEvent (87) */
1236
1206
  interface PalletPriceIndexEvent extends Enum {
1237
1207
  readonly isNewIndex: boolean;
1238
1208
  readonly isOperatorChanged: boolean;
@@ -1242,7 +1212,7 @@ declare module '@polkadot/types/lookup' {
1242
1212
  readonly type: 'NewIndex' | 'OperatorChanged';
1243
1213
  }
1244
1214
 
1245
- /** @name PalletGrandpaEvent (89) */
1215
+ /** @name PalletGrandpaEvent (88) */
1246
1216
  interface PalletGrandpaEvent extends Enum {
1247
1217
  readonly isNewAuthorities: boolean;
1248
1218
  readonly asNewAuthorities: {
@@ -1253,7 +1223,7 @@ declare module '@polkadot/types/lookup' {
1253
1223
  readonly type: 'NewAuthorities' | 'Paused' | 'Resumed';
1254
1224
  }
1255
1225
 
1256
- /** @name PalletBlockRewardsEvent (92) */
1226
+ /** @name PalletBlockRewardsEvent (91) */
1257
1227
  interface PalletBlockRewardsEvent extends Enum {
1258
1228
  readonly isRewardCreated: boolean;
1259
1229
  readonly asRewardCreated: {
@@ -1269,7 +1239,7 @@ declare module '@polkadot/types/lookup' {
1269
1239
  readonly type: 'RewardCreated' | 'RewardCreateError';
1270
1240
  }
1271
1241
 
1272
- /** @name ArgonPrimitivesBlockSealBlockPayout (94) */
1242
+ /** @name ArgonPrimitivesBlockSealBlockPayout (93) */
1273
1243
  interface ArgonPrimitivesBlockSealBlockPayout extends Struct {
1274
1244
  readonly accountId: AccountId32;
1275
1245
  readonly ownership: Compact<u128>;
@@ -1278,7 +1248,7 @@ declare module '@polkadot/types/lookup' {
1278
1248
  readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
1279
1249
  }
1280
1250
 
1281
- /** @name ArgonPrimitivesBlockSealBlockRewardType (95) */
1251
+ /** @name ArgonPrimitivesBlockSealBlockRewardType (94) */
1282
1252
  interface ArgonPrimitivesBlockSealBlockRewardType extends Enum {
1283
1253
  readonly isMiner: boolean;
1284
1254
  readonly isVoter: boolean;
@@ -1286,11 +1256,12 @@ declare module '@polkadot/types/lookup' {
1286
1256
  readonly type: 'Miner' | 'Voter' | 'ProfitShare';
1287
1257
  }
1288
1258
 
1289
- /** @name PalletMintEvent (98) */
1259
+ /** @name PalletMintEvent (97) */
1290
1260
  interface PalletMintEvent extends Enum {
1291
1261
  readonly isBitcoinMint: boolean;
1292
1262
  readonly asBitcoinMint: {
1293
1263
  readonly accountId: AccountId32;
1264
+ readonly fissionId: u64;
1294
1265
  readonly utxoId: Option<u64>;
1295
1266
  readonly amount: u128;
1296
1267
  } & Struct;
@@ -1305,6 +1276,7 @@ declare module '@polkadot/types/lookup' {
1305
1276
  readonly asMintError: {
1306
1277
  readonly mintType: PalletMintMintType;
1307
1278
  readonly accountId: AccountId32;
1279
+ readonly fissionId: Option<u64>;
1308
1280
  readonly utxoId: Option<u64>;
1309
1281
  readonly amount: u128;
1310
1282
  readonly error: SpRuntimeDispatchError;
@@ -1312,14 +1284,14 @@ declare module '@polkadot/types/lookup' {
1312
1284
  readonly type: 'BitcoinMint' | 'MiningMint' | 'MintError';
1313
1285
  }
1314
1286
 
1315
- /** @name PalletMintMintType (101) */
1287
+ /** @name PalletMintMintType (100) */
1316
1288
  interface PalletMintMintType extends Enum {
1317
1289
  readonly isBitcoin: boolean;
1318
1290
  readonly isMining: boolean;
1319
1291
  readonly type: 'Bitcoin' | 'Mining';
1320
1292
  }
1321
1293
 
1322
- /** @name PalletBalancesEvent (102) */
1294
+ /** @name PalletBalancesEvent (101) */
1323
1295
  interface PalletBalancesEvent extends Enum {
1324
1296
  readonly isEndowed: boolean;
1325
1297
  readonly asEndowed: {
@@ -1506,14 +1478,14 @@ declare module '@polkadot/types/lookup' {
1506
1478
  | 'Unexpected';
1507
1479
  }
1508
1480
 
1509
- /** @name FrameSupportTokensMiscBalanceStatus (103) */
1481
+ /** @name FrameSupportTokensMiscBalanceStatus (102) */
1510
1482
  interface FrameSupportTokensMiscBalanceStatus extends Enum {
1511
1483
  readonly isFree: boolean;
1512
1484
  readonly isReserved: boolean;
1513
1485
  readonly type: 'Free' | 'Reserved';
1514
1486
  }
1515
1487
 
1516
- /** @name ArgonRuntimeRuntimeHoldReason (104) */
1488
+ /** @name ArgonRuntimeRuntimeHoldReason (103) */
1517
1489
  interface ArgonRuntimeRuntimeHoldReason extends Enum {
1518
1490
  readonly isMiningSlot: boolean;
1519
1491
  readonly asMiningSlot: PalletMiningSlotHoldReason;
@@ -1536,13 +1508,13 @@ declare module '@polkadot/types/lookup' {
1536
1508
  | 'CrosschainTransfer';
1537
1509
  }
1538
1510
 
1539
- /** @name PalletMiningSlotHoldReason (105) */
1511
+ /** @name PalletMiningSlotHoldReason (104) */
1540
1512
  interface PalletMiningSlotHoldReason extends Enum {
1541
1513
  readonly isRegisterAsMiner: boolean;
1542
1514
  readonly type: 'RegisterAsMiner';
1543
1515
  }
1544
1516
 
1545
- /** @name PalletVaultsHoldReason (106) */
1517
+ /** @name PalletVaultsHoldReason (105) */
1546
1518
  interface PalletVaultsHoldReason extends Enum {
1547
1519
  readonly isEnterVault: boolean;
1548
1520
  readonly isObligationFee: boolean;
@@ -1550,39 +1522,39 @@ declare module '@polkadot/types/lookup' {
1550
1522
  readonly type: 'EnterVault' | 'ObligationFee' | 'PendingCollect';
1551
1523
  }
1552
1524
 
1553
- /** @name PalletBitcoinLocksHoldReason (107) */
1525
+ /** @name PalletBitcoinLocksHoldReason (106) */
1554
1526
  interface PalletBitcoinLocksHoldReason extends Enum {
1555
1527
  readonly isReleaseBitcoinLock: boolean;
1556
1528
  readonly type: 'ReleaseBitcoinLock';
1557
1529
  }
1558
1530
 
1559
- /** @name PalletBlockRewardsHoldReason (108) */
1531
+ /** @name PalletBlockRewardsHoldReason (107) */
1560
1532
  interface PalletBlockRewardsHoldReason extends Enum {
1561
1533
  readonly isMaturationPeriod: boolean;
1562
1534
  readonly type: 'MaturationPeriod';
1563
1535
  }
1564
1536
 
1565
- /** @name PalletTreasuryHoldReason (109) */
1537
+ /** @name PalletTreasuryHoldReason (108) */
1566
1538
  interface PalletTreasuryHoldReason extends Enum {
1567
1539
  readonly isContributedToTreasury: boolean;
1568
1540
  readonly type: 'ContributedToTreasury';
1569
1541
  }
1570
1542
 
1571
- /** @name PalletCrosschainTransferHoldReason (110) */
1543
+ /** @name PalletCrosschainTransferHoldReason (109) */
1572
1544
  interface PalletCrosschainTransferHoldReason extends Enum {
1573
1545
  readonly isTransferOutMintingAuthorityTip: boolean;
1574
1546
  readonly isMintingAuthorityActivationRepayment: boolean;
1575
1547
  readonly type: 'TransferOutMintingAuthorityTip' | 'MintingAuthorityActivationRepayment';
1576
1548
  }
1577
1549
 
1578
- /** @name PalletBalancesUnexpectedKind (111) */
1550
+ /** @name PalletBalancesUnexpectedKind (110) */
1579
1551
  interface PalletBalancesUnexpectedKind extends Enum {
1580
1552
  readonly isBalanceUpdated: boolean;
1581
1553
  readonly isFailedToMutateAccount: boolean;
1582
1554
  readonly type: 'BalanceUpdated' | 'FailedToMutateAccount';
1583
1555
  }
1584
1556
 
1585
- /** @name PalletTxPauseEvent (113) */
1557
+ /** @name PalletTxPauseEvent (112) */
1586
1558
  interface PalletTxPauseEvent extends Enum {
1587
1559
  readonly isCallPaused: boolean;
1588
1560
  readonly asCallPaused: {
@@ -1595,7 +1567,7 @@ declare module '@polkadot/types/lookup' {
1595
1567
  readonly type: 'CallPaused' | 'CallUnpaused';
1596
1568
  }
1597
1569
 
1598
- /** @name PalletTransactionPaymentEvent (116) */
1570
+ /** @name PalletTransactionPaymentEvent (115) */
1599
1571
  interface PalletTransactionPaymentEvent extends Enum {
1600
1572
  readonly isTransactionFeePaid: boolean;
1601
1573
  readonly asTransactionFeePaid: {
@@ -1606,7 +1578,7 @@ declare module '@polkadot/types/lookup' {
1606
1578
  readonly type: 'TransactionFeePaid';
1607
1579
  }
1608
1580
 
1609
- /** @name PalletUtilityEvent (117) */
1581
+ /** @name PalletUtilityEvent (116) */
1610
1582
  interface PalletUtilityEvent extends Enum {
1611
1583
  readonly isBatchInterrupted: boolean;
1612
1584
  readonly asBatchInterrupted: {
@@ -1640,7 +1612,7 @@ declare module '@polkadot/types/lookup' {
1640
1612
  | 'IfElseFallbackCalled';
1641
1613
  }
1642
1614
 
1643
- /** @name PalletSudoEvent (118) */
1615
+ /** @name PalletSudoEvent (117) */
1644
1616
  interface PalletSudoEvent extends Enum {
1645
1617
  readonly isSudid: boolean;
1646
1618
  readonly asSudid: {
@@ -1659,6 +1631,43 @@ declare module '@polkadot/types/lookup' {
1659
1631
  readonly type: 'Sudid' | 'KeyChanged' | 'KeyRemoved' | 'SudoAsDone';
1660
1632
  }
1661
1633
 
1634
+ /** @name PalletBitcoinFissionsEvent (118) */
1635
+ interface PalletBitcoinFissionsEvent extends Enum {
1636
+ readonly isFissionCreated: boolean;
1637
+ readonly asFissionCreated: {
1638
+ readonly accountId: AccountId32;
1639
+ readonly fissionId: u64;
1640
+ readonly liquidId: u64;
1641
+ readonly utxoId: u64;
1642
+ readonly satoshis: u64;
1643
+ readonly microgonsAtTargetPerBtc: u128;
1644
+ readonly liquidityPromised: u128;
1645
+ } & Struct;
1646
+ readonly isFissionRatcheted: boolean;
1647
+ readonly asFissionRatcheted: {
1648
+ readonly accountId: AccountId32;
1649
+ readonly fissionId: u64;
1650
+ readonly ratchetNumber: u32;
1651
+ readonly microgonsAtTargetPerBtc: u128;
1652
+ readonly liquidityPromised: u128;
1653
+ readonly amountMinted: u128;
1654
+ readonly amountBurned: u128;
1655
+ } & Struct;
1656
+ readonly isFissionClosed: boolean;
1657
+ readonly asFissionClosed: {
1658
+ readonly accountId: AccountId32;
1659
+ readonly fissionId: u64;
1660
+ readonly redemptionAmount: u128;
1661
+ } & Struct;
1662
+ readonly isFissionClosedByLock: boolean;
1663
+ readonly asFissionClosedByLock: {
1664
+ readonly accountId: AccountId32;
1665
+ readonly fissionId: u64;
1666
+ readonly utxoId: u64;
1667
+ } & Struct;
1668
+ readonly type: 'FissionCreated' | 'FissionRatcheted' | 'FissionClosed' | 'FissionClosedByLock';
1669
+ }
1670
+
1662
1671
  /** @name PalletTreasuryEvent (119) */
1663
1672
  interface PalletTreasuryEvent extends Enum {
1664
1673
  readonly isCouldNotDistributeEarningsToBondLot: boolean;
@@ -2583,22 +2592,7 @@ declare module '@polkadot/types/lookup' {
2583
2592
  readonly asSetOperator: {
2584
2593
  readonly accountId: AccountId32;
2585
2594
  } & Struct;
2586
- readonly isFundWithUtxoCandidate: boolean;
2587
- readonly asFundWithUtxoCandidate: {
2588
- readonly utxoId: u64;
2589
- readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
2590
- } & Struct;
2591
- readonly isRejectUtxoCandidate: boolean;
2592
- readonly asRejectUtxoCandidate: {
2593
- readonly utxoId: u64;
2594
- readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
2595
- } & Struct;
2596
- readonly type:
2597
- | 'Sync'
2598
- | 'SetConfirmedBlock'
2599
- | 'SetOperator'
2600
- | 'FundWithUtxoCandidate'
2601
- | 'RejectUtxoCandidate';
2595
+ readonly type: 'Sync' | 'SetConfirmedBlock' | 'SetOperator';
2602
2596
  }
2603
2597
 
2604
2598
  /** @name ArgonPrimitivesInherentsBitcoinUtxoSync (201) */
@@ -2705,8 +2699,8 @@ declare module '@polkadot/types/lookup' {
2705
2699
 
2706
2700
  /** @name PalletBitcoinLocksCall (216) */
2707
2701
  interface PalletBitcoinLocksCall extends Enum {
2708
- readonly isInitialize: boolean;
2709
- readonly asInitialize: {
2702
+ readonly isCreateReceiveAddress: boolean;
2703
+ readonly asCreateReceiveAddress: {
2710
2704
  readonly vaultId: u32;
2711
2705
  readonly satoshis: Compact<u64>;
2712
2706
  readonly bitcoinPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
@@ -2723,11 +2717,6 @@ declare module '@polkadot/types/lookup' {
2723
2717
  readonly utxoId: u64;
2724
2718
  readonly signature: Bytes;
2725
2719
  } & Struct;
2726
- readonly isRatchet: boolean;
2727
- readonly asRatchet: {
2728
- readonly utxoId: u64;
2729
- readonly options: Option<PalletBitcoinLocksLockOptions>;
2730
- } & Struct;
2731
2720
  readonly isAdminModifyMinimumLockedSats: boolean;
2732
2721
  readonly asAdminModifyMinimumLockedSats: {
2733
2722
  readonly satoshis: u64;
@@ -2744,10 +2733,11 @@ declare module '@polkadot/types/lookup' {
2744
2733
  readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
2745
2734
  readonly signature: Bytes;
2746
2735
  } & Struct;
2747
- readonly isIncreaseSecuritization: boolean;
2748
- readonly asIncreaseSecuritization: {
2736
+ readonly isResecuritize: boolean;
2737
+ readonly asResecuritize: {
2749
2738
  readonly utxoId: u64;
2750
- readonly newSatoshis: Compact<u64>;
2739
+ readonly satoshis: Compact<u64>;
2740
+ readonly options: Option<PalletBitcoinLocksLockOptions>;
2751
2741
  } & Struct;
2752
2742
  readonly isSetFlexible: boolean;
2753
2743
  readonly asSetFlexible: {
@@ -2755,14 +2745,13 @@ declare module '@polkadot/types/lookup' {
2755
2745
  readonly isFlexible: bool;
2756
2746
  } & Struct;
2757
2747
  readonly type:
2758
- | 'Initialize'
2748
+ | 'CreateReceiveAddress'
2759
2749
  | 'RequestRelease'
2760
2750
  | 'CosignRelease'
2761
- | 'Ratchet'
2762
2751
  | 'AdminModifyMinimumLockedSats'
2763
2752
  | 'RequestOrphanedUtxoRelease'
2764
2753
  | 'CosignOrphanedUtxoRelease'
2765
- | 'IncreaseSecuritization'
2754
+ | 'Resecuritize'
2766
2755
  | 'SetFlexible';
2767
2756
  }
2768
2757
 
@@ -2770,20 +2759,12 @@ declare module '@polkadot/types/lookup' {
2770
2759
  interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {}
2771
2760
 
2772
2761
  /** @name PalletBitcoinLocksLockOptions (220) */
2773
- interface PalletBitcoinLocksLockOptions extends Enum {
2774
- readonly isV1: boolean;
2775
- readonly asV1: {
2776
- readonly microgonsAtTargetPerBtc: Option<u128>;
2777
- } & Struct;
2778
- readonly isV2: boolean;
2779
- readonly asV2: {
2780
- readonly microgonsAtTargetPerBtc: Compact<u128>;
2781
- readonly feeCoupon: PalletBitcoinLocksFeeCoupon;
2782
- } & Struct;
2783
- readonly type: 'V1' | 'V2';
2762
+ interface PalletBitcoinLocksLockOptions extends Struct {
2763
+ readonly microgonsAtTargetPerBtc: Compact<u128>;
2764
+ readonly feeCoupon: Option<PalletBitcoinLocksFeeCoupon>;
2784
2765
  }
2785
2766
 
2786
- /** @name PalletBitcoinLocksFeeCoupon (221) */
2767
+ /** @name PalletBitcoinLocksFeeCoupon (222) */
2787
2768
  interface PalletBitcoinLocksFeeCoupon extends Struct {
2788
2769
  readonly feeDiscount: Compact<u128>;
2789
2770
  readonly securitizationSpaceToUnreserve: Compact<u128>;
@@ -2792,7 +2773,7 @@ declare module '@polkadot/types/lookup' {
2792
2773
  readonly signature: SpRuntimeMultiSignature;
2793
2774
  }
2794
2775
 
2795
- /** @name SpRuntimeMultiSignature (222) */
2776
+ /** @name SpRuntimeMultiSignature (223) */
2796
2777
  interface SpRuntimeMultiSignature extends Enum {
2797
2778
  readonly isEd25519: boolean;
2798
2779
  readonly asEd25519: U8aFixed;
@@ -2805,7 +2786,7 @@ declare module '@polkadot/types/lookup' {
2805
2786
  readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
2806
2787
  }
2807
2788
 
2808
- /** @name PalletNotariesCall (227) */
2789
+ /** @name PalletNotariesCall (228) */
2809
2790
  interface PalletNotariesCall extends Enum {
2810
2791
  readonly isPropose: boolean;
2811
2792
  readonly asPropose: {
@@ -2824,7 +2805,7 @@ declare module '@polkadot/types/lookup' {
2824
2805
  readonly type: 'Propose' | 'Activate' | 'Update';
2825
2806
  }
2826
2807
 
2827
- /** @name PalletNotebookCall (228) */
2808
+ /** @name PalletNotebookCall (229) */
2828
2809
  interface PalletNotebookCall extends Enum {
2829
2810
  readonly isSubmit: boolean;
2830
2811
  readonly asSubmit: {
@@ -2837,13 +2818,13 @@ declare module '@polkadot/types/lookup' {
2837
2818
  readonly type: 'Submit' | 'Unlock';
2838
2819
  }
2839
2820
 
2840
- /** @name ArgonPrimitivesNotebookSignedNotebookHeader (230) */
2821
+ /** @name ArgonPrimitivesNotebookSignedNotebookHeader (231) */
2841
2822
  interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
2842
2823
  readonly header: ArgonPrimitivesNotebookNotebookHeader;
2843
2824
  readonly signature: U8aFixed;
2844
2825
  }
2845
2826
 
2846
- /** @name ArgonPrimitivesNotebookNotebookHeader (231) */
2827
+ /** @name ArgonPrimitivesNotebookNotebookHeader (232) */
2847
2828
  interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
2848
2829
  readonly version: Compact<u16>;
2849
2830
  readonly notebookNumber: Compact<u32>;
@@ -2862,7 +2843,7 @@ declare module '@polkadot/types/lookup' {
2862
2843
  readonly domains: Vec<ITuple<[H256, AccountId32]>>;
2863
2844
  }
2864
2845
 
2865
- /** @name ArgonPrimitivesNotebookChainTransfer (234) */
2846
+ /** @name ArgonPrimitivesNotebookChainTransfer (235) */
2866
2847
  interface ArgonPrimitivesNotebookChainTransfer extends Enum {
2867
2848
  readonly isToMainchain: boolean;
2868
2849
  readonly asToMainchain: {
@@ -2876,13 +2857,13 @@ declare module '@polkadot/types/lookup' {
2876
2857
  readonly type: 'ToMainchain' | 'ToLocalchain';
2877
2858
  }
2878
2859
 
2879
- /** @name ArgonPrimitivesBalanceChangeAccountOrigin (237) */
2860
+ /** @name ArgonPrimitivesBalanceChangeAccountOrigin (238) */
2880
2861
  interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
2881
2862
  readonly notebookNumber: Compact<u32>;
2882
2863
  readonly accountUid: Compact<u32>;
2883
2864
  }
2884
2865
 
2885
- /** @name PalletLocalchainTransferCall (243) */
2866
+ /** @name PalletLocalchainTransferCall (244) */
2886
2867
  interface PalletLocalchainTransferCall extends Enum {
2887
2868
  readonly isSendToLocalchain: boolean;
2888
2869
  readonly asSendToLocalchain: {
@@ -2892,7 +2873,7 @@ declare module '@polkadot/types/lookup' {
2892
2873
  readonly type: 'SendToLocalchain';
2893
2874
  }
2894
2875
 
2895
- /** @name PalletBlockSealSpecCall (244) */
2876
+ /** @name PalletBlockSealSpecCall (245) */
2896
2877
  interface PalletBlockSealSpecCall extends Enum {
2897
2878
  readonly isConfigure: boolean;
2898
2879
  readonly asConfigure: {
@@ -2902,7 +2883,7 @@ declare module '@polkadot/types/lookup' {
2902
2883
  readonly type: 'Configure';
2903
2884
  }
2904
2885
 
2905
- /** @name PalletDomainsCall (245) */
2886
+ /** @name PalletDomainsCall (246) */
2906
2887
  interface PalletDomainsCall extends Enum {
2907
2888
  readonly isSetZoneRecord: boolean;
2908
2889
  readonly asSetZoneRecord: {
@@ -2912,7 +2893,7 @@ declare module '@polkadot/types/lookup' {
2912
2893
  readonly type: 'SetZoneRecord';
2913
2894
  }
2914
2895
 
2915
- /** @name PalletPriceIndexCall (246) */
2896
+ /** @name PalletPriceIndexCall (247) */
2916
2897
  interface PalletPriceIndexCall extends Enum {
2917
2898
  readonly isSubmit: boolean;
2918
2899
  readonly asSubmit: {
@@ -2926,7 +2907,7 @@ declare module '@polkadot/types/lookup' {
2926
2907
  readonly type: 'Submit' | 'SetOperator';
2927
2908
  }
2928
2909
 
2929
- /** @name PalletPriceIndexPriceIndex (247) */
2910
+ /** @name PalletPriceIndexPriceIndex (248) */
2930
2911
  interface PalletPriceIndexPriceIndex extends Struct {
2931
2912
  readonly btcUsdPrice: Compact<u128>;
2932
2913
  readonly argonotUsdPrice: u128;
@@ -2936,14 +2917,14 @@ declare module '@polkadot/types/lookup' {
2936
2917
  readonly tick: Compact<u64>;
2937
2918
  }
2938
2919
 
2939
- /** @name PalletPriceIndexEthereumPriceIndex (249) */
2920
+ /** @name PalletPriceIndexEthereumPriceIndex (250) */
2940
2921
  interface PalletPriceIndexEthereumPriceIndex extends Struct {
2941
2922
  readonly ethereumUsdPrice: u128;
2942
2923
  readonly ethereumGasPriceWei: Compact<u128>;
2943
2924
  readonly tick: Compact<u64>;
2944
2925
  }
2945
2926
 
2946
- /** @name PalletGrandpaCall (250) */
2927
+ /** @name PalletGrandpaCall (251) */
2947
2928
  interface PalletGrandpaCall extends Enum {
2948
2929
  readonly isReportEquivocation: boolean;
2949
2930
  readonly asReportEquivocation: {
@@ -2963,13 +2944,13 @@ declare module '@polkadot/types/lookup' {
2963
2944
  readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
2964
2945
  }
2965
2946
 
2966
- /** @name SpConsensusGrandpaEquivocationProof (251) */
2947
+ /** @name SpConsensusGrandpaEquivocationProof (252) */
2967
2948
  interface SpConsensusGrandpaEquivocationProof extends Struct {
2968
2949
  readonly setId: u64;
2969
2950
  readonly equivocation: SpConsensusGrandpaEquivocation;
2970
2951
  }
2971
2952
 
2972
- /** @name SpConsensusGrandpaEquivocation (252) */
2953
+ /** @name SpConsensusGrandpaEquivocation (253) */
2973
2954
  interface SpConsensusGrandpaEquivocation extends Enum {
2974
2955
  readonly isPrevote: boolean;
2975
2956
  readonly asPrevote: FinalityGrandpaEquivocationPrevote;
@@ -2978,7 +2959,7 @@ declare module '@polkadot/types/lookup' {
2978
2959
  readonly type: 'Prevote' | 'Precommit';
2979
2960
  }
2980
2961
 
2981
- /** @name FinalityGrandpaEquivocationPrevote (253) */
2962
+ /** @name FinalityGrandpaEquivocationPrevote (254) */
2982
2963
  interface FinalityGrandpaEquivocationPrevote extends Struct {
2983
2964
  readonly roundNumber: u64;
2984
2965
  readonly identity: SpConsensusGrandpaAppPublic;
@@ -2986,16 +2967,16 @@ declare module '@polkadot/types/lookup' {
2986
2967
  readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
2987
2968
  }
2988
2969
 
2989
- /** @name FinalityGrandpaPrevote (254) */
2970
+ /** @name FinalityGrandpaPrevote (255) */
2990
2971
  interface FinalityGrandpaPrevote extends Struct {
2991
2972
  readonly targetHash: H256;
2992
2973
  readonly targetNumber: u32;
2993
2974
  }
2994
2975
 
2995
- /** @name SpConsensusGrandpaAppSignature (255) */
2976
+ /** @name SpConsensusGrandpaAppSignature (256) */
2996
2977
  interface SpConsensusGrandpaAppSignature extends U8aFixed {}
2997
2978
 
2998
- /** @name FinalityGrandpaEquivocationPrecommit (257) */
2979
+ /** @name FinalityGrandpaEquivocationPrecommit (258) */
2999
2980
  interface FinalityGrandpaEquivocationPrecommit extends Struct {
3000
2981
  readonly roundNumber: u64;
3001
2982
  readonly identity: SpConsensusGrandpaAppPublic;
@@ -3003,16 +2984,16 @@ declare module '@polkadot/types/lookup' {
3003
2984
  readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
3004
2985
  }
3005
2986
 
3006
- /** @name FinalityGrandpaPrecommit (258) */
2987
+ /** @name FinalityGrandpaPrecommit (259) */
3007
2988
  interface FinalityGrandpaPrecommit extends Struct {
3008
2989
  readonly targetHash: H256;
3009
2990
  readonly targetNumber: u32;
3010
2991
  }
3011
2992
 
3012
- /** @name SpCoreVoid (260) */
2993
+ /** @name SpCoreVoid (261) */
3013
2994
  type SpCoreVoid = Null;
3014
2995
 
3015
- /** @name PalletBlockSealCall (261) */
2996
+ /** @name PalletBlockSealCall (262) */
3016
2997
  interface PalletBlockSealCall extends Enum {
3017
2998
  readonly isApply: boolean;
3018
2999
  readonly asApply: {
@@ -3021,7 +3002,7 @@ declare module '@polkadot/types/lookup' {
3021
3002
  readonly type: 'Apply';
3022
3003
  }
3023
3004
 
3024
- /** @name ArgonPrimitivesInherentsBlockSealInherent (262) */
3005
+ /** @name ArgonPrimitivesInherentsBlockSealInherent (263) */
3025
3006
  interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
3026
3007
  readonly isVote: boolean;
3027
3008
  readonly asVote: {
@@ -3036,14 +3017,14 @@ declare module '@polkadot/types/lookup' {
3036
3017
  readonly type: 'Vote' | 'Compute';
3037
3018
  }
3038
3019
 
3039
- /** @name ArgonPrimitivesBalanceChangeMerkleProof (263) */
3020
+ /** @name ArgonPrimitivesBalanceChangeMerkleProof (264) */
3040
3021
  interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
3041
3022
  readonly proof: Vec<H256>;
3042
3023
  readonly numberOfLeaves: Compact<u32>;
3043
3024
  readonly leafIndex: Compact<u32>;
3044
3025
  }
3045
3026
 
3046
- /** @name ArgonPrimitivesBlockVoteBlockVoteT (265) */
3027
+ /** @name ArgonPrimitivesBlockVoteBlockVoteT (266) */
3047
3028
  interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
3048
3029
  readonly accountId: AccountId32;
3049
3030
  readonly blockHash: H256;
@@ -3054,7 +3035,7 @@ declare module '@polkadot/types/lookup' {
3054
3035
  readonly tick: Compact<u64>;
3055
3036
  }
3056
3037
 
3057
- /** @name PalletBlockRewardsCall (266) */
3038
+ /** @name PalletBlockRewardsCall (267) */
3058
3039
  interface PalletBlockRewardsCall extends Enum {
3059
3040
  readonly isSetBlockRewardsPaused: boolean;
3060
3041
  readonly asSetBlockRewardsPaused: {
@@ -3067,10 +3048,10 @@ declare module '@polkadot/types/lookup' {
3067
3048
  readonly type: 'SetBlockRewardsPaused' | 'SetBlockVoterRewardsEnabled';
3068
3049
  }
3069
3050
 
3070
- /** @name PalletMintCall (267) */
3051
+ /** @name PalletMintCall (268) */
3071
3052
  type PalletMintCall = Null;
3072
3053
 
3073
- /** @name PalletBalancesCall (268) */
3054
+ /** @name PalletBalancesCall (269) */
3074
3055
  interface PalletBalancesCall extends Enum {
3075
3056
  readonly isTransferAllowDeath: boolean;
3076
3057
  readonly asTransferAllowDeath: {
@@ -3129,14 +3110,14 @@ declare module '@polkadot/types/lookup' {
3129
3110
  | 'Burn';
3130
3111
  }
3131
3112
 
3132
- /** @name PalletBalancesAdjustmentDirection (269) */
3113
+ /** @name PalletBalancesAdjustmentDirection (270) */
3133
3114
  interface PalletBalancesAdjustmentDirection extends Enum {
3134
3115
  readonly isIncrease: boolean;
3135
3116
  readonly isDecrease: boolean;
3136
3117
  readonly type: 'Increase' | 'Decrease';
3137
3118
  }
3138
3119
 
3139
- /** @name PalletTxPauseCall (271) */
3120
+ /** @name PalletTxPauseCall (272) */
3140
3121
  interface PalletTxPauseCall extends Enum {
3141
3122
  readonly isPause: boolean;
3142
3123
  readonly asPause: {
@@ -3149,7 +3130,7 @@ declare module '@polkadot/types/lookup' {
3149
3130
  readonly type: 'Pause' | 'Unpause';
3150
3131
  }
3151
3132
 
3152
- /** @name PalletUtilityCall (272) */
3133
+ /** @name PalletUtilityCall (273) */
3153
3134
  interface PalletUtilityCall extends Enum {
3154
3135
  readonly isBatch: boolean;
3155
3136
  readonly asBatch: {
@@ -3199,7 +3180,7 @@ declare module '@polkadot/types/lookup' {
3199
3180
  | 'DispatchAsFallible';
3200
3181
  }
3201
3182
 
3202
- /** @name PalletSudoCall (274) */
3183
+ /** @name PalletSudoCall (275) */
3203
3184
  interface PalletSudoCall extends Enum {
3204
3185
  readonly isSudo: boolean;
3205
3186
  readonly asSudo: {
@@ -3223,7 +3204,29 @@ declare module '@polkadot/types/lookup' {
3223
3204
  readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
3224
3205
  }
3225
3206
 
3226
- /** @name PalletTreasuryCall (275) */
3207
+ /** @name PalletBitcoinFissionsCall (276) */
3208
+ interface PalletBitcoinFissionsCall extends Enum {
3209
+ readonly isCreate: boolean;
3210
+ readonly asCreate: {
3211
+ readonly fissionId: Compact<u64>;
3212
+ readonly liquidId: Compact<u64>;
3213
+ readonly utxoId: Compact<u64>;
3214
+ readonly satoshis: Compact<u64>;
3215
+ readonly microgonsAtTargetPerBtc: Compact<u128>;
3216
+ } & Struct;
3217
+ readonly isRatchet: boolean;
3218
+ readonly asRatchet: {
3219
+ readonly fissionId: Compact<u64>;
3220
+ readonly microgonsAtTargetPerBtc: Compact<u128>;
3221
+ } & Struct;
3222
+ readonly isClose: boolean;
3223
+ readonly asClose: {
3224
+ readonly fissionId: Compact<u64>;
3225
+ } & Struct;
3226
+ readonly type: 'Create' | 'Ratchet' | 'Close';
3227
+ }
3228
+
3229
+ /** @name PalletTreasuryCall (277) */
3227
3230
  interface PalletTreasuryCall extends Enum {
3228
3231
  readonly isBuyBonds: boolean;
3229
3232
  readonly asBuyBonds: {
@@ -3257,7 +3260,7 @@ declare module '@polkadot/types/lookup' {
3257
3260
  | 'SetReservedBondSpace';
3258
3261
  }
3259
3262
 
3260
- /** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (277) */
3263
+ /** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (279) */
3261
3264
  interface ArgonPrimitivesVaultTreasuryBonusApprovalProof extends Struct {
3262
3265
  readonly vaultId: Compact<u32>;
3263
3266
  readonly beneficiary: AccountId32;
@@ -3268,7 +3271,7 @@ declare module '@polkadot/types/lookup' {
3268
3271
  readonly signature: SpRuntimeMultiSignature;
3269
3272
  }
3270
3273
 
3271
- /** @name PalletOperationalAccountsCall (278) */
3274
+ /** @name PalletOperationalAccountsCall (280) */
3272
3275
  interface PalletOperationalAccountsCall extends Enum {
3273
3276
  readonly isRegister: boolean;
3274
3277
  readonly asRegister: {
@@ -3303,14 +3306,14 @@ declare module '@polkadot/types/lookup' {
3303
3306
  | 'ClaimRewards';
3304
3307
  }
3305
3308
 
3306
- /** @name PalletOperationalAccountsRegistration (279) */
3309
+ /** @name PalletOperationalAccountsRegistration (281) */
3307
3310
  interface PalletOperationalAccountsRegistration extends Enum {
3308
3311
  readonly isV1: boolean;
3309
3312
  readonly asV1: PalletOperationalAccountsRegistrationV1;
3310
3313
  readonly type: 'V1';
3311
3314
  }
3312
3315
 
3313
- /** @name PalletOperationalAccountsRegistrationV1 (280) */
3316
+ /** @name PalletOperationalAccountsRegistrationV1 (282) */
3314
3317
  interface PalletOperationalAccountsRegistrationV1 extends Struct {
3315
3318
  readonly operationalAccount: AccountId32;
3316
3319
  readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
@@ -3322,21 +3325,21 @@ declare module '@polkadot/types/lookup' {
3322
3325
  readonly accessProof: Option<PalletOperationalAccountsUpstreamAccessProof>;
3323
3326
  }
3324
3327
 
3325
- /** @name PalletOperationalAccountsOpaqueEncryptionPubkey (281) */
3328
+ /** @name PalletOperationalAccountsOpaqueEncryptionPubkey (283) */
3326
3329
  interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {}
3327
3330
 
3328
- /** @name PalletOperationalAccountsAccountOwnershipProof (282) */
3331
+ /** @name PalletOperationalAccountsAccountOwnershipProof (284) */
3329
3332
  interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
3330
3333
  readonly signature: SpRuntimeMultiSignature;
3331
3334
  }
3332
3335
 
3333
- /** @name PalletOperationalAccountsUpstreamAccessProof (284) */
3336
+ /** @name PalletOperationalAccountsUpstreamAccessProof (286) */
3334
3337
  interface PalletOperationalAccountsUpstreamAccessProof extends Struct {
3335
3338
  readonly upstreamAccount: AccountId32;
3336
3339
  readonly signature: SpRuntimeMultiSignature;
3337
3340
  }
3338
3341
 
3339
- /** @name PalletOperationalAccountsOperationalProgressPatch (287) */
3342
+ /** @name PalletOperationalAccountsOperationalProgressPatch (289) */
3340
3343
  interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
3341
3344
  readonly uniswapArgonTransfersInAmount: Option<u128>;
3342
3345
  readonly accountBitcoinAmount: Option<u128>;
@@ -3346,7 +3349,7 @@ declare module '@polkadot/types/lookup' {
3346
3349
  readonly miningSeatCount: Option<u32>;
3347
3350
  }
3348
3351
 
3349
- /** @name PalletEthereumVerifierCall (289) */
3352
+ /** @name PalletEthereumVerifierCall (291) */
3350
3353
  interface PalletEthereumVerifierCall extends Enum {
3351
3354
  readonly isForceCheckpoint: boolean;
3352
3355
  readonly asForceCheckpoint: {
@@ -3374,7 +3377,7 @@ declare module '@polkadot/types/lookup' {
3374
3377
  | 'SetOperatingMode';
3375
3378
  }
3376
3379
 
3377
- /** @name PalletEthereumVerifierCheckpointUpdate (290) */
3380
+ /** @name PalletEthereumVerifierCheckpointUpdate (292) */
3378
3381
  interface PalletEthereumVerifierCheckpointUpdate extends Struct {
3379
3382
  readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
3380
3383
  readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
@@ -3383,7 +3386,7 @@ declare module '@polkadot/types/lookup' {
3383
3386
  readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
3384
3387
  }
3385
3388
 
3386
- /** @name SnowbridgeBeaconPrimitivesBeaconHeader (291) */
3389
+ /** @name SnowbridgeBeaconPrimitivesBeaconHeader (293) */
3387
3390
  interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
3388
3391
  readonly slot: u64;
3389
3392
  readonly proposerIndex: u64;
@@ -3392,22 +3395,22 @@ declare module '@polkadot/types/lookup' {
3392
3395
  readonly bodyRoot: H256;
3393
3396
  }
3394
3397
 
3395
- /** @name PalletEthereumVerifierSyncCommittee (292) */
3398
+ /** @name PalletEthereumVerifierSyncCommittee (294) */
3396
3399
  interface PalletEthereumVerifierSyncCommittee extends Struct {
3397
3400
  readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
3398
3401
  readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
3399
3402
  }
3400
3403
 
3401
- /** @name SnowbridgeBeaconPrimitivesPublicKey (294) */
3404
+ /** @name SnowbridgeBeaconPrimitivesPublicKey (296) */
3402
3405
  interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
3403
3406
 
3404
- /** @name PalletEthereumVerifierExecutionHeaderProof (298) */
3407
+ /** @name PalletEthereumVerifierExecutionHeaderProof (300) */
3405
3408
  interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
3406
3409
  readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
3407
3410
  readonly executionBranch: Vec<H256>;
3408
3411
  }
3409
3412
 
3410
- /** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (299) */
3413
+ /** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (301) */
3411
3414
  interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
3412
3415
  readonly isCapella: boolean;
3413
3416
  readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
@@ -3416,7 +3419,7 @@ declare module '@polkadot/types/lookup' {
3416
3419
  readonly type: 'Capella' | 'Deneb';
3417
3420
  }
3418
3421
 
3419
- /** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (300) */
3422
+ /** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (302) */
3420
3423
  interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
3421
3424
  readonly parentHash: H256;
3422
3425
  readonly feeRecipient: H160;
@@ -3435,7 +3438,7 @@ declare module '@polkadot/types/lookup' {
3435
3438
  readonly withdrawalsRoot: H256;
3436
3439
  }
3437
3440
 
3438
- /** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (301) */
3441
+ /** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (303) */
3439
3442
  interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
3440
3443
  readonly parentHash: H256;
3441
3444
  readonly feeRecipient: H160;
@@ -3456,7 +3459,7 @@ declare module '@polkadot/types/lookup' {
3456
3459
  readonly excessBlobGas: u64;
3457
3460
  }
3458
3461
 
3459
- /** @name PalletEthereumVerifierForkVersions (302) */
3462
+ /** @name PalletEthereumVerifierForkVersions (304) */
3460
3463
  interface PalletEthereumVerifierForkVersions extends Struct {
3461
3464
  readonly genesis: PalletEthereumVerifierFork;
3462
3465
  readonly altair: PalletEthereumVerifierFork;
@@ -3467,13 +3470,13 @@ declare module '@polkadot/types/lookup' {
3467
3470
  readonly fulu: PalletEthereumVerifierFork;
3468
3471
  }
3469
3472
 
3470
- /** @name PalletEthereumVerifierFork (303) */
3473
+ /** @name PalletEthereumVerifierFork (305) */
3471
3474
  interface PalletEthereumVerifierFork extends Struct {
3472
3475
  readonly version: U8aFixed;
3473
3476
  readonly epoch: Compact<u64>;
3474
3477
  }
3475
3478
 
3476
- /** @name PalletEthereumVerifierUpdate (304) */
3479
+ /** @name PalletEthereumVerifierUpdate (306) */
3477
3480
  interface PalletEthereumVerifierUpdate extends Struct {
3478
3481
  readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
3479
3482
  readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
@@ -3484,22 +3487,22 @@ declare module '@polkadot/types/lookup' {
3484
3487
  readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
3485
3488
  }
3486
3489
 
3487
- /** @name PalletEthereumVerifierSyncAggregate (305) */
3490
+ /** @name PalletEthereumVerifierSyncAggregate (307) */
3488
3491
  interface PalletEthereumVerifierSyncAggregate extends Struct {
3489
3492
  readonly syncCommitteeBits: Bytes;
3490
3493
  readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
3491
3494
  }
3492
3495
 
3493
- /** @name SnowbridgeBeaconPrimitivesSignature (307) */
3496
+ /** @name SnowbridgeBeaconPrimitivesSignature (309) */
3494
3497
  interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
3495
3498
 
3496
- /** @name PalletEthereumVerifierNextSyncCommitteeUpdate (310) */
3499
+ /** @name PalletEthereumVerifierNextSyncCommitteeUpdate (312) */
3497
3500
  interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
3498
3501
  readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
3499
3502
  readonly nextSyncCommitteeBranch: Vec<H256>;
3500
3503
  }
3501
3504
 
3502
- /** @name PalletCrosschainTransferCall (311) */
3505
+ /** @name PalletCrosschainTransferCall (313) */
3503
3506
  interface PalletCrosschainTransferCall extends Enum {
3504
3507
  readonly isSetChainConfig: boolean;
3505
3508
  readonly asSetChainConfig: {
@@ -3589,7 +3592,7 @@ declare module '@polkadot/types/lookup' {
3589
3592
  | 'CollateralizeTransfer';
3590
3593
  }
3591
3594
 
3592
- /** @name PalletCrosschainTransferChainConfig (312) */
3595
+ /** @name PalletCrosschainTransferChainConfig (314) */
3593
3596
  interface PalletCrosschainTransferChainConfig extends Enum {
3594
3597
  readonly isEvm: boolean;
3595
3598
  readonly asEvm: {
@@ -3601,7 +3604,7 @@ declare module '@polkadot/types/lookup' {
3601
3604
  readonly type: 'Evm';
3602
3605
  }
3603
3606
 
3604
- /** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (314) */
3607
+ /** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (316) */
3605
3608
  interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
3606
3609
  readonly activationGasCost: Compact<u128>;
3607
3610
  readonly signatureGasCost: Compact<u128>;
@@ -3609,56 +3612,56 @@ declare module '@polkadot/types/lookup' {
3609
3612
  readonly estimatedMicrogonsPerEth: u128;
3610
3613
  }
3611
3614
 
3612
- /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (317) */
3615
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (319) */
3613
3616
  interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
3614
3617
  readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
3615
3618
  readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
3616
3619
  }
3617
3620
 
3618
- /** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (318) */
3621
+ /** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (320) */
3619
3622
  interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
3620
3623
  readonly anchorBlockHash: H256;
3621
3624
  readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
3622
3625
  }
3623
3626
 
3624
- /** @name ArgonPrimitivesEthereumEthereumExecutionHeader (320) */
3627
+ /** @name ArgonPrimitivesEthereumEthereumExecutionHeader (322) */
3625
3628
  interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
3626
3629
  readonly rlp: Bytes;
3627
3630
  }
3628
3631
 
3629
- /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (324) */
3632
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (326) */
3630
3633
  interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
3631
3634
  readonly targetBlockNumber: Compact<u64>;
3632
3635
  readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
3633
3636
  readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
3634
3637
  }
3635
3638
 
3636
- /** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (325) */
3639
+ /** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (327) */
3637
3640
  interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
3638
3641
  readonly nodes: Vec<Bytes>;
3639
3642
  readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
3640
3643
  }
3641
3644
 
3642
- /** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (329) */
3645
+ /** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (331) */
3643
3646
  interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
3644
3647
  readonly transactionIndex: Compact<u64>;
3645
3648
  readonly nodeIndexes: Vec<u16>;
3646
3649
  }
3647
3650
 
3648
- /** @name ArgonPrimitivesEthereumEthereumReceiptLog (334) */
3651
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLog (336) */
3649
3652
  interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
3650
3653
  readonly transactionIndex: Compact<u64>;
3651
3654
  readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
3652
3655
  }
3653
3656
 
3654
- /** @name ArgonPrimitivesEthereumEthereumLog (335) */
3657
+ /** @name ArgonPrimitivesEthereumEthereumLog (337) */
3655
3658
  interface ArgonPrimitivesEthereumEthereumLog extends Struct {
3656
3659
  readonly address: H160;
3657
3660
  readonly topics: Vec<H256>;
3658
3661
  readonly data: Bytes;
3659
3662
  }
3660
3663
 
3661
- /** @name PalletBootstrapCall (340) */
3664
+ /** @name PalletBootstrapCall (342) */
3662
3665
  interface PalletBootstrapCall extends Enum {
3663
3666
  readonly isSetRecoveryPayload: boolean;
3664
3667
  readonly asSetRecoveryPayload: {
@@ -3674,12 +3677,12 @@ declare module '@polkadot/types/lookup' {
3674
3677
  readonly type: 'SetRecoveryPayload' | 'SetEndpoint';
3675
3678
  }
3676
3679
 
3677
- /** @name PalletBootstrapRecoveryProof (341) */
3680
+ /** @name PalletBootstrapRecoveryProof (343) */
3678
3681
  interface PalletBootstrapRecoveryProof extends Struct {
3679
3682
  readonly signature: U8aFixed;
3680
3683
  }
3681
3684
 
3682
- /** @name PalletMultisigError (343) */
3685
+ /** @name PalletMultisigError (345) */
3683
3686
  interface PalletMultisigError extends Enum {
3684
3687
  readonly isMinimumThreshold: boolean;
3685
3688
  readonly isAlreadyApproved: boolean;
@@ -3712,21 +3715,21 @@ declare module '@polkadot/types/lookup' {
3712
3715
  | 'AlreadyStored';
3713
3716
  }
3714
3717
 
3715
- /** @name PalletProxyProxyDefinition (346) */
3718
+ /** @name PalletProxyProxyDefinition (348) */
3716
3719
  interface PalletProxyProxyDefinition extends Struct {
3717
3720
  readonly delegate: AccountId32;
3718
3721
  readonly proxyType: ArgonRuntimeProxyType;
3719
3722
  readonly delay: u32;
3720
3723
  }
3721
3724
 
3722
- /** @name PalletProxyAnnouncement (350) */
3725
+ /** @name PalletProxyAnnouncement (352) */
3723
3726
  interface PalletProxyAnnouncement extends Struct {
3724
3727
  readonly real: AccountId32;
3725
3728
  readonly callHash: H256;
3726
3729
  readonly height: u32;
3727
3730
  }
3728
3731
 
3729
- /** @name PalletProxyError (352) */
3732
+ /** @name PalletProxyError (354) */
3730
3733
  interface PalletProxyError extends Enum {
3731
3734
  readonly isTooMany: boolean;
3732
3735
  readonly isNotFound: boolean;
@@ -3747,16 +3750,16 @@ declare module '@polkadot/types/lookup' {
3747
3750
  | 'NoSelfProxy';
3748
3751
  }
3749
3752
 
3750
- /** @name ArgonPrimitivesTickTicker (353) */
3753
+ /** @name ArgonPrimitivesTickTicker (355) */
3751
3754
  interface ArgonPrimitivesTickTicker extends Struct {
3752
3755
  readonly tickDurationMillis: Compact<u64>;
3753
3756
  readonly channelHoldExpirationTicks: Compact<u64>;
3754
3757
  }
3755
3758
 
3756
- /** @name PalletTicksError (355) */
3759
+ /** @name PalletTicksError (357) */
3757
3760
  type PalletTicksError = Null;
3758
3761
 
3759
- /** @name PalletMiningSlotMinerNonceScoring (358) */
3762
+ /** @name PalletMiningSlotMinerNonceScoring (360) */
3760
3763
  interface PalletMiningSlotMinerNonceScoring extends Struct {
3761
3764
  readonly nonce: U256;
3762
3765
  readonly lastWinBlock: Option<u32>;
@@ -3764,7 +3767,7 @@ declare module '@polkadot/types/lookup' {
3764
3767
  readonly frameStartBlocksWonSurplus: i16;
3765
3768
  }
3766
3769
 
3767
- /** @name ArgonPrimitivesBlockSealMiningBidStats (370) */
3770
+ /** @name ArgonPrimitivesBlockSealMiningBidStats (372) */
3768
3771
  interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
3769
3772
  readonly bidsCount: u32;
3770
3773
  readonly bidAmountMin: u128;
@@ -3772,14 +3775,14 @@ declare module '@polkadot/types/lookup' {
3772
3775
  readonly bidAmountSum: u128;
3773
3776
  }
3774
3777
 
3775
- /** @name ArgonPrimitivesBlockSealMiningSlotConfig (374) */
3778
+ /** @name ArgonPrimitivesBlockSealMiningSlotConfig (376) */
3776
3779
  interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
3777
3780
  readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
3778
3781
  readonly ticksBetweenSlots: Compact<u64>;
3779
3782
  readonly slotBiddingStartAfterTicks: Compact<u64>;
3780
3783
  }
3781
3784
 
3782
- /** @name PalletMiningSlotError (384) */
3785
+ /** @name PalletMiningSlotError (386) */
3783
3786
  interface PalletMiningSlotError extends Enum {
3784
3787
  readonly isSlotNotTakingBids: boolean;
3785
3788
  readonly isTooManyBlockRegistrants: boolean;
@@ -3806,16 +3809,7 @@ declare module '@polkadot/types/lookup' {
3806
3809
  | 'UnrecoverableHold';
3807
3810
  }
3808
3811
 
3809
- /** @name ArgonPrimitivesBitcoinUtxoValue (385) */
3810
- interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
3811
- readonly utxoId: u64;
3812
- readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
3813
- readonly satoshis: Compact<u64>;
3814
- readonly submittedAtHeight: Compact<u64>;
3815
- readonly watchForSpentUntilHeight: Compact<u64>;
3816
- }
3817
-
3818
- /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (386) */
3812
+ /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (387) */
3819
3813
  interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
3820
3814
  readonly isP2wsh: boolean;
3821
3815
  readonly asP2wsh: {
@@ -3824,7 +3818,14 @@ declare module '@polkadot/types/lookup' {
3824
3818
  readonly type: 'P2wsh';
3825
3819
  }
3826
3820
 
3827
- /** @name ArgonPrimitivesBitcoinBitcoinNetwork (395) */
3821
+ /** @name ArgonPrimitivesBitcoinUtxoAddress (388) */
3822
+ interface ArgonPrimitivesBitcoinUtxoAddress extends Struct {
3823
+ readonly utxoId: u64;
3824
+ readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
3825
+ readonly submittedAtHeight: Compact<u64>;
3826
+ }
3827
+
3828
+ /** @name ArgonPrimitivesBitcoinBitcoinNetwork (392) */
3828
3829
  interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
3829
3830
  readonly isBitcoin: boolean;
3830
3831
  readonly isTestnet: boolean;
@@ -3833,7 +3834,7 @@ declare module '@polkadot/types/lookup' {
3833
3834
  readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
3834
3835
  }
3835
3836
 
3836
- /** @name PalletBitcoinUtxosError (396) */
3837
+ /** @name PalletBitcoinUtxosError (393) */
3837
3838
  interface PalletBitcoinUtxosError extends Enum {
3838
3839
  readonly isNoPermissions: boolean;
3839
3840
  readonly isNoBitcoinConfirmedBlock: boolean;
@@ -3847,9 +3848,7 @@ declare module '@polkadot/types/lookup' {
3847
3848
  readonly isMaxUtxosExceeded: boolean;
3848
3849
  readonly isInvalidBitcoinScript: boolean;
3849
3850
  readonly isDuplicateUtxoId: boolean;
3850
- readonly isMaxCandidateUtxosExceeded: boolean;
3851
- readonly isUtxoNotCandidate: boolean;
3852
- readonly isLockAlreadyFunded: boolean;
3851
+ readonly isMaxUtxosPerLockExceeded: boolean;
3853
3852
  readonly type:
3854
3853
  | 'NoPermissions'
3855
3854
  | 'NoBitcoinConfirmedBlock'
@@ -3863,12 +3862,10 @@ declare module '@polkadot/types/lookup' {
3863
3862
  | 'MaxUtxosExceeded'
3864
3863
  | 'InvalidBitcoinScript'
3865
3864
  | 'DuplicateUtxoId'
3866
- | 'MaxCandidateUtxosExceeded'
3867
- | 'UtxoNotCandidate'
3868
- | 'LockAlreadyFunded';
3865
+ | 'MaxUtxosPerLockExceeded';
3869
3866
  }
3870
3867
 
3871
- /** @name ArgonPrimitivesVault (397) */
3868
+ /** @name ArgonPrimitivesVault (394) */
3872
3869
  interface ArgonPrimitivesVault extends Struct {
3873
3870
  readonly operatorAccountId: AccountId32;
3874
3871
  readonly delegateAccountId: Option<AccountId32>;
@@ -3879,8 +3876,8 @@ declare module '@polkadot/types/lookup' {
3879
3876
  readonly reservedSecuritizationSpace: Compact<u128>;
3880
3877
  readonly securitizationPendingActivation: Compact<u128>;
3881
3878
  readonly lockedSatoshis: Compact<u64>;
3882
- readonly securitizedSatoshis: Compact<u64>;
3883
- readonly flexibleSecuritizedSatoshis: Compact<u64>;
3879
+ readonly ratioAdjustedSatoshis: Compact<u64>;
3880
+ readonly flexibleRatioAdjustedSatoshis: Compact<u64>;
3884
3881
  readonly securitizationReleaseSchedule: BTreeMap<u64, u128>;
3885
3882
  readonly securitizationRatio: Compact<u128>;
3886
3883
  readonly isClosed: bool;
@@ -3890,13 +3887,13 @@ declare module '@polkadot/types/lookup' {
3890
3887
  readonly operationalMinimumReleaseTick: Option<u64>;
3891
3888
  }
3892
3889
 
3893
- /** @name ArgonPrimitivesVaultVaultArgonotCommitment (404) */
3890
+ /** @name ArgonPrimitivesVaultVaultArgonotCommitment (401) */
3894
3891
  interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
3895
3892
  readonly committedMicronots: Compact<u128>;
3896
3893
  readonly encumberedMicronots: Compact<u128>;
3897
3894
  }
3898
3895
 
3899
- /** @name ArgonPrimitivesBitcoinBitcoinXPub (406) */
3896
+ /** @name ArgonPrimitivesBitcoinBitcoinXPub (403) */
3900
3897
  interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
3901
3898
  readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
3902
3899
  readonly depth: Compact<u8>;
@@ -3906,21 +3903,21 @@ declare module '@polkadot/types/lookup' {
3906
3903
  readonly network: ArgonPrimitivesBitcoinNetworkKind;
3907
3904
  }
3908
3905
 
3909
- /** @name ArgonPrimitivesBitcoinNetworkKind (408) */
3906
+ /** @name ArgonPrimitivesBitcoinNetworkKind (405) */
3910
3907
  interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
3911
3908
  readonly isMain: boolean;
3912
3909
  readonly isTest: boolean;
3913
3910
  readonly type: 'Main' | 'Test';
3914
3911
  }
3915
3912
 
3916
- /** @name PalletVaultsVaultFrameRevenue (417) */
3913
+ /** @name PalletVaultsVaultFrameRevenue (414) */
3917
3914
  interface PalletVaultsVaultFrameRevenue extends Struct {
3918
3915
  readonly frameId: Compact<u64>;
3919
3916
  readonly bitcoinLockFeeRevenue: Compact<u128>;
3920
3917
  readonly bitcoinLockFeeCouponValueUsed: Compact<u128>;
3921
3918
  readonly bitcoinLocksCreated: Compact<u32>;
3922
- readonly bitcoinLocksNewLiquidityPromised: Compact<u128>;
3923
- readonly bitcoinLocksReleasedLiquidity: Compact<u128>;
3919
+ readonly bitcoinLocksNewSecuritization: Compact<u128>;
3920
+ readonly bitcoinLocksReleasedSecuritization: Compact<u128>;
3924
3921
  readonly bitcoinLocksAddedSatoshis: Compact<u64>;
3925
3922
  readonly bitcoinLocksReleasedSatoshis: Compact<u64>;
3926
3923
  readonly securitizationActivated: Compact<u128>;
@@ -3933,7 +3930,7 @@ declare module '@polkadot/types/lookup' {
3933
3930
  readonly uncollectedRevenue: Compact<u128>;
3934
3931
  }
3935
3932
 
3936
- /** @name PalletVaultsError (419) */
3933
+ /** @name PalletVaultsError (416) */
3937
3934
  interface PalletVaultsError extends Enum {
3938
3935
  readonly isNoMoreVaultIds: boolean;
3939
3936
  readonly isInsufficientFunds: boolean;
@@ -4002,17 +3999,19 @@ declare module '@polkadot/types/lookup' {
4002
3999
  | 'CommittedArgonotsBelowEncumberedBacking';
4003
4000
  }
4004
4001
 
4005
- /** @name PalletBitcoinLocksLockedBitcoin (420) */
4002
+ /** @name PalletBitcoinLocksLockedBitcoin (417) */
4006
4003
  interface PalletBitcoinLocksLockedBitcoin extends Struct {
4007
4004
  readonly vaultId: Compact<u32>;
4008
- readonly liquidityPromised: Compact<u128>;
4009
- readonly lockedTargetPrice: Compact<u128>;
4005
+ readonly securitizedSatoshis: Compact<u64>;
4006
+ readonly microgonsAtTargetPerBtc: Compact<u128>;
4007
+ readonly securitizationCoverageMicrogons: Compact<u128>;
4008
+ readonly securitizationTick: Compact<u64>;
4009
+ readonly fundedSatoshis: Compact<u64>;
4010
+ readonly fissionedSatoshis: Compact<u64>;
4010
4011
  readonly ownerAccount: AccountId32;
4011
4012
  readonly securitizationRatio: u128;
4012
4013
  readonly securityFees: Compact<u128>;
4013
4014
  readonly couponPaidFees: Compact<u128>;
4014
- readonly satoshis: Compact<u64>;
4015
- readonly utxoSatoshis: Option<u64>;
4016
4015
  readonly vaultPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
4017
4016
  readonly vaultClaimPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
4018
4017
  readonly vaultXpubSources: ITuple<[U8aFixed, u32, u32]>;
@@ -4020,24 +4019,24 @@ declare module '@polkadot/types/lookup' {
4020
4019
  readonly vaultClaimHeight: Compact<u64>;
4021
4020
  readonly openClaimHeight: Compact<u64>;
4022
4021
  readonly createdAtHeight: Compact<u64>;
4022
+ readonly fundingExpirationHeight: Compact<u64>;
4023
4023
  readonly utxoScriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
4024
- readonly isFunded: bool;
4025
4024
  readonly isFlexible: bool;
4026
4025
  readonly fundHoldExtensions: BTreeMap<u64, u128>;
4027
4026
  readonly createdAtArgonBlock: Compact<u32>;
4028
4027
  }
4029
4028
 
4030
- /** @name PalletBitcoinLocksLockReleaseRequest (424) */
4029
+ /** @name PalletBitcoinLocksLockReleaseRequest (421) */
4031
4030
  interface PalletBitcoinLocksLockReleaseRequest extends Struct {
4032
4031
  readonly utxoId: Compact<u64>;
4033
4032
  readonly vaultId: Compact<u32>;
4034
4033
  readonly bitcoinNetworkFee: Compact<u64>;
4035
4034
  readonly cosignDueFrame: Compact<u64>;
4036
4035
  readonly toScriptPubkey: Bytes;
4037
- readonly redemptionAmount: Compact<u128>;
4036
+ readonly securitizationAtRisk: Compact<u128>;
4038
4037
  }
4039
4038
 
4040
- /** @name PalletBitcoinLocksOrphanedUtxo (426) */
4039
+ /** @name PalletBitcoinLocksOrphanedUtxo (423) */
4041
4040
  interface PalletBitcoinLocksOrphanedUtxo extends Struct {
4042
4041
  readonly utxoId: Compact<u64>;
4043
4042
  readonly vaultId: Compact<u32>;
@@ -4046,14 +4045,14 @@ declare module '@polkadot/types/lookup' {
4046
4045
  readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
4047
4046
  }
4048
4047
 
4049
- /** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (428) */
4048
+ /** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (425) */
4050
4049
  interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
4051
4050
  readonly bitcoinNetworkFee: u64;
4052
4051
  readonly toScriptPubkey: Bytes;
4053
4052
  readonly createdAtArgonBlockNumber: u32;
4054
4053
  }
4055
4054
 
4056
- /** @name PalletBitcoinLocksError (435) */
4055
+ /** @name PalletBitcoinLocksError (432) */
4057
4056
  interface PalletBitcoinLocksError extends Enum {
4058
4057
  readonly isInsufficientFunds: boolean;
4059
4058
  readonly isInsufficientVaultFunds: boolean;
@@ -4068,10 +4067,13 @@ declare module '@polkadot/types/lookup' {
4068
4067
  readonly isBitcoinSignatureUnableToBeDecoded: boolean;
4069
4068
  readonly isBitcoinPubkeyUnableToBeDecoded: boolean;
4070
4069
  readonly isBitcoinInvalidCosignature: boolean;
4071
- readonly isInsufficientSatoshisLocked: boolean;
4072
4070
  readonly isNoBitcoinPricesAvailable: boolean;
4073
4071
  readonly isInvalidBitcoinScript: boolean;
4074
4072
  readonly isNoPermissions: boolean;
4073
+ readonly isLockHasActiveFissions: boolean;
4074
+ readonly isInsufficientSatoshisForFissions: boolean;
4075
+ readonly isFissionStateMismatch: boolean;
4076
+ readonly isInsufficientSecuritizationForFissions: boolean;
4075
4077
  readonly isHoldUnexpectedlyModified: boolean;
4076
4078
  readonly isUnrecoverableHold: boolean;
4077
4079
  readonly isVaultNotFound: boolean;
@@ -4082,15 +4084,15 @@ declare module '@polkadot/types/lookup' {
4082
4084
  readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
4083
4085
  readonly isVaultNotYetActive: boolean;
4084
4086
  readonly isExpirationAtBlockOverflow: boolean;
4085
- readonly isNoRatchetingAvailable: boolean;
4087
+ readonly isNoResecuritizationChange: boolean;
4086
4088
  readonly isLockInProcessOfRelease: boolean;
4087
4089
  readonly isLockPendingFunding: boolean;
4088
4090
  readonly isOverflowError: boolean;
4089
- readonly isIneligibleMicrogonRateRequested: boolean;
4091
+ readonly isIneligibleMicrogonsAtTargetPerBtcRequested: boolean;
4092
+ readonly isMicrogonsAtTargetPerBtcTickOlderThanCurrent: boolean;
4090
4093
  readonly isFeeCouponExpired: boolean;
4091
4094
  readonly isInvalidFeeCouponSignature: boolean;
4092
4095
  readonly isFeeCouponAlreadyUsed: boolean;
4093
- readonly isFeeCouponOnlyForInitialization: boolean;
4094
4096
  readonly isOrphanedUtxoFundingConflict: boolean;
4095
4097
  readonly isOrphanedUtxoReleaseRequested: boolean;
4096
4098
  readonly isFundingUtxoCannotBeReleased: boolean;
@@ -4109,10 +4111,13 @@ declare module '@polkadot/types/lookup' {
4109
4111
  | 'BitcoinSignatureUnableToBeDecoded'
4110
4112
  | 'BitcoinPubkeyUnableToBeDecoded'
4111
4113
  | 'BitcoinInvalidCosignature'
4112
- | 'InsufficientSatoshisLocked'
4113
4114
  | 'NoBitcoinPricesAvailable'
4114
4115
  | 'InvalidBitcoinScript'
4115
4116
  | 'NoPermissions'
4117
+ | 'LockHasActiveFissions'
4118
+ | 'InsufficientSatoshisForFissions'
4119
+ | 'FissionStateMismatch'
4120
+ | 'InsufficientSecuritizationForFissions'
4116
4121
  | 'HoldUnexpectedlyModified'
4117
4122
  | 'UnrecoverableHold'
4118
4123
  | 'VaultNotFound'
@@ -4122,22 +4127,22 @@ declare module '@polkadot/types/lookup' {
4122
4127
  | 'UnableToGenerateVaultBitcoinPubkey'
4123
4128
  | 'VaultNotYetActive'
4124
4129
  | 'ExpirationAtBlockOverflow'
4125
- | 'NoRatchetingAvailable'
4130
+ | 'NoResecuritizationChange'
4126
4131
  | 'LockInProcessOfRelease'
4127
4132
  | 'LockPendingFunding'
4128
4133
  | 'OverflowError'
4129
- | 'IneligibleMicrogonRateRequested'
4134
+ | 'IneligibleMicrogonsAtTargetPerBtcRequested'
4135
+ | 'MicrogonsAtTargetPerBtcTickOlderThanCurrent'
4130
4136
  | 'FeeCouponExpired'
4131
4137
  | 'InvalidFeeCouponSignature'
4132
4138
  | 'FeeCouponAlreadyUsed'
4133
- | 'FeeCouponOnlyForInitialization'
4134
4139
  | 'OrphanedUtxoFundingConflict'
4135
4140
  | 'OrphanedUtxoReleaseRequested'
4136
4141
  | 'FundingUtxoCannotBeReleased'
4137
4142
  | 'MaxOrphanedUtxoReleaseRequestsExceeded';
4138
4143
  }
4139
4144
 
4140
- /** @name ArgonPrimitivesVaultVaultError (436) */
4145
+ /** @name ArgonPrimitivesVaultVaultError (433) */
4141
4146
  interface ArgonPrimitivesVaultVaultError extends Enum {
4142
4147
  readonly isVaultClosed: boolean;
4143
4148
  readonly isAccountWouldBeBelowMinimum: boolean;
@@ -4168,7 +4173,7 @@ declare module '@polkadot/types/lookup' {
4168
4173
  | 'CommittedArgonotsBelowEncumberedBacking';
4169
4174
  }
4170
4175
 
4171
- /** @name PalletNotariesError (448) */
4176
+ /** @name PalletNotariesError (445) */
4172
4177
  interface PalletNotariesError extends Enum {
4173
4178
  readonly isProposalNotFound: boolean;
4174
4179
  readonly isMaxNotariesExceeded: boolean;
@@ -4191,7 +4196,7 @@ declare module '@polkadot/types/lookup' {
4191
4196
  | 'InvalidNotary';
4192
4197
  }
4193
4198
 
4194
- /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (452) */
4199
+ /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (449) */
4195
4200
  interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
4196
4201
  readonly notebookNumber: Compact<u32>;
4197
4202
  readonly tick: Compact<u64>;
@@ -4200,7 +4205,7 @@ declare module '@polkadot/types/lookup' {
4200
4205
  readonly parentSecret: Option<H256>;
4201
4206
  }
4202
4207
 
4203
- /** @name PalletNotebookError (455) */
4208
+ /** @name PalletNotebookError (452) */
4204
4209
  interface PalletNotebookError extends Enum {
4205
4210
  readonly isDuplicateNotebookNumber: boolean;
4206
4211
  readonly isMissingNotebookNumber: boolean;
@@ -4235,7 +4240,7 @@ declare module '@polkadot/types/lookup' {
4235
4240
  | 'InvalidNotebookSubmissionTick';
4236
4241
  }
4237
4242
 
4238
- /** @name PalletLocalchainTransferQueuedTransferOut (456) */
4243
+ /** @name PalletLocalchainTransferQueuedTransferOut (453) */
4239
4244
  interface PalletLocalchainTransferQueuedTransferOut extends Struct {
4240
4245
  readonly accountId: AccountId32;
4241
4246
  readonly amount: u128;
@@ -4243,10 +4248,10 @@ declare module '@polkadot/types/lookup' {
4243
4248
  readonly notaryId: u32;
4244
4249
  }
4245
4250
 
4246
- /** @name FrameSupportPalletId (458) */
4251
+ /** @name FrameSupportPalletId (455) */
4247
4252
  interface FrameSupportPalletId extends U8aFixed {}
4248
4253
 
4249
- /** @name PalletLocalchainTransferError (459) */
4254
+ /** @name PalletLocalchainTransferError (456) */
4250
4255
  interface PalletLocalchainTransferError extends Enum {
4251
4256
  readonly isMaxBlockTransfersExceeded: boolean;
4252
4257
  readonly isInsufficientFunds: boolean;
@@ -4267,7 +4272,7 @@ declare module '@polkadot/types/lookup' {
4267
4272
  | 'NoAvailableTransferId';
4268
4273
  }
4269
4274
 
4270
- /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (463) */
4275
+ /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (460) */
4271
4276
  interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
4272
4277
  readonly notaryId: Compact<u32>;
4273
4278
  readonly notebookNumber: Compact<u32>;
@@ -4276,13 +4281,13 @@ declare module '@polkadot/types/lookup' {
4276
4281
  readonly blockVotingPower: Compact<u128>;
4277
4282
  }
4278
4283
 
4279
- /** @name PalletBlockSealSpecError (468) */
4284
+ /** @name PalletBlockSealSpecError (465) */
4280
4285
  interface PalletBlockSealSpecError extends Enum {
4281
4286
  readonly isMaxNotebooksAtTickExceeded: boolean;
4282
4287
  readonly type: 'MaxNotebooksAtTickExceeded';
4283
4288
  }
4284
4289
 
4285
- /** @name PalletDomainsError (470) */
4290
+ /** @name PalletDomainsError (467) */
4286
4291
  interface PalletDomainsError extends Enum {
4287
4292
  readonly isDomainNotRegistered: boolean;
4288
4293
  readonly isNotDomainOwner: boolean;
@@ -4297,28 +4302,28 @@ declare module '@polkadot/types/lookup' {
4297
4302
  | 'AccountDecodingError';
4298
4303
  }
4299
4304
 
4300
- /** @name PalletPriceIndexEthereumPriceFrameAccumulator (472) */
4305
+ /** @name PalletPriceIndexEthereumPriceFrameAccumulator (469) */
4301
4306
  interface PalletPriceIndexEthereumPriceFrameAccumulator extends Struct {
4302
4307
  readonly totalUsdPrice: u128;
4303
4308
  readonly totalWeiPerGas: Compact<u128>;
4304
4309
  readonly sampleCount: Compact<u32>;
4305
4310
  }
4306
4311
 
4307
- /** @name PalletPriceIndexCpiMeasurementBucket (477) */
4312
+ /** @name PalletPriceIndexCpiMeasurementBucket (474) */
4308
4313
  interface PalletPriceIndexCpiMeasurementBucket extends Struct {
4309
4314
  readonly tickRange: ITuple<[u64, u64]>;
4310
4315
  readonly totalCpi: i128;
4311
4316
  readonly measurementsCount: u32;
4312
4317
  }
4313
4318
 
4314
- /** @name PalletPriceIndexArgonotAverageFrameAccumulator (481) */
4319
+ /** @name PalletPriceIndexArgonotAverageFrameAccumulator (478) */
4315
4320
  interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
4316
4321
  readonly frameId: Compact<u64>;
4317
4322
  readonly totalMicrogonsPerArgonot: Compact<u128>;
4318
4323
  readonly sampleCount: Compact<u32>;
4319
4324
  }
4320
4325
 
4321
- /** @name PalletPriceIndexError (482) */
4326
+ /** @name PalletPriceIndexError (479) */
4322
4327
  interface PalletPriceIndexError extends Enum {
4323
4328
  readonly isNotAuthorizedOperator: boolean;
4324
4329
  readonly isMissingValue: boolean;
@@ -4333,7 +4338,7 @@ declare module '@polkadot/types/lookup' {
4333
4338
  | 'InvalidEthereumPrices';
4334
4339
  }
4335
4340
 
4336
- /** @name PalletGrandpaStoredState (483) */
4341
+ /** @name PalletGrandpaStoredState (480) */
4337
4342
  interface PalletGrandpaStoredState extends Enum {
4338
4343
  readonly isLive: boolean;
4339
4344
  readonly isPendingPause: boolean;
@@ -4350,7 +4355,7 @@ declare module '@polkadot/types/lookup' {
4350
4355
  readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
4351
4356
  }
4352
4357
 
4353
- /** @name PalletGrandpaStoredPendingChange (484) */
4358
+ /** @name PalletGrandpaStoredPendingChange (481) */
4354
4359
  interface PalletGrandpaStoredPendingChange extends Struct {
4355
4360
  readonly scheduledAt: u32;
4356
4361
  readonly delay: u32;
@@ -4358,7 +4363,7 @@ declare module '@polkadot/types/lookup' {
4358
4363
  readonly forced: Option<u32>;
4359
4364
  }
4360
4365
 
4361
- /** @name PalletGrandpaError (486) */
4366
+ /** @name PalletGrandpaError (483) */
4362
4367
  interface PalletGrandpaError extends Enum {
4363
4368
  readonly isPauseFailed: boolean;
4364
4369
  readonly isResumeFailed: boolean;
@@ -4377,14 +4382,14 @@ declare module '@polkadot/types/lookup' {
4377
4382
  | 'DuplicateOffenceReport';
4378
4383
  }
4379
4384
 
4380
- /** @name ArgonPrimitivesProvidersBlockSealerInfo (487) */
4385
+ /** @name ArgonPrimitivesProvidersBlockSealerInfo (484) */
4381
4386
  interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
4382
4387
  readonly blockAuthorAccountId: AccountId32;
4383
4388
  readonly blockVoteRewardsAccount: Option<AccountId32>;
4384
4389
  readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
4385
4390
  }
4386
4391
 
4387
- /** @name PalletBlockSealError (489) */
4392
+ /** @name PalletBlockSealError (486) */
4388
4393
  interface PalletBlockSealError extends Enum {
4389
4394
  readonly isInvalidVoteSealStrength: boolean;
4390
4395
  readonly isInvalidSubmitter: boolean;
@@ -4431,45 +4436,46 @@ declare module '@polkadot/types/lookup' {
4431
4436
  | 'DuplicateVoteBlockAtTick';
4432
4437
  }
4433
4438
 
4434
- /** @name PalletBlockRewardsError (493) */
4439
+ /** @name PalletBlockRewardsError (490) */
4435
4440
  type PalletBlockRewardsError = Null;
4436
4441
 
4437
- /** @name PalletMintPendingMintUtxo (494) */
4442
+ /** @name PalletMintPendingMintUtxo (491) */
4438
4443
  interface PalletMintPendingMintUtxo extends Struct {
4444
+ readonly fissionId: Compact<u64>;
4439
4445
  readonly utxoId: Compact<u64>;
4440
4446
  readonly accountId: AccountId32;
4441
4447
  readonly remainingAmount: Compact<u128>;
4442
4448
  readonly maxAmountPerFrame: Compact<u128>;
4443
4449
  }
4444
4450
 
4445
- /** @name PalletMintMintQueueCursor (496) */
4451
+ /** @name PalletMintMintQueueCursor (493) */
4446
4452
  interface PalletMintMintQueueCursor extends Struct {
4447
4453
  readonly payoutStartIndex: Compact<u64>;
4448
4454
  readonly payoutCursorIndex: Compact<u64>;
4449
4455
  readonly payoutCursorFrameId: Option<u64>;
4450
4456
  }
4451
4457
 
4452
- /** @name PalletMintMintAction (499) */
4458
+ /** @name PalletMintMintAction (496) */
4453
4459
  interface PalletMintMintAction extends Struct {
4454
4460
  readonly argonBurned: u128;
4455
4461
  readonly argonMinted: u128;
4456
4462
  readonly bitcoinMinted: u128;
4457
4463
  }
4458
4464
 
4459
- /** @name PalletMintError (501) */
4465
+ /** @name PalletMintError (498) */
4460
4466
  interface PalletMintError extends Enum {
4461
4467
  readonly isTooManyPendingMints: boolean;
4462
4468
  readonly type: 'TooManyPendingMints';
4463
4469
  }
4464
4470
 
4465
- /** @name PalletBalancesBalanceLock (503) */
4471
+ /** @name PalletBalancesBalanceLock (500) */
4466
4472
  interface PalletBalancesBalanceLock extends Struct {
4467
4473
  readonly id: U8aFixed;
4468
4474
  readonly amount: u128;
4469
4475
  readonly reasons: PalletBalancesReasons;
4470
4476
  }
4471
4477
 
4472
- /** @name PalletBalancesReasons (504) */
4478
+ /** @name PalletBalancesReasons (501) */
4473
4479
  interface PalletBalancesReasons extends Enum {
4474
4480
  readonly isFee: boolean;
4475
4481
  readonly isMisc: boolean;
@@ -4477,38 +4483,38 @@ declare module '@polkadot/types/lookup' {
4477
4483
  readonly type: 'Fee' | 'Misc' | 'All';
4478
4484
  }
4479
4485
 
4480
- /** @name PalletBalancesReserveData (507) */
4486
+ /** @name PalletBalancesReserveData (504) */
4481
4487
  interface PalletBalancesReserveData extends Struct {
4482
4488
  readonly id: U8aFixed;
4483
4489
  readonly amount: u128;
4484
4490
  }
4485
4491
 
4486
- /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (510) */
4492
+ /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (507) */
4487
4493
  interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
4488
4494
  readonly id: ArgonRuntimeRuntimeHoldReason;
4489
4495
  readonly amount: u128;
4490
4496
  }
4491
4497
 
4492
- /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (513) */
4498
+ /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (510) */
4493
4499
  interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
4494
4500
  readonly id: ArgonRuntimeRuntimeFreezeReason;
4495
4501
  readonly amount: u128;
4496
4502
  }
4497
4503
 
4498
- /** @name ArgonRuntimeRuntimeFreezeReason (514) */
4504
+ /** @name ArgonRuntimeRuntimeFreezeReason (511) */
4499
4505
  interface ArgonRuntimeRuntimeFreezeReason extends Enum {
4500
4506
  readonly isBlockRewards: boolean;
4501
4507
  readonly asBlockRewards: PalletBlockRewardsFreezeReason;
4502
4508
  readonly type: 'BlockRewards';
4503
4509
  }
4504
4510
 
4505
- /** @name PalletBlockRewardsFreezeReason (515) */
4511
+ /** @name PalletBlockRewardsFreezeReason (512) */
4506
4512
  interface PalletBlockRewardsFreezeReason extends Enum {
4507
4513
  readonly isMaturationPeriod: boolean;
4508
4514
  readonly type: 'MaturationPeriod';
4509
4515
  }
4510
4516
 
4511
- /** @name PalletBalancesError (517) */
4517
+ /** @name PalletBalancesError (514) */
4512
4518
  interface PalletBalancesError extends Enum {
4513
4519
  readonly isVestingBalance: boolean;
4514
4520
  readonly isLiquidityRestrictions: boolean;
@@ -4537,7 +4543,7 @@ declare module '@polkadot/types/lookup' {
4537
4543
  | 'DeltaZero';
4538
4544
  }
4539
4545
 
4540
- /** @name PalletTxPauseError (519) */
4546
+ /** @name PalletTxPauseError (516) */
4541
4547
  interface PalletTxPauseError extends Enum {
4542
4548
  readonly isIsPaused: boolean;
4543
4549
  readonly isIsUnpaused: boolean;
@@ -4546,33 +4552,91 @@ declare module '@polkadot/types/lookup' {
4546
4552
  readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
4547
4553
  }
4548
4554
 
4549
- /** @name PalletTransactionPaymentReleases (520) */
4555
+ /** @name PalletTransactionPaymentReleases (517) */
4550
4556
  interface PalletTransactionPaymentReleases extends Enum {
4551
4557
  readonly isV1Ancient: boolean;
4552
4558
  readonly isV2: boolean;
4553
4559
  readonly type: 'V1Ancient' | 'V2';
4554
4560
  }
4555
4561
 
4556
- /** @name FrameSupportStorageNoDrop (521) */
4562
+ /** @name FrameSupportStorageNoDrop (518) */
4557
4563
  interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
4558
4564
 
4559
- /** @name FrameSupportTokensFungibleImbalance (522) */
4565
+ /** @name FrameSupportTokensFungibleImbalance (519) */
4560
4566
  interface FrameSupportTokensFungibleImbalance extends Struct {
4561
4567
  readonly amount: u128;
4562
4568
  }
4563
4569
 
4564
- /** @name PalletUtilityError (523) */
4570
+ /** @name PalletUtilityError (520) */
4565
4571
  interface PalletUtilityError extends Enum {
4566
4572
  readonly isTooManyCalls: boolean;
4567
4573
  readonly type: 'TooManyCalls';
4568
4574
  }
4569
4575
 
4570
- /** @name PalletSudoError (524) */
4576
+ /** @name PalletSudoError (521) */
4571
4577
  interface PalletSudoError extends Enum {
4572
4578
  readonly isRequireSudo: boolean;
4573
4579
  readonly type: 'RequireSudo';
4574
4580
  }
4575
4581
 
4582
+ /** @name PalletBitcoinFissionsFission (522) */
4583
+ interface PalletBitcoinFissionsFission extends Struct {
4584
+ readonly liquidId: Compact<u64>;
4585
+ readonly utxoId: Compact<u64>;
4586
+ readonly satoshis: Compact<u64>;
4587
+ readonly microgonsAtTargetPerBtc: Compact<u128>;
4588
+ readonly liquidityPromised: Compact<u128>;
4589
+ readonly createdAtArgonBlock: Compact<u32>;
4590
+ readonly ratchetNumber: Compact<u32>;
4591
+ readonly lastRatchetTick: Compact<u64>;
4592
+ readonly lastUpdatedArgonBlock: Compact<u32>;
4593
+ }
4594
+
4595
+ /** @name PalletBitcoinFissionsError (524) */
4596
+ interface PalletBitcoinFissionsError extends Enum {
4597
+ readonly isFissionIdBelowMinimum: boolean;
4598
+ readonly isFissionIdOverflow: boolean;
4599
+ readonly isFissionAlreadyExists: boolean;
4600
+ readonly isFissionNotFound: boolean;
4601
+ readonly isNoRatchetingAvailable: boolean;
4602
+ readonly isRatchetNumberOverflow: boolean;
4603
+ readonly isFissionHasNoSatoshis: boolean;
4604
+ readonly isTooManyFissionsForLock: boolean;
4605
+ readonly isLockNotFound: boolean;
4606
+ readonly isNoPermissions: boolean;
4607
+ readonly isLockNotFunded: boolean;
4608
+ readonly isLockReleasePending: boolean;
4609
+ readonly isInsufficientFundedSatoshis: boolean;
4610
+ readonly isInsufficientSecuritization: boolean;
4611
+ readonly isIneligibleMicrogonsAtTargetPerBtc: boolean;
4612
+ readonly isMicrogonsAtTargetPerBtcTickOlderThanCurrent: boolean;
4613
+ readonly isInsufficientFissionedSatoshis: boolean;
4614
+ readonly isNoBitcoinPricesAvailable: boolean;
4615
+ readonly isInsufficientFunds: boolean;
4616
+ readonly isOverflow: boolean;
4617
+ readonly type:
4618
+ | 'FissionIdBelowMinimum'
4619
+ | 'FissionIdOverflow'
4620
+ | 'FissionAlreadyExists'
4621
+ | 'FissionNotFound'
4622
+ | 'NoRatchetingAvailable'
4623
+ | 'RatchetNumberOverflow'
4624
+ | 'FissionHasNoSatoshis'
4625
+ | 'TooManyFissionsForLock'
4626
+ | 'LockNotFound'
4627
+ | 'NoPermissions'
4628
+ | 'LockNotFunded'
4629
+ | 'LockReleasePending'
4630
+ | 'InsufficientFundedSatoshis'
4631
+ | 'InsufficientSecuritization'
4632
+ | 'IneligibleMicrogonsAtTargetPerBtc'
4633
+ | 'MicrogonsAtTargetPerBtcTickOlderThanCurrent'
4634
+ | 'InsufficientFissionedSatoshis'
4635
+ | 'NoBitcoinPricesAvailable'
4636
+ | 'InsufficientFunds'
4637
+ | 'Overflow';
4638
+ }
4639
+
4576
4640
  /** @name PalletTreasuryFrameVaultCapital (525) */
4577
4641
  interface PalletTreasuryFrameVaultCapital extends Struct {
4578
4642
  readonly frameId: Compact<u64>;