@argonprotocol/mainchain 1.4.12-dev.8cae3588 → 1.4.12-dev.dd86fab9
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.
- package/README.md +0 -10
- package/browser/index.d.ts +695 -939
- package/browser/index.js +15 -1344
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +17 -1347
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +695 -939
- package/lib/index.d.ts +695 -939
- package/lib/index.js +19 -1349
- package/lib/index.js.map +1 -1
- package/package.json +2 -3
- package/src/interfaces/augment-api-consts.ts +16 -21
- package/src/interfaces/augment-api-errors.ts +108 -22
- package/src/interfaces/augment-api-events.ts +110 -72
- package/src/interfaces/augment-api-query.ts +97 -50
- package/src/interfaces/augment-api-runtime.ts +0 -1
- package/src/interfaces/augment-api-tx.ts +53 -77
- package/src/interfaces/augment-api.ts +0 -1
- package/src/interfaces/augment-types.ts +0 -1
- package/src/interfaces/lookup.ts +319 -263
- package/src/interfaces/registry.ts +10 -5
- package/src/interfaces/types-lookup.ts +365 -307
|
@@ -498,21 +498,17 @@ declare module '@polkadot/types/lookup' {
|
|
|
498
498
|
|
|
499
499
|
/** @name PalletBitcoinUtxosEvent (50) */
|
|
500
500
|
interface PalletBitcoinUtxosEvent extends Enum {
|
|
501
|
-
readonly
|
|
502
|
-
readonly
|
|
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
|
|
528
|
-
readonly
|
|
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
|
-
| '
|
|
539
|
-
| 'UtxoRejected'
|
|
529
|
+
| 'UtxoDetected'
|
|
540
530
|
| 'UtxoSpent'
|
|
541
531
|
| 'UtxoUnwatched'
|
|
542
532
|
| 'UtxoSpentError'
|
|
543
|
-
| '
|
|
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
|
|
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
|
|
622
|
-
readonly
|
|
597
|
+
readonly isSecuritizationReserved: boolean;
|
|
598
|
+
readonly asSecuritizationReserved: {
|
|
623
599
|
readonly vaultId: u32;
|
|
624
600
|
readonly locker: AccountId32;
|
|
625
|
-
readonly
|
|
626
|
-
readonly isRatchet: bool;
|
|
601
|
+
readonly securitizationCoverageMicrogons: u128;
|
|
627
602
|
readonly feeRevenue: u128;
|
|
628
603
|
readonly didUseFeeCoupon: bool;
|
|
629
604
|
} & Struct;
|
|
630
|
-
readonly
|
|
631
|
-
readonly
|
|
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
|
-
| '
|
|
682
|
-
| '
|
|
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 (
|
|
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
|
|
698
|
-
readonly
|
|
699
|
-
readonly
|
|
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
|
|
776
|
-
readonly
|
|
777
|
-
readonly
|
|
739
|
+
readonly isOrphanedUtxoExpirationError: boolean;
|
|
740
|
+
readonly asOrphanedUtxoExpirationError: {
|
|
741
|
+
readonly accountId: AccountId32;
|
|
778
742
|
readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
779
|
-
readonly
|
|
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
|
|
783
|
-
readonly
|
|
751
|
+
readonly isBitcoinLockResecuritized: boolean;
|
|
752
|
+
readonly asBitcoinLockResecuritized: {
|
|
784
753
|
readonly utxoId: u64;
|
|
785
754
|
readonly vaultId: u32;
|
|
786
|
-
readonly
|
|
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
|
-
| '
|
|
809
|
-
| '
|
|
777
|
+
| 'OrphanedUtxoExpirationError'
|
|
778
|
+
| 'OrphanedUtxoCleanupScheduleOverflow'
|
|
779
|
+
| 'BitcoinLockResecuritized'
|
|
810
780
|
| 'BitcoinLockFlexibleChanged';
|
|
811
781
|
}
|
|
812
782
|
|
|
813
|
-
/** @name PalletNotariesEvent (
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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 (
|
|
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 (
|
|
1251
|
+
/** @name ArgonPrimitivesBlockSealBlockRewardType (94) */
|
|
1282
1252
|
interface ArgonPrimitivesBlockSealBlockRewardType extends Enum {
|
|
1283
1253
|
readonly isMiner: boolean;
|
|
1284
1254
|
readonly isVoter: boolean;
|
|
@@ -1286,7 +1256,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1286
1256
|
readonly type: 'Miner' | 'Voter' | 'ProfitShare';
|
|
1287
1257
|
}
|
|
1288
1258
|
|
|
1289
|
-
/** @name PalletMintEvent (
|
|
1259
|
+
/** @name PalletMintEvent (97) */
|
|
1290
1260
|
interface PalletMintEvent extends Enum {
|
|
1291
1261
|
readonly isBitcoinMint: boolean;
|
|
1292
1262
|
readonly asBitcoinMint: {
|
|
@@ -1312,14 +1282,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1312
1282
|
readonly type: 'BitcoinMint' | 'MiningMint' | 'MintError';
|
|
1313
1283
|
}
|
|
1314
1284
|
|
|
1315
|
-
/** @name PalletMintMintType (
|
|
1285
|
+
/** @name PalletMintMintType (100) */
|
|
1316
1286
|
interface PalletMintMintType extends Enum {
|
|
1317
1287
|
readonly isBitcoin: boolean;
|
|
1318
1288
|
readonly isMining: boolean;
|
|
1319
1289
|
readonly type: 'Bitcoin' | 'Mining';
|
|
1320
1290
|
}
|
|
1321
1291
|
|
|
1322
|
-
/** @name PalletBalancesEvent (
|
|
1292
|
+
/** @name PalletBalancesEvent (101) */
|
|
1323
1293
|
interface PalletBalancesEvent extends Enum {
|
|
1324
1294
|
readonly isEndowed: boolean;
|
|
1325
1295
|
readonly asEndowed: {
|
|
@@ -1506,14 +1476,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1506
1476
|
| 'Unexpected';
|
|
1507
1477
|
}
|
|
1508
1478
|
|
|
1509
|
-
/** @name FrameSupportTokensMiscBalanceStatus (
|
|
1479
|
+
/** @name FrameSupportTokensMiscBalanceStatus (102) */
|
|
1510
1480
|
interface FrameSupportTokensMiscBalanceStatus extends Enum {
|
|
1511
1481
|
readonly isFree: boolean;
|
|
1512
1482
|
readonly isReserved: boolean;
|
|
1513
1483
|
readonly type: 'Free' | 'Reserved';
|
|
1514
1484
|
}
|
|
1515
1485
|
|
|
1516
|
-
/** @name ArgonRuntimeRuntimeHoldReason (
|
|
1486
|
+
/** @name ArgonRuntimeRuntimeHoldReason (103) */
|
|
1517
1487
|
interface ArgonRuntimeRuntimeHoldReason extends Enum {
|
|
1518
1488
|
readonly isMiningSlot: boolean;
|
|
1519
1489
|
readonly asMiningSlot: PalletMiningSlotHoldReason;
|
|
@@ -1536,13 +1506,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
1536
1506
|
| 'CrosschainTransfer';
|
|
1537
1507
|
}
|
|
1538
1508
|
|
|
1539
|
-
/** @name PalletMiningSlotHoldReason (
|
|
1509
|
+
/** @name PalletMiningSlotHoldReason (104) */
|
|
1540
1510
|
interface PalletMiningSlotHoldReason extends Enum {
|
|
1541
1511
|
readonly isRegisterAsMiner: boolean;
|
|
1542
1512
|
readonly type: 'RegisterAsMiner';
|
|
1543
1513
|
}
|
|
1544
1514
|
|
|
1545
|
-
/** @name PalletVaultsHoldReason (
|
|
1515
|
+
/** @name PalletVaultsHoldReason (105) */
|
|
1546
1516
|
interface PalletVaultsHoldReason extends Enum {
|
|
1547
1517
|
readonly isEnterVault: boolean;
|
|
1548
1518
|
readonly isObligationFee: boolean;
|
|
@@ -1550,39 +1520,39 @@ declare module '@polkadot/types/lookup' {
|
|
|
1550
1520
|
readonly type: 'EnterVault' | 'ObligationFee' | 'PendingCollect';
|
|
1551
1521
|
}
|
|
1552
1522
|
|
|
1553
|
-
/** @name PalletBitcoinLocksHoldReason (
|
|
1523
|
+
/** @name PalletBitcoinLocksHoldReason (106) */
|
|
1554
1524
|
interface PalletBitcoinLocksHoldReason extends Enum {
|
|
1555
1525
|
readonly isReleaseBitcoinLock: boolean;
|
|
1556
1526
|
readonly type: 'ReleaseBitcoinLock';
|
|
1557
1527
|
}
|
|
1558
1528
|
|
|
1559
|
-
/** @name PalletBlockRewardsHoldReason (
|
|
1529
|
+
/** @name PalletBlockRewardsHoldReason (107) */
|
|
1560
1530
|
interface PalletBlockRewardsHoldReason extends Enum {
|
|
1561
1531
|
readonly isMaturationPeriod: boolean;
|
|
1562
1532
|
readonly type: 'MaturationPeriod';
|
|
1563
1533
|
}
|
|
1564
1534
|
|
|
1565
|
-
/** @name PalletTreasuryHoldReason (
|
|
1535
|
+
/** @name PalletTreasuryHoldReason (108) */
|
|
1566
1536
|
interface PalletTreasuryHoldReason extends Enum {
|
|
1567
1537
|
readonly isContributedToTreasury: boolean;
|
|
1568
1538
|
readonly type: 'ContributedToTreasury';
|
|
1569
1539
|
}
|
|
1570
1540
|
|
|
1571
|
-
/** @name PalletCrosschainTransferHoldReason (
|
|
1541
|
+
/** @name PalletCrosschainTransferHoldReason (109) */
|
|
1572
1542
|
interface PalletCrosschainTransferHoldReason extends Enum {
|
|
1573
1543
|
readonly isTransferOutMintingAuthorityTip: boolean;
|
|
1574
1544
|
readonly isMintingAuthorityActivationRepayment: boolean;
|
|
1575
1545
|
readonly type: 'TransferOutMintingAuthorityTip' | 'MintingAuthorityActivationRepayment';
|
|
1576
1546
|
}
|
|
1577
1547
|
|
|
1578
|
-
/** @name PalletBalancesUnexpectedKind (
|
|
1548
|
+
/** @name PalletBalancesUnexpectedKind (110) */
|
|
1579
1549
|
interface PalletBalancesUnexpectedKind extends Enum {
|
|
1580
1550
|
readonly isBalanceUpdated: boolean;
|
|
1581
1551
|
readonly isFailedToMutateAccount: boolean;
|
|
1582
1552
|
readonly type: 'BalanceUpdated' | 'FailedToMutateAccount';
|
|
1583
1553
|
}
|
|
1584
1554
|
|
|
1585
|
-
/** @name PalletTxPauseEvent (
|
|
1555
|
+
/** @name PalletTxPauseEvent (112) */
|
|
1586
1556
|
interface PalletTxPauseEvent extends Enum {
|
|
1587
1557
|
readonly isCallPaused: boolean;
|
|
1588
1558
|
readonly asCallPaused: {
|
|
@@ -1595,7 +1565,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1595
1565
|
readonly type: 'CallPaused' | 'CallUnpaused';
|
|
1596
1566
|
}
|
|
1597
1567
|
|
|
1598
|
-
/** @name PalletTransactionPaymentEvent (
|
|
1568
|
+
/** @name PalletTransactionPaymentEvent (115) */
|
|
1599
1569
|
interface PalletTransactionPaymentEvent extends Enum {
|
|
1600
1570
|
readonly isTransactionFeePaid: boolean;
|
|
1601
1571
|
readonly asTransactionFeePaid: {
|
|
@@ -1606,7 +1576,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1606
1576
|
readonly type: 'TransactionFeePaid';
|
|
1607
1577
|
}
|
|
1608
1578
|
|
|
1609
|
-
/** @name PalletUtilityEvent (
|
|
1579
|
+
/** @name PalletUtilityEvent (116) */
|
|
1610
1580
|
interface PalletUtilityEvent extends Enum {
|
|
1611
1581
|
readonly isBatchInterrupted: boolean;
|
|
1612
1582
|
readonly asBatchInterrupted: {
|
|
@@ -1640,7 +1610,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1640
1610
|
| 'IfElseFallbackCalled';
|
|
1641
1611
|
}
|
|
1642
1612
|
|
|
1643
|
-
/** @name PalletSudoEvent (
|
|
1613
|
+
/** @name PalletSudoEvent (117) */
|
|
1644
1614
|
interface PalletSudoEvent extends Enum {
|
|
1645
1615
|
readonly isSudid: boolean;
|
|
1646
1616
|
readonly asSudid: {
|
|
@@ -1659,6 +1629,39 @@ declare module '@polkadot/types/lookup' {
|
|
|
1659
1629
|
readonly type: 'Sudid' | 'KeyChanged' | 'KeyRemoved' | 'SudoAsDone';
|
|
1660
1630
|
}
|
|
1661
1631
|
|
|
1632
|
+
/** @name PalletBitcoinFissionsEvent (118) */
|
|
1633
|
+
interface PalletBitcoinFissionsEvent extends Enum {
|
|
1634
|
+
readonly isFissionCreated: boolean;
|
|
1635
|
+
readonly asFissionCreated: {
|
|
1636
|
+
readonly accountId: AccountId32;
|
|
1637
|
+
readonly fissionId: u64;
|
|
1638
|
+
readonly liquidId: u64;
|
|
1639
|
+
readonly liquidityPromised: u128;
|
|
1640
|
+
} & Struct;
|
|
1641
|
+
readonly isFissionRatcheted: boolean;
|
|
1642
|
+
readonly asFissionRatcheted: {
|
|
1643
|
+
readonly accountId: AccountId32;
|
|
1644
|
+
readonly fissionId: u64;
|
|
1645
|
+
readonly ratchetNumber: u32;
|
|
1646
|
+
readonly liquidityPromised: u128;
|
|
1647
|
+
readonly amountMinted: u128;
|
|
1648
|
+
readonly amountBurned: u128;
|
|
1649
|
+
} & Struct;
|
|
1650
|
+
readonly isFissionClosed: boolean;
|
|
1651
|
+
readonly asFissionClosed: {
|
|
1652
|
+
readonly accountId: AccountId32;
|
|
1653
|
+
readonly fissionId: u64;
|
|
1654
|
+
readonly redemptionAmount: u128;
|
|
1655
|
+
} & Struct;
|
|
1656
|
+
readonly isFissionClosedByLock: boolean;
|
|
1657
|
+
readonly asFissionClosedByLock: {
|
|
1658
|
+
readonly accountId: AccountId32;
|
|
1659
|
+
readonly fissionId: u64;
|
|
1660
|
+
readonly utxoId: u64;
|
|
1661
|
+
} & Struct;
|
|
1662
|
+
readonly type: 'FissionCreated' | 'FissionRatcheted' | 'FissionClosed' | 'FissionClosedByLock';
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1662
1665
|
/** @name PalletTreasuryEvent (119) */
|
|
1663
1666
|
interface PalletTreasuryEvent extends Enum {
|
|
1664
1667
|
readonly isCouldNotDistributeEarningsToBondLot: boolean;
|
|
@@ -2583,22 +2586,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2583
2586
|
readonly asSetOperator: {
|
|
2584
2587
|
readonly accountId: AccountId32;
|
|
2585
2588
|
} & Struct;
|
|
2586
|
-
readonly
|
|
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';
|
|
2589
|
+
readonly type: 'Sync' | 'SetConfirmedBlock' | 'SetOperator';
|
|
2602
2590
|
}
|
|
2603
2591
|
|
|
2604
2592
|
/** @name ArgonPrimitivesInherentsBitcoinUtxoSync (201) */
|
|
@@ -2705,8 +2693,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
2705
2693
|
|
|
2706
2694
|
/** @name PalletBitcoinLocksCall (216) */
|
|
2707
2695
|
interface PalletBitcoinLocksCall extends Enum {
|
|
2708
|
-
readonly
|
|
2709
|
-
readonly
|
|
2696
|
+
readonly isCreateReceiveAddress: boolean;
|
|
2697
|
+
readonly asCreateReceiveAddress: {
|
|
2710
2698
|
readonly vaultId: u32;
|
|
2711
2699
|
readonly satoshis: Compact<u64>;
|
|
2712
2700
|
readonly bitcoinPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
@@ -2723,11 +2711,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
2723
2711
|
readonly utxoId: u64;
|
|
2724
2712
|
readonly signature: Bytes;
|
|
2725
2713
|
} & Struct;
|
|
2726
|
-
readonly isRatchet: boolean;
|
|
2727
|
-
readonly asRatchet: {
|
|
2728
|
-
readonly utxoId: u64;
|
|
2729
|
-
readonly options: Option<PalletBitcoinLocksLockOptions>;
|
|
2730
|
-
} & Struct;
|
|
2731
2714
|
readonly isAdminModifyMinimumLockedSats: boolean;
|
|
2732
2715
|
readonly asAdminModifyMinimumLockedSats: {
|
|
2733
2716
|
readonly satoshis: u64;
|
|
@@ -2744,10 +2727,11 @@ declare module '@polkadot/types/lookup' {
|
|
|
2744
2727
|
readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
2745
2728
|
readonly signature: Bytes;
|
|
2746
2729
|
} & Struct;
|
|
2747
|
-
readonly
|
|
2748
|
-
readonly
|
|
2730
|
+
readonly isResecuritize: boolean;
|
|
2731
|
+
readonly asResecuritize: {
|
|
2749
2732
|
readonly utxoId: u64;
|
|
2750
|
-
readonly
|
|
2733
|
+
readonly satoshis: Compact<u64>;
|
|
2734
|
+
readonly options: Option<PalletBitcoinLocksLockOptions>;
|
|
2751
2735
|
} & Struct;
|
|
2752
2736
|
readonly isSetFlexible: boolean;
|
|
2753
2737
|
readonly asSetFlexible: {
|
|
@@ -2755,14 +2739,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2755
2739
|
readonly isFlexible: bool;
|
|
2756
2740
|
} & Struct;
|
|
2757
2741
|
readonly type:
|
|
2758
|
-
| '
|
|
2742
|
+
| 'CreateReceiveAddress'
|
|
2759
2743
|
| 'RequestRelease'
|
|
2760
2744
|
| 'CosignRelease'
|
|
2761
|
-
| 'Ratchet'
|
|
2762
2745
|
| 'AdminModifyMinimumLockedSats'
|
|
2763
2746
|
| 'RequestOrphanedUtxoRelease'
|
|
2764
2747
|
| 'CosignOrphanedUtxoRelease'
|
|
2765
|
-
| '
|
|
2748
|
+
| 'Resecuritize'
|
|
2766
2749
|
| 'SetFlexible';
|
|
2767
2750
|
}
|
|
2768
2751
|
|
|
@@ -2770,20 +2753,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
2770
2753
|
interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {}
|
|
2771
2754
|
|
|
2772
2755
|
/** @name PalletBitcoinLocksLockOptions (220) */
|
|
2773
|
-
interface PalletBitcoinLocksLockOptions extends
|
|
2774
|
-
readonly
|
|
2775
|
-
readonly
|
|
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';
|
|
2756
|
+
interface PalletBitcoinLocksLockOptions extends Struct {
|
|
2757
|
+
readonly microgonsAtTargetPerBtc: Compact<u128>;
|
|
2758
|
+
readonly feeCoupon: Option<PalletBitcoinLocksFeeCoupon>;
|
|
2784
2759
|
}
|
|
2785
2760
|
|
|
2786
|
-
/** @name PalletBitcoinLocksFeeCoupon (
|
|
2761
|
+
/** @name PalletBitcoinLocksFeeCoupon (222) */
|
|
2787
2762
|
interface PalletBitcoinLocksFeeCoupon extends Struct {
|
|
2788
2763
|
readonly feeDiscount: Compact<u128>;
|
|
2789
2764
|
readonly securitizationSpaceToUnreserve: Compact<u128>;
|
|
@@ -2792,7 +2767,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2792
2767
|
readonly signature: SpRuntimeMultiSignature;
|
|
2793
2768
|
}
|
|
2794
2769
|
|
|
2795
|
-
/** @name SpRuntimeMultiSignature (
|
|
2770
|
+
/** @name SpRuntimeMultiSignature (223) */
|
|
2796
2771
|
interface SpRuntimeMultiSignature extends Enum {
|
|
2797
2772
|
readonly isEd25519: boolean;
|
|
2798
2773
|
readonly asEd25519: U8aFixed;
|
|
@@ -2805,7 +2780,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2805
2780
|
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
|
|
2806
2781
|
}
|
|
2807
2782
|
|
|
2808
|
-
/** @name PalletNotariesCall (
|
|
2783
|
+
/** @name PalletNotariesCall (228) */
|
|
2809
2784
|
interface PalletNotariesCall extends Enum {
|
|
2810
2785
|
readonly isPropose: boolean;
|
|
2811
2786
|
readonly asPropose: {
|
|
@@ -2824,7 +2799,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2824
2799
|
readonly type: 'Propose' | 'Activate' | 'Update';
|
|
2825
2800
|
}
|
|
2826
2801
|
|
|
2827
|
-
/** @name PalletNotebookCall (
|
|
2802
|
+
/** @name PalletNotebookCall (229) */
|
|
2828
2803
|
interface PalletNotebookCall extends Enum {
|
|
2829
2804
|
readonly isSubmit: boolean;
|
|
2830
2805
|
readonly asSubmit: {
|
|
@@ -2837,13 +2812,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2837
2812
|
readonly type: 'Submit' | 'Unlock';
|
|
2838
2813
|
}
|
|
2839
2814
|
|
|
2840
|
-
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (
|
|
2815
|
+
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (231) */
|
|
2841
2816
|
interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
|
|
2842
2817
|
readonly header: ArgonPrimitivesNotebookNotebookHeader;
|
|
2843
2818
|
readonly signature: U8aFixed;
|
|
2844
2819
|
}
|
|
2845
2820
|
|
|
2846
|
-
/** @name ArgonPrimitivesNotebookNotebookHeader (
|
|
2821
|
+
/** @name ArgonPrimitivesNotebookNotebookHeader (232) */
|
|
2847
2822
|
interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
|
|
2848
2823
|
readonly version: Compact<u16>;
|
|
2849
2824
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2862,7 +2837,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2862
2837
|
readonly domains: Vec<ITuple<[H256, AccountId32]>>;
|
|
2863
2838
|
}
|
|
2864
2839
|
|
|
2865
|
-
/** @name ArgonPrimitivesNotebookChainTransfer (
|
|
2840
|
+
/** @name ArgonPrimitivesNotebookChainTransfer (235) */
|
|
2866
2841
|
interface ArgonPrimitivesNotebookChainTransfer extends Enum {
|
|
2867
2842
|
readonly isToMainchain: boolean;
|
|
2868
2843
|
readonly asToMainchain: {
|
|
@@ -2876,13 +2851,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2876
2851
|
readonly type: 'ToMainchain' | 'ToLocalchain';
|
|
2877
2852
|
}
|
|
2878
2853
|
|
|
2879
|
-
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (
|
|
2854
|
+
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (238) */
|
|
2880
2855
|
interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
|
|
2881
2856
|
readonly notebookNumber: Compact<u32>;
|
|
2882
2857
|
readonly accountUid: Compact<u32>;
|
|
2883
2858
|
}
|
|
2884
2859
|
|
|
2885
|
-
/** @name PalletLocalchainTransferCall (
|
|
2860
|
+
/** @name PalletLocalchainTransferCall (244) */
|
|
2886
2861
|
interface PalletLocalchainTransferCall extends Enum {
|
|
2887
2862
|
readonly isSendToLocalchain: boolean;
|
|
2888
2863
|
readonly asSendToLocalchain: {
|
|
@@ -2892,7 +2867,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2892
2867
|
readonly type: 'SendToLocalchain';
|
|
2893
2868
|
}
|
|
2894
2869
|
|
|
2895
|
-
/** @name PalletBlockSealSpecCall (
|
|
2870
|
+
/** @name PalletBlockSealSpecCall (245) */
|
|
2896
2871
|
interface PalletBlockSealSpecCall extends Enum {
|
|
2897
2872
|
readonly isConfigure: boolean;
|
|
2898
2873
|
readonly asConfigure: {
|
|
@@ -2902,7 +2877,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2902
2877
|
readonly type: 'Configure';
|
|
2903
2878
|
}
|
|
2904
2879
|
|
|
2905
|
-
/** @name PalletDomainsCall (
|
|
2880
|
+
/** @name PalletDomainsCall (246) */
|
|
2906
2881
|
interface PalletDomainsCall extends Enum {
|
|
2907
2882
|
readonly isSetZoneRecord: boolean;
|
|
2908
2883
|
readonly asSetZoneRecord: {
|
|
@@ -2912,7 +2887,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2912
2887
|
readonly type: 'SetZoneRecord';
|
|
2913
2888
|
}
|
|
2914
2889
|
|
|
2915
|
-
/** @name PalletPriceIndexCall (
|
|
2890
|
+
/** @name PalletPriceIndexCall (247) */
|
|
2916
2891
|
interface PalletPriceIndexCall extends Enum {
|
|
2917
2892
|
readonly isSubmit: boolean;
|
|
2918
2893
|
readonly asSubmit: {
|
|
@@ -2926,7 +2901,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2926
2901
|
readonly type: 'Submit' | 'SetOperator';
|
|
2927
2902
|
}
|
|
2928
2903
|
|
|
2929
|
-
/** @name PalletPriceIndexPriceIndex (
|
|
2904
|
+
/** @name PalletPriceIndexPriceIndex (248) */
|
|
2930
2905
|
interface PalletPriceIndexPriceIndex extends Struct {
|
|
2931
2906
|
readonly btcUsdPrice: Compact<u128>;
|
|
2932
2907
|
readonly argonotUsdPrice: u128;
|
|
@@ -2936,14 +2911,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2936
2911
|
readonly tick: Compact<u64>;
|
|
2937
2912
|
}
|
|
2938
2913
|
|
|
2939
|
-
/** @name PalletPriceIndexEthereumPriceIndex (
|
|
2914
|
+
/** @name PalletPriceIndexEthereumPriceIndex (250) */
|
|
2940
2915
|
interface PalletPriceIndexEthereumPriceIndex extends Struct {
|
|
2941
2916
|
readonly ethereumUsdPrice: u128;
|
|
2942
2917
|
readonly ethereumGasPriceWei: Compact<u128>;
|
|
2943
2918
|
readonly tick: Compact<u64>;
|
|
2944
2919
|
}
|
|
2945
2920
|
|
|
2946
|
-
/** @name PalletGrandpaCall (
|
|
2921
|
+
/** @name PalletGrandpaCall (251) */
|
|
2947
2922
|
interface PalletGrandpaCall extends Enum {
|
|
2948
2923
|
readonly isReportEquivocation: boolean;
|
|
2949
2924
|
readonly asReportEquivocation: {
|
|
@@ -2963,13 +2938,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2963
2938
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
|
2964
2939
|
}
|
|
2965
2940
|
|
|
2966
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
|
2941
|
+
/** @name SpConsensusGrandpaEquivocationProof (252) */
|
|
2967
2942
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
|
2968
2943
|
readonly setId: u64;
|
|
2969
2944
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
|
2970
2945
|
}
|
|
2971
2946
|
|
|
2972
|
-
/** @name SpConsensusGrandpaEquivocation (
|
|
2947
|
+
/** @name SpConsensusGrandpaEquivocation (253) */
|
|
2973
2948
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
|
2974
2949
|
readonly isPrevote: boolean;
|
|
2975
2950
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
|
@@ -2978,7 +2953,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2978
2953
|
readonly type: 'Prevote' | 'Precommit';
|
|
2979
2954
|
}
|
|
2980
2955
|
|
|
2981
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
|
2956
|
+
/** @name FinalityGrandpaEquivocationPrevote (254) */
|
|
2982
2957
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
|
2983
2958
|
readonly roundNumber: u64;
|
|
2984
2959
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2986,16 +2961,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2986
2961
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
2987
2962
|
}
|
|
2988
2963
|
|
|
2989
|
-
/** @name FinalityGrandpaPrevote (
|
|
2964
|
+
/** @name FinalityGrandpaPrevote (255) */
|
|
2990
2965
|
interface FinalityGrandpaPrevote extends Struct {
|
|
2991
2966
|
readonly targetHash: H256;
|
|
2992
2967
|
readonly targetNumber: u32;
|
|
2993
2968
|
}
|
|
2994
2969
|
|
|
2995
|
-
/** @name SpConsensusGrandpaAppSignature (
|
|
2970
|
+
/** @name SpConsensusGrandpaAppSignature (256) */
|
|
2996
2971
|
interface SpConsensusGrandpaAppSignature extends U8aFixed {}
|
|
2997
2972
|
|
|
2998
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
|
2973
|
+
/** @name FinalityGrandpaEquivocationPrecommit (258) */
|
|
2999
2974
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
|
3000
2975
|
readonly roundNumber: u64;
|
|
3001
2976
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -3003,16 +2978,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
3003
2978
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
3004
2979
|
}
|
|
3005
2980
|
|
|
3006
|
-
/** @name FinalityGrandpaPrecommit (
|
|
2981
|
+
/** @name FinalityGrandpaPrecommit (259) */
|
|
3007
2982
|
interface FinalityGrandpaPrecommit extends Struct {
|
|
3008
2983
|
readonly targetHash: H256;
|
|
3009
2984
|
readonly targetNumber: u32;
|
|
3010
2985
|
}
|
|
3011
2986
|
|
|
3012
|
-
/** @name SpCoreVoid (
|
|
2987
|
+
/** @name SpCoreVoid (261) */
|
|
3013
2988
|
type SpCoreVoid = Null;
|
|
3014
2989
|
|
|
3015
|
-
/** @name PalletBlockSealCall (
|
|
2990
|
+
/** @name PalletBlockSealCall (262) */
|
|
3016
2991
|
interface PalletBlockSealCall extends Enum {
|
|
3017
2992
|
readonly isApply: boolean;
|
|
3018
2993
|
readonly asApply: {
|
|
@@ -3021,7 +2996,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3021
2996
|
readonly type: 'Apply';
|
|
3022
2997
|
}
|
|
3023
2998
|
|
|
3024
|
-
/** @name ArgonPrimitivesInherentsBlockSealInherent (
|
|
2999
|
+
/** @name ArgonPrimitivesInherentsBlockSealInherent (263) */
|
|
3025
3000
|
interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
|
|
3026
3001
|
readonly isVote: boolean;
|
|
3027
3002
|
readonly asVote: {
|
|
@@ -3036,14 +3011,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3036
3011
|
readonly type: 'Vote' | 'Compute';
|
|
3037
3012
|
}
|
|
3038
3013
|
|
|
3039
|
-
/** @name ArgonPrimitivesBalanceChangeMerkleProof (
|
|
3014
|
+
/** @name ArgonPrimitivesBalanceChangeMerkleProof (264) */
|
|
3040
3015
|
interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
|
|
3041
3016
|
readonly proof: Vec<H256>;
|
|
3042
3017
|
readonly numberOfLeaves: Compact<u32>;
|
|
3043
3018
|
readonly leafIndex: Compact<u32>;
|
|
3044
3019
|
}
|
|
3045
3020
|
|
|
3046
|
-
/** @name ArgonPrimitivesBlockVoteBlockVoteT (
|
|
3021
|
+
/** @name ArgonPrimitivesBlockVoteBlockVoteT (266) */
|
|
3047
3022
|
interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
|
|
3048
3023
|
readonly accountId: AccountId32;
|
|
3049
3024
|
readonly blockHash: H256;
|
|
@@ -3054,7 +3029,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3054
3029
|
readonly tick: Compact<u64>;
|
|
3055
3030
|
}
|
|
3056
3031
|
|
|
3057
|
-
/** @name PalletBlockRewardsCall (
|
|
3032
|
+
/** @name PalletBlockRewardsCall (267) */
|
|
3058
3033
|
interface PalletBlockRewardsCall extends Enum {
|
|
3059
3034
|
readonly isSetBlockRewardsPaused: boolean;
|
|
3060
3035
|
readonly asSetBlockRewardsPaused: {
|
|
@@ -3067,10 +3042,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
3067
3042
|
readonly type: 'SetBlockRewardsPaused' | 'SetBlockVoterRewardsEnabled';
|
|
3068
3043
|
}
|
|
3069
3044
|
|
|
3070
|
-
/** @name PalletMintCall (
|
|
3045
|
+
/** @name PalletMintCall (268) */
|
|
3071
3046
|
type PalletMintCall = Null;
|
|
3072
3047
|
|
|
3073
|
-
/** @name PalletBalancesCall (
|
|
3048
|
+
/** @name PalletBalancesCall (269) */
|
|
3074
3049
|
interface PalletBalancesCall extends Enum {
|
|
3075
3050
|
readonly isTransferAllowDeath: boolean;
|
|
3076
3051
|
readonly asTransferAllowDeath: {
|
|
@@ -3129,14 +3104,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3129
3104
|
| 'Burn';
|
|
3130
3105
|
}
|
|
3131
3106
|
|
|
3132
|
-
/** @name PalletBalancesAdjustmentDirection (
|
|
3107
|
+
/** @name PalletBalancesAdjustmentDirection (270) */
|
|
3133
3108
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
|
3134
3109
|
readonly isIncrease: boolean;
|
|
3135
3110
|
readonly isDecrease: boolean;
|
|
3136
3111
|
readonly type: 'Increase' | 'Decrease';
|
|
3137
3112
|
}
|
|
3138
3113
|
|
|
3139
|
-
/** @name PalletTxPauseCall (
|
|
3114
|
+
/** @name PalletTxPauseCall (272) */
|
|
3140
3115
|
interface PalletTxPauseCall extends Enum {
|
|
3141
3116
|
readonly isPause: boolean;
|
|
3142
3117
|
readonly asPause: {
|
|
@@ -3149,7 +3124,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3149
3124
|
readonly type: 'Pause' | 'Unpause';
|
|
3150
3125
|
}
|
|
3151
3126
|
|
|
3152
|
-
/** @name PalletUtilityCall (
|
|
3127
|
+
/** @name PalletUtilityCall (273) */
|
|
3153
3128
|
interface PalletUtilityCall extends Enum {
|
|
3154
3129
|
readonly isBatch: boolean;
|
|
3155
3130
|
readonly asBatch: {
|
|
@@ -3199,7 +3174,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3199
3174
|
| 'DispatchAsFallible';
|
|
3200
3175
|
}
|
|
3201
3176
|
|
|
3202
|
-
/** @name PalletSudoCall (
|
|
3177
|
+
/** @name PalletSudoCall (275) */
|
|
3203
3178
|
interface PalletSudoCall extends Enum {
|
|
3204
3179
|
readonly isSudo: boolean;
|
|
3205
3180
|
readonly asSudo: {
|
|
@@ -3223,7 +3198,29 @@ declare module '@polkadot/types/lookup' {
|
|
|
3223
3198
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
|
3224
3199
|
}
|
|
3225
3200
|
|
|
3226
|
-
/** @name
|
|
3201
|
+
/** @name PalletBitcoinFissionsCall (276) */
|
|
3202
|
+
interface PalletBitcoinFissionsCall extends Enum {
|
|
3203
|
+
readonly isCreate: boolean;
|
|
3204
|
+
readonly asCreate: {
|
|
3205
|
+
readonly fissionId: Compact<u64>;
|
|
3206
|
+
readonly liquidId: Compact<u64>;
|
|
3207
|
+
readonly utxoId: Compact<u64>;
|
|
3208
|
+
readonly satoshis: Compact<u64>;
|
|
3209
|
+
readonly microgonsAtTargetPerBtc: Compact<u128>;
|
|
3210
|
+
} & Struct;
|
|
3211
|
+
readonly isRatchet: boolean;
|
|
3212
|
+
readonly asRatchet: {
|
|
3213
|
+
readonly fissionId: Compact<u64>;
|
|
3214
|
+
readonly microgonsAtTargetPerBtc: Compact<u128>;
|
|
3215
|
+
} & Struct;
|
|
3216
|
+
readonly isClose: boolean;
|
|
3217
|
+
readonly asClose: {
|
|
3218
|
+
readonly fissionId: Compact<u64>;
|
|
3219
|
+
} & Struct;
|
|
3220
|
+
readonly type: 'Create' | 'Ratchet' | 'Close';
|
|
3221
|
+
}
|
|
3222
|
+
|
|
3223
|
+
/** @name PalletTreasuryCall (277) */
|
|
3227
3224
|
interface PalletTreasuryCall extends Enum {
|
|
3228
3225
|
readonly isBuyBonds: boolean;
|
|
3229
3226
|
readonly asBuyBonds: {
|
|
@@ -3257,7 +3254,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3257
3254
|
| 'SetReservedBondSpace';
|
|
3258
3255
|
}
|
|
3259
3256
|
|
|
3260
|
-
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (
|
|
3257
|
+
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (279) */
|
|
3261
3258
|
interface ArgonPrimitivesVaultTreasuryBonusApprovalProof extends Struct {
|
|
3262
3259
|
readonly vaultId: Compact<u32>;
|
|
3263
3260
|
readonly beneficiary: AccountId32;
|
|
@@ -3268,7 +3265,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3268
3265
|
readonly signature: SpRuntimeMultiSignature;
|
|
3269
3266
|
}
|
|
3270
3267
|
|
|
3271
|
-
/** @name PalletOperationalAccountsCall (
|
|
3268
|
+
/** @name PalletOperationalAccountsCall (280) */
|
|
3272
3269
|
interface PalletOperationalAccountsCall extends Enum {
|
|
3273
3270
|
readonly isRegister: boolean;
|
|
3274
3271
|
readonly asRegister: {
|
|
@@ -3303,14 +3300,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3303
3300
|
| 'ClaimRewards';
|
|
3304
3301
|
}
|
|
3305
3302
|
|
|
3306
|
-
/** @name PalletOperationalAccountsRegistration (
|
|
3303
|
+
/** @name PalletOperationalAccountsRegistration (281) */
|
|
3307
3304
|
interface PalletOperationalAccountsRegistration extends Enum {
|
|
3308
3305
|
readonly isV1: boolean;
|
|
3309
3306
|
readonly asV1: PalletOperationalAccountsRegistrationV1;
|
|
3310
3307
|
readonly type: 'V1';
|
|
3311
3308
|
}
|
|
3312
3309
|
|
|
3313
|
-
/** @name PalletOperationalAccountsRegistrationV1 (
|
|
3310
|
+
/** @name PalletOperationalAccountsRegistrationV1 (282) */
|
|
3314
3311
|
interface PalletOperationalAccountsRegistrationV1 extends Struct {
|
|
3315
3312
|
readonly operationalAccount: AccountId32;
|
|
3316
3313
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
@@ -3322,21 +3319,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3322
3319
|
readonly accessProof: Option<PalletOperationalAccountsUpstreamAccessProof>;
|
|
3323
3320
|
}
|
|
3324
3321
|
|
|
3325
|
-
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (
|
|
3322
|
+
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (283) */
|
|
3326
3323
|
interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {}
|
|
3327
3324
|
|
|
3328
|
-
/** @name PalletOperationalAccountsAccountOwnershipProof (
|
|
3325
|
+
/** @name PalletOperationalAccountsAccountOwnershipProof (284) */
|
|
3329
3326
|
interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
|
|
3330
3327
|
readonly signature: SpRuntimeMultiSignature;
|
|
3331
3328
|
}
|
|
3332
3329
|
|
|
3333
|
-
/** @name PalletOperationalAccountsUpstreamAccessProof (
|
|
3330
|
+
/** @name PalletOperationalAccountsUpstreamAccessProof (286) */
|
|
3334
3331
|
interface PalletOperationalAccountsUpstreamAccessProof extends Struct {
|
|
3335
3332
|
readonly upstreamAccount: AccountId32;
|
|
3336
3333
|
readonly signature: SpRuntimeMultiSignature;
|
|
3337
3334
|
}
|
|
3338
3335
|
|
|
3339
|
-
/** @name PalletOperationalAccountsOperationalProgressPatch (
|
|
3336
|
+
/** @name PalletOperationalAccountsOperationalProgressPatch (289) */
|
|
3340
3337
|
interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
|
|
3341
3338
|
readonly uniswapArgonTransfersInAmount: Option<u128>;
|
|
3342
3339
|
readonly accountBitcoinAmount: Option<u128>;
|
|
@@ -3346,7 +3343,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3346
3343
|
readonly miningSeatCount: Option<u32>;
|
|
3347
3344
|
}
|
|
3348
3345
|
|
|
3349
|
-
/** @name PalletEthereumVerifierCall (
|
|
3346
|
+
/** @name PalletEthereumVerifierCall (291) */
|
|
3350
3347
|
interface PalletEthereumVerifierCall extends Enum {
|
|
3351
3348
|
readonly isForceCheckpoint: boolean;
|
|
3352
3349
|
readonly asForceCheckpoint: {
|
|
@@ -3374,7 +3371,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3374
3371
|
| 'SetOperatingMode';
|
|
3375
3372
|
}
|
|
3376
3373
|
|
|
3377
|
-
/** @name PalletEthereumVerifierCheckpointUpdate (
|
|
3374
|
+
/** @name PalletEthereumVerifierCheckpointUpdate (292) */
|
|
3378
3375
|
interface PalletEthereumVerifierCheckpointUpdate extends Struct {
|
|
3379
3376
|
readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3380
3377
|
readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
@@ -3383,7 +3380,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3383
3380
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3384
3381
|
}
|
|
3385
3382
|
|
|
3386
|
-
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (
|
|
3383
|
+
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (293) */
|
|
3387
3384
|
interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
|
|
3388
3385
|
readonly slot: u64;
|
|
3389
3386
|
readonly proposerIndex: u64;
|
|
@@ -3392,22 +3389,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3392
3389
|
readonly bodyRoot: H256;
|
|
3393
3390
|
}
|
|
3394
3391
|
|
|
3395
|
-
/** @name PalletEthereumVerifierSyncCommittee (
|
|
3392
|
+
/** @name PalletEthereumVerifierSyncCommittee (294) */
|
|
3396
3393
|
interface PalletEthereumVerifierSyncCommittee extends Struct {
|
|
3397
3394
|
readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
|
|
3398
3395
|
readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
|
|
3399
3396
|
}
|
|
3400
3397
|
|
|
3401
|
-
/** @name SnowbridgeBeaconPrimitivesPublicKey (
|
|
3398
|
+
/** @name SnowbridgeBeaconPrimitivesPublicKey (296) */
|
|
3402
3399
|
interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
|
|
3403
3400
|
|
|
3404
|
-
/** @name PalletEthereumVerifierExecutionHeaderProof (
|
|
3401
|
+
/** @name PalletEthereumVerifierExecutionHeaderProof (300) */
|
|
3405
3402
|
interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
|
|
3406
3403
|
readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
|
|
3407
3404
|
readonly executionBranch: Vec<H256>;
|
|
3408
3405
|
}
|
|
3409
3406
|
|
|
3410
|
-
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (
|
|
3407
|
+
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (301) */
|
|
3411
3408
|
interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
|
|
3412
3409
|
readonly isCapella: boolean;
|
|
3413
3410
|
readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
|
|
@@ -3416,7 +3413,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3416
3413
|
readonly type: 'Capella' | 'Deneb';
|
|
3417
3414
|
}
|
|
3418
3415
|
|
|
3419
|
-
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (
|
|
3416
|
+
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (302) */
|
|
3420
3417
|
interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
|
|
3421
3418
|
readonly parentHash: H256;
|
|
3422
3419
|
readonly feeRecipient: H160;
|
|
@@ -3435,7 +3432,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3435
3432
|
readonly withdrawalsRoot: H256;
|
|
3436
3433
|
}
|
|
3437
3434
|
|
|
3438
|
-
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (
|
|
3435
|
+
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (303) */
|
|
3439
3436
|
interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
|
|
3440
3437
|
readonly parentHash: H256;
|
|
3441
3438
|
readonly feeRecipient: H160;
|
|
@@ -3456,7 +3453,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3456
3453
|
readonly excessBlobGas: u64;
|
|
3457
3454
|
}
|
|
3458
3455
|
|
|
3459
|
-
/** @name PalletEthereumVerifierForkVersions (
|
|
3456
|
+
/** @name PalletEthereumVerifierForkVersions (304) */
|
|
3460
3457
|
interface PalletEthereumVerifierForkVersions extends Struct {
|
|
3461
3458
|
readonly genesis: PalletEthereumVerifierFork;
|
|
3462
3459
|
readonly altair: PalletEthereumVerifierFork;
|
|
@@ -3467,13 +3464,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3467
3464
|
readonly fulu: PalletEthereumVerifierFork;
|
|
3468
3465
|
}
|
|
3469
3466
|
|
|
3470
|
-
/** @name PalletEthereumVerifierFork (
|
|
3467
|
+
/** @name PalletEthereumVerifierFork (305) */
|
|
3471
3468
|
interface PalletEthereumVerifierFork extends Struct {
|
|
3472
3469
|
readonly version: U8aFixed;
|
|
3473
3470
|
readonly epoch: Compact<u64>;
|
|
3474
3471
|
}
|
|
3475
3472
|
|
|
3476
|
-
/** @name PalletEthereumVerifierUpdate (
|
|
3473
|
+
/** @name PalletEthereumVerifierUpdate (306) */
|
|
3477
3474
|
interface PalletEthereumVerifierUpdate extends Struct {
|
|
3478
3475
|
readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3479
3476
|
readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
|
|
@@ -3484,22 +3481,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3484
3481
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3485
3482
|
}
|
|
3486
3483
|
|
|
3487
|
-
/** @name PalletEthereumVerifierSyncAggregate (
|
|
3484
|
+
/** @name PalletEthereumVerifierSyncAggregate (307) */
|
|
3488
3485
|
interface PalletEthereumVerifierSyncAggregate extends Struct {
|
|
3489
3486
|
readonly syncCommitteeBits: Bytes;
|
|
3490
3487
|
readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
|
|
3491
3488
|
}
|
|
3492
3489
|
|
|
3493
|
-
/** @name SnowbridgeBeaconPrimitivesSignature (
|
|
3490
|
+
/** @name SnowbridgeBeaconPrimitivesSignature (309) */
|
|
3494
3491
|
interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
|
|
3495
3492
|
|
|
3496
|
-
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (
|
|
3493
|
+
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (312) */
|
|
3497
3494
|
interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
|
|
3498
3495
|
readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
3499
3496
|
readonly nextSyncCommitteeBranch: Vec<H256>;
|
|
3500
3497
|
}
|
|
3501
3498
|
|
|
3502
|
-
/** @name PalletCrosschainTransferCall (
|
|
3499
|
+
/** @name PalletCrosschainTransferCall (313) */
|
|
3503
3500
|
interface PalletCrosschainTransferCall extends Enum {
|
|
3504
3501
|
readonly isSetChainConfig: boolean;
|
|
3505
3502
|
readonly asSetChainConfig: {
|
|
@@ -3589,7 +3586,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3589
3586
|
| 'CollateralizeTransfer';
|
|
3590
3587
|
}
|
|
3591
3588
|
|
|
3592
|
-
/** @name PalletCrosschainTransferChainConfig (
|
|
3589
|
+
/** @name PalletCrosschainTransferChainConfig (314) */
|
|
3593
3590
|
interface PalletCrosschainTransferChainConfig extends Enum {
|
|
3594
3591
|
readonly isEvm: boolean;
|
|
3595
3592
|
readonly asEvm: {
|
|
@@ -3601,7 +3598,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3601
3598
|
readonly type: 'Evm';
|
|
3602
3599
|
}
|
|
3603
3600
|
|
|
3604
|
-
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (
|
|
3601
|
+
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (316) */
|
|
3605
3602
|
interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
|
|
3606
3603
|
readonly activationGasCost: Compact<u128>;
|
|
3607
3604
|
readonly signatureGasCost: Compact<u128>;
|
|
@@ -3609,56 +3606,56 @@ declare module '@polkadot/types/lookup' {
|
|
|
3609
3606
|
readonly estimatedMicrogonsPerEth: u128;
|
|
3610
3607
|
}
|
|
3611
3608
|
|
|
3612
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (
|
|
3609
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (319) */
|
|
3613
3610
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
|
|
3614
3611
|
readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
|
|
3615
3612
|
readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
|
|
3616
3613
|
}
|
|
3617
3614
|
|
|
3618
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (
|
|
3615
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (320) */
|
|
3619
3616
|
interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
|
|
3620
3617
|
readonly anchorBlockHash: H256;
|
|
3621
3618
|
readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
|
|
3622
3619
|
}
|
|
3623
3620
|
|
|
3624
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (
|
|
3621
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (322) */
|
|
3625
3622
|
interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
|
|
3626
3623
|
readonly rlp: Bytes;
|
|
3627
3624
|
}
|
|
3628
3625
|
|
|
3629
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (
|
|
3626
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (326) */
|
|
3630
3627
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
|
|
3631
3628
|
readonly targetBlockNumber: Compact<u64>;
|
|
3632
3629
|
readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
|
|
3633
3630
|
readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
|
|
3634
3631
|
}
|
|
3635
3632
|
|
|
3636
|
-
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (
|
|
3633
|
+
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (327) */
|
|
3637
3634
|
interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
|
|
3638
3635
|
readonly nodes: Vec<Bytes>;
|
|
3639
3636
|
readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
|
|
3640
3637
|
}
|
|
3641
3638
|
|
|
3642
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (
|
|
3639
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (331) */
|
|
3643
3640
|
interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
|
|
3644
3641
|
readonly transactionIndex: Compact<u64>;
|
|
3645
3642
|
readonly nodeIndexes: Vec<u16>;
|
|
3646
3643
|
}
|
|
3647
3644
|
|
|
3648
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (
|
|
3645
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (336) */
|
|
3649
3646
|
interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
|
|
3650
3647
|
readonly transactionIndex: Compact<u64>;
|
|
3651
3648
|
readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
|
|
3652
3649
|
}
|
|
3653
3650
|
|
|
3654
|
-
/** @name ArgonPrimitivesEthereumEthereumLog (
|
|
3651
|
+
/** @name ArgonPrimitivesEthereumEthereumLog (337) */
|
|
3655
3652
|
interface ArgonPrimitivesEthereumEthereumLog extends Struct {
|
|
3656
3653
|
readonly address: H160;
|
|
3657
3654
|
readonly topics: Vec<H256>;
|
|
3658
3655
|
readonly data: Bytes;
|
|
3659
3656
|
}
|
|
3660
3657
|
|
|
3661
|
-
/** @name PalletBootstrapCall (
|
|
3658
|
+
/** @name PalletBootstrapCall (342) */
|
|
3662
3659
|
interface PalletBootstrapCall extends Enum {
|
|
3663
3660
|
readonly isSetRecoveryPayload: boolean;
|
|
3664
3661
|
readonly asSetRecoveryPayload: {
|
|
@@ -3674,12 +3671,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
3674
3671
|
readonly type: 'SetRecoveryPayload' | 'SetEndpoint';
|
|
3675
3672
|
}
|
|
3676
3673
|
|
|
3677
|
-
/** @name PalletBootstrapRecoveryProof (
|
|
3674
|
+
/** @name PalletBootstrapRecoveryProof (343) */
|
|
3678
3675
|
interface PalletBootstrapRecoveryProof extends Struct {
|
|
3679
3676
|
readonly signature: U8aFixed;
|
|
3680
3677
|
}
|
|
3681
3678
|
|
|
3682
|
-
/** @name PalletMultisigError (
|
|
3679
|
+
/** @name PalletMultisigError (345) */
|
|
3683
3680
|
interface PalletMultisigError extends Enum {
|
|
3684
3681
|
readonly isMinimumThreshold: boolean;
|
|
3685
3682
|
readonly isAlreadyApproved: boolean;
|
|
@@ -3712,21 +3709,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3712
3709
|
| 'AlreadyStored';
|
|
3713
3710
|
}
|
|
3714
3711
|
|
|
3715
|
-
/** @name PalletProxyProxyDefinition (
|
|
3712
|
+
/** @name PalletProxyProxyDefinition (348) */
|
|
3716
3713
|
interface PalletProxyProxyDefinition extends Struct {
|
|
3717
3714
|
readonly delegate: AccountId32;
|
|
3718
3715
|
readonly proxyType: ArgonRuntimeProxyType;
|
|
3719
3716
|
readonly delay: u32;
|
|
3720
3717
|
}
|
|
3721
3718
|
|
|
3722
|
-
/** @name PalletProxyAnnouncement (
|
|
3719
|
+
/** @name PalletProxyAnnouncement (352) */
|
|
3723
3720
|
interface PalletProxyAnnouncement extends Struct {
|
|
3724
3721
|
readonly real: AccountId32;
|
|
3725
3722
|
readonly callHash: H256;
|
|
3726
3723
|
readonly height: u32;
|
|
3727
3724
|
}
|
|
3728
3725
|
|
|
3729
|
-
/** @name PalletProxyError (
|
|
3726
|
+
/** @name PalletProxyError (354) */
|
|
3730
3727
|
interface PalletProxyError extends Enum {
|
|
3731
3728
|
readonly isTooMany: boolean;
|
|
3732
3729
|
readonly isNotFound: boolean;
|
|
@@ -3747,16 +3744,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
3747
3744
|
| 'NoSelfProxy';
|
|
3748
3745
|
}
|
|
3749
3746
|
|
|
3750
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
3747
|
+
/** @name ArgonPrimitivesTickTicker (355) */
|
|
3751
3748
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
3752
3749
|
readonly tickDurationMillis: Compact<u64>;
|
|
3753
3750
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
3754
3751
|
}
|
|
3755
3752
|
|
|
3756
|
-
/** @name PalletTicksError (
|
|
3753
|
+
/** @name PalletTicksError (357) */
|
|
3757
3754
|
type PalletTicksError = Null;
|
|
3758
3755
|
|
|
3759
|
-
/** @name PalletMiningSlotMinerNonceScoring (
|
|
3756
|
+
/** @name PalletMiningSlotMinerNonceScoring (360) */
|
|
3760
3757
|
interface PalletMiningSlotMinerNonceScoring extends Struct {
|
|
3761
3758
|
readonly nonce: U256;
|
|
3762
3759
|
readonly lastWinBlock: Option<u32>;
|
|
@@ -3764,7 +3761,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3764
3761
|
readonly frameStartBlocksWonSurplus: i16;
|
|
3765
3762
|
}
|
|
3766
3763
|
|
|
3767
|
-
/** @name ArgonPrimitivesBlockSealMiningBidStats (
|
|
3764
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (372) */
|
|
3768
3765
|
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
3769
3766
|
readonly bidsCount: u32;
|
|
3770
3767
|
readonly bidAmountMin: u128;
|
|
@@ -3772,14 +3769,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3772
3769
|
readonly bidAmountSum: u128;
|
|
3773
3770
|
}
|
|
3774
3771
|
|
|
3775
|
-
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (
|
|
3772
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (376) */
|
|
3776
3773
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
3777
3774
|
readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
|
|
3778
3775
|
readonly ticksBetweenSlots: Compact<u64>;
|
|
3779
3776
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
3780
3777
|
}
|
|
3781
3778
|
|
|
3782
|
-
/** @name PalletMiningSlotError (
|
|
3779
|
+
/** @name PalletMiningSlotError (386) */
|
|
3783
3780
|
interface PalletMiningSlotError extends Enum {
|
|
3784
3781
|
readonly isSlotNotTakingBids: boolean;
|
|
3785
3782
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -3806,16 +3803,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3806
3803
|
| 'UnrecoverableHold';
|
|
3807
3804
|
}
|
|
3808
3805
|
|
|
3809
|
-
/** @name
|
|
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) */
|
|
3806
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (387) */
|
|
3819
3807
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
3820
3808
|
readonly isP2wsh: boolean;
|
|
3821
3809
|
readonly asP2wsh: {
|
|
@@ -3824,7 +3812,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3824
3812
|
readonly type: 'P2wsh';
|
|
3825
3813
|
}
|
|
3826
3814
|
|
|
3827
|
-
/** @name
|
|
3815
|
+
/** @name ArgonPrimitivesBitcoinUtxoAddress (388) */
|
|
3816
|
+
interface ArgonPrimitivesBitcoinUtxoAddress extends Struct {
|
|
3817
|
+
readonly utxoId: u64;
|
|
3818
|
+
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
3819
|
+
readonly submittedAtHeight: Compact<u64>;
|
|
3820
|
+
}
|
|
3821
|
+
|
|
3822
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (392) */
|
|
3828
3823
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
3829
3824
|
readonly isBitcoin: boolean;
|
|
3830
3825
|
readonly isTestnet: boolean;
|
|
@@ -3833,7 +3828,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3833
3828
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
3834
3829
|
}
|
|
3835
3830
|
|
|
3836
|
-
/** @name PalletBitcoinUtxosError (
|
|
3831
|
+
/** @name PalletBitcoinUtxosError (393) */
|
|
3837
3832
|
interface PalletBitcoinUtxosError extends Enum {
|
|
3838
3833
|
readonly isNoPermissions: boolean;
|
|
3839
3834
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -3847,9 +3842,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3847
3842
|
readonly isMaxUtxosExceeded: boolean;
|
|
3848
3843
|
readonly isInvalidBitcoinScript: boolean;
|
|
3849
3844
|
readonly isDuplicateUtxoId: boolean;
|
|
3850
|
-
readonly
|
|
3851
|
-
readonly isUtxoNotCandidate: boolean;
|
|
3852
|
-
readonly isLockAlreadyFunded: boolean;
|
|
3845
|
+
readonly isMaxUtxosPerLockExceeded: boolean;
|
|
3853
3846
|
readonly type:
|
|
3854
3847
|
| 'NoPermissions'
|
|
3855
3848
|
| 'NoBitcoinConfirmedBlock'
|
|
@@ -3863,12 +3856,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
3863
3856
|
| 'MaxUtxosExceeded'
|
|
3864
3857
|
| 'InvalidBitcoinScript'
|
|
3865
3858
|
| 'DuplicateUtxoId'
|
|
3866
|
-
| '
|
|
3867
|
-
| 'UtxoNotCandidate'
|
|
3868
|
-
| 'LockAlreadyFunded';
|
|
3859
|
+
| 'MaxUtxosPerLockExceeded';
|
|
3869
3860
|
}
|
|
3870
3861
|
|
|
3871
|
-
/** @name ArgonPrimitivesVault (
|
|
3862
|
+
/** @name ArgonPrimitivesVault (394) */
|
|
3872
3863
|
interface ArgonPrimitivesVault extends Struct {
|
|
3873
3864
|
readonly operatorAccountId: AccountId32;
|
|
3874
3865
|
readonly delegateAccountId: Option<AccountId32>;
|
|
@@ -3879,8 +3870,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
3879
3870
|
readonly reservedSecuritizationSpace: Compact<u128>;
|
|
3880
3871
|
readonly securitizationPendingActivation: Compact<u128>;
|
|
3881
3872
|
readonly lockedSatoshis: Compact<u64>;
|
|
3882
|
-
readonly
|
|
3883
|
-
readonly
|
|
3873
|
+
readonly ratioAdjustedSatoshis: Compact<u64>;
|
|
3874
|
+
readonly flexibleRatioAdjustedSatoshis: Compact<u64>;
|
|
3884
3875
|
readonly securitizationReleaseSchedule: BTreeMap<u64, u128>;
|
|
3885
3876
|
readonly securitizationRatio: Compact<u128>;
|
|
3886
3877
|
readonly isClosed: bool;
|
|
@@ -3890,13 +3881,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3890
3881
|
readonly operationalMinimumReleaseTick: Option<u64>;
|
|
3891
3882
|
}
|
|
3892
3883
|
|
|
3893
|
-
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (
|
|
3884
|
+
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (401) */
|
|
3894
3885
|
interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
|
|
3895
3886
|
readonly committedMicronots: Compact<u128>;
|
|
3896
3887
|
readonly encumberedMicronots: Compact<u128>;
|
|
3897
3888
|
}
|
|
3898
3889
|
|
|
3899
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
3890
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (403) */
|
|
3900
3891
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
3901
3892
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
3902
3893
|
readonly depth: Compact<u8>;
|
|
@@ -3906,21 +3897,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3906
3897
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
3907
3898
|
}
|
|
3908
3899
|
|
|
3909
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
3900
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (405) */
|
|
3910
3901
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
3911
3902
|
readonly isMain: boolean;
|
|
3912
3903
|
readonly isTest: boolean;
|
|
3913
3904
|
readonly type: 'Main' | 'Test';
|
|
3914
3905
|
}
|
|
3915
3906
|
|
|
3916
|
-
/** @name PalletVaultsVaultFrameRevenue (
|
|
3907
|
+
/** @name PalletVaultsVaultFrameRevenue (414) */
|
|
3917
3908
|
interface PalletVaultsVaultFrameRevenue extends Struct {
|
|
3918
3909
|
readonly frameId: Compact<u64>;
|
|
3919
3910
|
readonly bitcoinLockFeeRevenue: Compact<u128>;
|
|
3920
3911
|
readonly bitcoinLockFeeCouponValueUsed: Compact<u128>;
|
|
3921
3912
|
readonly bitcoinLocksCreated: Compact<u32>;
|
|
3922
|
-
readonly
|
|
3923
|
-
readonly
|
|
3913
|
+
readonly bitcoinLocksNewSecuritization: Compact<u128>;
|
|
3914
|
+
readonly bitcoinLocksReleasedSecuritization: Compact<u128>;
|
|
3924
3915
|
readonly bitcoinLocksAddedSatoshis: Compact<u64>;
|
|
3925
3916
|
readonly bitcoinLocksReleasedSatoshis: Compact<u64>;
|
|
3926
3917
|
readonly securitizationActivated: Compact<u128>;
|
|
@@ -3933,7 +3924,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3933
3924
|
readonly uncollectedRevenue: Compact<u128>;
|
|
3934
3925
|
}
|
|
3935
3926
|
|
|
3936
|
-
/** @name PalletVaultsError (
|
|
3927
|
+
/** @name PalletVaultsError (416) */
|
|
3937
3928
|
interface PalletVaultsError extends Enum {
|
|
3938
3929
|
readonly isNoMoreVaultIds: boolean;
|
|
3939
3930
|
readonly isInsufficientFunds: boolean;
|
|
@@ -4002,17 +3993,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
4002
3993
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
4003
3994
|
}
|
|
4004
3995
|
|
|
4005
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
3996
|
+
/** @name PalletBitcoinLocksLockedBitcoin (417) */
|
|
4006
3997
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
4007
3998
|
readonly vaultId: Compact<u32>;
|
|
4008
|
-
readonly
|
|
4009
|
-
readonly
|
|
3999
|
+
readonly securitizedSatoshis: Compact<u64>;
|
|
4000
|
+
readonly microgonsAtTargetPerBtc: Compact<u128>;
|
|
4001
|
+
readonly securitizationCoverageMicrogons: Compact<u128>;
|
|
4002
|
+
readonly securitizationTick: Compact<u64>;
|
|
4003
|
+
readonly fundedSatoshis: Compact<u64>;
|
|
4004
|
+
readonly fissionedSatoshis: Compact<u64>;
|
|
4010
4005
|
readonly ownerAccount: AccountId32;
|
|
4011
4006
|
readonly securitizationRatio: u128;
|
|
4012
4007
|
readonly securityFees: Compact<u128>;
|
|
4013
4008
|
readonly couponPaidFees: Compact<u128>;
|
|
4014
|
-
readonly satoshis: Compact<u64>;
|
|
4015
|
-
readonly utxoSatoshis: Option<u64>;
|
|
4016
4009
|
readonly vaultPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
4017
4010
|
readonly vaultClaimPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
4018
4011
|
readonly vaultXpubSources: ITuple<[U8aFixed, u32, u32]>;
|
|
@@ -4020,24 +4013,24 @@ declare module '@polkadot/types/lookup' {
|
|
|
4020
4013
|
readonly vaultClaimHeight: Compact<u64>;
|
|
4021
4014
|
readonly openClaimHeight: Compact<u64>;
|
|
4022
4015
|
readonly createdAtHeight: Compact<u64>;
|
|
4016
|
+
readonly fundingExpirationHeight: Compact<u64>;
|
|
4023
4017
|
readonly utxoScriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
4024
|
-
readonly isFunded: bool;
|
|
4025
4018
|
readonly isFlexible: bool;
|
|
4026
4019
|
readonly fundHoldExtensions: BTreeMap<u64, u128>;
|
|
4027
4020
|
readonly createdAtArgonBlock: Compact<u32>;
|
|
4028
4021
|
}
|
|
4029
4022
|
|
|
4030
|
-
/** @name PalletBitcoinLocksLockReleaseRequest (
|
|
4023
|
+
/** @name PalletBitcoinLocksLockReleaseRequest (421) */
|
|
4031
4024
|
interface PalletBitcoinLocksLockReleaseRequest extends Struct {
|
|
4032
4025
|
readonly utxoId: Compact<u64>;
|
|
4033
4026
|
readonly vaultId: Compact<u32>;
|
|
4034
4027
|
readonly bitcoinNetworkFee: Compact<u64>;
|
|
4035
4028
|
readonly cosignDueFrame: Compact<u64>;
|
|
4036
4029
|
readonly toScriptPubkey: Bytes;
|
|
4037
|
-
readonly
|
|
4030
|
+
readonly securitizationAtRisk: Compact<u128>;
|
|
4038
4031
|
}
|
|
4039
4032
|
|
|
4040
|
-
/** @name PalletBitcoinLocksOrphanedUtxo (
|
|
4033
|
+
/** @name PalletBitcoinLocksOrphanedUtxo (423) */
|
|
4041
4034
|
interface PalletBitcoinLocksOrphanedUtxo extends Struct {
|
|
4042
4035
|
readonly utxoId: Compact<u64>;
|
|
4043
4036
|
readonly vaultId: Compact<u32>;
|
|
@@ -4046,14 +4039,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4046
4039
|
readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
|
|
4047
4040
|
}
|
|
4048
4041
|
|
|
4049
|
-
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (
|
|
4042
|
+
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (425) */
|
|
4050
4043
|
interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
|
|
4051
4044
|
readonly bitcoinNetworkFee: u64;
|
|
4052
4045
|
readonly toScriptPubkey: Bytes;
|
|
4053
4046
|
readonly createdAtArgonBlockNumber: u32;
|
|
4054
4047
|
}
|
|
4055
4048
|
|
|
4056
|
-
/** @name PalletBitcoinLocksError (
|
|
4049
|
+
/** @name PalletBitcoinLocksError (432) */
|
|
4057
4050
|
interface PalletBitcoinLocksError extends Enum {
|
|
4058
4051
|
readonly isInsufficientFunds: boolean;
|
|
4059
4052
|
readonly isInsufficientVaultFunds: boolean;
|
|
@@ -4068,10 +4061,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4068
4061
|
readonly isBitcoinSignatureUnableToBeDecoded: boolean;
|
|
4069
4062
|
readonly isBitcoinPubkeyUnableToBeDecoded: boolean;
|
|
4070
4063
|
readonly isBitcoinInvalidCosignature: boolean;
|
|
4071
|
-
readonly isInsufficientSatoshisLocked: boolean;
|
|
4072
4064
|
readonly isNoBitcoinPricesAvailable: boolean;
|
|
4073
4065
|
readonly isInvalidBitcoinScript: boolean;
|
|
4074
4066
|
readonly isNoPermissions: boolean;
|
|
4067
|
+
readonly isLockHasActiveFissions: boolean;
|
|
4068
|
+
readonly isInsufficientSatoshisForFissions: boolean;
|
|
4069
|
+
readonly isFissionStateMismatch: boolean;
|
|
4070
|
+
readonly isInsufficientSecuritizationForFissions: boolean;
|
|
4075
4071
|
readonly isHoldUnexpectedlyModified: boolean;
|
|
4076
4072
|
readonly isUnrecoverableHold: boolean;
|
|
4077
4073
|
readonly isVaultNotFound: boolean;
|
|
@@ -4082,15 +4078,15 @@ declare module '@polkadot/types/lookup' {
|
|
|
4082
4078
|
readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
|
|
4083
4079
|
readonly isVaultNotYetActive: boolean;
|
|
4084
4080
|
readonly isExpirationAtBlockOverflow: boolean;
|
|
4085
|
-
readonly
|
|
4081
|
+
readonly isNoResecuritizationChange: boolean;
|
|
4086
4082
|
readonly isLockInProcessOfRelease: boolean;
|
|
4087
4083
|
readonly isLockPendingFunding: boolean;
|
|
4088
4084
|
readonly isOverflowError: boolean;
|
|
4089
|
-
readonly
|
|
4085
|
+
readonly isIneligibleMicrogonsAtTargetPerBtcRequested: boolean;
|
|
4086
|
+
readonly isMicrogonsAtTargetPerBtcTickOlderThanCurrent: boolean;
|
|
4090
4087
|
readonly isFeeCouponExpired: boolean;
|
|
4091
4088
|
readonly isInvalidFeeCouponSignature: boolean;
|
|
4092
4089
|
readonly isFeeCouponAlreadyUsed: boolean;
|
|
4093
|
-
readonly isFeeCouponOnlyForInitialization: boolean;
|
|
4094
4090
|
readonly isOrphanedUtxoFundingConflict: boolean;
|
|
4095
4091
|
readonly isOrphanedUtxoReleaseRequested: boolean;
|
|
4096
4092
|
readonly isFundingUtxoCannotBeReleased: boolean;
|
|
@@ -4109,10 +4105,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4109
4105
|
| 'BitcoinSignatureUnableToBeDecoded'
|
|
4110
4106
|
| 'BitcoinPubkeyUnableToBeDecoded'
|
|
4111
4107
|
| 'BitcoinInvalidCosignature'
|
|
4112
|
-
| 'InsufficientSatoshisLocked'
|
|
4113
4108
|
| 'NoBitcoinPricesAvailable'
|
|
4114
4109
|
| 'InvalidBitcoinScript'
|
|
4115
4110
|
| 'NoPermissions'
|
|
4111
|
+
| 'LockHasActiveFissions'
|
|
4112
|
+
| 'InsufficientSatoshisForFissions'
|
|
4113
|
+
| 'FissionStateMismatch'
|
|
4114
|
+
| 'InsufficientSecuritizationForFissions'
|
|
4116
4115
|
| 'HoldUnexpectedlyModified'
|
|
4117
4116
|
| 'UnrecoverableHold'
|
|
4118
4117
|
| 'VaultNotFound'
|
|
@@ -4122,22 +4121,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
4122
4121
|
| 'UnableToGenerateVaultBitcoinPubkey'
|
|
4123
4122
|
| 'VaultNotYetActive'
|
|
4124
4123
|
| 'ExpirationAtBlockOverflow'
|
|
4125
|
-
| '
|
|
4124
|
+
| 'NoResecuritizationChange'
|
|
4126
4125
|
| 'LockInProcessOfRelease'
|
|
4127
4126
|
| 'LockPendingFunding'
|
|
4128
4127
|
| 'OverflowError'
|
|
4129
|
-
| '
|
|
4128
|
+
| 'IneligibleMicrogonsAtTargetPerBtcRequested'
|
|
4129
|
+
| 'MicrogonsAtTargetPerBtcTickOlderThanCurrent'
|
|
4130
4130
|
| 'FeeCouponExpired'
|
|
4131
4131
|
| 'InvalidFeeCouponSignature'
|
|
4132
4132
|
| 'FeeCouponAlreadyUsed'
|
|
4133
|
-
| 'FeeCouponOnlyForInitialization'
|
|
4134
4133
|
| 'OrphanedUtxoFundingConflict'
|
|
4135
4134
|
| 'OrphanedUtxoReleaseRequested'
|
|
4136
4135
|
| 'FundingUtxoCannotBeReleased'
|
|
4137
4136
|
| 'MaxOrphanedUtxoReleaseRequestsExceeded';
|
|
4138
4137
|
}
|
|
4139
4138
|
|
|
4140
|
-
/** @name ArgonPrimitivesVaultVaultError (
|
|
4139
|
+
/** @name ArgonPrimitivesVaultVaultError (433) */
|
|
4141
4140
|
interface ArgonPrimitivesVaultVaultError extends Enum {
|
|
4142
4141
|
readonly isVaultClosed: boolean;
|
|
4143
4142
|
readonly isAccountWouldBeBelowMinimum: boolean;
|
|
@@ -4168,7 +4167,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4168
4167
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
4169
4168
|
}
|
|
4170
4169
|
|
|
4171
|
-
/** @name PalletNotariesError (
|
|
4170
|
+
/** @name PalletNotariesError (445) */
|
|
4172
4171
|
interface PalletNotariesError extends Enum {
|
|
4173
4172
|
readonly isProposalNotFound: boolean;
|
|
4174
4173
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -4191,7 +4190,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4191
4190
|
| 'InvalidNotary';
|
|
4192
4191
|
}
|
|
4193
4192
|
|
|
4194
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
4193
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (449) */
|
|
4195
4194
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
4196
4195
|
readonly notebookNumber: Compact<u32>;
|
|
4197
4196
|
readonly tick: Compact<u64>;
|
|
@@ -4200,7 +4199,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4200
4199
|
readonly parentSecret: Option<H256>;
|
|
4201
4200
|
}
|
|
4202
4201
|
|
|
4203
|
-
/** @name PalletNotebookError (
|
|
4202
|
+
/** @name PalletNotebookError (452) */
|
|
4204
4203
|
interface PalletNotebookError extends Enum {
|
|
4205
4204
|
readonly isDuplicateNotebookNumber: boolean;
|
|
4206
4205
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -4235,7 +4234,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4235
4234
|
| 'InvalidNotebookSubmissionTick';
|
|
4236
4235
|
}
|
|
4237
4236
|
|
|
4238
|
-
/** @name PalletLocalchainTransferQueuedTransferOut (
|
|
4237
|
+
/** @name PalletLocalchainTransferQueuedTransferOut (453) */
|
|
4239
4238
|
interface PalletLocalchainTransferQueuedTransferOut extends Struct {
|
|
4240
4239
|
readonly accountId: AccountId32;
|
|
4241
4240
|
readonly amount: u128;
|
|
@@ -4243,10 +4242,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4243
4242
|
readonly notaryId: u32;
|
|
4244
4243
|
}
|
|
4245
4244
|
|
|
4246
|
-
/** @name FrameSupportPalletId (
|
|
4245
|
+
/** @name FrameSupportPalletId (455) */
|
|
4247
4246
|
interface FrameSupportPalletId extends U8aFixed {}
|
|
4248
4247
|
|
|
4249
|
-
/** @name PalletLocalchainTransferError (
|
|
4248
|
+
/** @name PalletLocalchainTransferError (456) */
|
|
4250
4249
|
interface PalletLocalchainTransferError extends Enum {
|
|
4251
4250
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
4252
4251
|
readonly isInsufficientFunds: boolean;
|
|
@@ -4267,7 +4266,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4267
4266
|
| 'NoAvailableTransferId';
|
|
4268
4267
|
}
|
|
4269
4268
|
|
|
4270
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
4269
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (460) */
|
|
4271
4270
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
4272
4271
|
readonly notaryId: Compact<u32>;
|
|
4273
4272
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -4276,13 +4275,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4276
4275
|
readonly blockVotingPower: Compact<u128>;
|
|
4277
4276
|
}
|
|
4278
4277
|
|
|
4279
|
-
/** @name PalletBlockSealSpecError (
|
|
4278
|
+
/** @name PalletBlockSealSpecError (465) */
|
|
4280
4279
|
interface PalletBlockSealSpecError extends Enum {
|
|
4281
4280
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
4282
4281
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
4283
4282
|
}
|
|
4284
4283
|
|
|
4285
|
-
/** @name PalletDomainsError (
|
|
4284
|
+
/** @name PalletDomainsError (467) */
|
|
4286
4285
|
interface PalletDomainsError extends Enum {
|
|
4287
4286
|
readonly isDomainNotRegistered: boolean;
|
|
4288
4287
|
readonly isNotDomainOwner: boolean;
|
|
@@ -4297,28 +4296,28 @@ declare module '@polkadot/types/lookup' {
|
|
|
4297
4296
|
| 'AccountDecodingError';
|
|
4298
4297
|
}
|
|
4299
4298
|
|
|
4300
|
-
/** @name PalletPriceIndexEthereumPriceFrameAccumulator (
|
|
4299
|
+
/** @name PalletPriceIndexEthereumPriceFrameAccumulator (469) */
|
|
4301
4300
|
interface PalletPriceIndexEthereumPriceFrameAccumulator extends Struct {
|
|
4302
4301
|
readonly totalUsdPrice: u128;
|
|
4303
4302
|
readonly totalWeiPerGas: Compact<u128>;
|
|
4304
4303
|
readonly sampleCount: Compact<u32>;
|
|
4305
4304
|
}
|
|
4306
4305
|
|
|
4307
|
-
/** @name PalletPriceIndexCpiMeasurementBucket (
|
|
4306
|
+
/** @name PalletPriceIndexCpiMeasurementBucket (474) */
|
|
4308
4307
|
interface PalletPriceIndexCpiMeasurementBucket extends Struct {
|
|
4309
4308
|
readonly tickRange: ITuple<[u64, u64]>;
|
|
4310
4309
|
readonly totalCpi: i128;
|
|
4311
4310
|
readonly measurementsCount: u32;
|
|
4312
4311
|
}
|
|
4313
4312
|
|
|
4314
|
-
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (
|
|
4313
|
+
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (478) */
|
|
4315
4314
|
interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
|
|
4316
4315
|
readonly frameId: Compact<u64>;
|
|
4317
4316
|
readonly totalMicrogonsPerArgonot: Compact<u128>;
|
|
4318
4317
|
readonly sampleCount: Compact<u32>;
|
|
4319
4318
|
}
|
|
4320
4319
|
|
|
4321
|
-
/** @name PalletPriceIndexError (
|
|
4320
|
+
/** @name PalletPriceIndexError (479) */
|
|
4322
4321
|
interface PalletPriceIndexError extends Enum {
|
|
4323
4322
|
readonly isNotAuthorizedOperator: boolean;
|
|
4324
4323
|
readonly isMissingValue: boolean;
|
|
@@ -4333,7 +4332,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4333
4332
|
| 'InvalidEthereumPrices';
|
|
4334
4333
|
}
|
|
4335
4334
|
|
|
4336
|
-
/** @name PalletGrandpaStoredState (
|
|
4335
|
+
/** @name PalletGrandpaStoredState (480) */
|
|
4337
4336
|
interface PalletGrandpaStoredState extends Enum {
|
|
4338
4337
|
readonly isLive: boolean;
|
|
4339
4338
|
readonly isPendingPause: boolean;
|
|
@@ -4350,7 +4349,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4350
4349
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
4351
4350
|
}
|
|
4352
4351
|
|
|
4353
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
4352
|
+
/** @name PalletGrandpaStoredPendingChange (481) */
|
|
4354
4353
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
4355
4354
|
readonly scheduledAt: u32;
|
|
4356
4355
|
readonly delay: u32;
|
|
@@ -4358,7 +4357,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4358
4357
|
readonly forced: Option<u32>;
|
|
4359
4358
|
}
|
|
4360
4359
|
|
|
4361
|
-
/** @name PalletGrandpaError (
|
|
4360
|
+
/** @name PalletGrandpaError (483) */
|
|
4362
4361
|
interface PalletGrandpaError extends Enum {
|
|
4363
4362
|
readonly isPauseFailed: boolean;
|
|
4364
4363
|
readonly isResumeFailed: boolean;
|
|
@@ -4377,14 +4376,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4377
4376
|
| 'DuplicateOffenceReport';
|
|
4378
4377
|
}
|
|
4379
4378
|
|
|
4380
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
4379
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (484) */
|
|
4381
4380
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
4382
4381
|
readonly blockAuthorAccountId: AccountId32;
|
|
4383
4382
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
4384
4383
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
4385
4384
|
}
|
|
4386
4385
|
|
|
4387
|
-
/** @name PalletBlockSealError (
|
|
4386
|
+
/** @name PalletBlockSealError (486) */
|
|
4388
4387
|
interface PalletBlockSealError extends Enum {
|
|
4389
4388
|
readonly isInvalidVoteSealStrength: boolean;
|
|
4390
4389
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -4431,45 +4430,46 @@ declare module '@polkadot/types/lookup' {
|
|
|
4431
4430
|
| 'DuplicateVoteBlockAtTick';
|
|
4432
4431
|
}
|
|
4433
4432
|
|
|
4434
|
-
/** @name PalletBlockRewardsError (
|
|
4433
|
+
/** @name PalletBlockRewardsError (490) */
|
|
4435
4434
|
type PalletBlockRewardsError = Null;
|
|
4436
4435
|
|
|
4437
|
-
/** @name PalletMintPendingMintUtxo (
|
|
4436
|
+
/** @name PalletMintPendingMintUtxo (491) */
|
|
4438
4437
|
interface PalletMintPendingMintUtxo extends Struct {
|
|
4438
|
+
readonly fissionId: Compact<u64>;
|
|
4439
4439
|
readonly utxoId: Compact<u64>;
|
|
4440
4440
|
readonly accountId: AccountId32;
|
|
4441
4441
|
readonly remainingAmount: Compact<u128>;
|
|
4442
4442
|
readonly maxAmountPerFrame: Compact<u128>;
|
|
4443
4443
|
}
|
|
4444
4444
|
|
|
4445
|
-
/** @name PalletMintMintQueueCursor (
|
|
4445
|
+
/** @name PalletMintMintQueueCursor (493) */
|
|
4446
4446
|
interface PalletMintMintQueueCursor extends Struct {
|
|
4447
4447
|
readonly payoutStartIndex: Compact<u64>;
|
|
4448
4448
|
readonly payoutCursorIndex: Compact<u64>;
|
|
4449
4449
|
readonly payoutCursorFrameId: Option<u64>;
|
|
4450
4450
|
}
|
|
4451
4451
|
|
|
4452
|
-
/** @name PalletMintMintAction (
|
|
4452
|
+
/** @name PalletMintMintAction (496) */
|
|
4453
4453
|
interface PalletMintMintAction extends Struct {
|
|
4454
4454
|
readonly argonBurned: u128;
|
|
4455
4455
|
readonly argonMinted: u128;
|
|
4456
4456
|
readonly bitcoinMinted: u128;
|
|
4457
4457
|
}
|
|
4458
4458
|
|
|
4459
|
-
/** @name PalletMintError (
|
|
4459
|
+
/** @name PalletMintError (498) */
|
|
4460
4460
|
interface PalletMintError extends Enum {
|
|
4461
4461
|
readonly isTooManyPendingMints: boolean;
|
|
4462
4462
|
readonly type: 'TooManyPendingMints';
|
|
4463
4463
|
}
|
|
4464
4464
|
|
|
4465
|
-
/** @name PalletBalancesBalanceLock (
|
|
4465
|
+
/** @name PalletBalancesBalanceLock (500) */
|
|
4466
4466
|
interface PalletBalancesBalanceLock extends Struct {
|
|
4467
4467
|
readonly id: U8aFixed;
|
|
4468
4468
|
readonly amount: u128;
|
|
4469
4469
|
readonly reasons: PalletBalancesReasons;
|
|
4470
4470
|
}
|
|
4471
4471
|
|
|
4472
|
-
/** @name PalletBalancesReasons (
|
|
4472
|
+
/** @name PalletBalancesReasons (501) */
|
|
4473
4473
|
interface PalletBalancesReasons extends Enum {
|
|
4474
4474
|
readonly isFee: boolean;
|
|
4475
4475
|
readonly isMisc: boolean;
|
|
@@ -4477,38 +4477,38 @@ declare module '@polkadot/types/lookup' {
|
|
|
4477
4477
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
4478
4478
|
}
|
|
4479
4479
|
|
|
4480
|
-
/** @name PalletBalancesReserveData (
|
|
4480
|
+
/** @name PalletBalancesReserveData (504) */
|
|
4481
4481
|
interface PalletBalancesReserveData extends Struct {
|
|
4482
4482
|
readonly id: U8aFixed;
|
|
4483
4483
|
readonly amount: u128;
|
|
4484
4484
|
}
|
|
4485
4485
|
|
|
4486
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
4486
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (507) */
|
|
4487
4487
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
4488
4488
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
4489
4489
|
readonly amount: u128;
|
|
4490
4490
|
}
|
|
4491
4491
|
|
|
4492
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
4492
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (510) */
|
|
4493
4493
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
4494
4494
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
4495
4495
|
readonly amount: u128;
|
|
4496
4496
|
}
|
|
4497
4497
|
|
|
4498
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
4498
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (511) */
|
|
4499
4499
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
4500
4500
|
readonly isBlockRewards: boolean;
|
|
4501
4501
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
4502
4502
|
readonly type: 'BlockRewards';
|
|
4503
4503
|
}
|
|
4504
4504
|
|
|
4505
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
4505
|
+
/** @name PalletBlockRewardsFreezeReason (512) */
|
|
4506
4506
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
4507
4507
|
readonly isMaturationPeriod: boolean;
|
|
4508
4508
|
readonly type: 'MaturationPeriod';
|
|
4509
4509
|
}
|
|
4510
4510
|
|
|
4511
|
-
/** @name PalletBalancesError (
|
|
4511
|
+
/** @name PalletBalancesError (514) */
|
|
4512
4512
|
interface PalletBalancesError extends Enum {
|
|
4513
4513
|
readonly isVestingBalance: boolean;
|
|
4514
4514
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -4537,7 +4537,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4537
4537
|
| 'DeltaZero';
|
|
4538
4538
|
}
|
|
4539
4539
|
|
|
4540
|
-
/** @name PalletTxPauseError (
|
|
4540
|
+
/** @name PalletTxPauseError (516) */
|
|
4541
4541
|
interface PalletTxPauseError extends Enum {
|
|
4542
4542
|
readonly isIsPaused: boolean;
|
|
4543
4543
|
readonly isIsUnpaused: boolean;
|
|
@@ -4546,33 +4546,91 @@ declare module '@polkadot/types/lookup' {
|
|
|
4546
4546
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
4547
4547
|
}
|
|
4548
4548
|
|
|
4549
|
-
/** @name PalletTransactionPaymentReleases (
|
|
4549
|
+
/** @name PalletTransactionPaymentReleases (517) */
|
|
4550
4550
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
4551
4551
|
readonly isV1Ancient: boolean;
|
|
4552
4552
|
readonly isV2: boolean;
|
|
4553
4553
|
readonly type: 'V1Ancient' | 'V2';
|
|
4554
4554
|
}
|
|
4555
4555
|
|
|
4556
|
-
/** @name FrameSupportStorageNoDrop (
|
|
4556
|
+
/** @name FrameSupportStorageNoDrop (518) */
|
|
4557
4557
|
interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
|
|
4558
4558
|
|
|
4559
|
-
/** @name FrameSupportTokensFungibleImbalance (
|
|
4559
|
+
/** @name FrameSupportTokensFungibleImbalance (519) */
|
|
4560
4560
|
interface FrameSupportTokensFungibleImbalance extends Struct {
|
|
4561
4561
|
readonly amount: u128;
|
|
4562
4562
|
}
|
|
4563
4563
|
|
|
4564
|
-
/** @name PalletUtilityError (
|
|
4564
|
+
/** @name PalletUtilityError (520) */
|
|
4565
4565
|
interface PalletUtilityError extends Enum {
|
|
4566
4566
|
readonly isTooManyCalls: boolean;
|
|
4567
4567
|
readonly type: 'TooManyCalls';
|
|
4568
4568
|
}
|
|
4569
4569
|
|
|
4570
|
-
/** @name PalletSudoError (
|
|
4570
|
+
/** @name PalletSudoError (521) */
|
|
4571
4571
|
interface PalletSudoError extends Enum {
|
|
4572
4572
|
readonly isRequireSudo: boolean;
|
|
4573
4573
|
readonly type: 'RequireSudo';
|
|
4574
4574
|
}
|
|
4575
4575
|
|
|
4576
|
+
/** @name PalletBitcoinFissionsFission (522) */
|
|
4577
|
+
interface PalletBitcoinFissionsFission extends Struct {
|
|
4578
|
+
readonly liquidId: Compact<u64>;
|
|
4579
|
+
readonly utxoId: Compact<u64>;
|
|
4580
|
+
readonly satoshis: Compact<u64>;
|
|
4581
|
+
readonly microgonsAtTargetPerBtc: Compact<u128>;
|
|
4582
|
+
readonly liquidityPromised: Compact<u128>;
|
|
4583
|
+
readonly createdAtArgonBlock: Compact<u32>;
|
|
4584
|
+
readonly ratchetNumber: Compact<u32>;
|
|
4585
|
+
readonly lastRatchetTick: Compact<u64>;
|
|
4586
|
+
readonly lastUpdatedArgonBlock: Compact<u32>;
|
|
4587
|
+
}
|
|
4588
|
+
|
|
4589
|
+
/** @name PalletBitcoinFissionsError (524) */
|
|
4590
|
+
interface PalletBitcoinFissionsError extends Enum {
|
|
4591
|
+
readonly isFissionIdBelowMinimum: boolean;
|
|
4592
|
+
readonly isFissionIdOverflow: boolean;
|
|
4593
|
+
readonly isFissionAlreadyExists: boolean;
|
|
4594
|
+
readonly isFissionNotFound: boolean;
|
|
4595
|
+
readonly isNoRatchetingAvailable: boolean;
|
|
4596
|
+
readonly isRatchetNumberOverflow: boolean;
|
|
4597
|
+
readonly isFissionHasNoSatoshis: boolean;
|
|
4598
|
+
readonly isTooManyFissionsForLock: boolean;
|
|
4599
|
+
readonly isLockNotFound: boolean;
|
|
4600
|
+
readonly isNoPermissions: boolean;
|
|
4601
|
+
readonly isLockNotFunded: boolean;
|
|
4602
|
+
readonly isLockReleasePending: boolean;
|
|
4603
|
+
readonly isInsufficientFundedSatoshis: boolean;
|
|
4604
|
+
readonly isInsufficientSecuritization: boolean;
|
|
4605
|
+
readonly isIneligibleMicrogonsAtTargetPerBtc: boolean;
|
|
4606
|
+
readonly isMicrogonsAtTargetPerBtcTickOlderThanCurrent: boolean;
|
|
4607
|
+
readonly isInsufficientFissionedSatoshis: boolean;
|
|
4608
|
+
readonly isNoBitcoinPricesAvailable: boolean;
|
|
4609
|
+
readonly isInsufficientFunds: boolean;
|
|
4610
|
+
readonly isOverflow: boolean;
|
|
4611
|
+
readonly type:
|
|
4612
|
+
| 'FissionIdBelowMinimum'
|
|
4613
|
+
| 'FissionIdOverflow'
|
|
4614
|
+
| 'FissionAlreadyExists'
|
|
4615
|
+
| 'FissionNotFound'
|
|
4616
|
+
| 'NoRatchetingAvailable'
|
|
4617
|
+
| 'RatchetNumberOverflow'
|
|
4618
|
+
| 'FissionHasNoSatoshis'
|
|
4619
|
+
| 'TooManyFissionsForLock'
|
|
4620
|
+
| 'LockNotFound'
|
|
4621
|
+
| 'NoPermissions'
|
|
4622
|
+
| 'LockNotFunded'
|
|
4623
|
+
| 'LockReleasePending'
|
|
4624
|
+
| 'InsufficientFundedSatoshis'
|
|
4625
|
+
| 'InsufficientSecuritization'
|
|
4626
|
+
| 'IneligibleMicrogonsAtTargetPerBtc'
|
|
4627
|
+
| 'MicrogonsAtTargetPerBtcTickOlderThanCurrent'
|
|
4628
|
+
| 'InsufficientFissionedSatoshis'
|
|
4629
|
+
| 'NoBitcoinPricesAvailable'
|
|
4630
|
+
| 'InsufficientFunds'
|
|
4631
|
+
| 'Overflow';
|
|
4632
|
+
}
|
|
4633
|
+
|
|
4576
4634
|
/** @name PalletTreasuryFrameVaultCapital (525) */
|
|
4577
4635
|
interface PalletTreasuryFrameVaultCapital extends Struct {
|
|
4578
4636
|
readonly frameId: Compact<u64>;
|