@argonprotocol/mainchain 1.4.11 → 1.4.12-dev.2afa6e4a
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -10
- package/browser/index.d.ts +4494 -1121
- package/browser/index.js +15 -1294
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +17 -1297
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +4494 -1121
- package/lib/index.d.ts +4494 -1121
- package/lib/index.js +19 -1299
- package/lib/index.js.map +1 -1
- package/package.json +7 -5
- package/src/interfaces/augment-api-consts.ts +20 -33
- package/src/interfaces/augment-api-errors.ts +139 -37
- package/src/interfaces/augment-api-events.ts +150 -92
- package/src/interfaces/augment-api-query.ts +128 -60
- package/src/interfaces/augment-api-runtime.ts +0 -1
- package/src/interfaces/augment-api-tx.ts +83 -125
- package/src/interfaces/augment-api.ts +0 -1
- package/src/interfaces/augment-types.ts +0 -1
- package/src/interfaces/lookup.ts +429 -367
- package/src/interfaces/registry.ts +12 -7
- package/src/interfaces/types-lookup.ts +503 -437
|
@@ -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: {
|
|
@@ -602,10 +578,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
602
578
|
readonly asVaultBitcoinXpubChange: {
|
|
603
579
|
readonly vaultId: u32;
|
|
604
580
|
} & Struct;
|
|
605
|
-
readonly
|
|
606
|
-
readonly
|
|
581
|
+
readonly isReservedSecuritizationSpaceChanged: boolean;
|
|
582
|
+
readonly asReservedSecuritizationSpaceChanged: {
|
|
607
583
|
readonly vaultId: u32;
|
|
608
|
-
readonly
|
|
584
|
+
readonly reservedSecuritizationSpace: u128;
|
|
609
585
|
} & Struct;
|
|
610
586
|
readonly isVaultRevenueUncollected: boolean;
|
|
611
587
|
readonly asVaultRevenueUncollected: {
|
|
@@ -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;
|
|
@@ -675,11 +650,11 @@ declare module '@polkadot/types/lookup' {
|
|
|
675
650
|
| 'VaultTermsChanged'
|
|
676
651
|
| 'VaultClosed'
|
|
677
652
|
| 'VaultBitcoinXpubChange'
|
|
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,29 +736,34 @@ 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
|
-
readonly
|
|
790
|
-
readonly
|
|
759
|
+
readonly isBitcoinLockFlexibleChanged: boolean;
|
|
760
|
+
readonly asBitcoinLockFlexibleChanged: {
|
|
791
761
|
readonly utxoId: u64;
|
|
792
762
|
readonly vaultId: u32;
|
|
793
|
-
readonly
|
|
763
|
+
readonly isFlexible: bool;
|
|
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
|
-
| '
|
|
810
|
-
| '
|
|
777
|
+
| 'OrphanedUtxoExpirationError'
|
|
778
|
+
| 'OrphanedUtxoCleanupScheduleOverflow'
|
|
779
|
+
| 'BitcoinLockResecuritized'
|
|
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,11 +1256,12 @@ 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: {
|
|
1293
1263
|
readonly accountId: AccountId32;
|
|
1264
|
+
readonly fissionId: u64;
|
|
1294
1265
|
readonly utxoId: Option<u64>;
|
|
1295
1266
|
readonly amount: u128;
|
|
1296
1267
|
} & Struct;
|
|
@@ -1305,6 +1276,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1305
1276
|
readonly asMintError: {
|
|
1306
1277
|
readonly mintType: PalletMintMintType;
|
|
1307
1278
|
readonly accountId: AccountId32;
|
|
1279
|
+
readonly fissionId: Option<u64>;
|
|
1308
1280
|
readonly utxoId: Option<u64>;
|
|
1309
1281
|
readonly amount: u128;
|
|
1310
1282
|
readonly error: SpRuntimeDispatchError;
|
|
@@ -1312,14 +1284,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1312
1284
|
readonly type: 'BitcoinMint' | 'MiningMint' | 'MintError';
|
|
1313
1285
|
}
|
|
1314
1286
|
|
|
1315
|
-
/** @name PalletMintMintType (
|
|
1287
|
+
/** @name PalletMintMintType (100) */
|
|
1316
1288
|
interface PalletMintMintType extends Enum {
|
|
1317
1289
|
readonly isBitcoin: boolean;
|
|
1318
1290
|
readonly isMining: boolean;
|
|
1319
1291
|
readonly type: 'Bitcoin' | 'Mining';
|
|
1320
1292
|
}
|
|
1321
1293
|
|
|
1322
|
-
/** @name PalletBalancesEvent (
|
|
1294
|
+
/** @name PalletBalancesEvent (101) */
|
|
1323
1295
|
interface PalletBalancesEvent extends Enum {
|
|
1324
1296
|
readonly isEndowed: boolean;
|
|
1325
1297
|
readonly asEndowed: {
|
|
@@ -1506,14 +1478,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1506
1478
|
| 'Unexpected';
|
|
1507
1479
|
}
|
|
1508
1480
|
|
|
1509
|
-
/** @name FrameSupportTokensMiscBalanceStatus (
|
|
1481
|
+
/** @name FrameSupportTokensMiscBalanceStatus (102) */
|
|
1510
1482
|
interface FrameSupportTokensMiscBalanceStatus extends Enum {
|
|
1511
1483
|
readonly isFree: boolean;
|
|
1512
1484
|
readonly isReserved: boolean;
|
|
1513
1485
|
readonly type: 'Free' | 'Reserved';
|
|
1514
1486
|
}
|
|
1515
1487
|
|
|
1516
|
-
/** @name ArgonRuntimeRuntimeHoldReason (
|
|
1488
|
+
/** @name ArgonRuntimeRuntimeHoldReason (103) */
|
|
1517
1489
|
interface ArgonRuntimeRuntimeHoldReason extends Enum {
|
|
1518
1490
|
readonly isMiningSlot: boolean;
|
|
1519
1491
|
readonly asMiningSlot: PalletMiningSlotHoldReason;
|
|
@@ -1536,13 +1508,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
1536
1508
|
| 'CrosschainTransfer';
|
|
1537
1509
|
}
|
|
1538
1510
|
|
|
1539
|
-
/** @name PalletMiningSlotHoldReason (
|
|
1511
|
+
/** @name PalletMiningSlotHoldReason (104) */
|
|
1540
1512
|
interface PalletMiningSlotHoldReason extends Enum {
|
|
1541
1513
|
readonly isRegisterAsMiner: boolean;
|
|
1542
1514
|
readonly type: 'RegisterAsMiner';
|
|
1543
1515
|
}
|
|
1544
1516
|
|
|
1545
|
-
/** @name PalletVaultsHoldReason (
|
|
1517
|
+
/** @name PalletVaultsHoldReason (105) */
|
|
1546
1518
|
interface PalletVaultsHoldReason extends Enum {
|
|
1547
1519
|
readonly isEnterVault: boolean;
|
|
1548
1520
|
readonly isObligationFee: boolean;
|
|
@@ -1550,39 +1522,39 @@ declare module '@polkadot/types/lookup' {
|
|
|
1550
1522
|
readonly type: 'EnterVault' | 'ObligationFee' | 'PendingCollect';
|
|
1551
1523
|
}
|
|
1552
1524
|
|
|
1553
|
-
/** @name PalletBitcoinLocksHoldReason (
|
|
1525
|
+
/** @name PalletBitcoinLocksHoldReason (106) */
|
|
1554
1526
|
interface PalletBitcoinLocksHoldReason extends Enum {
|
|
1555
1527
|
readonly isReleaseBitcoinLock: boolean;
|
|
1556
1528
|
readonly type: 'ReleaseBitcoinLock';
|
|
1557
1529
|
}
|
|
1558
1530
|
|
|
1559
|
-
/** @name PalletBlockRewardsHoldReason (
|
|
1531
|
+
/** @name PalletBlockRewardsHoldReason (107) */
|
|
1560
1532
|
interface PalletBlockRewardsHoldReason extends Enum {
|
|
1561
1533
|
readonly isMaturationPeriod: boolean;
|
|
1562
1534
|
readonly type: 'MaturationPeriod';
|
|
1563
1535
|
}
|
|
1564
1536
|
|
|
1565
|
-
/** @name PalletTreasuryHoldReason (
|
|
1537
|
+
/** @name PalletTreasuryHoldReason (108) */
|
|
1566
1538
|
interface PalletTreasuryHoldReason extends Enum {
|
|
1567
1539
|
readonly isContributedToTreasury: boolean;
|
|
1568
1540
|
readonly type: 'ContributedToTreasury';
|
|
1569
1541
|
}
|
|
1570
1542
|
|
|
1571
|
-
/** @name PalletCrosschainTransferHoldReason (
|
|
1543
|
+
/** @name PalletCrosschainTransferHoldReason (109) */
|
|
1572
1544
|
interface PalletCrosschainTransferHoldReason extends Enum {
|
|
1573
1545
|
readonly isTransferOutMintingAuthorityTip: boolean;
|
|
1574
1546
|
readonly isMintingAuthorityActivationRepayment: boolean;
|
|
1575
1547
|
readonly type: 'TransferOutMintingAuthorityTip' | 'MintingAuthorityActivationRepayment';
|
|
1576
1548
|
}
|
|
1577
1549
|
|
|
1578
|
-
/** @name PalletBalancesUnexpectedKind (
|
|
1550
|
+
/** @name PalletBalancesUnexpectedKind (110) */
|
|
1579
1551
|
interface PalletBalancesUnexpectedKind extends Enum {
|
|
1580
1552
|
readonly isBalanceUpdated: boolean;
|
|
1581
1553
|
readonly isFailedToMutateAccount: boolean;
|
|
1582
1554
|
readonly type: 'BalanceUpdated' | 'FailedToMutateAccount';
|
|
1583
1555
|
}
|
|
1584
1556
|
|
|
1585
|
-
/** @name PalletTxPauseEvent (
|
|
1557
|
+
/** @name PalletTxPauseEvent (112) */
|
|
1586
1558
|
interface PalletTxPauseEvent extends Enum {
|
|
1587
1559
|
readonly isCallPaused: boolean;
|
|
1588
1560
|
readonly asCallPaused: {
|
|
@@ -1595,7 +1567,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1595
1567
|
readonly type: 'CallPaused' | 'CallUnpaused';
|
|
1596
1568
|
}
|
|
1597
1569
|
|
|
1598
|
-
/** @name PalletTransactionPaymentEvent (
|
|
1570
|
+
/** @name PalletTransactionPaymentEvent (115) */
|
|
1599
1571
|
interface PalletTransactionPaymentEvent extends Enum {
|
|
1600
1572
|
readonly isTransactionFeePaid: boolean;
|
|
1601
1573
|
readonly asTransactionFeePaid: {
|
|
@@ -1606,7 +1578,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1606
1578
|
readonly type: 'TransactionFeePaid';
|
|
1607
1579
|
}
|
|
1608
1580
|
|
|
1609
|
-
/** @name PalletUtilityEvent (
|
|
1581
|
+
/** @name PalletUtilityEvent (116) */
|
|
1610
1582
|
interface PalletUtilityEvent extends Enum {
|
|
1611
1583
|
readonly isBatchInterrupted: boolean;
|
|
1612
1584
|
readonly asBatchInterrupted: {
|
|
@@ -1640,7 +1612,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1640
1612
|
| 'IfElseFallbackCalled';
|
|
1641
1613
|
}
|
|
1642
1614
|
|
|
1643
|
-
/** @name PalletSudoEvent (
|
|
1615
|
+
/** @name PalletSudoEvent (117) */
|
|
1644
1616
|
interface PalletSudoEvent extends Enum {
|
|
1645
1617
|
readonly isSudid: boolean;
|
|
1646
1618
|
readonly asSudid: {
|
|
@@ -1659,6 +1631,43 @@ declare module '@polkadot/types/lookup' {
|
|
|
1659
1631
|
readonly type: 'Sudid' | 'KeyChanged' | 'KeyRemoved' | 'SudoAsDone';
|
|
1660
1632
|
}
|
|
1661
1633
|
|
|
1634
|
+
/** @name PalletBitcoinFissionsEvent (118) */
|
|
1635
|
+
interface PalletBitcoinFissionsEvent extends Enum {
|
|
1636
|
+
readonly isFissionCreated: boolean;
|
|
1637
|
+
readonly asFissionCreated: {
|
|
1638
|
+
readonly accountId: AccountId32;
|
|
1639
|
+
readonly fissionId: u64;
|
|
1640
|
+
readonly liquidId: u64;
|
|
1641
|
+
readonly utxoId: u64;
|
|
1642
|
+
readonly satoshis: u64;
|
|
1643
|
+
readonly microgonsAtTargetPerBtc: u128;
|
|
1644
|
+
readonly liquidityPromised: u128;
|
|
1645
|
+
} & Struct;
|
|
1646
|
+
readonly isFissionRatcheted: boolean;
|
|
1647
|
+
readonly asFissionRatcheted: {
|
|
1648
|
+
readonly accountId: AccountId32;
|
|
1649
|
+
readonly fissionId: u64;
|
|
1650
|
+
readonly ratchetNumber: u32;
|
|
1651
|
+
readonly microgonsAtTargetPerBtc: u128;
|
|
1652
|
+
readonly liquidityPromised: u128;
|
|
1653
|
+
readonly amountMinted: u128;
|
|
1654
|
+
readonly amountBurned: u128;
|
|
1655
|
+
} & Struct;
|
|
1656
|
+
readonly isFissionClosed: boolean;
|
|
1657
|
+
readonly asFissionClosed: {
|
|
1658
|
+
readonly accountId: AccountId32;
|
|
1659
|
+
readonly fissionId: u64;
|
|
1660
|
+
readonly redemptionAmount: u128;
|
|
1661
|
+
} & Struct;
|
|
1662
|
+
readonly isFissionClosedByLock: boolean;
|
|
1663
|
+
readonly asFissionClosedByLock: {
|
|
1664
|
+
readonly accountId: AccountId32;
|
|
1665
|
+
readonly fissionId: u64;
|
|
1666
|
+
readonly utxoId: u64;
|
|
1667
|
+
} & Struct;
|
|
1668
|
+
readonly type: 'FissionCreated' | 'FissionRatcheted' | 'FissionClosed' | 'FissionClosedByLock';
|
|
1669
|
+
}
|
|
1670
|
+
|
|
1662
1671
|
/** @name PalletTreasuryEvent (119) */
|
|
1663
1672
|
interface PalletTreasuryEvent extends Enum {
|
|
1664
1673
|
readonly isCouldNotDistributeEarningsToBondLot: boolean;
|
|
@@ -1733,16 +1742,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
1733
1742
|
readonly accountId: AccountId32;
|
|
1734
1743
|
readonly bonds: u32;
|
|
1735
1744
|
} & Struct;
|
|
1736
|
-
readonly
|
|
1737
|
-
readonly
|
|
1745
|
+
readonly isBondLotFlexibilityChanged: boolean;
|
|
1746
|
+
readonly asBondLotFlexibilityChanged: {
|
|
1738
1747
|
readonly vaultId: u32;
|
|
1739
1748
|
readonly bondLotId: u64;
|
|
1740
|
-
readonly
|
|
1749
|
+
readonly isFlexible: bool;
|
|
1741
1750
|
} & Struct;
|
|
1742
|
-
readonly
|
|
1743
|
-
readonly
|
|
1751
|
+
readonly isReservedBondSpaceChanged: boolean;
|
|
1752
|
+
readonly asReservedBondSpaceChanged: {
|
|
1744
1753
|
readonly vaultId: u32;
|
|
1745
|
-
readonly
|
|
1754
|
+
readonly reservedBondSpace: u32;
|
|
1746
1755
|
} & Struct;
|
|
1747
1756
|
readonly isEncumberedBondMicrogonsBurned: boolean;
|
|
1748
1757
|
readonly asEncumberedBondMicrogonsBurned: {
|
|
@@ -1760,8 +1769,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
1760
1769
|
| 'BondLotPurchased'
|
|
1761
1770
|
| 'BondLotReleaseScheduled'
|
|
1762
1771
|
| 'BondLotReleased'
|
|
1763
|
-
| '
|
|
1764
|
-
| '
|
|
1772
|
+
| 'BondLotFlexibilityChanged'
|
|
1773
|
+
| 'ReservedBondSpaceChanged'
|
|
1765
1774
|
| 'EncumberedBondMicrogonsBurned';
|
|
1766
1775
|
}
|
|
1767
1776
|
|
|
@@ -2583,22 +2592,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2583
2592
|
readonly asSetOperator: {
|
|
2584
2593
|
readonly accountId: AccountId32;
|
|
2585
2594
|
} & 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';
|
|
2595
|
+
readonly type: 'Sync' | 'SetConfirmedBlock' | 'SetOperator';
|
|
2602
2596
|
}
|
|
2603
2597
|
|
|
2604
2598
|
/** @name ArgonPrimitivesInherentsBitcoinUtxoSync (201) */
|
|
@@ -2664,18 +2658,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2664
2658
|
readonly asSetDelegateAccount: {
|
|
2665
2659
|
readonly delegateAccountId: Option<AccountId32>;
|
|
2666
2660
|
} & Struct;
|
|
2667
|
-
readonly isSetName: boolean;
|
|
2668
|
-
readonly asSetName: {
|
|
2669
|
-
readonly name: Option<Bytes>;
|
|
2670
|
-
} & Struct;
|
|
2671
2661
|
readonly isSetCommittedArgonots: boolean;
|
|
2672
2662
|
readonly asSetCommittedArgonots: {
|
|
2673
2663
|
readonly amount: Compact<u128>;
|
|
2674
2664
|
} & Struct;
|
|
2675
|
-
readonly
|
|
2676
|
-
readonly
|
|
2677
|
-
readonly
|
|
2678
|
-
readonly backfillSecuritizationReserved: u128;
|
|
2665
|
+
readonly isSetReservedSecuritizationSpace: boolean;
|
|
2666
|
+
readonly asSetReservedSecuritizationSpace: {
|
|
2667
|
+
readonly reservedSecuritizationSpace: u128;
|
|
2679
2668
|
} & Struct;
|
|
2680
2669
|
readonly type:
|
|
2681
2670
|
| 'Create'
|
|
@@ -2685,15 +2674,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2685
2674
|
| 'ReplaceBitcoinXpub'
|
|
2686
2675
|
| 'Collect'
|
|
2687
2676
|
| 'SetDelegateAccount'
|
|
2688
|
-
| 'SetName'
|
|
2689
2677
|
| 'SetCommittedArgonots'
|
|
2690
|
-
| '
|
|
2678
|
+
| 'SetReservedSecuritizationSpace';
|
|
2691
2679
|
}
|
|
2692
2680
|
|
|
2693
2681
|
/** @name PalletVaultsVaultConfig (209) */
|
|
2694
2682
|
interface PalletVaultsVaultConfig extends Struct {
|
|
2695
2683
|
readonly terms: ArgonPrimitivesVaultVaultTerms;
|
|
2696
|
-
readonly name: Option<Bytes>;
|
|
2697
2684
|
readonly delegateAccountId: Option<AccountId32>;
|
|
2698
2685
|
readonly securitization: Compact<u128>;
|
|
2699
2686
|
readonly bitcoinXpubkey: ArgonPrimitivesBitcoinOpaqueBitcoinXpub;
|
|
@@ -2705,16 +2692,15 @@ declare module '@polkadot/types/lookup' {
|
|
|
2705
2692
|
readonly bitcoinAnnualPercentRate: Compact<u128>;
|
|
2706
2693
|
readonly bitcoinBaseFee: Compact<u128>;
|
|
2707
2694
|
readonly treasuryProfitSharing: Compact<Permill>;
|
|
2708
|
-
readonly treasuryBonusProfitSharing: Compact<Permill>;
|
|
2709
2695
|
}
|
|
2710
2696
|
|
|
2711
|
-
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (
|
|
2697
|
+
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (214) */
|
|
2712
2698
|
interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {}
|
|
2713
2699
|
|
|
2714
|
-
/** @name PalletBitcoinLocksCall (
|
|
2700
|
+
/** @name PalletBitcoinLocksCall (216) */
|
|
2715
2701
|
interface PalletBitcoinLocksCall extends Enum {
|
|
2716
|
-
readonly
|
|
2717
|
-
readonly
|
|
2702
|
+
readonly isCreateReceiveAddress: boolean;
|
|
2703
|
+
readonly asCreateReceiveAddress: {
|
|
2718
2704
|
readonly vaultId: u32;
|
|
2719
2705
|
readonly satoshis: Compact<u64>;
|
|
2720
2706
|
readonly bitcoinPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
@@ -2731,11 +2717,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
2731
2717
|
readonly utxoId: u64;
|
|
2732
2718
|
readonly signature: Bytes;
|
|
2733
2719
|
} & Struct;
|
|
2734
|
-
readonly isRatchet: boolean;
|
|
2735
|
-
readonly asRatchet: {
|
|
2736
|
-
readonly utxoId: u64;
|
|
2737
|
-
readonly options: Option<PalletBitcoinLocksLockOptions>;
|
|
2738
|
-
} & Struct;
|
|
2739
2720
|
readonly isAdminModifyMinimumLockedSats: boolean;
|
|
2740
2721
|
readonly asAdminModifyMinimumLockedSats: {
|
|
2741
2722
|
readonly satoshis: u64;
|
|
@@ -2752,51 +2733,60 @@ declare module '@polkadot/types/lookup' {
|
|
|
2752
2733
|
readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
2753
2734
|
readonly signature: Bytes;
|
|
2754
2735
|
} & Struct;
|
|
2755
|
-
readonly
|
|
2756
|
-
readonly
|
|
2757
|
-
readonly
|
|
2758
|
-
readonly vaultId: u32;
|
|
2736
|
+
readonly isResecuritize: boolean;
|
|
2737
|
+
readonly asResecuritize: {
|
|
2738
|
+
readonly utxoId: u64;
|
|
2759
2739
|
readonly satoshis: Compact<u64>;
|
|
2760
|
-
readonly bitcoinPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
2761
2740
|
readonly options: Option<PalletBitcoinLocksLockOptions>;
|
|
2762
|
-
readonly backfillSecuritizationToUnreserve: Compact<u128>;
|
|
2763
|
-
} & Struct;
|
|
2764
|
-
readonly isIncreaseSecuritization: boolean;
|
|
2765
|
-
readonly asIncreaseSecuritization: {
|
|
2766
|
-
readonly utxoId: u64;
|
|
2767
|
-
readonly newSatoshis: Compact<u64>;
|
|
2768
2741
|
} & Struct;
|
|
2769
|
-
readonly
|
|
2770
|
-
readonly
|
|
2742
|
+
readonly isSetFlexible: boolean;
|
|
2743
|
+
readonly asSetFlexible: {
|
|
2771
2744
|
readonly utxoId: u64;
|
|
2772
|
-
readonly
|
|
2745
|
+
readonly isFlexible: bool;
|
|
2773
2746
|
} & Struct;
|
|
2774
2747
|
readonly type:
|
|
2775
|
-
| '
|
|
2748
|
+
| 'CreateReceiveAddress'
|
|
2776
2749
|
| 'RequestRelease'
|
|
2777
2750
|
| 'CosignRelease'
|
|
2778
|
-
| 'Ratchet'
|
|
2779
2751
|
| 'AdminModifyMinimumLockedSats'
|
|
2780
2752
|
| 'RequestOrphanedUtxoRelease'
|
|
2781
2753
|
| 'CosignOrphanedUtxoRelease'
|
|
2782
|
-
| '
|
|
2783
|
-
| '
|
|
2784
|
-
| 'SetAsBackfill';
|
|
2754
|
+
| 'Resecuritize'
|
|
2755
|
+
| 'SetFlexible';
|
|
2785
2756
|
}
|
|
2786
2757
|
|
|
2787
|
-
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (
|
|
2758
|
+
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (217) */
|
|
2788
2759
|
interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {}
|
|
2789
2760
|
|
|
2790
|
-
/** @name PalletBitcoinLocksLockOptions (
|
|
2791
|
-
interface PalletBitcoinLocksLockOptions extends
|
|
2792
|
-
readonly
|
|
2793
|
-
readonly
|
|
2794
|
-
|
|
2795
|
-
|
|
2796
|
-
|
|
2761
|
+
/** @name PalletBitcoinLocksLockOptions (220) */
|
|
2762
|
+
interface PalletBitcoinLocksLockOptions extends Struct {
|
|
2763
|
+
readonly microgonsAtTargetPerBtc: Compact<u128>;
|
|
2764
|
+
readonly feeCoupon: Option<PalletBitcoinLocksFeeCoupon>;
|
|
2765
|
+
}
|
|
2766
|
+
|
|
2767
|
+
/** @name PalletBitcoinLocksFeeCoupon (222) */
|
|
2768
|
+
interface PalletBitcoinLocksFeeCoupon extends Struct {
|
|
2769
|
+
readonly feeDiscount: Compact<u128>;
|
|
2770
|
+
readonly securitizationSpaceToUnreserve: Compact<u128>;
|
|
2771
|
+
readonly expiresAtFrame: Compact<u64>;
|
|
2772
|
+
readonly nonce: Compact<u64>;
|
|
2773
|
+
readonly signature: SpRuntimeMultiSignature;
|
|
2774
|
+
}
|
|
2775
|
+
|
|
2776
|
+
/** @name SpRuntimeMultiSignature (223) */
|
|
2777
|
+
interface SpRuntimeMultiSignature extends Enum {
|
|
2778
|
+
readonly isEd25519: boolean;
|
|
2779
|
+
readonly asEd25519: U8aFixed;
|
|
2780
|
+
readonly isSr25519: boolean;
|
|
2781
|
+
readonly asSr25519: U8aFixed;
|
|
2782
|
+
readonly isEcdsa: boolean;
|
|
2783
|
+
readonly asEcdsa: U8aFixed;
|
|
2784
|
+
readonly isEth: boolean;
|
|
2785
|
+
readonly asEth: U8aFixed;
|
|
2786
|
+
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
|
|
2797
2787
|
}
|
|
2798
2788
|
|
|
2799
|
-
/** @name PalletNotariesCall (
|
|
2789
|
+
/** @name PalletNotariesCall (228) */
|
|
2800
2790
|
interface PalletNotariesCall extends Enum {
|
|
2801
2791
|
readonly isPropose: boolean;
|
|
2802
2792
|
readonly asPropose: {
|
|
@@ -2815,7 +2805,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2815
2805
|
readonly type: 'Propose' | 'Activate' | 'Update';
|
|
2816
2806
|
}
|
|
2817
2807
|
|
|
2818
|
-
/** @name PalletNotebookCall (
|
|
2808
|
+
/** @name PalletNotebookCall (229) */
|
|
2819
2809
|
interface PalletNotebookCall extends Enum {
|
|
2820
2810
|
readonly isSubmit: boolean;
|
|
2821
2811
|
readonly asSubmit: {
|
|
@@ -2828,13 +2818,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2828
2818
|
readonly type: 'Submit' | 'Unlock';
|
|
2829
2819
|
}
|
|
2830
2820
|
|
|
2831
|
-
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (
|
|
2821
|
+
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (231) */
|
|
2832
2822
|
interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
|
|
2833
2823
|
readonly header: ArgonPrimitivesNotebookNotebookHeader;
|
|
2834
2824
|
readonly signature: U8aFixed;
|
|
2835
2825
|
}
|
|
2836
2826
|
|
|
2837
|
-
/** @name ArgonPrimitivesNotebookNotebookHeader (
|
|
2827
|
+
/** @name ArgonPrimitivesNotebookNotebookHeader (232) */
|
|
2838
2828
|
interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
|
|
2839
2829
|
readonly version: Compact<u16>;
|
|
2840
2830
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2853,7 +2843,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2853
2843
|
readonly domains: Vec<ITuple<[H256, AccountId32]>>;
|
|
2854
2844
|
}
|
|
2855
2845
|
|
|
2856
|
-
/** @name ArgonPrimitivesNotebookChainTransfer (
|
|
2846
|
+
/** @name ArgonPrimitivesNotebookChainTransfer (235) */
|
|
2857
2847
|
interface ArgonPrimitivesNotebookChainTransfer extends Enum {
|
|
2858
2848
|
readonly isToMainchain: boolean;
|
|
2859
2849
|
readonly asToMainchain: {
|
|
@@ -2867,13 +2857,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2867
2857
|
readonly type: 'ToMainchain' | 'ToLocalchain';
|
|
2868
2858
|
}
|
|
2869
2859
|
|
|
2870
|
-
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (
|
|
2860
|
+
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (238) */
|
|
2871
2861
|
interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
|
|
2872
2862
|
readonly notebookNumber: Compact<u32>;
|
|
2873
2863
|
readonly accountUid: Compact<u32>;
|
|
2874
2864
|
}
|
|
2875
2865
|
|
|
2876
|
-
/** @name PalletLocalchainTransferCall (
|
|
2866
|
+
/** @name PalletLocalchainTransferCall (244) */
|
|
2877
2867
|
interface PalletLocalchainTransferCall extends Enum {
|
|
2878
2868
|
readonly isSendToLocalchain: boolean;
|
|
2879
2869
|
readonly asSendToLocalchain: {
|
|
@@ -2883,7 +2873,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2883
2873
|
readonly type: 'SendToLocalchain';
|
|
2884
2874
|
}
|
|
2885
2875
|
|
|
2886
|
-
/** @name PalletBlockSealSpecCall (
|
|
2876
|
+
/** @name PalletBlockSealSpecCall (245) */
|
|
2887
2877
|
interface PalletBlockSealSpecCall extends Enum {
|
|
2888
2878
|
readonly isConfigure: boolean;
|
|
2889
2879
|
readonly asConfigure: {
|
|
@@ -2893,7 +2883,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2893
2883
|
readonly type: 'Configure';
|
|
2894
2884
|
}
|
|
2895
2885
|
|
|
2896
|
-
/** @name PalletDomainsCall (
|
|
2886
|
+
/** @name PalletDomainsCall (246) */
|
|
2897
2887
|
interface PalletDomainsCall extends Enum {
|
|
2898
2888
|
readonly isSetZoneRecord: boolean;
|
|
2899
2889
|
readonly asSetZoneRecord: {
|
|
@@ -2903,7 +2893,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2903
2893
|
readonly type: 'SetZoneRecord';
|
|
2904
2894
|
}
|
|
2905
2895
|
|
|
2906
|
-
/** @name PalletPriceIndexCall (
|
|
2896
|
+
/** @name PalletPriceIndexCall (247) */
|
|
2907
2897
|
interface PalletPriceIndexCall extends Enum {
|
|
2908
2898
|
readonly isSubmit: boolean;
|
|
2909
2899
|
readonly asSubmit: {
|
|
@@ -2917,7 +2907,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2917
2907
|
readonly type: 'Submit' | 'SetOperator';
|
|
2918
2908
|
}
|
|
2919
2909
|
|
|
2920
|
-
/** @name PalletPriceIndexPriceIndex (
|
|
2910
|
+
/** @name PalletPriceIndexPriceIndex (248) */
|
|
2921
2911
|
interface PalletPriceIndexPriceIndex extends Struct {
|
|
2922
2912
|
readonly btcUsdPrice: Compact<u128>;
|
|
2923
2913
|
readonly argonotUsdPrice: u128;
|
|
@@ -2927,14 +2917,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2927
2917
|
readonly tick: Compact<u64>;
|
|
2928
2918
|
}
|
|
2929
2919
|
|
|
2930
|
-
/** @name PalletPriceIndexEthereumPriceIndex (
|
|
2920
|
+
/** @name PalletPriceIndexEthereumPriceIndex (250) */
|
|
2931
2921
|
interface PalletPriceIndexEthereumPriceIndex extends Struct {
|
|
2932
2922
|
readonly ethereumUsdPrice: u128;
|
|
2933
2923
|
readonly ethereumGasPriceWei: Compact<u128>;
|
|
2934
2924
|
readonly tick: Compact<u64>;
|
|
2935
2925
|
}
|
|
2936
2926
|
|
|
2937
|
-
/** @name PalletGrandpaCall (
|
|
2927
|
+
/** @name PalletGrandpaCall (251) */
|
|
2938
2928
|
interface PalletGrandpaCall extends Enum {
|
|
2939
2929
|
readonly isReportEquivocation: boolean;
|
|
2940
2930
|
readonly asReportEquivocation: {
|
|
@@ -2954,13 +2944,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2954
2944
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
|
2955
2945
|
}
|
|
2956
2946
|
|
|
2957
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
|
2947
|
+
/** @name SpConsensusGrandpaEquivocationProof (252) */
|
|
2958
2948
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
|
2959
2949
|
readonly setId: u64;
|
|
2960
2950
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
|
2961
2951
|
}
|
|
2962
2952
|
|
|
2963
|
-
/** @name SpConsensusGrandpaEquivocation (
|
|
2953
|
+
/** @name SpConsensusGrandpaEquivocation (253) */
|
|
2964
2954
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
|
2965
2955
|
readonly isPrevote: boolean;
|
|
2966
2956
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
|
@@ -2969,7 +2959,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2969
2959
|
readonly type: 'Prevote' | 'Precommit';
|
|
2970
2960
|
}
|
|
2971
2961
|
|
|
2972
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
|
2962
|
+
/** @name FinalityGrandpaEquivocationPrevote (254) */
|
|
2973
2963
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
|
2974
2964
|
readonly roundNumber: u64;
|
|
2975
2965
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2977,16 +2967,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2977
2967
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
2978
2968
|
}
|
|
2979
2969
|
|
|
2980
|
-
/** @name FinalityGrandpaPrevote (
|
|
2970
|
+
/** @name FinalityGrandpaPrevote (255) */
|
|
2981
2971
|
interface FinalityGrandpaPrevote extends Struct {
|
|
2982
2972
|
readonly targetHash: H256;
|
|
2983
2973
|
readonly targetNumber: u32;
|
|
2984
2974
|
}
|
|
2985
2975
|
|
|
2986
|
-
/** @name SpConsensusGrandpaAppSignature (
|
|
2976
|
+
/** @name SpConsensusGrandpaAppSignature (256) */
|
|
2987
2977
|
interface SpConsensusGrandpaAppSignature extends U8aFixed {}
|
|
2988
2978
|
|
|
2989
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
|
2979
|
+
/** @name FinalityGrandpaEquivocationPrecommit (258) */
|
|
2990
2980
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
|
2991
2981
|
readonly roundNumber: u64;
|
|
2992
2982
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2994,16 +2984,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2994
2984
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
2995
2985
|
}
|
|
2996
2986
|
|
|
2997
|
-
/** @name FinalityGrandpaPrecommit (
|
|
2987
|
+
/** @name FinalityGrandpaPrecommit (259) */
|
|
2998
2988
|
interface FinalityGrandpaPrecommit extends Struct {
|
|
2999
2989
|
readonly targetHash: H256;
|
|
3000
2990
|
readonly targetNumber: u32;
|
|
3001
2991
|
}
|
|
3002
2992
|
|
|
3003
|
-
/** @name SpCoreVoid (
|
|
2993
|
+
/** @name SpCoreVoid (261) */
|
|
3004
2994
|
type SpCoreVoid = Null;
|
|
3005
2995
|
|
|
3006
|
-
/** @name PalletBlockSealCall (
|
|
2996
|
+
/** @name PalletBlockSealCall (262) */
|
|
3007
2997
|
interface PalletBlockSealCall extends Enum {
|
|
3008
2998
|
readonly isApply: boolean;
|
|
3009
2999
|
readonly asApply: {
|
|
@@ -3012,7 +3002,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3012
3002
|
readonly type: 'Apply';
|
|
3013
3003
|
}
|
|
3014
3004
|
|
|
3015
|
-
/** @name ArgonPrimitivesInherentsBlockSealInherent (
|
|
3005
|
+
/** @name ArgonPrimitivesInherentsBlockSealInherent (263) */
|
|
3016
3006
|
interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
|
|
3017
3007
|
readonly isVote: boolean;
|
|
3018
3008
|
readonly asVote: {
|
|
@@ -3027,14 +3017,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3027
3017
|
readonly type: 'Vote' | 'Compute';
|
|
3028
3018
|
}
|
|
3029
3019
|
|
|
3030
|
-
/** @name ArgonPrimitivesBalanceChangeMerkleProof (
|
|
3020
|
+
/** @name ArgonPrimitivesBalanceChangeMerkleProof (264) */
|
|
3031
3021
|
interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
|
|
3032
3022
|
readonly proof: Vec<H256>;
|
|
3033
3023
|
readonly numberOfLeaves: Compact<u32>;
|
|
3034
3024
|
readonly leafIndex: Compact<u32>;
|
|
3035
3025
|
}
|
|
3036
3026
|
|
|
3037
|
-
/** @name ArgonPrimitivesBlockVoteBlockVoteT (
|
|
3027
|
+
/** @name ArgonPrimitivesBlockVoteBlockVoteT (266) */
|
|
3038
3028
|
interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
|
|
3039
3029
|
readonly accountId: AccountId32;
|
|
3040
3030
|
readonly blockHash: H256;
|
|
@@ -3045,19 +3035,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
3045
3035
|
readonly tick: Compact<u64>;
|
|
3046
3036
|
}
|
|
3047
3037
|
|
|
3048
|
-
/** @name SpRuntimeMultiSignature (265) */
|
|
3049
|
-
interface SpRuntimeMultiSignature extends Enum {
|
|
3050
|
-
readonly isEd25519: boolean;
|
|
3051
|
-
readonly asEd25519: U8aFixed;
|
|
3052
|
-
readonly isSr25519: boolean;
|
|
3053
|
-
readonly asSr25519: U8aFixed;
|
|
3054
|
-
readonly isEcdsa: boolean;
|
|
3055
|
-
readonly asEcdsa: U8aFixed;
|
|
3056
|
-
readonly isEth: boolean;
|
|
3057
|
-
readonly asEth: U8aFixed;
|
|
3058
|
-
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
|
|
3059
|
-
}
|
|
3060
|
-
|
|
3061
3038
|
/** @name PalletBlockRewardsCall (267) */
|
|
3062
3039
|
interface PalletBlockRewardsCall extends Enum {
|
|
3063
3040
|
readonly isSetBlockRewardsPaused: boolean;
|
|
@@ -3227,7 +3204,29 @@ declare module '@polkadot/types/lookup' {
|
|
|
3227
3204
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
|
3228
3205
|
}
|
|
3229
3206
|
|
|
3230
|
-
/** @name
|
|
3207
|
+
/** @name PalletBitcoinFissionsCall (276) */
|
|
3208
|
+
interface PalletBitcoinFissionsCall extends Enum {
|
|
3209
|
+
readonly isCreate: boolean;
|
|
3210
|
+
readonly asCreate: {
|
|
3211
|
+
readonly fissionId: Compact<u64>;
|
|
3212
|
+
readonly liquidId: Compact<u64>;
|
|
3213
|
+
readonly utxoId: Compact<u64>;
|
|
3214
|
+
readonly satoshis: Compact<u64>;
|
|
3215
|
+
readonly microgonsAtTargetPerBtc: Compact<u128>;
|
|
3216
|
+
} & Struct;
|
|
3217
|
+
readonly isRatchet: boolean;
|
|
3218
|
+
readonly asRatchet: {
|
|
3219
|
+
readonly fissionId: Compact<u64>;
|
|
3220
|
+
readonly microgonsAtTargetPerBtc: Compact<u128>;
|
|
3221
|
+
} & Struct;
|
|
3222
|
+
readonly isClose: boolean;
|
|
3223
|
+
readonly asClose: {
|
|
3224
|
+
readonly fissionId: Compact<u64>;
|
|
3225
|
+
} & Struct;
|
|
3226
|
+
readonly type: 'Create' | 'Ratchet' | 'Close';
|
|
3227
|
+
}
|
|
3228
|
+
|
|
3229
|
+
/** @name PalletTreasuryCall (277) */
|
|
3231
3230
|
interface PalletTreasuryCall extends Enum {
|
|
3232
3231
|
readonly isBuyBonds: boolean;
|
|
3233
3232
|
readonly asBuyBonds: {
|
|
@@ -3243,39 +3242,45 @@ declare module '@polkadot/types/lookup' {
|
|
|
3243
3242
|
readonly asBuyArgonotBonds: {
|
|
3244
3243
|
readonly bonds: u32;
|
|
3245
3244
|
} & Struct;
|
|
3246
|
-
readonly
|
|
3247
|
-
readonly
|
|
3245
|
+
readonly isSetBondLotFlexible: boolean;
|
|
3246
|
+
readonly asSetBondLotFlexible: {
|
|
3248
3247
|
readonly bondLotId: u64;
|
|
3249
|
-
readonly
|
|
3248
|
+
readonly isFlexible: bool;
|
|
3250
3249
|
} & Struct;
|
|
3251
|
-
readonly
|
|
3252
|
-
readonly
|
|
3250
|
+
readonly isSetReservedBondSpace: boolean;
|
|
3251
|
+
readonly asSetReservedBondSpace: {
|
|
3253
3252
|
readonly vaultId: u32;
|
|
3254
|
-
readonly
|
|
3253
|
+
readonly reservedBondSpace: u32;
|
|
3255
3254
|
} & Struct;
|
|
3256
3255
|
readonly type:
|
|
3257
3256
|
| 'BuyBonds'
|
|
3258
3257
|
| 'LiquidateBondLot'
|
|
3259
3258
|
| 'BuyArgonotBonds'
|
|
3260
|
-
| '
|
|
3261
|
-
| '
|
|
3259
|
+
| 'SetBondLotFlexible'
|
|
3260
|
+
| 'SetReservedBondSpace';
|
|
3262
3261
|
}
|
|
3263
3262
|
|
|
3264
|
-
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (
|
|
3263
|
+
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (279) */
|
|
3265
3264
|
interface ArgonPrimitivesVaultTreasuryBonusApprovalProof extends Struct {
|
|
3266
3265
|
readonly vaultId: Compact<u32>;
|
|
3267
3266
|
readonly beneficiary: AccountId32;
|
|
3267
|
+
readonly bonusPercent: Compact<Permill>;
|
|
3268
3268
|
readonly expiresAtFrame: Compact<u64>;
|
|
3269
|
-
readonly
|
|
3269
|
+
readonly bondSpaceToUnreserve: Compact<u32>;
|
|
3270
|
+
readonly nonce: Compact<u64>;
|
|
3270
3271
|
readonly signature: SpRuntimeMultiSignature;
|
|
3271
3272
|
}
|
|
3272
3273
|
|
|
3273
|
-
/** @name PalletOperationalAccountsCall (
|
|
3274
|
+
/** @name PalletOperationalAccountsCall (280) */
|
|
3274
3275
|
interface PalletOperationalAccountsCall extends Enum {
|
|
3275
3276
|
readonly isRegister: boolean;
|
|
3276
3277
|
readonly asRegister: {
|
|
3277
3278
|
readonly registration: PalletOperationalAccountsRegistration;
|
|
3278
3279
|
} & Struct;
|
|
3280
|
+
readonly isSetName: boolean;
|
|
3281
|
+
readonly asSetName: {
|
|
3282
|
+
readonly name: Option<Bytes>;
|
|
3283
|
+
} & Struct;
|
|
3279
3284
|
readonly isSetRewardConfig: boolean;
|
|
3280
3285
|
readonly asSetRewardConfig: {
|
|
3281
3286
|
readonly operationalCertificationReward: u128;
|
|
@@ -3294,20 +3299,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3294
3299
|
} & Struct;
|
|
3295
3300
|
readonly type:
|
|
3296
3301
|
| 'Register'
|
|
3302
|
+
| 'SetName'
|
|
3297
3303
|
| 'SetRewardConfig'
|
|
3298
3304
|
| 'ForceSetProgress'
|
|
3299
3305
|
| 'Activate'
|
|
3300
3306
|
| 'ClaimRewards';
|
|
3301
3307
|
}
|
|
3302
3308
|
|
|
3303
|
-
/** @name PalletOperationalAccountsRegistration (
|
|
3309
|
+
/** @name PalletOperationalAccountsRegistration (281) */
|
|
3304
3310
|
interface PalletOperationalAccountsRegistration extends Enum {
|
|
3305
3311
|
readonly isV1: boolean;
|
|
3306
3312
|
readonly asV1: PalletOperationalAccountsRegistrationV1;
|
|
3307
3313
|
readonly type: 'V1';
|
|
3308
3314
|
}
|
|
3309
3315
|
|
|
3310
|
-
/** @name PalletOperationalAccountsRegistrationV1 (
|
|
3316
|
+
/** @name PalletOperationalAccountsRegistrationV1 (282) */
|
|
3311
3317
|
interface PalletOperationalAccountsRegistrationV1 extends Struct {
|
|
3312
3318
|
readonly operationalAccount: AccountId32;
|
|
3313
3319
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
@@ -3319,21 +3325,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3319
3325
|
readonly accessProof: Option<PalletOperationalAccountsUpstreamAccessProof>;
|
|
3320
3326
|
}
|
|
3321
3327
|
|
|
3322
|
-
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (
|
|
3328
|
+
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (283) */
|
|
3323
3329
|
interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {}
|
|
3324
3330
|
|
|
3325
|
-
/** @name PalletOperationalAccountsAccountOwnershipProof (
|
|
3331
|
+
/** @name PalletOperationalAccountsAccountOwnershipProof (284) */
|
|
3326
3332
|
interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
|
|
3327
3333
|
readonly signature: SpRuntimeMultiSignature;
|
|
3328
3334
|
}
|
|
3329
3335
|
|
|
3330
|
-
/** @name PalletOperationalAccountsUpstreamAccessProof (
|
|
3336
|
+
/** @name PalletOperationalAccountsUpstreamAccessProof (286) */
|
|
3331
3337
|
interface PalletOperationalAccountsUpstreamAccessProof extends Struct {
|
|
3332
3338
|
readonly upstreamAccount: AccountId32;
|
|
3333
3339
|
readonly signature: SpRuntimeMultiSignature;
|
|
3334
3340
|
}
|
|
3335
3341
|
|
|
3336
|
-
/** @name PalletOperationalAccountsOperationalProgressPatch (
|
|
3342
|
+
/** @name PalletOperationalAccountsOperationalProgressPatch (289) */
|
|
3337
3343
|
interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
|
|
3338
3344
|
readonly uniswapArgonTransfersInAmount: Option<u128>;
|
|
3339
3345
|
readonly accountBitcoinAmount: Option<u128>;
|
|
@@ -3343,7 +3349,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3343
3349
|
readonly miningSeatCount: Option<u32>;
|
|
3344
3350
|
}
|
|
3345
3351
|
|
|
3346
|
-
/** @name PalletEthereumVerifierCall (
|
|
3352
|
+
/** @name PalletEthereumVerifierCall (291) */
|
|
3347
3353
|
interface PalletEthereumVerifierCall extends Enum {
|
|
3348
3354
|
readonly isForceCheckpoint: boolean;
|
|
3349
3355
|
readonly asForceCheckpoint: {
|
|
@@ -3371,7 +3377,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3371
3377
|
| 'SetOperatingMode';
|
|
3372
3378
|
}
|
|
3373
3379
|
|
|
3374
|
-
/** @name PalletEthereumVerifierCheckpointUpdate (
|
|
3380
|
+
/** @name PalletEthereumVerifierCheckpointUpdate (292) */
|
|
3375
3381
|
interface PalletEthereumVerifierCheckpointUpdate extends Struct {
|
|
3376
3382
|
readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3377
3383
|
readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
@@ -3380,7 +3386,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3380
3386
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3381
3387
|
}
|
|
3382
3388
|
|
|
3383
|
-
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (
|
|
3389
|
+
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (293) */
|
|
3384
3390
|
interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
|
|
3385
3391
|
readonly slot: u64;
|
|
3386
3392
|
readonly proposerIndex: u64;
|
|
@@ -3389,22 +3395,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3389
3395
|
readonly bodyRoot: H256;
|
|
3390
3396
|
}
|
|
3391
3397
|
|
|
3392
|
-
/** @name PalletEthereumVerifierSyncCommittee (
|
|
3398
|
+
/** @name PalletEthereumVerifierSyncCommittee (294) */
|
|
3393
3399
|
interface PalletEthereumVerifierSyncCommittee extends Struct {
|
|
3394
3400
|
readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
|
|
3395
3401
|
readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
|
|
3396
3402
|
}
|
|
3397
3403
|
|
|
3398
|
-
/** @name SnowbridgeBeaconPrimitivesPublicKey (
|
|
3404
|
+
/** @name SnowbridgeBeaconPrimitivesPublicKey (296) */
|
|
3399
3405
|
interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
|
|
3400
3406
|
|
|
3401
|
-
/** @name PalletEthereumVerifierExecutionHeaderProof (
|
|
3407
|
+
/** @name PalletEthereumVerifierExecutionHeaderProof (300) */
|
|
3402
3408
|
interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
|
|
3403
3409
|
readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
|
|
3404
3410
|
readonly executionBranch: Vec<H256>;
|
|
3405
3411
|
}
|
|
3406
3412
|
|
|
3407
|
-
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (
|
|
3413
|
+
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (301) */
|
|
3408
3414
|
interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
|
|
3409
3415
|
readonly isCapella: boolean;
|
|
3410
3416
|
readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
|
|
@@ -3413,7 +3419,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3413
3419
|
readonly type: 'Capella' | 'Deneb';
|
|
3414
3420
|
}
|
|
3415
3421
|
|
|
3416
|
-
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (
|
|
3422
|
+
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (302) */
|
|
3417
3423
|
interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
|
|
3418
3424
|
readonly parentHash: H256;
|
|
3419
3425
|
readonly feeRecipient: H160;
|
|
@@ -3432,7 +3438,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3432
3438
|
readonly withdrawalsRoot: H256;
|
|
3433
3439
|
}
|
|
3434
3440
|
|
|
3435
|
-
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (
|
|
3441
|
+
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (303) */
|
|
3436
3442
|
interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
|
|
3437
3443
|
readonly parentHash: H256;
|
|
3438
3444
|
readonly feeRecipient: H160;
|
|
@@ -3453,7 +3459,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3453
3459
|
readonly excessBlobGas: u64;
|
|
3454
3460
|
}
|
|
3455
3461
|
|
|
3456
|
-
/** @name PalletEthereumVerifierForkVersions (
|
|
3462
|
+
/** @name PalletEthereumVerifierForkVersions (304) */
|
|
3457
3463
|
interface PalletEthereumVerifierForkVersions extends Struct {
|
|
3458
3464
|
readonly genesis: PalletEthereumVerifierFork;
|
|
3459
3465
|
readonly altair: PalletEthereumVerifierFork;
|
|
@@ -3464,13 +3470,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3464
3470
|
readonly fulu: PalletEthereumVerifierFork;
|
|
3465
3471
|
}
|
|
3466
3472
|
|
|
3467
|
-
/** @name PalletEthereumVerifierFork (
|
|
3473
|
+
/** @name PalletEthereumVerifierFork (305) */
|
|
3468
3474
|
interface PalletEthereumVerifierFork extends Struct {
|
|
3469
3475
|
readonly version: U8aFixed;
|
|
3470
3476
|
readonly epoch: Compact<u64>;
|
|
3471
3477
|
}
|
|
3472
3478
|
|
|
3473
|
-
/** @name PalletEthereumVerifierUpdate (
|
|
3479
|
+
/** @name PalletEthereumVerifierUpdate (306) */
|
|
3474
3480
|
interface PalletEthereumVerifierUpdate extends Struct {
|
|
3475
3481
|
readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3476
3482
|
readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
|
|
@@ -3481,22 +3487,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3481
3487
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3482
3488
|
}
|
|
3483
3489
|
|
|
3484
|
-
/** @name PalletEthereumVerifierSyncAggregate (
|
|
3490
|
+
/** @name PalletEthereumVerifierSyncAggregate (307) */
|
|
3485
3491
|
interface PalletEthereumVerifierSyncAggregate extends Struct {
|
|
3486
3492
|
readonly syncCommitteeBits: Bytes;
|
|
3487
3493
|
readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
|
|
3488
3494
|
}
|
|
3489
3495
|
|
|
3490
|
-
/** @name SnowbridgeBeaconPrimitivesSignature (
|
|
3496
|
+
/** @name SnowbridgeBeaconPrimitivesSignature (309) */
|
|
3491
3497
|
interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
|
|
3492
3498
|
|
|
3493
|
-
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (
|
|
3499
|
+
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (312) */
|
|
3494
3500
|
interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
|
|
3495
3501
|
readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
3496
3502
|
readonly nextSyncCommitteeBranch: Vec<H256>;
|
|
3497
3503
|
}
|
|
3498
3504
|
|
|
3499
|
-
/** @name PalletCrosschainTransferCall (
|
|
3505
|
+
/** @name PalletCrosschainTransferCall (313) */
|
|
3500
3506
|
interface PalletCrosschainTransferCall extends Enum {
|
|
3501
3507
|
readonly isSetChainConfig: boolean;
|
|
3502
3508
|
readonly asSetChainConfig: {
|
|
@@ -3586,7 +3592,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3586
3592
|
| 'CollateralizeTransfer';
|
|
3587
3593
|
}
|
|
3588
3594
|
|
|
3589
|
-
/** @name PalletCrosschainTransferChainConfig (
|
|
3595
|
+
/** @name PalletCrosschainTransferChainConfig (314) */
|
|
3590
3596
|
interface PalletCrosschainTransferChainConfig extends Enum {
|
|
3591
3597
|
readonly isEvm: boolean;
|
|
3592
3598
|
readonly asEvm: {
|
|
@@ -3598,7 +3604,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3598
3604
|
readonly type: 'Evm';
|
|
3599
3605
|
}
|
|
3600
3606
|
|
|
3601
|
-
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (
|
|
3607
|
+
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (316) */
|
|
3602
3608
|
interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
|
|
3603
3609
|
readonly activationGasCost: Compact<u128>;
|
|
3604
3610
|
readonly signatureGasCost: Compact<u128>;
|
|
@@ -3606,56 +3612,56 @@ declare module '@polkadot/types/lookup' {
|
|
|
3606
3612
|
readonly estimatedMicrogonsPerEth: u128;
|
|
3607
3613
|
}
|
|
3608
3614
|
|
|
3609
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (
|
|
3615
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (319) */
|
|
3610
3616
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
|
|
3611
3617
|
readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
|
|
3612
3618
|
readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
|
|
3613
3619
|
}
|
|
3614
3620
|
|
|
3615
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (
|
|
3621
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (320) */
|
|
3616
3622
|
interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
|
|
3617
3623
|
readonly anchorBlockHash: H256;
|
|
3618
3624
|
readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
|
|
3619
3625
|
}
|
|
3620
3626
|
|
|
3621
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (
|
|
3627
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (322) */
|
|
3622
3628
|
interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
|
|
3623
3629
|
readonly rlp: Bytes;
|
|
3624
3630
|
}
|
|
3625
3631
|
|
|
3626
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (
|
|
3632
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (326) */
|
|
3627
3633
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
|
|
3628
3634
|
readonly targetBlockNumber: Compact<u64>;
|
|
3629
3635
|
readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
|
|
3630
3636
|
readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
|
|
3631
3637
|
}
|
|
3632
3638
|
|
|
3633
|
-
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (
|
|
3639
|
+
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (327) */
|
|
3634
3640
|
interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
|
|
3635
3641
|
readonly nodes: Vec<Bytes>;
|
|
3636
3642
|
readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
|
|
3637
3643
|
}
|
|
3638
3644
|
|
|
3639
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (
|
|
3645
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (331) */
|
|
3640
3646
|
interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
|
|
3641
3647
|
readonly transactionIndex: Compact<u64>;
|
|
3642
3648
|
readonly nodeIndexes: Vec<u16>;
|
|
3643
3649
|
}
|
|
3644
3650
|
|
|
3645
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (
|
|
3651
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (336) */
|
|
3646
3652
|
interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
|
|
3647
3653
|
readonly transactionIndex: Compact<u64>;
|
|
3648
3654
|
readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
|
|
3649
3655
|
}
|
|
3650
3656
|
|
|
3651
|
-
/** @name ArgonPrimitivesEthereumEthereumLog (
|
|
3657
|
+
/** @name ArgonPrimitivesEthereumEthereumLog (337) */
|
|
3652
3658
|
interface ArgonPrimitivesEthereumEthereumLog extends Struct {
|
|
3653
3659
|
readonly address: H160;
|
|
3654
3660
|
readonly topics: Vec<H256>;
|
|
3655
3661
|
readonly data: Bytes;
|
|
3656
3662
|
}
|
|
3657
3663
|
|
|
3658
|
-
/** @name PalletBootstrapCall (
|
|
3664
|
+
/** @name PalletBootstrapCall (342) */
|
|
3659
3665
|
interface PalletBootstrapCall extends Enum {
|
|
3660
3666
|
readonly isSetRecoveryPayload: boolean;
|
|
3661
3667
|
readonly asSetRecoveryPayload: {
|
|
@@ -3671,12 +3677,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
3671
3677
|
readonly type: 'SetRecoveryPayload' | 'SetEndpoint';
|
|
3672
3678
|
}
|
|
3673
3679
|
|
|
3674
|
-
/** @name PalletBootstrapRecoveryProof (
|
|
3680
|
+
/** @name PalletBootstrapRecoveryProof (343) */
|
|
3675
3681
|
interface PalletBootstrapRecoveryProof extends Struct {
|
|
3676
3682
|
readonly signature: U8aFixed;
|
|
3677
3683
|
}
|
|
3678
3684
|
|
|
3679
|
-
/** @name PalletMultisigError (
|
|
3685
|
+
/** @name PalletMultisigError (345) */
|
|
3680
3686
|
interface PalletMultisigError extends Enum {
|
|
3681
3687
|
readonly isMinimumThreshold: boolean;
|
|
3682
3688
|
readonly isAlreadyApproved: boolean;
|
|
@@ -3709,21 +3715,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3709
3715
|
| 'AlreadyStored';
|
|
3710
3716
|
}
|
|
3711
3717
|
|
|
3712
|
-
/** @name PalletProxyProxyDefinition (
|
|
3718
|
+
/** @name PalletProxyProxyDefinition (348) */
|
|
3713
3719
|
interface PalletProxyProxyDefinition extends Struct {
|
|
3714
3720
|
readonly delegate: AccountId32;
|
|
3715
3721
|
readonly proxyType: ArgonRuntimeProxyType;
|
|
3716
3722
|
readonly delay: u32;
|
|
3717
3723
|
}
|
|
3718
3724
|
|
|
3719
|
-
/** @name PalletProxyAnnouncement (
|
|
3725
|
+
/** @name PalletProxyAnnouncement (352) */
|
|
3720
3726
|
interface PalletProxyAnnouncement extends Struct {
|
|
3721
3727
|
readonly real: AccountId32;
|
|
3722
3728
|
readonly callHash: H256;
|
|
3723
3729
|
readonly height: u32;
|
|
3724
3730
|
}
|
|
3725
3731
|
|
|
3726
|
-
/** @name PalletProxyError (
|
|
3732
|
+
/** @name PalletProxyError (354) */
|
|
3727
3733
|
interface PalletProxyError extends Enum {
|
|
3728
3734
|
readonly isTooMany: boolean;
|
|
3729
3735
|
readonly isNotFound: boolean;
|
|
@@ -3744,16 +3750,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
3744
3750
|
| 'NoSelfProxy';
|
|
3745
3751
|
}
|
|
3746
3752
|
|
|
3747
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
3753
|
+
/** @name ArgonPrimitivesTickTicker (355) */
|
|
3748
3754
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
3749
3755
|
readonly tickDurationMillis: Compact<u64>;
|
|
3750
3756
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
3751
3757
|
}
|
|
3752
3758
|
|
|
3753
|
-
/** @name PalletTicksError (
|
|
3759
|
+
/** @name PalletTicksError (357) */
|
|
3754
3760
|
type PalletTicksError = Null;
|
|
3755
3761
|
|
|
3756
|
-
/** @name PalletMiningSlotMinerNonceScoring (
|
|
3762
|
+
/** @name PalletMiningSlotMinerNonceScoring (360) */
|
|
3757
3763
|
interface PalletMiningSlotMinerNonceScoring extends Struct {
|
|
3758
3764
|
readonly nonce: U256;
|
|
3759
3765
|
readonly lastWinBlock: Option<u32>;
|
|
@@ -3761,7 +3767,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3761
3767
|
readonly frameStartBlocksWonSurplus: i16;
|
|
3762
3768
|
}
|
|
3763
3769
|
|
|
3764
|
-
/** @name ArgonPrimitivesBlockSealMiningBidStats (
|
|
3770
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (372) */
|
|
3765
3771
|
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
3766
3772
|
readonly bidsCount: u32;
|
|
3767
3773
|
readonly bidAmountMin: u128;
|
|
@@ -3769,14 +3775,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3769
3775
|
readonly bidAmountSum: u128;
|
|
3770
3776
|
}
|
|
3771
3777
|
|
|
3772
|
-
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (
|
|
3778
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (376) */
|
|
3773
3779
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
3774
3780
|
readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
|
|
3775
3781
|
readonly ticksBetweenSlots: Compact<u64>;
|
|
3776
3782
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
3777
3783
|
}
|
|
3778
3784
|
|
|
3779
|
-
/** @name PalletMiningSlotError (
|
|
3785
|
+
/** @name PalletMiningSlotError (386) */
|
|
3780
3786
|
interface PalletMiningSlotError extends Enum {
|
|
3781
3787
|
readonly isSlotNotTakingBids: boolean;
|
|
3782
3788
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -3803,16 +3809,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3803
3809
|
| 'UnrecoverableHold';
|
|
3804
3810
|
}
|
|
3805
3811
|
|
|
3806
|
-
/** @name
|
|
3807
|
-
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
3808
|
-
readonly utxoId: u64;
|
|
3809
|
-
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
3810
|
-
readonly satoshis: Compact<u64>;
|
|
3811
|
-
readonly submittedAtHeight: Compact<u64>;
|
|
3812
|
-
readonly watchForSpentUntilHeight: Compact<u64>;
|
|
3813
|
-
}
|
|
3814
|
-
|
|
3815
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (385) */
|
|
3812
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (387) */
|
|
3816
3813
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
3817
3814
|
readonly isP2wsh: boolean;
|
|
3818
3815
|
readonly asP2wsh: {
|
|
@@ -3821,7 +3818,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3821
3818
|
readonly type: 'P2wsh';
|
|
3822
3819
|
}
|
|
3823
3820
|
|
|
3824
|
-
/** @name
|
|
3821
|
+
/** @name ArgonPrimitivesBitcoinUtxoAddress (388) */
|
|
3822
|
+
interface ArgonPrimitivesBitcoinUtxoAddress extends Struct {
|
|
3823
|
+
readonly utxoId: u64;
|
|
3824
|
+
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
3825
|
+
readonly submittedAtHeight: Compact<u64>;
|
|
3826
|
+
}
|
|
3827
|
+
|
|
3828
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (392) */
|
|
3825
3829
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
3826
3830
|
readonly isBitcoin: boolean;
|
|
3827
3831
|
readonly isTestnet: boolean;
|
|
@@ -3830,7 +3834,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3830
3834
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
3831
3835
|
}
|
|
3832
3836
|
|
|
3833
|
-
/** @name PalletBitcoinUtxosError (
|
|
3837
|
+
/** @name PalletBitcoinUtxosError (393) */
|
|
3834
3838
|
interface PalletBitcoinUtxosError extends Enum {
|
|
3835
3839
|
readonly isNoPermissions: boolean;
|
|
3836
3840
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -3844,9 +3848,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3844
3848
|
readonly isMaxUtxosExceeded: boolean;
|
|
3845
3849
|
readonly isInvalidBitcoinScript: boolean;
|
|
3846
3850
|
readonly isDuplicateUtxoId: boolean;
|
|
3847
|
-
readonly
|
|
3848
|
-
readonly isUtxoNotCandidate: boolean;
|
|
3849
|
-
readonly isLockAlreadyFunded: boolean;
|
|
3851
|
+
readonly isMaxUtxosPerLockExceeded: boolean;
|
|
3850
3852
|
readonly type:
|
|
3851
3853
|
| 'NoPermissions'
|
|
3852
3854
|
| 'NoBitcoinConfirmedBlock'
|
|
@@ -3860,26 +3862,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3860
3862
|
| 'MaxUtxosExceeded'
|
|
3861
3863
|
| 'InvalidBitcoinScript'
|
|
3862
3864
|
| 'DuplicateUtxoId'
|
|
3863
|
-
| '
|
|
3864
|
-
| 'UtxoNotCandidate'
|
|
3865
|
-
| 'LockAlreadyFunded';
|
|
3865
|
+
| 'MaxUtxosPerLockExceeded';
|
|
3866
3866
|
}
|
|
3867
3867
|
|
|
3868
|
-
/** @name ArgonPrimitivesVault (
|
|
3868
|
+
/** @name ArgonPrimitivesVault (394) */
|
|
3869
3869
|
interface ArgonPrimitivesVault extends Struct {
|
|
3870
3870
|
readonly operatorAccountId: AccountId32;
|
|
3871
3871
|
readonly delegateAccountId: Option<AccountId32>;
|
|
3872
|
-
readonly name: Option<Bytes>;
|
|
3873
|
-
readonly lastNameChangeTick: Option<u64>;
|
|
3874
3872
|
readonly securitization: Compact<u128>;
|
|
3875
3873
|
readonly securitizationTarget: Compact<u128>;
|
|
3876
3874
|
readonly securitizationLocked: Compact<u128>;
|
|
3877
|
-
readonly
|
|
3878
|
-
readonly
|
|
3875
|
+
readonly flexibleSecuritizationLocked: Compact<u128>;
|
|
3876
|
+
readonly reservedSecuritizationSpace: Compact<u128>;
|
|
3879
3877
|
readonly securitizationPendingActivation: Compact<u128>;
|
|
3880
3878
|
readonly lockedSatoshis: Compact<u64>;
|
|
3881
|
-
readonly
|
|
3882
|
-
readonly
|
|
3879
|
+
readonly ratioAdjustedSatoshis: Compact<u64>;
|
|
3880
|
+
readonly flexibleRatioAdjustedSatoshis: Compact<u64>;
|
|
3883
3881
|
readonly securitizationReleaseSchedule: BTreeMap<u64, u128>;
|
|
3884
3882
|
readonly securitizationRatio: Compact<u128>;
|
|
3885
3883
|
readonly isClosed: bool;
|
|
@@ -3889,13 +3887,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3889
3887
|
readonly operationalMinimumReleaseTick: Option<u64>;
|
|
3890
3888
|
}
|
|
3891
3889
|
|
|
3892
|
-
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (
|
|
3890
|
+
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (401) */
|
|
3893
3891
|
interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
|
|
3894
3892
|
readonly committedMicronots: Compact<u128>;
|
|
3895
3893
|
readonly encumberedMicronots: Compact<u128>;
|
|
3896
3894
|
}
|
|
3897
3895
|
|
|
3898
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
3896
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (403) */
|
|
3899
3897
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
3900
3898
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
3901
3899
|
readonly depth: Compact<u8>;
|
|
@@ -3905,21 +3903,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3905
3903
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
3906
3904
|
}
|
|
3907
3905
|
|
|
3908
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
3906
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (405) */
|
|
3909
3907
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
3910
3908
|
readonly isMain: boolean;
|
|
3911
3909
|
readonly isTest: boolean;
|
|
3912
3910
|
readonly type: 'Main' | 'Test';
|
|
3913
3911
|
}
|
|
3914
3912
|
|
|
3915
|
-
/** @name PalletVaultsVaultFrameRevenue (
|
|
3913
|
+
/** @name PalletVaultsVaultFrameRevenue (414) */
|
|
3916
3914
|
interface PalletVaultsVaultFrameRevenue extends Struct {
|
|
3917
3915
|
readonly frameId: Compact<u64>;
|
|
3918
3916
|
readonly bitcoinLockFeeRevenue: Compact<u128>;
|
|
3919
3917
|
readonly bitcoinLockFeeCouponValueUsed: Compact<u128>;
|
|
3920
3918
|
readonly bitcoinLocksCreated: Compact<u32>;
|
|
3921
|
-
readonly
|
|
3922
|
-
readonly
|
|
3919
|
+
readonly bitcoinLocksNewSecuritization: Compact<u128>;
|
|
3920
|
+
readonly bitcoinLocksReleasedSecuritization: Compact<u128>;
|
|
3923
3921
|
readonly bitcoinLocksAddedSatoshis: Compact<u64>;
|
|
3924
3922
|
readonly bitcoinLocksReleasedSatoshis: Compact<u64>;
|
|
3925
3923
|
readonly securitizationActivated: Compact<u128>;
|
|
@@ -3932,15 +3930,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3932
3930
|
readonly uncollectedRevenue: Compact<u128>;
|
|
3933
3931
|
}
|
|
3934
3932
|
|
|
3935
|
-
/** @name
|
|
3936
|
-
interface PalletVaultsRecentCapacityDrop extends Struct {
|
|
3937
|
-
readonly blockNumber: Compact<u32>;
|
|
3938
|
-
readonly availableBeforeDrop: Compact<u128>;
|
|
3939
|
-
readonly availableAfterDrop: Compact<u128>;
|
|
3940
|
-
readonly noFeeFailuresUsed: Compact<u32>;
|
|
3941
|
-
}
|
|
3942
|
-
|
|
3943
|
-
/** @name PalletVaultsError (421) */
|
|
3933
|
+
/** @name PalletVaultsError (416) */
|
|
3944
3934
|
interface PalletVaultsError extends Enum {
|
|
3945
3935
|
readonly isNoMoreVaultIds: boolean;
|
|
3946
3936
|
readonly isInsufficientFunds: boolean;
|
|
@@ -3968,8 +3958,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
3968
3958
|
readonly isInternalError: boolean;
|
|
3969
3959
|
readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
|
|
3970
3960
|
readonly isFundingChangeAlreadyScheduled: boolean;
|
|
3971
|
-
readonly isInvalidBondSharingTerms: boolean;
|
|
3972
|
-
readonly isInvalidVaultName: boolean;
|
|
3973
3961
|
readonly isPendingCosignsBeforeCollect: boolean;
|
|
3974
3962
|
readonly isPendingOrphanedUtxoCosignsBeforeCollect: boolean;
|
|
3975
3963
|
readonly isOverdueCollectBlockersBeforeCollect: boolean;
|
|
@@ -4003,8 +3991,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
4003
3991
|
| 'InternalError'
|
|
4004
3992
|
| 'UnableToGenerateVaultBitcoinPubkey'
|
|
4005
3993
|
| 'FundingChangeAlreadyScheduled'
|
|
4006
|
-
| 'InvalidBondSharingTerms'
|
|
4007
|
-
| 'InvalidVaultName'
|
|
4008
3994
|
| 'PendingCosignsBeforeCollect'
|
|
4009
3995
|
| 'PendingOrphanedUtxoCosignsBeforeCollect'
|
|
4010
3996
|
| 'OverdueCollectBlockersBeforeCollect'
|
|
@@ -4013,17 +3999,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
4013
3999
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
4014
4000
|
}
|
|
4015
4001
|
|
|
4016
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
4002
|
+
/** @name PalletBitcoinLocksLockedBitcoin (417) */
|
|
4017
4003
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
4018
4004
|
readonly vaultId: Compact<u32>;
|
|
4019
|
-
readonly
|
|
4020
|
-
readonly
|
|
4005
|
+
readonly securitizedSatoshis: Compact<u64>;
|
|
4006
|
+
readonly microgonsAtTargetPerBtc: Compact<u128>;
|
|
4007
|
+
readonly securitizationCoverageMicrogons: Compact<u128>;
|
|
4008
|
+
readonly securitizationTick: Compact<u64>;
|
|
4009
|
+
readonly fundedSatoshis: Compact<u64>;
|
|
4010
|
+
readonly fissionedSatoshis: Compact<u64>;
|
|
4021
4011
|
readonly ownerAccount: AccountId32;
|
|
4022
4012
|
readonly securitizationRatio: u128;
|
|
4023
4013
|
readonly securityFees: Compact<u128>;
|
|
4024
4014
|
readonly couponPaidFees: Compact<u128>;
|
|
4025
|
-
readonly satoshis: Compact<u64>;
|
|
4026
|
-
readonly utxoSatoshis: Option<u64>;
|
|
4027
4015
|
readonly vaultPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
4028
4016
|
readonly vaultClaimPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
4029
4017
|
readonly vaultXpubSources: ITuple<[U8aFixed, u32, u32]>;
|
|
@@ -4031,24 +4019,24 @@ declare module '@polkadot/types/lookup' {
|
|
|
4031
4019
|
readonly vaultClaimHeight: Compact<u64>;
|
|
4032
4020
|
readonly openClaimHeight: Compact<u64>;
|
|
4033
4021
|
readonly createdAtHeight: Compact<u64>;
|
|
4022
|
+
readonly fundingExpirationHeight: Compact<u64>;
|
|
4034
4023
|
readonly utxoScriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
4035
|
-
readonly
|
|
4036
|
-
readonly isBackfill: bool;
|
|
4024
|
+
readonly isFlexible: bool;
|
|
4037
4025
|
readonly fundHoldExtensions: BTreeMap<u64, u128>;
|
|
4038
4026
|
readonly createdAtArgonBlock: Compact<u32>;
|
|
4039
4027
|
}
|
|
4040
4028
|
|
|
4041
|
-
/** @name PalletBitcoinLocksLockReleaseRequest (
|
|
4029
|
+
/** @name PalletBitcoinLocksLockReleaseRequest (421) */
|
|
4042
4030
|
interface PalletBitcoinLocksLockReleaseRequest extends Struct {
|
|
4043
4031
|
readonly utxoId: Compact<u64>;
|
|
4044
4032
|
readonly vaultId: Compact<u32>;
|
|
4045
4033
|
readonly bitcoinNetworkFee: Compact<u64>;
|
|
4046
4034
|
readonly cosignDueFrame: Compact<u64>;
|
|
4047
4035
|
readonly toScriptPubkey: Bytes;
|
|
4048
|
-
readonly
|
|
4036
|
+
readonly securitizationAtRisk: Compact<u128>;
|
|
4049
4037
|
}
|
|
4050
4038
|
|
|
4051
|
-
/** @name PalletBitcoinLocksOrphanedUtxo (
|
|
4039
|
+
/** @name PalletBitcoinLocksOrphanedUtxo (423) */
|
|
4052
4040
|
interface PalletBitcoinLocksOrphanedUtxo extends Struct {
|
|
4053
4041
|
readonly utxoId: Compact<u64>;
|
|
4054
4042
|
readonly vaultId: Compact<u32>;
|
|
@@ -4057,14 +4045,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4057
4045
|
readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
|
|
4058
4046
|
}
|
|
4059
4047
|
|
|
4060
|
-
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (
|
|
4048
|
+
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (425) */
|
|
4061
4049
|
interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
|
|
4062
4050
|
readonly bitcoinNetworkFee: u64;
|
|
4063
4051
|
readonly toScriptPubkey: Bytes;
|
|
4064
4052
|
readonly createdAtArgonBlockNumber: u32;
|
|
4065
4053
|
}
|
|
4066
4054
|
|
|
4067
|
-
/** @name PalletBitcoinLocksError (
|
|
4055
|
+
/** @name PalletBitcoinLocksError (432) */
|
|
4068
4056
|
interface PalletBitcoinLocksError extends Enum {
|
|
4069
4057
|
readonly isInsufficientFunds: boolean;
|
|
4070
4058
|
readonly isInsufficientVaultFunds: boolean;
|
|
@@ -4079,10 +4067,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4079
4067
|
readonly isBitcoinSignatureUnableToBeDecoded: boolean;
|
|
4080
4068
|
readonly isBitcoinPubkeyUnableToBeDecoded: boolean;
|
|
4081
4069
|
readonly isBitcoinInvalidCosignature: boolean;
|
|
4082
|
-
readonly isInsufficientSatoshisLocked: boolean;
|
|
4083
4070
|
readonly isNoBitcoinPricesAvailable: boolean;
|
|
4084
4071
|
readonly isInvalidBitcoinScript: boolean;
|
|
4085
4072
|
readonly isNoPermissions: boolean;
|
|
4073
|
+
readonly isLockHasActiveFissions: boolean;
|
|
4074
|
+
readonly isInsufficientSatoshisForFissions: boolean;
|
|
4075
|
+
readonly isFissionStateMismatch: boolean;
|
|
4076
|
+
readonly isInsufficientSecuritizationForFissions: boolean;
|
|
4086
4077
|
readonly isHoldUnexpectedlyModified: boolean;
|
|
4087
4078
|
readonly isUnrecoverableHold: boolean;
|
|
4088
4079
|
readonly isVaultNotFound: boolean;
|
|
@@ -4093,11 +4084,15 @@ declare module '@polkadot/types/lookup' {
|
|
|
4093
4084
|
readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
|
|
4094
4085
|
readonly isVaultNotYetActive: boolean;
|
|
4095
4086
|
readonly isExpirationAtBlockOverflow: boolean;
|
|
4096
|
-
readonly
|
|
4087
|
+
readonly isNoResecuritizationChange: boolean;
|
|
4097
4088
|
readonly isLockInProcessOfRelease: boolean;
|
|
4098
4089
|
readonly isLockPendingFunding: boolean;
|
|
4099
4090
|
readonly isOverflowError: boolean;
|
|
4100
|
-
readonly
|
|
4091
|
+
readonly isIneligibleMicrogonsAtTargetPerBtcRequested: boolean;
|
|
4092
|
+
readonly isMicrogonsAtTargetPerBtcTickOlderThanCurrent: boolean;
|
|
4093
|
+
readonly isFeeCouponExpired: boolean;
|
|
4094
|
+
readonly isInvalidFeeCouponSignature: boolean;
|
|
4095
|
+
readonly isFeeCouponAlreadyUsed: boolean;
|
|
4101
4096
|
readonly isOrphanedUtxoFundingConflict: boolean;
|
|
4102
4097
|
readonly isOrphanedUtxoReleaseRequested: boolean;
|
|
4103
4098
|
readonly isFundingUtxoCannotBeReleased: boolean;
|
|
@@ -4116,10 +4111,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4116
4111
|
| 'BitcoinSignatureUnableToBeDecoded'
|
|
4117
4112
|
| 'BitcoinPubkeyUnableToBeDecoded'
|
|
4118
4113
|
| 'BitcoinInvalidCosignature'
|
|
4119
|
-
| 'InsufficientSatoshisLocked'
|
|
4120
4114
|
| 'NoBitcoinPricesAvailable'
|
|
4121
4115
|
| 'InvalidBitcoinScript'
|
|
4122
4116
|
| 'NoPermissions'
|
|
4117
|
+
| 'LockHasActiveFissions'
|
|
4118
|
+
| 'InsufficientSatoshisForFissions'
|
|
4119
|
+
| 'FissionStateMismatch'
|
|
4120
|
+
| 'InsufficientSecuritizationForFissions'
|
|
4123
4121
|
| 'HoldUnexpectedlyModified'
|
|
4124
4122
|
| 'UnrecoverableHold'
|
|
4125
4123
|
| 'VaultNotFound'
|
|
@@ -4129,18 +4127,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
4129
4127
|
| 'UnableToGenerateVaultBitcoinPubkey'
|
|
4130
4128
|
| 'VaultNotYetActive'
|
|
4131
4129
|
| 'ExpirationAtBlockOverflow'
|
|
4132
|
-
| '
|
|
4130
|
+
| 'NoResecuritizationChange'
|
|
4133
4131
|
| 'LockInProcessOfRelease'
|
|
4134
4132
|
| 'LockPendingFunding'
|
|
4135
4133
|
| 'OverflowError'
|
|
4136
|
-
| '
|
|
4134
|
+
| 'IneligibleMicrogonsAtTargetPerBtcRequested'
|
|
4135
|
+
| 'MicrogonsAtTargetPerBtcTickOlderThanCurrent'
|
|
4136
|
+
| 'FeeCouponExpired'
|
|
4137
|
+
| 'InvalidFeeCouponSignature'
|
|
4138
|
+
| 'FeeCouponAlreadyUsed'
|
|
4137
4139
|
| 'OrphanedUtxoFundingConflict'
|
|
4138
4140
|
| 'OrphanedUtxoReleaseRequested'
|
|
4139
4141
|
| 'FundingUtxoCannotBeReleased'
|
|
4140
4142
|
| 'MaxOrphanedUtxoReleaseRequestsExceeded';
|
|
4141
4143
|
}
|
|
4142
4144
|
|
|
4143
|
-
/** @name ArgonPrimitivesVaultVaultError (
|
|
4145
|
+
/** @name ArgonPrimitivesVaultVaultError (433) */
|
|
4144
4146
|
interface ArgonPrimitivesVaultVaultError extends Enum {
|
|
4145
4147
|
readonly isVaultClosed: boolean;
|
|
4146
4148
|
readonly isAccountWouldBeBelowMinimum: boolean;
|
|
@@ -4171,7 +4173,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4171
4173
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
4172
4174
|
}
|
|
4173
4175
|
|
|
4174
|
-
/** @name PalletNotariesError (
|
|
4176
|
+
/** @name PalletNotariesError (445) */
|
|
4175
4177
|
interface PalletNotariesError extends Enum {
|
|
4176
4178
|
readonly isProposalNotFound: boolean;
|
|
4177
4179
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -4194,7 +4196,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4194
4196
|
| 'InvalidNotary';
|
|
4195
4197
|
}
|
|
4196
4198
|
|
|
4197
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
4199
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (449) */
|
|
4198
4200
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
4199
4201
|
readonly notebookNumber: Compact<u32>;
|
|
4200
4202
|
readonly tick: Compact<u64>;
|
|
@@ -4203,7 +4205,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4203
4205
|
readonly parentSecret: Option<H256>;
|
|
4204
4206
|
}
|
|
4205
4207
|
|
|
4206
|
-
/** @name PalletNotebookError (
|
|
4208
|
+
/** @name PalletNotebookError (452) */
|
|
4207
4209
|
interface PalletNotebookError extends Enum {
|
|
4208
4210
|
readonly isDuplicateNotebookNumber: boolean;
|
|
4209
4211
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -4238,7 +4240,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4238
4240
|
| 'InvalidNotebookSubmissionTick';
|
|
4239
4241
|
}
|
|
4240
4242
|
|
|
4241
|
-
/** @name PalletLocalchainTransferQueuedTransferOut (
|
|
4243
|
+
/** @name PalletLocalchainTransferQueuedTransferOut (453) */
|
|
4242
4244
|
interface PalletLocalchainTransferQueuedTransferOut extends Struct {
|
|
4243
4245
|
readonly accountId: AccountId32;
|
|
4244
4246
|
readonly amount: u128;
|
|
@@ -4246,10 +4248,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4246
4248
|
readonly notaryId: u32;
|
|
4247
4249
|
}
|
|
4248
4250
|
|
|
4249
|
-
/** @name FrameSupportPalletId (
|
|
4251
|
+
/** @name FrameSupportPalletId (455) */
|
|
4250
4252
|
interface FrameSupportPalletId extends U8aFixed {}
|
|
4251
4253
|
|
|
4252
|
-
/** @name PalletLocalchainTransferError (
|
|
4254
|
+
/** @name PalletLocalchainTransferError (456) */
|
|
4253
4255
|
interface PalletLocalchainTransferError extends Enum {
|
|
4254
4256
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
4255
4257
|
readonly isInsufficientFunds: boolean;
|
|
@@ -4270,7 +4272,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4270
4272
|
| 'NoAvailableTransferId';
|
|
4271
4273
|
}
|
|
4272
4274
|
|
|
4273
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
4275
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (460) */
|
|
4274
4276
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
4275
4277
|
readonly notaryId: Compact<u32>;
|
|
4276
4278
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -4279,13 +4281,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4279
4281
|
readonly blockVotingPower: Compact<u128>;
|
|
4280
4282
|
}
|
|
4281
4283
|
|
|
4282
|
-
/** @name PalletBlockSealSpecError (
|
|
4284
|
+
/** @name PalletBlockSealSpecError (465) */
|
|
4283
4285
|
interface PalletBlockSealSpecError extends Enum {
|
|
4284
4286
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
4285
4287
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
4286
4288
|
}
|
|
4287
4289
|
|
|
4288
|
-
/** @name PalletDomainsError (
|
|
4290
|
+
/** @name PalletDomainsError (467) */
|
|
4289
4291
|
interface PalletDomainsError extends Enum {
|
|
4290
4292
|
readonly isDomainNotRegistered: boolean;
|
|
4291
4293
|
readonly isNotDomainOwner: boolean;
|
|
@@ -4300,28 +4302,28 @@ declare module '@polkadot/types/lookup' {
|
|
|
4300
4302
|
| 'AccountDecodingError';
|
|
4301
4303
|
}
|
|
4302
4304
|
|
|
4303
|
-
/** @name PalletPriceIndexEthereumPriceFrameAccumulator (
|
|
4305
|
+
/** @name PalletPriceIndexEthereumPriceFrameAccumulator (469) */
|
|
4304
4306
|
interface PalletPriceIndexEthereumPriceFrameAccumulator extends Struct {
|
|
4305
4307
|
readonly totalUsdPrice: u128;
|
|
4306
4308
|
readonly totalWeiPerGas: Compact<u128>;
|
|
4307
4309
|
readonly sampleCount: Compact<u32>;
|
|
4308
4310
|
}
|
|
4309
4311
|
|
|
4310
|
-
/** @name PalletPriceIndexCpiMeasurementBucket (
|
|
4312
|
+
/** @name PalletPriceIndexCpiMeasurementBucket (474) */
|
|
4311
4313
|
interface PalletPriceIndexCpiMeasurementBucket extends Struct {
|
|
4312
4314
|
readonly tickRange: ITuple<[u64, u64]>;
|
|
4313
4315
|
readonly totalCpi: i128;
|
|
4314
4316
|
readonly measurementsCount: u32;
|
|
4315
4317
|
}
|
|
4316
4318
|
|
|
4317
|
-
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (
|
|
4319
|
+
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (478) */
|
|
4318
4320
|
interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
|
|
4319
4321
|
readonly frameId: Compact<u64>;
|
|
4320
4322
|
readonly totalMicrogonsPerArgonot: Compact<u128>;
|
|
4321
4323
|
readonly sampleCount: Compact<u32>;
|
|
4322
4324
|
}
|
|
4323
4325
|
|
|
4324
|
-
/** @name PalletPriceIndexError (
|
|
4326
|
+
/** @name PalletPriceIndexError (479) */
|
|
4325
4327
|
interface PalletPriceIndexError extends Enum {
|
|
4326
4328
|
readonly isNotAuthorizedOperator: boolean;
|
|
4327
4329
|
readonly isMissingValue: boolean;
|
|
@@ -4336,7 +4338,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4336
4338
|
| 'InvalidEthereumPrices';
|
|
4337
4339
|
}
|
|
4338
4340
|
|
|
4339
|
-
/** @name PalletGrandpaStoredState (
|
|
4341
|
+
/** @name PalletGrandpaStoredState (480) */
|
|
4340
4342
|
interface PalletGrandpaStoredState extends Enum {
|
|
4341
4343
|
readonly isLive: boolean;
|
|
4342
4344
|
readonly isPendingPause: boolean;
|
|
@@ -4353,7 +4355,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4353
4355
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
4354
4356
|
}
|
|
4355
4357
|
|
|
4356
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
4358
|
+
/** @name PalletGrandpaStoredPendingChange (481) */
|
|
4357
4359
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
4358
4360
|
readonly scheduledAt: u32;
|
|
4359
4361
|
readonly delay: u32;
|
|
@@ -4361,7 +4363,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4361
4363
|
readonly forced: Option<u32>;
|
|
4362
4364
|
}
|
|
4363
4365
|
|
|
4364
|
-
/** @name PalletGrandpaError (
|
|
4366
|
+
/** @name PalletGrandpaError (483) */
|
|
4365
4367
|
interface PalletGrandpaError extends Enum {
|
|
4366
4368
|
readonly isPauseFailed: boolean;
|
|
4367
4369
|
readonly isResumeFailed: boolean;
|
|
@@ -4380,14 +4382,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4380
4382
|
| 'DuplicateOffenceReport';
|
|
4381
4383
|
}
|
|
4382
4384
|
|
|
4383
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
4385
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (484) */
|
|
4384
4386
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
4385
4387
|
readonly blockAuthorAccountId: AccountId32;
|
|
4386
4388
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
4387
4389
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
4388
4390
|
}
|
|
4389
4391
|
|
|
4390
|
-
/** @name PalletBlockSealError (
|
|
4392
|
+
/** @name PalletBlockSealError (486) */
|
|
4391
4393
|
interface PalletBlockSealError extends Enum {
|
|
4392
4394
|
readonly isInvalidVoteSealStrength: boolean;
|
|
4393
4395
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -4434,45 +4436,46 @@ declare module '@polkadot/types/lookup' {
|
|
|
4434
4436
|
| 'DuplicateVoteBlockAtTick';
|
|
4435
4437
|
}
|
|
4436
4438
|
|
|
4437
|
-
/** @name PalletBlockRewardsError (
|
|
4439
|
+
/** @name PalletBlockRewardsError (490) */
|
|
4438
4440
|
type PalletBlockRewardsError = Null;
|
|
4439
4441
|
|
|
4440
|
-
/** @name PalletMintPendingMintUtxo (
|
|
4442
|
+
/** @name PalletMintPendingMintUtxo (491) */
|
|
4441
4443
|
interface PalletMintPendingMintUtxo extends Struct {
|
|
4444
|
+
readonly fissionId: Compact<u64>;
|
|
4442
4445
|
readonly utxoId: Compact<u64>;
|
|
4443
4446
|
readonly accountId: AccountId32;
|
|
4444
4447
|
readonly remainingAmount: Compact<u128>;
|
|
4445
4448
|
readonly maxAmountPerFrame: Compact<u128>;
|
|
4446
4449
|
}
|
|
4447
4450
|
|
|
4448
|
-
/** @name PalletMintMintQueueCursor (
|
|
4451
|
+
/** @name PalletMintMintQueueCursor (493) */
|
|
4449
4452
|
interface PalletMintMintQueueCursor extends Struct {
|
|
4450
4453
|
readonly payoutStartIndex: Compact<u64>;
|
|
4451
4454
|
readonly payoutCursorIndex: Compact<u64>;
|
|
4452
4455
|
readonly payoutCursorFrameId: Option<u64>;
|
|
4453
4456
|
}
|
|
4454
4457
|
|
|
4455
|
-
/** @name PalletMintMintAction (
|
|
4458
|
+
/** @name PalletMintMintAction (496) */
|
|
4456
4459
|
interface PalletMintMintAction extends Struct {
|
|
4457
4460
|
readonly argonBurned: u128;
|
|
4458
4461
|
readonly argonMinted: u128;
|
|
4459
4462
|
readonly bitcoinMinted: u128;
|
|
4460
4463
|
}
|
|
4461
4464
|
|
|
4462
|
-
/** @name PalletMintError (
|
|
4465
|
+
/** @name PalletMintError (498) */
|
|
4463
4466
|
interface PalletMintError extends Enum {
|
|
4464
4467
|
readonly isTooManyPendingMints: boolean;
|
|
4465
4468
|
readonly type: 'TooManyPendingMints';
|
|
4466
4469
|
}
|
|
4467
4470
|
|
|
4468
|
-
/** @name PalletBalancesBalanceLock (
|
|
4471
|
+
/** @name PalletBalancesBalanceLock (500) */
|
|
4469
4472
|
interface PalletBalancesBalanceLock extends Struct {
|
|
4470
4473
|
readonly id: U8aFixed;
|
|
4471
4474
|
readonly amount: u128;
|
|
4472
4475
|
readonly reasons: PalletBalancesReasons;
|
|
4473
4476
|
}
|
|
4474
4477
|
|
|
4475
|
-
/** @name PalletBalancesReasons (
|
|
4478
|
+
/** @name PalletBalancesReasons (501) */
|
|
4476
4479
|
interface PalletBalancesReasons extends Enum {
|
|
4477
4480
|
readonly isFee: boolean;
|
|
4478
4481
|
readonly isMisc: boolean;
|
|
@@ -4480,38 +4483,38 @@ declare module '@polkadot/types/lookup' {
|
|
|
4480
4483
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
4481
4484
|
}
|
|
4482
4485
|
|
|
4483
|
-
/** @name PalletBalancesReserveData (
|
|
4486
|
+
/** @name PalletBalancesReserveData (504) */
|
|
4484
4487
|
interface PalletBalancesReserveData extends Struct {
|
|
4485
4488
|
readonly id: U8aFixed;
|
|
4486
4489
|
readonly amount: u128;
|
|
4487
4490
|
}
|
|
4488
4491
|
|
|
4489
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
4492
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (507) */
|
|
4490
4493
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
4491
4494
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
4492
4495
|
readonly amount: u128;
|
|
4493
4496
|
}
|
|
4494
4497
|
|
|
4495
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
4498
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (510) */
|
|
4496
4499
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
4497
4500
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
4498
4501
|
readonly amount: u128;
|
|
4499
4502
|
}
|
|
4500
4503
|
|
|
4501
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
4504
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (511) */
|
|
4502
4505
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
4503
4506
|
readonly isBlockRewards: boolean;
|
|
4504
4507
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
4505
4508
|
readonly type: 'BlockRewards';
|
|
4506
4509
|
}
|
|
4507
4510
|
|
|
4508
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
4511
|
+
/** @name PalletBlockRewardsFreezeReason (512) */
|
|
4509
4512
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
4510
4513
|
readonly isMaturationPeriod: boolean;
|
|
4511
4514
|
readonly type: 'MaturationPeriod';
|
|
4512
4515
|
}
|
|
4513
4516
|
|
|
4514
|
-
/** @name PalletBalancesError (
|
|
4517
|
+
/** @name PalletBalancesError (514) */
|
|
4515
4518
|
interface PalletBalancesError extends Enum {
|
|
4516
4519
|
readonly isVestingBalance: boolean;
|
|
4517
4520
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -4540,7 +4543,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4540
4543
|
| 'DeltaZero';
|
|
4541
4544
|
}
|
|
4542
4545
|
|
|
4543
|
-
/** @name PalletTxPauseError (
|
|
4546
|
+
/** @name PalletTxPauseError (516) */
|
|
4544
4547
|
interface PalletTxPauseError extends Enum {
|
|
4545
4548
|
readonly isIsPaused: boolean;
|
|
4546
4549
|
readonly isIsUnpaused: boolean;
|
|
@@ -4549,72 +4552,130 @@ declare module '@polkadot/types/lookup' {
|
|
|
4549
4552
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
4550
4553
|
}
|
|
4551
4554
|
|
|
4552
|
-
/** @name PalletTransactionPaymentReleases (
|
|
4555
|
+
/** @name PalletTransactionPaymentReleases (517) */
|
|
4553
4556
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
4554
4557
|
readonly isV1Ancient: boolean;
|
|
4555
4558
|
readonly isV2: boolean;
|
|
4556
4559
|
readonly type: 'V1Ancient' | 'V2';
|
|
4557
4560
|
}
|
|
4558
4561
|
|
|
4559
|
-
/** @name FrameSupportStorageNoDrop (
|
|
4562
|
+
/** @name FrameSupportStorageNoDrop (518) */
|
|
4560
4563
|
interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
|
|
4561
4564
|
|
|
4562
|
-
/** @name FrameSupportTokensFungibleImbalance (
|
|
4565
|
+
/** @name FrameSupportTokensFungibleImbalance (519) */
|
|
4563
4566
|
interface FrameSupportTokensFungibleImbalance extends Struct {
|
|
4564
4567
|
readonly amount: u128;
|
|
4565
4568
|
}
|
|
4566
4569
|
|
|
4567
|
-
/** @name PalletUtilityError (
|
|
4570
|
+
/** @name PalletUtilityError (520) */
|
|
4568
4571
|
interface PalletUtilityError extends Enum {
|
|
4569
4572
|
readonly isTooManyCalls: boolean;
|
|
4570
4573
|
readonly type: 'TooManyCalls';
|
|
4571
4574
|
}
|
|
4572
4575
|
|
|
4573
|
-
/** @name PalletSudoError (
|
|
4576
|
+
/** @name PalletSudoError (521) */
|
|
4574
4577
|
interface PalletSudoError extends Enum {
|
|
4575
4578
|
readonly isRequireSudo: boolean;
|
|
4576
4579
|
readonly type: 'RequireSudo';
|
|
4577
4580
|
}
|
|
4578
4581
|
|
|
4579
|
-
/** @name
|
|
4582
|
+
/** @name PalletBitcoinFissionsFission (522) */
|
|
4583
|
+
interface PalletBitcoinFissionsFission extends Struct {
|
|
4584
|
+
readonly liquidId: Compact<u64>;
|
|
4585
|
+
readonly utxoId: Compact<u64>;
|
|
4586
|
+
readonly satoshis: Compact<u64>;
|
|
4587
|
+
readonly microgonsAtTargetPerBtc: Compact<u128>;
|
|
4588
|
+
readonly liquidityPromised: Compact<u128>;
|
|
4589
|
+
readonly createdAtArgonBlock: Compact<u32>;
|
|
4590
|
+
readonly ratchetNumber: Compact<u32>;
|
|
4591
|
+
readonly lastRatchetTick: Compact<u64>;
|
|
4592
|
+
readonly lastUpdatedArgonBlock: Compact<u32>;
|
|
4593
|
+
}
|
|
4594
|
+
|
|
4595
|
+
/** @name PalletBitcoinFissionsError (524) */
|
|
4596
|
+
interface PalletBitcoinFissionsError extends Enum {
|
|
4597
|
+
readonly isFissionIdBelowMinimum: boolean;
|
|
4598
|
+
readonly isFissionIdOverflow: boolean;
|
|
4599
|
+
readonly isFissionAlreadyExists: boolean;
|
|
4600
|
+
readonly isFissionNotFound: boolean;
|
|
4601
|
+
readonly isNoRatchetingAvailable: boolean;
|
|
4602
|
+
readonly isRatchetNumberOverflow: boolean;
|
|
4603
|
+
readonly isFissionHasNoSatoshis: boolean;
|
|
4604
|
+
readonly isTooManyFissionsForLock: boolean;
|
|
4605
|
+
readonly isLockNotFound: boolean;
|
|
4606
|
+
readonly isNoPermissions: boolean;
|
|
4607
|
+
readonly isLockNotFunded: boolean;
|
|
4608
|
+
readonly isLockReleasePending: boolean;
|
|
4609
|
+
readonly isInsufficientFundedSatoshis: boolean;
|
|
4610
|
+
readonly isInsufficientSecuritization: boolean;
|
|
4611
|
+
readonly isIneligibleMicrogonsAtTargetPerBtc: boolean;
|
|
4612
|
+
readonly isMicrogonsAtTargetPerBtcTickOlderThanCurrent: boolean;
|
|
4613
|
+
readonly isInsufficientFissionedSatoshis: boolean;
|
|
4614
|
+
readonly isNoBitcoinPricesAvailable: boolean;
|
|
4615
|
+
readonly isInsufficientFunds: boolean;
|
|
4616
|
+
readonly isOverflow: boolean;
|
|
4617
|
+
readonly type:
|
|
4618
|
+
| 'FissionIdBelowMinimum'
|
|
4619
|
+
| 'FissionIdOverflow'
|
|
4620
|
+
| 'FissionAlreadyExists'
|
|
4621
|
+
| 'FissionNotFound'
|
|
4622
|
+
| 'NoRatchetingAvailable'
|
|
4623
|
+
| 'RatchetNumberOverflow'
|
|
4624
|
+
| 'FissionHasNoSatoshis'
|
|
4625
|
+
| 'TooManyFissionsForLock'
|
|
4626
|
+
| 'LockNotFound'
|
|
4627
|
+
| 'NoPermissions'
|
|
4628
|
+
| 'LockNotFunded'
|
|
4629
|
+
| 'LockReleasePending'
|
|
4630
|
+
| 'InsufficientFundedSatoshis'
|
|
4631
|
+
| 'InsufficientSecuritization'
|
|
4632
|
+
| 'IneligibleMicrogonsAtTargetPerBtc'
|
|
4633
|
+
| 'MicrogonsAtTargetPerBtcTickOlderThanCurrent'
|
|
4634
|
+
| 'InsufficientFissionedSatoshis'
|
|
4635
|
+
| 'NoBitcoinPricesAvailable'
|
|
4636
|
+
| 'InsufficientFunds'
|
|
4637
|
+
| 'Overflow';
|
|
4638
|
+
}
|
|
4639
|
+
|
|
4640
|
+
/** @name PalletTreasuryFrameVaultCapital (525) */
|
|
4580
4641
|
interface PalletTreasuryFrameVaultCapital extends Struct {
|
|
4581
4642
|
readonly frameId: Compact<u64>;
|
|
4582
4643
|
readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
|
|
4583
4644
|
}
|
|
4584
4645
|
|
|
4585
|
-
/** @name PalletTreasuryVaultCapital (
|
|
4646
|
+
/** @name PalletTreasuryVaultCapital (527) */
|
|
4586
4647
|
interface PalletTreasuryVaultCapital extends Struct {
|
|
4587
|
-
readonly
|
|
4588
|
-
readonly
|
|
4589
|
-
readonly
|
|
4648
|
+
readonly regularBondAllocations: Vec<PalletTreasuryBondLotAllocation>;
|
|
4649
|
+
readonly flexibleBondsEligible: Compact<u32>;
|
|
4650
|
+
readonly flexibleProrata: u128;
|
|
4590
4651
|
readonly eligibleBonds: Compact<u32>;
|
|
4591
4652
|
}
|
|
4592
4653
|
|
|
4593
|
-
/** @name PalletTreasuryBondLotAllocation (
|
|
4654
|
+
/** @name PalletTreasuryBondLotAllocation (529) */
|
|
4594
4655
|
interface PalletTreasuryBondLotAllocation extends Struct {
|
|
4595
4656
|
readonly bondLotId: Compact<u64>;
|
|
4596
4657
|
readonly prorata: u128;
|
|
4597
4658
|
}
|
|
4598
4659
|
|
|
4599
|
-
/** @name PalletTreasuryFrameArgonotBondParticipants (
|
|
4660
|
+
/** @name PalletTreasuryFrameArgonotBondParticipants (534) */
|
|
4600
4661
|
interface PalletTreasuryFrameArgonotBondParticipants extends Struct {
|
|
4601
4662
|
readonly frameId: Compact<u64>;
|
|
4602
4663
|
readonly totalBonds: Compact<u32>;
|
|
4603
4664
|
readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
4604
4665
|
}
|
|
4605
4666
|
|
|
4606
|
-
/** @name PalletTreasuryBondLotSummary (
|
|
4667
|
+
/** @name PalletTreasuryBondLotSummary (536) */
|
|
4607
4668
|
interface PalletTreasuryBondLotSummary extends Struct {
|
|
4608
4669
|
readonly bondLotId: Compact<u64>;
|
|
4609
4670
|
readonly bonds: Compact<u32>;
|
|
4610
4671
|
}
|
|
4611
4672
|
|
|
4612
|
-
/** @name PalletTreasuryBondLot (
|
|
4673
|
+
/** @name PalletTreasuryBondLot (538) */
|
|
4613
4674
|
interface PalletTreasuryBondLot extends Struct {
|
|
4614
4675
|
readonly owner: AccountId32;
|
|
4615
4676
|
readonly program: PalletTreasuryBondProgram;
|
|
4616
4677
|
readonly bonds: Compact<u32>;
|
|
4617
|
-
readonly
|
|
4678
|
+
readonly isFlexible: bool;
|
|
4618
4679
|
readonly createdFrameId: Compact<u64>;
|
|
4619
4680
|
readonly participatedFrames: Compact<u32>;
|
|
4620
4681
|
readonly lastFrameEarningsFrameId: Option<u64>;
|
|
@@ -4624,7 +4685,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4624
4685
|
readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
|
|
4625
4686
|
}
|
|
4626
4687
|
|
|
4627
|
-
/** @name PalletTreasuryBondProgram (
|
|
4688
|
+
/** @name PalletTreasuryBondProgram (539) */
|
|
4628
4689
|
interface PalletTreasuryBondProgram extends Enum {
|
|
4629
4690
|
readonly isVault: boolean;
|
|
4630
4691
|
readonly asVault: {
|
|
@@ -4636,14 +4697,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4636
4697
|
readonly type: 'Vault' | 'Argonot';
|
|
4637
4698
|
}
|
|
4638
4699
|
|
|
4639
|
-
/** @name PalletTreasuryVaultBondState (
|
|
4700
|
+
/** @name PalletTreasuryVaultBondState (542) */
|
|
4640
4701
|
interface PalletTreasuryVaultBondState extends Struct {
|
|
4641
|
-
readonly
|
|
4642
|
-
readonly
|
|
4643
|
-
readonly
|
|
4702
|
+
readonly regularBondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
4703
|
+
readonly flexibleBonds: Compact<u32>;
|
|
4704
|
+
readonly reservedBondSpace: Compact<u32>;
|
|
4644
4705
|
}
|
|
4645
4706
|
|
|
4646
|
-
/** @name PalletTreasuryError (
|
|
4707
|
+
/** @name PalletTreasuryError (544) */
|
|
4647
4708
|
interface PalletTreasuryError extends Enum {
|
|
4648
4709
|
readonly isBondPurchaseRejected: boolean;
|
|
4649
4710
|
readonly isVaultNotAcceptingBondPurchases: boolean;
|
|
@@ -4654,16 +4715,17 @@ declare module '@polkadot/types/lookup' {
|
|
|
4654
4715
|
readonly isBondLotNotFound: boolean;
|
|
4655
4716
|
readonly isNotBondLotOwner: boolean;
|
|
4656
4717
|
readonly isBondLotAlreadyReleasing: boolean;
|
|
4657
|
-
readonly
|
|
4718
|
+
readonly isInsufficientBondSpace: boolean;
|
|
4658
4719
|
readonly isActiveBondAmountBelowEncumberedBacking: boolean;
|
|
4659
4720
|
readonly isBonusApprovalWrongVault: boolean;
|
|
4660
4721
|
readonly isBonusApprovalWrongAccount: boolean;
|
|
4661
4722
|
readonly isBonusApprovalExpired: boolean;
|
|
4662
|
-
readonly
|
|
4723
|
+
readonly isBonusApprovalAlreadyUsed: boolean;
|
|
4663
4724
|
readonly isInvalidBonusApprovalSignature: boolean;
|
|
4725
|
+
readonly isBonusApprovalExceedsProfitSharing: boolean;
|
|
4664
4726
|
readonly isArgonotBondPurchaseBelowCutoff: boolean;
|
|
4665
4727
|
readonly isArgonotBondPurchaseAboveCap: boolean;
|
|
4666
|
-
readonly
|
|
4728
|
+
readonly isBondLotCannotBeFlexible: boolean;
|
|
4667
4729
|
readonly isNoPermissions: boolean;
|
|
4668
4730
|
readonly type:
|
|
4669
4731
|
| 'BondPurchaseRejected'
|
|
@@ -4675,31 +4737,34 @@ declare module '@polkadot/types/lookup' {
|
|
|
4675
4737
|
| 'BondLotNotFound'
|
|
4676
4738
|
| 'NotBondLotOwner'
|
|
4677
4739
|
| 'BondLotAlreadyReleasing'
|
|
4678
|
-
| '
|
|
4740
|
+
| 'InsufficientBondSpace'
|
|
4679
4741
|
| 'ActiveBondAmountBelowEncumberedBacking'
|
|
4680
4742
|
| 'BonusApprovalWrongVault'
|
|
4681
4743
|
| 'BonusApprovalWrongAccount'
|
|
4682
4744
|
| 'BonusApprovalExpired'
|
|
4683
|
-
| '
|
|
4745
|
+
| 'BonusApprovalAlreadyUsed'
|
|
4684
4746
|
| 'InvalidBonusApprovalSignature'
|
|
4747
|
+
| 'BonusApprovalExceedsProfitSharing'
|
|
4685
4748
|
| 'ArgonotBondPurchaseBelowCutoff'
|
|
4686
4749
|
| 'ArgonotBondPurchaseAboveCap'
|
|
4687
|
-
| '
|
|
4750
|
+
| 'BondLotCannotBeFlexible'
|
|
4688
4751
|
| 'NoPermissions';
|
|
4689
4752
|
}
|
|
4690
4753
|
|
|
4691
|
-
/** @name PalletFeeControlError (
|
|
4754
|
+
/** @name PalletFeeControlError (545) */
|
|
4692
4755
|
interface PalletFeeControlError extends Enum {
|
|
4693
4756
|
readonly isSponsoredFeeTooHigh: boolean;
|
|
4694
4757
|
readonly type: 'SponsoredFeeTooHigh';
|
|
4695
4758
|
}
|
|
4696
4759
|
|
|
4697
|
-
/** @name PalletOperationalAccountsOperationalAccount (
|
|
4760
|
+
/** @name PalletOperationalAccountsOperationalAccount (546) */
|
|
4698
4761
|
interface PalletOperationalAccountsOperationalAccount extends Struct {
|
|
4699
4762
|
readonly vaultAccount: AccountId32;
|
|
4700
4763
|
readonly miningAccount: AccountId32;
|
|
4701
4764
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
4702
4765
|
readonly upstreamAccount: Option<AccountId32>;
|
|
4766
|
+
readonly name: Option<Bytes>;
|
|
4767
|
+
readonly lastNameChangeTick: Option<u64>;
|
|
4703
4768
|
readonly uniswapArgonTransfersInAmount: u128;
|
|
4704
4769
|
readonly accountBitcoinAmount: u128;
|
|
4705
4770
|
readonly accountVaultBondAmount: u128;
|
|
@@ -4709,7 +4774,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
4709
4774
|
readonly miningSeatAccrual: Compact<u32>;
|
|
4710
4775
|
readonly miningSeatAppliedTotal: Compact<u32>;
|
|
4711
4776
|
readonly operationalCertificationsCount: Compact<u32>;
|
|
4712
|
-
readonly accessCodePending: bool;
|
|
4713
4777
|
readonly availableAccessCodes: Compact<u32>;
|
|
4714
4778
|
readonly rewardsEarnedCount: Compact<u32>;
|
|
4715
4779
|
readonly rewardsEarnedAmount: u128;
|
|
@@ -4717,13 +4781,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4717
4781
|
readonly isOperationallyCertified: bool;
|
|
4718
4782
|
}
|
|
4719
4783
|
|
|
4720
|
-
/** @name PalletOperationalAccountsRewardsConfig (
|
|
4784
|
+
/** @name PalletOperationalAccountsRewardsConfig (547) */
|
|
4721
4785
|
interface PalletOperationalAccountsRewardsConfig extends Struct {
|
|
4722
4786
|
readonly operationalCertificationReward: Compact<u128>;
|
|
4723
4787
|
readonly operationalCertificationBonusReward: Compact<u128>;
|
|
4724
4788
|
}
|
|
4725
4789
|
|
|
4726
|
-
/** @name PalletOperationalAccountsError (
|
|
4790
|
+
/** @name PalletOperationalAccountsError (548) */
|
|
4727
4791
|
interface PalletOperationalAccountsError extends Enum {
|
|
4728
4792
|
readonly isAlreadyRegistered: boolean;
|
|
4729
4793
|
readonly isInvalidRegistrationSubmitter: boolean;
|
|
@@ -4744,6 +4808,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4744
4808
|
readonly isAlreadyOperationallyCertified: boolean;
|
|
4745
4809
|
readonly isNotEligibleForActivation: boolean;
|
|
4746
4810
|
readonly isUpstreamHasNoAvailableAccessCodes: boolean;
|
|
4811
|
+
readonly isInvalidName: boolean;
|
|
4747
4812
|
readonly type:
|
|
4748
4813
|
| 'AlreadyRegistered'
|
|
4749
4814
|
| 'InvalidRegistrationSubmitter'
|
|
@@ -4763,15 +4828,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
4763
4828
|
| 'TreasuryInsufficientFunds'
|
|
4764
4829
|
| 'AlreadyOperationallyCertified'
|
|
4765
4830
|
| 'NotEligibleForActivation'
|
|
4766
|
-
| 'UpstreamHasNoAvailableAccessCodes'
|
|
4831
|
+
| 'UpstreamHasNoAvailableAccessCodes'
|
|
4832
|
+
| 'InvalidName';
|
|
4767
4833
|
}
|
|
4768
4834
|
|
|
4769
|
-
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (
|
|
4835
|
+
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (549) */
|
|
4770
4836
|
interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
|
|
4771
4837
|
readonly slot: Compact<u64>;
|
|
4772
4838
|
}
|
|
4773
4839
|
|
|
4774
|
-
/** @name PalletEthereumVerifierExecutionHeaderAnchor (
|
|
4840
|
+
/** @name PalletEthereumVerifierExecutionHeaderAnchor (550) */
|
|
4775
4841
|
interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
|
|
4776
4842
|
readonly blockNumber: Compact<u64>;
|
|
4777
4843
|
readonly timestampMillis: Compact<u64>;
|
|
@@ -4781,44 +4847,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
4781
4847
|
readonly receiptsRoot: H256;
|
|
4782
4848
|
}
|
|
4783
4849
|
|
|
4784
|
-
/** @name PalletEthereumVerifierSyncCommitteePrepared (
|
|
4850
|
+
/** @name PalletEthereumVerifierSyncCommitteePrepared (551) */
|
|
4785
4851
|
interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
|
|
4786
4852
|
readonly root: H256;
|
|
4787
4853
|
readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
|
|
4788
4854
|
readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
|
|
4789
4855
|
}
|
|
4790
4856
|
|
|
4791
|
-
/** @name SnowbridgeMilagroBlsKeysPublicKey (
|
|
4857
|
+
/** @name SnowbridgeMilagroBlsKeysPublicKey (553) */
|
|
4792
4858
|
interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
|
|
4793
4859
|
readonly point: SnowbridgeAmclBls381Ecp;
|
|
4794
4860
|
}
|
|
4795
4861
|
|
|
4796
|
-
/** @name SnowbridgeAmclBls381Ecp (
|
|
4862
|
+
/** @name SnowbridgeAmclBls381Ecp (554) */
|
|
4797
4863
|
interface SnowbridgeAmclBls381Ecp extends Struct {
|
|
4798
4864
|
readonly x: SnowbridgeAmclBls381Fp;
|
|
4799
4865
|
readonly y: SnowbridgeAmclBls381Fp;
|
|
4800
4866
|
readonly z: SnowbridgeAmclBls381Fp;
|
|
4801
4867
|
}
|
|
4802
4868
|
|
|
4803
|
-
/** @name SnowbridgeAmclBls381Fp (
|
|
4869
|
+
/** @name SnowbridgeAmclBls381Fp (555) */
|
|
4804
4870
|
interface SnowbridgeAmclBls381Fp extends Struct {
|
|
4805
4871
|
readonly x: SnowbridgeAmclBls381Big;
|
|
4806
4872
|
readonly xes: i32;
|
|
4807
4873
|
}
|
|
4808
4874
|
|
|
4809
|
-
/** @name SnowbridgeAmclBls381Big (
|
|
4875
|
+
/** @name SnowbridgeAmclBls381Big (556) */
|
|
4810
4876
|
interface SnowbridgeAmclBls381Big extends Struct {
|
|
4811
4877
|
readonly w: Vec<i32>;
|
|
4812
4878
|
}
|
|
4813
4879
|
|
|
4814
|
-
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (
|
|
4880
|
+
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (560) */
|
|
4815
4881
|
interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
|
|
4816
4882
|
readonly isMainnet: boolean;
|
|
4817
4883
|
readonly isMinimal: boolean;
|
|
4818
4884
|
readonly type: 'Mainnet' | 'Minimal';
|
|
4819
4885
|
}
|
|
4820
4886
|
|
|
4821
|
-
/** @name PalletEthereumVerifierError (
|
|
4887
|
+
/** @name PalletEthereumVerifierError (561) */
|
|
4822
4888
|
interface PalletEthereumVerifierError extends Enum {
|
|
4823
4889
|
readonly isSkippedSyncCommitteePeriod: boolean;
|
|
4824
4890
|
readonly isSyncCommitteeUpdateRequired: boolean;
|
|
@@ -4871,7 +4937,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4871
4937
|
| 'Halted';
|
|
4872
4938
|
}
|
|
4873
4939
|
|
|
4874
|
-
/** @name PalletCrosschainTransferAccountTransferTotals (
|
|
4940
|
+
/** @name PalletCrosschainTransferAccountTransferTotals (562) */
|
|
4875
4941
|
interface PalletCrosschainTransferAccountTransferTotals extends Struct {
|
|
4876
4942
|
readonly microgonsIn: u128;
|
|
4877
4943
|
readonly microgonsOut: u128;
|
|
@@ -4883,21 +4949,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4883
4949
|
readonly argonotTransfersOutCount: Compact<u32>;
|
|
4884
4950
|
}
|
|
4885
4951
|
|
|
4886
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (
|
|
4952
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (564) */
|
|
4887
4953
|
interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
|
|
4888
4954
|
readonly epochMicrogonsPerArgonot: u128;
|
|
4889
4955
|
readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
|
|
4890
4956
|
readonly totalWeight: u128;
|
|
4891
4957
|
}
|
|
4892
4958
|
|
|
4893
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (
|
|
4959
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (566) */
|
|
4894
4960
|
interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
|
|
4895
4961
|
readonly accountId: AccountId32;
|
|
4896
4962
|
readonly signer: H160;
|
|
4897
4963
|
readonly weight: u128;
|
|
4898
4964
|
}
|
|
4899
4965
|
|
|
4900
|
-
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (
|
|
4966
|
+
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (571) */
|
|
4901
4967
|
interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
|
|
4902
4968
|
readonly approvingCouncilHash: H256;
|
|
4903
4969
|
readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
|
|
@@ -4909,7 +4975,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4909
4975
|
readonly signatures: BTreeMap<H160, U8aFixed>;
|
|
4910
4976
|
}
|
|
4911
4977
|
|
|
4912
|
-
/** @name PalletCrosschainTransferMintingAuthority (
|
|
4978
|
+
/** @name PalletCrosschainTransferMintingAuthority (576) */
|
|
4913
4979
|
interface PalletCrosschainTransferMintingAuthority extends Struct {
|
|
4914
4980
|
readonly accountId: AccountId32;
|
|
4915
4981
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -4926,7 +4992,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4926
4992
|
readonly deactivationApprovalQueueNonce: Option<u64>;
|
|
4927
4993
|
}
|
|
4928
4994
|
|
|
4929
|
-
/** @name PalletCrosschainTransferMintingAuthorityState (
|
|
4995
|
+
/** @name PalletCrosschainTransferMintingAuthorityState (577) */
|
|
4930
4996
|
interface PalletCrosschainTransferMintingAuthorityState extends Enum {
|
|
4931
4997
|
readonly isPendingActivation: boolean;
|
|
4932
4998
|
readonly isActive: boolean;
|
|
@@ -4934,7 +5000,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4934
5000
|
readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
|
|
4935
5001
|
}
|
|
4936
5002
|
|
|
4937
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (
|
|
5003
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (579) */
|
|
4938
5004
|
interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
|
|
4939
5005
|
readonly argonAccountId: AccountId32;
|
|
4940
5006
|
readonly argonTransferNonce: Compact<u64>;
|
|
@@ -4953,7 +5019,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4953
5019
|
readonly state: PalletCrosschainTransferTransferOutTransferOutState;
|
|
4954
5020
|
}
|
|
4955
5021
|
|
|
4956
|
-
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (
|
|
5022
|
+
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (581) */
|
|
4957
5023
|
interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
|
|
4958
5024
|
readonly microgonCollateral: u128;
|
|
4959
5025
|
readonly micronotCollateral: u128;
|
|
@@ -4961,27 +5027,27 @@ declare module '@polkadot/types/lookup' {
|
|
|
4961
5027
|
readonly signature: U8aFixed;
|
|
4962
5028
|
}
|
|
4963
5029
|
|
|
4964
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutState (
|
|
5030
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutState (585) */
|
|
4965
5031
|
interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
|
|
4966
5032
|
readonly isStarted: boolean;
|
|
4967
5033
|
readonly isReady: boolean;
|
|
4968
5034
|
readonly type: 'Started' | 'Ready';
|
|
4969
5035
|
}
|
|
4970
5036
|
|
|
4971
|
-
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (
|
|
5037
|
+
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (587) */
|
|
4972
5038
|
interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
|
|
4973
5039
|
readonly transferId: H256;
|
|
4974
5040
|
readonly remainingCollateral: u128;
|
|
4975
5041
|
readonly remainingMintingAuthorityTip: u128;
|
|
4976
5042
|
}
|
|
4977
5043
|
|
|
4978
|
-
/** @name PalletCrosschainTransferSourceChainCirculation (
|
|
5044
|
+
/** @name PalletCrosschainTransferSourceChainCirculation (589) */
|
|
4979
5045
|
interface PalletCrosschainTransferSourceChainCirculation extends Struct {
|
|
4980
5046
|
readonly argonCirculation: u128;
|
|
4981
5047
|
readonly argonotCirculation: u128;
|
|
4982
5048
|
}
|
|
4983
5049
|
|
|
4984
|
-
/** @name PalletCrosschainTransferError (
|
|
5050
|
+
/** @name PalletCrosschainTransferError (590) */
|
|
4985
5051
|
interface PalletCrosschainTransferError extends Enum {
|
|
4986
5052
|
readonly isInvalidTransferToArgonActivity: boolean;
|
|
4987
5053
|
readonly isNoGatewayProofBlocksProvided: boolean;
|
|
@@ -5096,7 +5162,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
5096
5162
|
| 'CouncilSignerRotationPending';
|
|
5097
5163
|
}
|
|
5098
5164
|
|
|
5099
|
-
/** @name PalletBootstrapError (
|
|
5165
|
+
/** @name PalletBootstrapError (592) */
|
|
5100
5166
|
interface PalletBootstrapError extends Enum {
|
|
5101
5167
|
readonly isEncryptedPayloadTooLong: boolean;
|
|
5102
5168
|
readonly isInvalidRecoveryProof: boolean;
|
|
@@ -5107,45 +5173,45 @@ declare module '@polkadot/types/lookup' {
|
|
|
5107
5173
|
| 'EndpointOwnedByAnotherAccount';
|
|
5108
5174
|
}
|
|
5109
5175
|
|
|
5110
|
-
/** @name FrameSystemExtensionsAuthorizeCall (
|
|
5176
|
+
/** @name FrameSystemExtensionsAuthorizeCall (595) */
|
|
5111
5177
|
type FrameSystemExtensionsAuthorizeCall = Null;
|
|
5112
5178
|
|
|
5113
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
5179
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (596) */
|
|
5114
5180
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
5115
5181
|
|
|
5116
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
5182
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (597) */
|
|
5117
5183
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
5118
5184
|
|
|
5119
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
5185
|
+
/** @name FrameSystemExtensionsCheckTxVersion (598) */
|
|
5120
5186
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
5121
5187
|
|
|
5122
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
5188
|
+
/** @name FrameSystemExtensionsCheckGenesis (599) */
|
|
5123
5189
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
5124
5190
|
|
|
5125
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
5191
|
+
/** @name FrameSystemExtensionsCheckNonce (602) */
|
|
5126
5192
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
|
|
5127
5193
|
|
|
5128
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
5194
|
+
/** @name FrameSystemExtensionsCheckWeight (603) */
|
|
5129
5195
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
5130
5196
|
|
|
5131
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
5197
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (604) */
|
|
5132
5198
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
|
|
5133
5199
|
|
|
5134
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
5200
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (605) */
|
|
5135
5201
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
5136
5202
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
5137
5203
|
}
|
|
5138
5204
|
|
|
5139
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
5205
|
+
/** @name FrameMetadataHashExtensionMode (606) */
|
|
5140
5206
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
5141
5207
|
readonly isDisabled: boolean;
|
|
5142
5208
|
readonly isEnabled: boolean;
|
|
5143
5209
|
readonly type: 'Disabled' | 'Enabled';
|
|
5144
5210
|
}
|
|
5145
5211
|
|
|
5146
|
-
/** @name FrameSystemExtensionsWeightReclaim (
|
|
5212
|
+
/** @name FrameSystemExtensionsWeightReclaim (607) */
|
|
5147
5213
|
type FrameSystemExtensionsWeightReclaim = Null;
|
|
5148
5214
|
|
|
5149
|
-
/** @name ArgonRuntimeRuntime (
|
|
5215
|
+
/** @name ArgonRuntimeRuntime (609) */
|
|
5150
5216
|
type ArgonRuntimeRuntime = Null;
|
|
5151
5217
|
} // declare module
|