@argonprotocol/mainchain 1.4.12-dev.2c3a5160 → 1.4.12-dev.d1c83d27
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/browser/index.d.ts +341 -448
- package/browser/index.js +9 -6
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +31 -28
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +341 -448
- package/lib/index.d.ts +341 -448
- package/lib/index.js +9 -6
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +6 -20
- package/src/interfaces/augment-api-errors.ts +5 -13
- package/src/interfaces/augment-api-events.ts +6 -27
- package/src/interfaces/augment-api-query.ts +46 -47
- package/src/interfaces/augment-api-tx.ts +0 -31
- package/src/interfaces/lookup.ts +289 -320
- package/src/interfaces/registry.ts +2 -4
- package/src/interfaces/types-lookup.ts +294 -347
|
@@ -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: {
|
|
@@ -688,7 +664,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
688
664
|
| 'CommittedArgonotsSet';
|
|
689
665
|
}
|
|
690
666
|
|
|
691
|
-
/** @name PalletBitcoinLocksEvent (
|
|
667
|
+
/** @name PalletBitcoinLocksEvent (56) */
|
|
692
668
|
interface PalletBitcoinLocksEvent extends Enum {
|
|
693
669
|
readonly isBitcoinLockCreated: boolean;
|
|
694
670
|
readonly asBitcoinLockCreated: {
|
|
@@ -772,13 +748,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
772
748
|
readonly accountId: AccountId32;
|
|
773
749
|
readonly signature: Bytes;
|
|
774
750
|
} & Struct;
|
|
775
|
-
readonly isUtxoFundedFromCandidate: boolean;
|
|
776
|
-
readonly asUtxoFundedFromCandidate: {
|
|
777
|
-
readonly utxoId: u64;
|
|
778
|
-
readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
779
|
-
readonly vaultId: u32;
|
|
780
|
-
readonly accountId: AccountId32;
|
|
781
|
-
} & Struct;
|
|
782
751
|
readonly isSecuritizationIncreased: boolean;
|
|
783
752
|
readonly asSecuritizationIncreased: {
|
|
784
753
|
readonly utxoId: u64;
|
|
@@ -805,12 +774,11 @@ declare module '@polkadot/types/lookup' {
|
|
|
805
774
|
| 'OrphanedUtxoReceived'
|
|
806
775
|
| 'OrphanedUtxoReleaseRequested'
|
|
807
776
|
| 'OrphanedUtxoCosigned'
|
|
808
|
-
| 'UtxoFundedFromCandidate'
|
|
809
777
|
| 'SecuritizationIncreased'
|
|
810
778
|
| 'BitcoinLockFlexibleChanged';
|
|
811
779
|
}
|
|
812
780
|
|
|
813
|
-
/** @name PalletNotariesEvent (
|
|
781
|
+
/** @name PalletNotariesEvent (59) */
|
|
814
782
|
interface PalletNotariesEvent extends Enum {
|
|
815
783
|
readonly isNotaryProposed: boolean;
|
|
816
784
|
readonly asNotaryProposed: {
|
|
@@ -847,14 +815,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
847
815
|
| 'NotaryMetaUpdateError';
|
|
848
816
|
}
|
|
849
817
|
|
|
850
|
-
/** @name ArgonPrimitivesNotaryNotaryMeta (
|
|
818
|
+
/** @name ArgonPrimitivesNotaryNotaryMeta (60) */
|
|
851
819
|
interface ArgonPrimitivesNotaryNotaryMeta extends Struct {
|
|
852
820
|
readonly name: Bytes;
|
|
853
821
|
readonly public: U8aFixed;
|
|
854
822
|
readonly hosts: Vec<Bytes>;
|
|
855
823
|
}
|
|
856
824
|
|
|
857
|
-
/** @name ArgonPrimitivesNotaryNotaryRecord (
|
|
825
|
+
/** @name ArgonPrimitivesNotaryNotaryRecord (67) */
|
|
858
826
|
interface ArgonPrimitivesNotaryNotaryRecord extends Struct {
|
|
859
827
|
readonly notaryId: Compact<u32>;
|
|
860
828
|
readonly operatorAccountId: AccountId32;
|
|
@@ -864,7 +832,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
864
832
|
readonly meta: ArgonPrimitivesNotaryNotaryMeta;
|
|
865
833
|
}
|
|
866
834
|
|
|
867
|
-
/** @name PalletNotebookEvent (
|
|
835
|
+
/** @name PalletNotebookEvent (68) */
|
|
868
836
|
interface PalletNotebookEvent extends Enum {
|
|
869
837
|
readonly isNotebookSubmitted: boolean;
|
|
870
838
|
readonly asNotebookSubmitted: {
|
|
@@ -886,7 +854,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
886
854
|
readonly type: 'NotebookSubmitted' | 'NotebookAuditFailure' | 'NotebookReadyForReprocess';
|
|
887
855
|
}
|
|
888
856
|
|
|
889
|
-
/** @name ArgonNotaryAuditErrorVerifyError (
|
|
857
|
+
/** @name ArgonNotaryAuditErrorVerifyError (69) */
|
|
890
858
|
interface ArgonNotaryAuditErrorVerifyError extends Enum {
|
|
891
859
|
readonly isMissingAccountOrigin: boolean;
|
|
892
860
|
readonly asMissingAccountOrigin: {
|
|
@@ -1066,14 +1034,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1066
1034
|
| 'NoDefaultBlockVote';
|
|
1067
1035
|
}
|
|
1068
1036
|
|
|
1069
|
-
/** @name ArgonPrimitivesAccountAccountType (
|
|
1037
|
+
/** @name ArgonPrimitivesAccountAccountType (70) */
|
|
1070
1038
|
interface ArgonPrimitivesAccountAccountType extends Enum {
|
|
1071
1039
|
readonly isTax: boolean;
|
|
1072
1040
|
readonly isDeposit: boolean;
|
|
1073
1041
|
readonly type: 'Tax' | 'Deposit';
|
|
1074
1042
|
}
|
|
1075
1043
|
|
|
1076
|
-
/** @name ArgonNotaryAuditAccountHistoryLookupError (
|
|
1044
|
+
/** @name ArgonNotaryAuditAccountHistoryLookupError (71) */
|
|
1077
1045
|
interface ArgonNotaryAuditAccountHistoryLookupError extends Enum {
|
|
1078
1046
|
readonly isRootNotFound: boolean;
|
|
1079
1047
|
readonly isLastChangeNotFound: boolean;
|
|
@@ -1086,7 +1054,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1086
1054
|
| 'BlockSpecificationNotFound';
|
|
1087
1055
|
}
|
|
1088
1056
|
|
|
1089
|
-
/** @name PalletLocalchainTransferEvent (
|
|
1057
|
+
/** @name PalletLocalchainTransferEvent (75) */
|
|
1090
1058
|
interface PalletLocalchainTransferEvent extends Enum {
|
|
1091
1059
|
readonly isTransferToLocalchain: boolean;
|
|
1092
1060
|
readonly asTransferToLocalchain: {
|
|
@@ -1147,7 +1115,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1147
1115
|
| 'TaxationError';
|
|
1148
1116
|
}
|
|
1149
1117
|
|
|
1150
|
-
/** @name PalletBlockSealSpecEvent (
|
|
1118
|
+
/** @name PalletBlockSealSpecEvent (76) */
|
|
1151
1119
|
interface PalletBlockSealSpecEvent extends Enum {
|
|
1152
1120
|
readonly isVoteMinimumAdjusted: boolean;
|
|
1153
1121
|
readonly asVoteMinimumAdjusted: {
|
|
@@ -1166,7 +1134,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1166
1134
|
readonly type: 'VoteMinimumAdjusted' | 'ComputeDifficultyAdjusted';
|
|
1167
1135
|
}
|
|
1168
1136
|
|
|
1169
|
-
/** @name PalletDomainsEvent (
|
|
1137
|
+
/** @name PalletDomainsEvent (77) */
|
|
1170
1138
|
interface PalletDomainsEvent extends Enum {
|
|
1171
1139
|
readonly isZoneRecordUpdated: boolean;
|
|
1172
1140
|
readonly asZoneRecordUpdated: {
|
|
@@ -1206,33 +1174,33 @@ declare module '@polkadot/types/lookup' {
|
|
|
1206
1174
|
| 'DomainRegistrationError';
|
|
1207
1175
|
}
|
|
1208
1176
|
|
|
1209
|
-
/** @name ArgonPrimitivesDomainZoneRecord (
|
|
1177
|
+
/** @name ArgonPrimitivesDomainZoneRecord (78) */
|
|
1210
1178
|
interface ArgonPrimitivesDomainZoneRecord extends Struct {
|
|
1211
1179
|
readonly paymentAccount: AccountId32;
|
|
1212
1180
|
readonly notaryId: u32;
|
|
1213
1181
|
readonly versions: BTreeMap<ArgonPrimitivesDomainSemver, ArgonPrimitivesDomainVersionHost>;
|
|
1214
1182
|
}
|
|
1215
1183
|
|
|
1216
|
-
/** @name ArgonPrimitivesDomainSemver (
|
|
1184
|
+
/** @name ArgonPrimitivesDomainSemver (80) */
|
|
1217
1185
|
interface ArgonPrimitivesDomainSemver extends Struct {
|
|
1218
1186
|
readonly major: u32;
|
|
1219
1187
|
readonly minor: u32;
|
|
1220
1188
|
readonly patch: u32;
|
|
1221
1189
|
}
|
|
1222
1190
|
|
|
1223
|
-
/** @name ArgonPrimitivesDomainVersionHost (
|
|
1191
|
+
/** @name ArgonPrimitivesDomainVersionHost (81) */
|
|
1224
1192
|
interface ArgonPrimitivesDomainVersionHost extends Struct {
|
|
1225
1193
|
readonly datastoreId: Bytes;
|
|
1226
1194
|
readonly host: Bytes;
|
|
1227
1195
|
}
|
|
1228
1196
|
|
|
1229
|
-
/** @name PalletDomainsDomainRegistration (
|
|
1197
|
+
/** @name PalletDomainsDomainRegistration (86) */
|
|
1230
1198
|
interface PalletDomainsDomainRegistration extends Struct {
|
|
1231
1199
|
readonly accountId: AccountId32;
|
|
1232
1200
|
readonly registeredAtTick: u64;
|
|
1233
1201
|
}
|
|
1234
1202
|
|
|
1235
|
-
/** @name PalletPriceIndexEvent (
|
|
1203
|
+
/** @name PalletPriceIndexEvent (87) */
|
|
1236
1204
|
interface PalletPriceIndexEvent extends Enum {
|
|
1237
1205
|
readonly isNewIndex: boolean;
|
|
1238
1206
|
readonly isOperatorChanged: boolean;
|
|
@@ -1242,7 +1210,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1242
1210
|
readonly type: 'NewIndex' | 'OperatorChanged';
|
|
1243
1211
|
}
|
|
1244
1212
|
|
|
1245
|
-
/** @name PalletGrandpaEvent (
|
|
1213
|
+
/** @name PalletGrandpaEvent (88) */
|
|
1246
1214
|
interface PalletGrandpaEvent extends Enum {
|
|
1247
1215
|
readonly isNewAuthorities: boolean;
|
|
1248
1216
|
readonly asNewAuthorities: {
|
|
@@ -1253,7 +1221,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1253
1221
|
readonly type: 'NewAuthorities' | 'Paused' | 'Resumed';
|
|
1254
1222
|
}
|
|
1255
1223
|
|
|
1256
|
-
/** @name PalletBlockRewardsEvent (
|
|
1224
|
+
/** @name PalletBlockRewardsEvent (91) */
|
|
1257
1225
|
interface PalletBlockRewardsEvent extends Enum {
|
|
1258
1226
|
readonly isRewardCreated: boolean;
|
|
1259
1227
|
readonly asRewardCreated: {
|
|
@@ -1269,7 +1237,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1269
1237
|
readonly type: 'RewardCreated' | 'RewardCreateError';
|
|
1270
1238
|
}
|
|
1271
1239
|
|
|
1272
|
-
/** @name ArgonPrimitivesBlockSealBlockPayout (
|
|
1240
|
+
/** @name ArgonPrimitivesBlockSealBlockPayout (93) */
|
|
1273
1241
|
interface ArgonPrimitivesBlockSealBlockPayout extends Struct {
|
|
1274
1242
|
readonly accountId: AccountId32;
|
|
1275
1243
|
readonly ownership: Compact<u128>;
|
|
@@ -1278,7 +1246,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1278
1246
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
1279
1247
|
}
|
|
1280
1248
|
|
|
1281
|
-
/** @name ArgonPrimitivesBlockSealBlockRewardType (
|
|
1249
|
+
/** @name ArgonPrimitivesBlockSealBlockRewardType (94) */
|
|
1282
1250
|
interface ArgonPrimitivesBlockSealBlockRewardType extends Enum {
|
|
1283
1251
|
readonly isMiner: boolean;
|
|
1284
1252
|
readonly isVoter: boolean;
|
|
@@ -1286,7 +1254,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1286
1254
|
readonly type: 'Miner' | 'Voter' | 'ProfitShare';
|
|
1287
1255
|
}
|
|
1288
1256
|
|
|
1289
|
-
/** @name PalletMintEvent (
|
|
1257
|
+
/** @name PalletMintEvent (97) */
|
|
1290
1258
|
interface PalletMintEvent extends Enum {
|
|
1291
1259
|
readonly isBitcoinMint: boolean;
|
|
1292
1260
|
readonly asBitcoinMint: {
|
|
@@ -1312,14 +1280,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1312
1280
|
readonly type: 'BitcoinMint' | 'MiningMint' | 'MintError';
|
|
1313
1281
|
}
|
|
1314
1282
|
|
|
1315
|
-
/** @name PalletMintMintType (
|
|
1283
|
+
/** @name PalletMintMintType (100) */
|
|
1316
1284
|
interface PalletMintMintType extends Enum {
|
|
1317
1285
|
readonly isBitcoin: boolean;
|
|
1318
1286
|
readonly isMining: boolean;
|
|
1319
1287
|
readonly type: 'Bitcoin' | 'Mining';
|
|
1320
1288
|
}
|
|
1321
1289
|
|
|
1322
|
-
/** @name PalletBalancesEvent (
|
|
1290
|
+
/** @name PalletBalancesEvent (101) */
|
|
1323
1291
|
interface PalletBalancesEvent extends Enum {
|
|
1324
1292
|
readonly isEndowed: boolean;
|
|
1325
1293
|
readonly asEndowed: {
|
|
@@ -1506,14 +1474,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1506
1474
|
| 'Unexpected';
|
|
1507
1475
|
}
|
|
1508
1476
|
|
|
1509
|
-
/** @name FrameSupportTokensMiscBalanceStatus (
|
|
1477
|
+
/** @name FrameSupportTokensMiscBalanceStatus (102) */
|
|
1510
1478
|
interface FrameSupportTokensMiscBalanceStatus extends Enum {
|
|
1511
1479
|
readonly isFree: boolean;
|
|
1512
1480
|
readonly isReserved: boolean;
|
|
1513
1481
|
readonly type: 'Free' | 'Reserved';
|
|
1514
1482
|
}
|
|
1515
1483
|
|
|
1516
|
-
/** @name ArgonRuntimeRuntimeHoldReason (
|
|
1484
|
+
/** @name ArgonRuntimeRuntimeHoldReason (103) */
|
|
1517
1485
|
interface ArgonRuntimeRuntimeHoldReason extends Enum {
|
|
1518
1486
|
readonly isMiningSlot: boolean;
|
|
1519
1487
|
readonly asMiningSlot: PalletMiningSlotHoldReason;
|
|
@@ -1536,13 +1504,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
1536
1504
|
| 'CrosschainTransfer';
|
|
1537
1505
|
}
|
|
1538
1506
|
|
|
1539
|
-
/** @name PalletMiningSlotHoldReason (
|
|
1507
|
+
/** @name PalletMiningSlotHoldReason (104) */
|
|
1540
1508
|
interface PalletMiningSlotHoldReason extends Enum {
|
|
1541
1509
|
readonly isRegisterAsMiner: boolean;
|
|
1542
1510
|
readonly type: 'RegisterAsMiner';
|
|
1543
1511
|
}
|
|
1544
1512
|
|
|
1545
|
-
/** @name PalletVaultsHoldReason (
|
|
1513
|
+
/** @name PalletVaultsHoldReason (105) */
|
|
1546
1514
|
interface PalletVaultsHoldReason extends Enum {
|
|
1547
1515
|
readonly isEnterVault: boolean;
|
|
1548
1516
|
readonly isObligationFee: boolean;
|
|
@@ -1550,39 +1518,39 @@ declare module '@polkadot/types/lookup' {
|
|
|
1550
1518
|
readonly type: 'EnterVault' | 'ObligationFee' | 'PendingCollect';
|
|
1551
1519
|
}
|
|
1552
1520
|
|
|
1553
|
-
/** @name PalletBitcoinLocksHoldReason (
|
|
1521
|
+
/** @name PalletBitcoinLocksHoldReason (106) */
|
|
1554
1522
|
interface PalletBitcoinLocksHoldReason extends Enum {
|
|
1555
1523
|
readonly isReleaseBitcoinLock: boolean;
|
|
1556
1524
|
readonly type: 'ReleaseBitcoinLock';
|
|
1557
1525
|
}
|
|
1558
1526
|
|
|
1559
|
-
/** @name PalletBlockRewardsHoldReason (
|
|
1527
|
+
/** @name PalletBlockRewardsHoldReason (107) */
|
|
1560
1528
|
interface PalletBlockRewardsHoldReason extends Enum {
|
|
1561
1529
|
readonly isMaturationPeriod: boolean;
|
|
1562
1530
|
readonly type: 'MaturationPeriod';
|
|
1563
1531
|
}
|
|
1564
1532
|
|
|
1565
|
-
/** @name PalletTreasuryHoldReason (
|
|
1533
|
+
/** @name PalletTreasuryHoldReason (108) */
|
|
1566
1534
|
interface PalletTreasuryHoldReason extends Enum {
|
|
1567
1535
|
readonly isContributedToTreasury: boolean;
|
|
1568
1536
|
readonly type: 'ContributedToTreasury';
|
|
1569
1537
|
}
|
|
1570
1538
|
|
|
1571
|
-
/** @name PalletCrosschainTransferHoldReason (
|
|
1539
|
+
/** @name PalletCrosschainTransferHoldReason (109) */
|
|
1572
1540
|
interface PalletCrosschainTransferHoldReason extends Enum {
|
|
1573
1541
|
readonly isTransferOutMintingAuthorityTip: boolean;
|
|
1574
1542
|
readonly isMintingAuthorityActivationRepayment: boolean;
|
|
1575
1543
|
readonly type: 'TransferOutMintingAuthorityTip' | 'MintingAuthorityActivationRepayment';
|
|
1576
1544
|
}
|
|
1577
1545
|
|
|
1578
|
-
/** @name PalletBalancesUnexpectedKind (
|
|
1546
|
+
/** @name PalletBalancesUnexpectedKind (110) */
|
|
1579
1547
|
interface PalletBalancesUnexpectedKind extends Enum {
|
|
1580
1548
|
readonly isBalanceUpdated: boolean;
|
|
1581
1549
|
readonly isFailedToMutateAccount: boolean;
|
|
1582
1550
|
readonly type: 'BalanceUpdated' | 'FailedToMutateAccount';
|
|
1583
1551
|
}
|
|
1584
1552
|
|
|
1585
|
-
/** @name PalletTxPauseEvent (
|
|
1553
|
+
/** @name PalletTxPauseEvent (112) */
|
|
1586
1554
|
interface PalletTxPauseEvent extends Enum {
|
|
1587
1555
|
readonly isCallPaused: boolean;
|
|
1588
1556
|
readonly asCallPaused: {
|
|
@@ -1595,7 +1563,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1595
1563
|
readonly type: 'CallPaused' | 'CallUnpaused';
|
|
1596
1564
|
}
|
|
1597
1565
|
|
|
1598
|
-
/** @name PalletTransactionPaymentEvent (
|
|
1566
|
+
/** @name PalletTransactionPaymentEvent (115) */
|
|
1599
1567
|
interface PalletTransactionPaymentEvent extends Enum {
|
|
1600
1568
|
readonly isTransactionFeePaid: boolean;
|
|
1601
1569
|
readonly asTransactionFeePaid: {
|
|
@@ -1606,7 +1574,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1606
1574
|
readonly type: 'TransactionFeePaid';
|
|
1607
1575
|
}
|
|
1608
1576
|
|
|
1609
|
-
/** @name PalletUtilityEvent (
|
|
1577
|
+
/** @name PalletUtilityEvent (116) */
|
|
1610
1578
|
interface PalletUtilityEvent extends Enum {
|
|
1611
1579
|
readonly isBatchInterrupted: boolean;
|
|
1612
1580
|
readonly asBatchInterrupted: {
|
|
@@ -1640,7 +1608,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1640
1608
|
| 'IfElseFallbackCalled';
|
|
1641
1609
|
}
|
|
1642
1610
|
|
|
1643
|
-
/** @name PalletSudoEvent (
|
|
1611
|
+
/** @name PalletSudoEvent (117) */
|
|
1644
1612
|
interface PalletSudoEvent extends Enum {
|
|
1645
1613
|
readonly isSudid: boolean;
|
|
1646
1614
|
readonly asSudid: {
|
|
@@ -1659,7 +1627,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1659
1627
|
readonly type: 'Sudid' | 'KeyChanged' | 'KeyRemoved' | 'SudoAsDone';
|
|
1660
1628
|
}
|
|
1661
1629
|
|
|
1662
|
-
/** @name PalletTreasuryEvent (
|
|
1630
|
+
/** @name PalletTreasuryEvent (118) */
|
|
1663
1631
|
interface PalletTreasuryEvent extends Enum {
|
|
1664
1632
|
readonly isCouldNotDistributeEarningsToBondLot: boolean;
|
|
1665
1633
|
readonly asCouldNotDistributeEarningsToBondLot: {
|
|
@@ -1765,7 +1733,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1765
1733
|
| 'EncumberedBondMicrogonsBurned';
|
|
1766
1734
|
}
|
|
1767
1735
|
|
|
1768
|
-
/** @name PalletTreasuryBondProgramId (
|
|
1736
|
+
/** @name PalletTreasuryBondProgramId (119) */
|
|
1769
1737
|
interface PalletTreasuryBondProgramId extends Enum {
|
|
1770
1738
|
readonly isVault: boolean;
|
|
1771
1739
|
readonly asVault: {
|
|
@@ -1775,7 +1743,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1775
1743
|
readonly type: 'Vault' | 'Argonot';
|
|
1776
1744
|
}
|
|
1777
1745
|
|
|
1778
|
-
/** @name PalletTreasuryBondReleaseReason (
|
|
1746
|
+
/** @name PalletTreasuryBondReleaseReason (120) */
|
|
1779
1747
|
interface PalletTreasuryBondReleaseReason extends Enum {
|
|
1780
1748
|
readonly isUserLiquidation: boolean;
|
|
1781
1749
|
readonly isBumped: boolean;
|
|
@@ -1783,7 +1751,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1783
1751
|
readonly type: 'UserLiquidation' | 'Bumped' | 'VaultClosed';
|
|
1784
1752
|
}
|
|
1785
1753
|
|
|
1786
|
-
/** @name PalletFeeControlEvent (
|
|
1754
|
+
/** @name PalletFeeControlEvent (121) */
|
|
1787
1755
|
interface PalletFeeControlEvent extends Enum {
|
|
1788
1756
|
readonly isFeeSkipped: boolean;
|
|
1789
1757
|
readonly asFeeSkipped: {
|
|
@@ -1798,14 +1766,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1798
1766
|
readonly type: 'FeeSkipped' | 'FeeDelegated';
|
|
1799
1767
|
}
|
|
1800
1768
|
|
|
1801
|
-
/** @name ArgonRuntimeOriginCaller (
|
|
1769
|
+
/** @name ArgonRuntimeOriginCaller (122) */
|
|
1802
1770
|
interface ArgonRuntimeOriginCaller extends Enum {
|
|
1803
1771
|
readonly isSystem: boolean;
|
|
1804
1772
|
readonly asSystem: FrameSupportDispatchRawOrigin;
|
|
1805
1773
|
readonly type: 'System';
|
|
1806
1774
|
}
|
|
1807
1775
|
|
|
1808
|
-
/** @name FrameSupportDispatchRawOrigin (
|
|
1776
|
+
/** @name FrameSupportDispatchRawOrigin (123) */
|
|
1809
1777
|
interface FrameSupportDispatchRawOrigin extends Enum {
|
|
1810
1778
|
readonly isRoot: boolean;
|
|
1811
1779
|
readonly isSigned: boolean;
|
|
@@ -1815,7 +1783,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1815
1783
|
readonly type: 'Root' | 'Signed' | 'None' | 'Authorized';
|
|
1816
1784
|
}
|
|
1817
1785
|
|
|
1818
|
-
/** @name PalletOperationalAccountsEvent (
|
|
1786
|
+
/** @name PalletOperationalAccountsEvent (124) */
|
|
1819
1787
|
interface PalletOperationalAccountsEvent extends Enum {
|
|
1820
1788
|
readonly isOperationalAccountRegistered: boolean;
|
|
1821
1789
|
readonly asOperationalAccountRegistered: {
|
|
@@ -1872,14 +1840,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1872
1840
|
| 'OperationalProgressForced';
|
|
1873
1841
|
}
|
|
1874
1842
|
|
|
1875
|
-
/** @name ArgonPrimitivesProvidersOperationalRewardKind (
|
|
1843
|
+
/** @name ArgonPrimitivesProvidersOperationalRewardKind (125) */
|
|
1876
1844
|
interface ArgonPrimitivesProvidersOperationalRewardKind extends Enum {
|
|
1877
1845
|
readonly isCertification: boolean;
|
|
1878
1846
|
readonly isOperationalCertificationBonus: boolean;
|
|
1879
1847
|
readonly type: 'Certification' | 'OperationalCertificationBonus';
|
|
1880
1848
|
}
|
|
1881
1849
|
|
|
1882
|
-
/** @name PalletEthereumVerifierEvent (
|
|
1850
|
+
/** @name PalletEthereumVerifierEvent (126) */
|
|
1883
1851
|
interface PalletEthereumVerifierEvent extends Enum {
|
|
1884
1852
|
readonly isBeaconHeaderImported: boolean;
|
|
1885
1853
|
readonly asBeaconHeaderImported: {
|
|
@@ -1914,14 +1882,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1914
1882
|
| 'OperatingModeChanged';
|
|
1915
1883
|
}
|
|
1916
1884
|
|
|
1917
|
-
/** @name PalletEthereumVerifierBasicOperatingMode (
|
|
1885
|
+
/** @name PalletEthereumVerifierBasicOperatingMode (127) */
|
|
1918
1886
|
interface PalletEthereumVerifierBasicOperatingMode extends Enum {
|
|
1919
1887
|
readonly isNormal: boolean;
|
|
1920
1888
|
readonly isHalted: boolean;
|
|
1921
1889
|
readonly type: 'Normal' | 'Halted';
|
|
1922
1890
|
}
|
|
1923
1891
|
|
|
1924
|
-
/** @name PalletCrosschainTransferEvent (
|
|
1892
|
+
/** @name PalletCrosschainTransferEvent (128) */
|
|
1925
1893
|
interface PalletCrosschainTransferEvent extends Enum {
|
|
1926
1894
|
readonly isTransferToArgonSettled: boolean;
|
|
1927
1895
|
readonly asTransferToArgonSettled: {
|
|
@@ -2077,13 +2045,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2077
2045
|
| 'TransferCollateralInvalidated';
|
|
2078
2046
|
}
|
|
2079
2047
|
|
|
2080
|
-
/** @name PalletCrosschainTransferSourceChain (
|
|
2048
|
+
/** @name PalletCrosschainTransferSourceChain (129) */
|
|
2081
2049
|
interface PalletCrosschainTransferSourceChain extends Enum {
|
|
2082
2050
|
readonly isEthereum: boolean;
|
|
2083
2051
|
readonly type: 'Ethereum';
|
|
2084
2052
|
}
|
|
2085
2053
|
|
|
2086
|
-
/** @name PalletCrosschainTransferTransferToArgonActivity (
|
|
2054
|
+
/** @name PalletCrosschainTransferTransferToArgonActivity (130) */
|
|
2087
2055
|
interface PalletCrosschainTransferTransferToArgonActivity extends Struct {
|
|
2088
2056
|
readonly gatewayActivityNonce: Compact<u64>;
|
|
2089
2057
|
readonly from: H160;
|
|
@@ -2092,14 +2060,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2092
2060
|
readonly amount: Compact<u128>;
|
|
2093
2061
|
}
|
|
2094
2062
|
|
|
2095
|
-
/** @name PalletCrosschainTransferAssetKind (
|
|
2063
|
+
/** @name PalletCrosschainTransferAssetKind (133) */
|
|
2096
2064
|
interface PalletCrosschainTransferAssetKind extends Enum {
|
|
2097
2065
|
readonly isArgon: boolean;
|
|
2098
2066
|
readonly isArgonot: boolean;
|
|
2099
2067
|
readonly type: 'Argon' | 'Argonot';
|
|
2100
2068
|
}
|
|
2101
2069
|
|
|
2102
|
-
/** @name PalletCrosschainTransferCouncilApprovalTargetId (
|
|
2070
|
+
/** @name PalletCrosschainTransferCouncilApprovalTargetId (134) */
|
|
2103
2071
|
interface PalletCrosschainTransferCouncilApprovalTargetId extends Enum {
|
|
2104
2072
|
readonly isMintingAuthorityActivation: boolean;
|
|
2105
2073
|
readonly asMintingAuthorityActivation: H160;
|
|
@@ -2113,14 +2081,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2113
2081
|
| 'GlobalIssuanceCouncilRotation';
|
|
2114
2082
|
}
|
|
2115
2083
|
|
|
2116
|
-
/** @name PalletCrosschainTransferGatewaySyncPause (
|
|
2084
|
+
/** @name PalletCrosschainTransferGatewaySyncPause (135) */
|
|
2117
2085
|
interface PalletCrosschainTransferGatewaySyncPause extends Struct {
|
|
2118
2086
|
readonly lastGoodGatewayActivityNonce: Compact<u64>;
|
|
2119
2087
|
readonly failedGatewayActivityNonce: Compact<u64>;
|
|
2120
2088
|
readonly reason: PalletCrosschainTransferGatewaySyncPauseReason;
|
|
2121
2089
|
}
|
|
2122
2090
|
|
|
2123
|
-
/** @name PalletCrosschainTransferGatewaySyncPauseReason (
|
|
2091
|
+
/** @name PalletCrosschainTransferGatewaySyncPauseReason (136) */
|
|
2124
2092
|
interface PalletCrosschainTransferGatewaySyncPauseReason extends Enum {
|
|
2125
2093
|
readonly isManual: boolean;
|
|
2126
2094
|
readonly isMalformedGatewayActivity: boolean;
|
|
@@ -2145,7 +2113,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2145
2113
|
| 'GatewayStateDrift';
|
|
2146
2114
|
}
|
|
2147
2115
|
|
|
2148
|
-
/** @name PalletCrosschainTransferGatewayState (
|
|
2116
|
+
/** @name PalletCrosschainTransferGatewayState (137) */
|
|
2149
2117
|
interface PalletCrosschainTransferGatewayState extends Struct {
|
|
2150
2118
|
readonly gatewayActivityNonce: Compact<u64>;
|
|
2151
2119
|
readonly argonApprovalsNonce: Compact<u64>;
|
|
@@ -2153,7 +2121,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2153
2121
|
readonly argonotCirculation: u128;
|
|
2154
2122
|
}
|
|
2155
2123
|
|
|
2156
|
-
/** @name PalletBootstrapEvent (
|
|
2124
|
+
/** @name PalletBootstrapEvent (138) */
|
|
2157
2125
|
interface PalletBootstrapEvent extends Enum {
|
|
2158
2126
|
readonly isRecoveryPayloadUpdated: boolean;
|
|
2159
2127
|
readonly asRecoveryPayloadUpdated: {
|
|
@@ -2168,13 +2136,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2168
2136
|
readonly type: 'RecoveryPayloadUpdated' | 'EndpointUpdated';
|
|
2169
2137
|
}
|
|
2170
2138
|
|
|
2171
|
-
/** @name PalletBootstrapRecoveryPubkey (
|
|
2139
|
+
/** @name PalletBootstrapRecoveryPubkey (139) */
|
|
2172
2140
|
interface PalletBootstrapRecoveryPubkey extends U8aFixed {}
|
|
2173
2141
|
|
|
2174
|
-
/** @name PalletBootstrapEndpointPubkey (
|
|
2142
|
+
/** @name PalletBootstrapEndpointPubkey (140) */
|
|
2175
2143
|
interface PalletBootstrapEndpointPubkey extends U8aFixed {}
|
|
2176
2144
|
|
|
2177
|
-
/** @name FrameSystemPhase (
|
|
2145
|
+
/** @name FrameSystemPhase (141) */
|
|
2178
2146
|
interface FrameSystemPhase extends Enum {
|
|
2179
2147
|
readonly isApplyExtrinsic: boolean;
|
|
2180
2148
|
readonly asApplyExtrinsic: u32;
|
|
@@ -2183,19 +2151,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
2183
2151
|
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
|
|
2184
2152
|
}
|
|
2185
2153
|
|
|
2186
|
-
/** @name FrameSystemLastRuntimeUpgradeInfo (
|
|
2154
|
+
/** @name FrameSystemLastRuntimeUpgradeInfo (145) */
|
|
2187
2155
|
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
|
|
2188
2156
|
readonly specVersion: Compact<u32>;
|
|
2189
2157
|
readonly specName: Text;
|
|
2190
2158
|
}
|
|
2191
2159
|
|
|
2192
|
-
/** @name FrameSystemCodeUpgradeAuthorization (
|
|
2160
|
+
/** @name FrameSystemCodeUpgradeAuthorization (148) */
|
|
2193
2161
|
interface FrameSystemCodeUpgradeAuthorization extends Struct {
|
|
2194
2162
|
readonly codeHash: H256;
|
|
2195
2163
|
readonly checkVersion: bool;
|
|
2196
2164
|
}
|
|
2197
2165
|
|
|
2198
|
-
/** @name FrameSystemCall (
|
|
2166
|
+
/** @name FrameSystemCall (149) */
|
|
2199
2167
|
interface FrameSystemCall extends Enum {
|
|
2200
2168
|
readonly isRemark: boolean;
|
|
2201
2169
|
readonly asRemark: {
|
|
@@ -2256,21 +2224,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
2256
2224
|
| 'ApplyAuthorizedUpgrade';
|
|
2257
2225
|
}
|
|
2258
2226
|
|
|
2259
|
-
/** @name FrameSystemLimitsBlockWeights (
|
|
2227
|
+
/** @name FrameSystemLimitsBlockWeights (153) */
|
|
2260
2228
|
interface FrameSystemLimitsBlockWeights extends Struct {
|
|
2261
2229
|
readonly baseBlock: SpWeightsWeightV2Weight;
|
|
2262
2230
|
readonly maxBlock: SpWeightsWeightV2Weight;
|
|
2263
2231
|
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
|
|
2264
2232
|
}
|
|
2265
2233
|
|
|
2266
|
-
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (
|
|
2234
|
+
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (154) */
|
|
2267
2235
|
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
|
|
2268
2236
|
readonly normal: FrameSystemLimitsWeightsPerClass;
|
|
2269
2237
|
readonly operational: FrameSystemLimitsWeightsPerClass;
|
|
2270
2238
|
readonly mandatory: FrameSystemLimitsWeightsPerClass;
|
|
2271
2239
|
}
|
|
2272
2240
|
|
|
2273
|
-
/** @name FrameSystemLimitsWeightsPerClass (
|
|
2241
|
+
/** @name FrameSystemLimitsWeightsPerClass (155) */
|
|
2274
2242
|
interface FrameSystemLimitsWeightsPerClass extends Struct {
|
|
2275
2243
|
readonly baseExtrinsic: SpWeightsWeightV2Weight;
|
|
2276
2244
|
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
|
|
@@ -2278,26 +2246,26 @@ declare module '@polkadot/types/lookup' {
|
|
|
2278
2246
|
readonly reserved: Option<SpWeightsWeightV2Weight>;
|
|
2279
2247
|
}
|
|
2280
2248
|
|
|
2281
|
-
/** @name FrameSystemLimitsBlockLength (
|
|
2249
|
+
/** @name FrameSystemLimitsBlockLength (157) */
|
|
2282
2250
|
interface FrameSystemLimitsBlockLength extends Struct {
|
|
2283
2251
|
readonly max: FrameSupportDispatchPerDispatchClassU32;
|
|
2284
2252
|
readonly maxHeaderSize: Option<u32>;
|
|
2285
2253
|
}
|
|
2286
2254
|
|
|
2287
|
-
/** @name FrameSupportDispatchPerDispatchClassU32 (
|
|
2255
|
+
/** @name FrameSupportDispatchPerDispatchClassU32 (158) */
|
|
2288
2256
|
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
|
|
2289
2257
|
readonly normal: u32;
|
|
2290
2258
|
readonly operational: u32;
|
|
2291
2259
|
readonly mandatory: u32;
|
|
2292
2260
|
}
|
|
2293
2261
|
|
|
2294
|
-
/** @name SpWeightsRuntimeDbWeight (
|
|
2262
|
+
/** @name SpWeightsRuntimeDbWeight (160) */
|
|
2295
2263
|
interface SpWeightsRuntimeDbWeight extends Struct {
|
|
2296
2264
|
readonly read: u64;
|
|
2297
2265
|
readonly write: u64;
|
|
2298
2266
|
}
|
|
2299
2267
|
|
|
2300
|
-
/** @name SpVersionRuntimeVersion (
|
|
2268
|
+
/** @name SpVersionRuntimeVersion (161) */
|
|
2301
2269
|
interface SpVersionRuntimeVersion extends Struct {
|
|
2302
2270
|
readonly specName: Text;
|
|
2303
2271
|
readonly implName: Text;
|
|
@@ -2309,7 +2277,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2309
2277
|
readonly systemVersion: u8;
|
|
2310
2278
|
}
|
|
2311
2279
|
|
|
2312
|
-
/** @name FrameSystemError (
|
|
2280
|
+
/** @name FrameSystemError (166) */
|
|
2313
2281
|
interface FrameSystemError extends Enum {
|
|
2314
2282
|
readonly isInvalidSpecName: boolean;
|
|
2315
2283
|
readonly isSpecVersionNeedsToIncrease: boolean;
|
|
@@ -2332,7 +2300,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2332
2300
|
| 'Unauthorized';
|
|
2333
2301
|
}
|
|
2334
2302
|
|
|
2335
|
-
/** @name ArgonPrimitivesDigestsDigestset (
|
|
2303
|
+
/** @name ArgonPrimitivesDigestsDigestset (167) */
|
|
2336
2304
|
interface ArgonPrimitivesDigestsDigestset extends Struct {
|
|
2337
2305
|
readonly author: AccountId32;
|
|
2338
2306
|
readonly blockVote: ArgonPrimitivesDigestsBlockVoteDigest;
|
|
@@ -2343,18 +2311,18 @@ declare module '@polkadot/types/lookup' {
|
|
|
2343
2311
|
readonly notebooks: ArgonPrimitivesDigestsNotebookDigest;
|
|
2344
2312
|
}
|
|
2345
2313
|
|
|
2346
|
-
/** @name ArgonPrimitivesDigestsBlockVoteDigest (
|
|
2314
|
+
/** @name ArgonPrimitivesDigestsBlockVoteDigest (168) */
|
|
2347
2315
|
interface ArgonPrimitivesDigestsBlockVoteDigest extends Struct {
|
|
2348
2316
|
readonly votingPower: Compact<u128>;
|
|
2349
2317
|
readonly votesCount: Compact<u32>;
|
|
2350
2318
|
}
|
|
2351
2319
|
|
|
2352
|
-
/** @name ArgonPrimitivesDigestsParentVotingKeyDigest (
|
|
2320
|
+
/** @name ArgonPrimitivesDigestsParentVotingKeyDigest (170) */
|
|
2353
2321
|
interface ArgonPrimitivesDigestsParentVotingKeyDigest extends Struct {
|
|
2354
2322
|
readonly parentVotingKey: Option<H256>;
|
|
2355
2323
|
}
|
|
2356
2324
|
|
|
2357
|
-
/** @name ArgonPrimitivesForkPower (
|
|
2325
|
+
/** @name ArgonPrimitivesForkPower (173) */
|
|
2358
2326
|
interface ArgonPrimitivesForkPower extends Struct {
|
|
2359
2327
|
readonly isLatestVote: bool;
|
|
2360
2328
|
readonly notebooks: Compact<u64>;
|
|
@@ -2365,19 +2333,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
2365
2333
|
readonly minerNonceScore: Option<U256>;
|
|
2366
2334
|
}
|
|
2367
2335
|
|
|
2368
|
-
/** @name ArgonPrimitivesDigestsFrameInfo (
|
|
2336
|
+
/** @name ArgonPrimitivesDigestsFrameInfo (178) */
|
|
2369
2337
|
interface ArgonPrimitivesDigestsFrameInfo extends Struct {
|
|
2370
2338
|
readonly frameId: Compact<u64>;
|
|
2371
2339
|
readonly frameRewardTicksRemaining: Compact<u32>;
|
|
2372
2340
|
readonly isNewFrame: bool;
|
|
2373
2341
|
}
|
|
2374
2342
|
|
|
2375
|
-
/** @name ArgonPrimitivesDigestsNotebookDigest (
|
|
2343
|
+
/** @name ArgonPrimitivesDigestsNotebookDigest (180) */
|
|
2376
2344
|
interface ArgonPrimitivesDigestsNotebookDigest extends Struct {
|
|
2377
2345
|
readonly notebooks: Vec<ArgonPrimitivesNotebookNotebookAuditResult>;
|
|
2378
2346
|
}
|
|
2379
2347
|
|
|
2380
|
-
/** @name ArgonPrimitivesNotebookNotebookAuditResult (
|
|
2348
|
+
/** @name ArgonPrimitivesNotebookNotebookAuditResult (182) */
|
|
2381
2349
|
interface ArgonPrimitivesNotebookNotebookAuditResult extends Struct {
|
|
2382
2350
|
readonly notaryId: Compact<u32>;
|
|
2383
2351
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2385,7 +2353,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2385
2353
|
readonly auditFirstFailure: Option<ArgonNotaryAuditErrorVerifyError>;
|
|
2386
2354
|
}
|
|
2387
2355
|
|
|
2388
|
-
/** @name PalletDigestsError (
|
|
2356
|
+
/** @name PalletDigestsError (185) */
|
|
2389
2357
|
interface PalletDigestsError extends Enum {
|
|
2390
2358
|
readonly isDuplicateBlockVoteDigest: boolean;
|
|
2391
2359
|
readonly isDuplicateAuthorDigest: boolean;
|
|
@@ -2416,7 +2384,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2416
2384
|
| 'DuplicateFrameInfoDigest';
|
|
2417
2385
|
}
|
|
2418
2386
|
|
|
2419
|
-
/** @name PalletTimestampCall (
|
|
2387
|
+
/** @name PalletTimestampCall (186) */
|
|
2420
2388
|
interface PalletTimestampCall extends Enum {
|
|
2421
2389
|
readonly isSet: boolean;
|
|
2422
2390
|
readonly asSet: {
|
|
@@ -2425,7 +2393,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2425
2393
|
readonly type: 'Set';
|
|
2426
2394
|
}
|
|
2427
2395
|
|
|
2428
|
-
/** @name PalletMultisigMultisig (
|
|
2396
|
+
/** @name PalletMultisigMultisig (188) */
|
|
2429
2397
|
interface PalletMultisigMultisig extends Struct {
|
|
2430
2398
|
readonly when: PalletMultisigTimepoint;
|
|
2431
2399
|
readonly deposit: u128;
|
|
@@ -2433,7 +2401,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2433
2401
|
readonly approvals: Vec<AccountId32>;
|
|
2434
2402
|
}
|
|
2435
2403
|
|
|
2436
|
-
/** @name PalletMultisigCall (
|
|
2404
|
+
/** @name PalletMultisigCall (191) */
|
|
2437
2405
|
interface PalletMultisigCall extends Enum {
|
|
2438
2406
|
readonly isAsMultiThreshold1: boolean;
|
|
2439
2407
|
readonly asAsMultiThreshold1: {
|
|
@@ -2477,7 +2445,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2477
2445
|
| 'PokeDeposit';
|
|
2478
2446
|
}
|
|
2479
2447
|
|
|
2480
|
-
/** @name PalletProxyCall (
|
|
2448
|
+
/** @name PalletProxyCall (193) */
|
|
2481
2449
|
interface PalletProxyCall extends Enum {
|
|
2482
2450
|
readonly isProxy: boolean;
|
|
2483
2451
|
readonly asProxy: {
|
|
@@ -2549,10 +2517,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2549
2517
|
| 'PokeDeposit';
|
|
2550
2518
|
}
|
|
2551
2519
|
|
|
2552
|
-
/** @name PalletTicksCall (
|
|
2520
|
+
/** @name PalletTicksCall (197) */
|
|
2553
2521
|
type PalletTicksCall = Null;
|
|
2554
2522
|
|
|
2555
|
-
/** @name PalletMiningSlotCall (
|
|
2523
|
+
/** @name PalletMiningSlotCall (198) */
|
|
2556
2524
|
interface PalletMiningSlotCall extends Enum {
|
|
2557
2525
|
readonly isBid: boolean;
|
|
2558
2526
|
readonly asBid: {
|
|
@@ -2568,7 +2536,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2568
2536
|
readonly type: 'Bid' | 'ConfigureMiningSlotDelay';
|
|
2569
2537
|
}
|
|
2570
2538
|
|
|
2571
|
-
/** @name PalletBitcoinUtxosCall (
|
|
2539
|
+
/** @name PalletBitcoinUtxosCall (199) */
|
|
2572
2540
|
interface PalletBitcoinUtxosCall extends Enum {
|
|
2573
2541
|
readonly isSync: boolean;
|
|
2574
2542
|
readonly asSync: {
|
|
@@ -2583,39 +2551,24 @@ declare module '@polkadot/types/lookup' {
|
|
|
2583
2551
|
readonly asSetOperator: {
|
|
2584
2552
|
readonly accountId: AccountId32;
|
|
2585
2553
|
} & 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';
|
|
2554
|
+
readonly type: 'Sync' | 'SetConfirmedBlock' | 'SetOperator';
|
|
2602
2555
|
}
|
|
2603
2556
|
|
|
2604
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoSync (
|
|
2557
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoSync (200) */
|
|
2605
2558
|
interface ArgonPrimitivesInherentsBitcoinUtxoSync extends Struct {
|
|
2606
2559
|
readonly spent: Vec<ArgonPrimitivesInherentsBitcoinUtxoSpend>;
|
|
2607
2560
|
readonly funded: Vec<ArgonPrimitivesInherentsBitcoinUtxoFunding>;
|
|
2608
2561
|
readonly syncToBlock: ArgonPrimitivesBitcoinBitcoinBlock;
|
|
2609
2562
|
}
|
|
2610
2563
|
|
|
2611
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (
|
|
2564
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (202) */
|
|
2612
2565
|
interface ArgonPrimitivesInherentsBitcoinUtxoSpend extends Struct {
|
|
2613
2566
|
readonly utxoId: Compact<u64>;
|
|
2614
2567
|
readonly utxoRef: Option<ArgonPrimitivesBitcoinUtxoRef>;
|
|
2615
2568
|
readonly bitcoinHeight: Compact<u64>;
|
|
2616
2569
|
}
|
|
2617
2570
|
|
|
2618
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (
|
|
2571
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (205) */
|
|
2619
2572
|
interface ArgonPrimitivesInherentsBitcoinUtxoFunding extends Struct {
|
|
2620
2573
|
readonly utxoId: Compact<u64>;
|
|
2621
2574
|
readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
@@ -2624,13 +2577,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2624
2577
|
readonly bitcoinHeight: Compact<u64>;
|
|
2625
2578
|
}
|
|
2626
2579
|
|
|
2627
|
-
/** @name ArgonPrimitivesBitcoinBitcoinBlock (
|
|
2580
|
+
/** @name ArgonPrimitivesBitcoinBitcoinBlock (206) */
|
|
2628
2581
|
interface ArgonPrimitivesBitcoinBitcoinBlock extends Struct {
|
|
2629
2582
|
readonly blockHeight: Compact<u64>;
|
|
2630
2583
|
readonly blockHash: ArgonPrimitivesBitcoinH256Le;
|
|
2631
2584
|
}
|
|
2632
2585
|
|
|
2633
|
-
/** @name PalletVaultsCall (
|
|
2586
|
+
/** @name PalletVaultsCall (207) */
|
|
2634
2587
|
interface PalletVaultsCall extends Enum {
|
|
2635
2588
|
readonly isCreate: boolean;
|
|
2636
2589
|
readonly asCreate: {
|
|
@@ -2684,7 +2637,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2684
2637
|
| 'SetReservedSecuritizationSpace';
|
|
2685
2638
|
}
|
|
2686
2639
|
|
|
2687
|
-
/** @name PalletVaultsVaultConfig (
|
|
2640
|
+
/** @name PalletVaultsVaultConfig (208) */
|
|
2688
2641
|
interface PalletVaultsVaultConfig extends Struct {
|
|
2689
2642
|
readonly terms: ArgonPrimitivesVaultVaultTerms;
|
|
2690
2643
|
readonly delegateAccountId: Option<AccountId32>;
|
|
@@ -2693,17 +2646,17 @@ declare module '@polkadot/types/lookup' {
|
|
|
2693
2646
|
readonly securitizationRatio: Compact<u128>;
|
|
2694
2647
|
}
|
|
2695
2648
|
|
|
2696
|
-
/** @name ArgonPrimitivesVaultVaultTerms (
|
|
2649
|
+
/** @name ArgonPrimitivesVaultVaultTerms (209) */
|
|
2697
2650
|
interface ArgonPrimitivesVaultVaultTerms extends Struct {
|
|
2698
2651
|
readonly bitcoinAnnualPercentRate: Compact<u128>;
|
|
2699
2652
|
readonly bitcoinBaseFee: Compact<u128>;
|
|
2700
2653
|
readonly treasuryProfitSharing: Compact<Permill>;
|
|
2701
2654
|
}
|
|
2702
2655
|
|
|
2703
|
-
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (
|
|
2656
|
+
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (213) */
|
|
2704
2657
|
interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {}
|
|
2705
2658
|
|
|
2706
|
-
/** @name PalletBitcoinLocksCall (
|
|
2659
|
+
/** @name PalletBitcoinLocksCall (215) */
|
|
2707
2660
|
interface PalletBitcoinLocksCall extends Enum {
|
|
2708
2661
|
readonly isInitialize: boolean;
|
|
2709
2662
|
readonly asInitialize: {
|
|
@@ -2766,10 +2719,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2766
2719
|
| 'SetFlexible';
|
|
2767
2720
|
}
|
|
2768
2721
|
|
|
2769
|
-
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (
|
|
2722
|
+
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (216) */
|
|
2770
2723
|
interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {}
|
|
2771
2724
|
|
|
2772
|
-
/** @name PalletBitcoinLocksLockOptions (
|
|
2725
|
+
/** @name PalletBitcoinLocksLockOptions (219) */
|
|
2773
2726
|
interface PalletBitcoinLocksLockOptions extends Enum {
|
|
2774
2727
|
readonly isV1: boolean;
|
|
2775
2728
|
readonly asV1: {
|
|
@@ -2783,7 +2736,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2783
2736
|
readonly type: 'V1' | 'V2';
|
|
2784
2737
|
}
|
|
2785
2738
|
|
|
2786
|
-
/** @name PalletBitcoinLocksFeeCoupon (
|
|
2739
|
+
/** @name PalletBitcoinLocksFeeCoupon (220) */
|
|
2787
2740
|
interface PalletBitcoinLocksFeeCoupon extends Struct {
|
|
2788
2741
|
readonly feeDiscount: Compact<u128>;
|
|
2789
2742
|
readonly securitizationSpaceToUnreserve: Compact<u128>;
|
|
@@ -2792,7 +2745,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2792
2745
|
readonly signature: SpRuntimeMultiSignature;
|
|
2793
2746
|
}
|
|
2794
2747
|
|
|
2795
|
-
/** @name SpRuntimeMultiSignature (
|
|
2748
|
+
/** @name SpRuntimeMultiSignature (221) */
|
|
2796
2749
|
interface SpRuntimeMultiSignature extends Enum {
|
|
2797
2750
|
readonly isEd25519: boolean;
|
|
2798
2751
|
readonly asEd25519: U8aFixed;
|
|
@@ -2805,7 +2758,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2805
2758
|
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
|
|
2806
2759
|
}
|
|
2807
2760
|
|
|
2808
|
-
/** @name PalletNotariesCall (
|
|
2761
|
+
/** @name PalletNotariesCall (226) */
|
|
2809
2762
|
interface PalletNotariesCall extends Enum {
|
|
2810
2763
|
readonly isPropose: boolean;
|
|
2811
2764
|
readonly asPropose: {
|
|
@@ -2824,7 +2777,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2824
2777
|
readonly type: 'Propose' | 'Activate' | 'Update';
|
|
2825
2778
|
}
|
|
2826
2779
|
|
|
2827
|
-
/** @name PalletNotebookCall (
|
|
2780
|
+
/** @name PalletNotebookCall (227) */
|
|
2828
2781
|
interface PalletNotebookCall extends Enum {
|
|
2829
2782
|
readonly isSubmit: boolean;
|
|
2830
2783
|
readonly asSubmit: {
|
|
@@ -2837,13 +2790,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2837
2790
|
readonly type: 'Submit' | 'Unlock';
|
|
2838
2791
|
}
|
|
2839
2792
|
|
|
2840
|
-
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (
|
|
2793
|
+
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (229) */
|
|
2841
2794
|
interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
|
|
2842
2795
|
readonly header: ArgonPrimitivesNotebookNotebookHeader;
|
|
2843
2796
|
readonly signature: U8aFixed;
|
|
2844
2797
|
}
|
|
2845
2798
|
|
|
2846
|
-
/** @name ArgonPrimitivesNotebookNotebookHeader (
|
|
2799
|
+
/** @name ArgonPrimitivesNotebookNotebookHeader (230) */
|
|
2847
2800
|
interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
|
|
2848
2801
|
readonly version: Compact<u16>;
|
|
2849
2802
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2862,7 +2815,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2862
2815
|
readonly domains: Vec<ITuple<[H256, AccountId32]>>;
|
|
2863
2816
|
}
|
|
2864
2817
|
|
|
2865
|
-
/** @name ArgonPrimitivesNotebookChainTransfer (
|
|
2818
|
+
/** @name ArgonPrimitivesNotebookChainTransfer (233) */
|
|
2866
2819
|
interface ArgonPrimitivesNotebookChainTransfer extends Enum {
|
|
2867
2820
|
readonly isToMainchain: boolean;
|
|
2868
2821
|
readonly asToMainchain: {
|
|
@@ -2876,13 +2829,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2876
2829
|
readonly type: 'ToMainchain' | 'ToLocalchain';
|
|
2877
2830
|
}
|
|
2878
2831
|
|
|
2879
|
-
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (
|
|
2832
|
+
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (236) */
|
|
2880
2833
|
interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
|
|
2881
2834
|
readonly notebookNumber: Compact<u32>;
|
|
2882
2835
|
readonly accountUid: Compact<u32>;
|
|
2883
2836
|
}
|
|
2884
2837
|
|
|
2885
|
-
/** @name PalletLocalchainTransferCall (
|
|
2838
|
+
/** @name PalletLocalchainTransferCall (242) */
|
|
2886
2839
|
interface PalletLocalchainTransferCall extends Enum {
|
|
2887
2840
|
readonly isSendToLocalchain: boolean;
|
|
2888
2841
|
readonly asSendToLocalchain: {
|
|
@@ -2892,7 +2845,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2892
2845
|
readonly type: 'SendToLocalchain';
|
|
2893
2846
|
}
|
|
2894
2847
|
|
|
2895
|
-
/** @name PalletBlockSealSpecCall (
|
|
2848
|
+
/** @name PalletBlockSealSpecCall (243) */
|
|
2896
2849
|
interface PalletBlockSealSpecCall extends Enum {
|
|
2897
2850
|
readonly isConfigure: boolean;
|
|
2898
2851
|
readonly asConfigure: {
|
|
@@ -2902,7 +2855,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2902
2855
|
readonly type: 'Configure';
|
|
2903
2856
|
}
|
|
2904
2857
|
|
|
2905
|
-
/** @name PalletDomainsCall (
|
|
2858
|
+
/** @name PalletDomainsCall (244) */
|
|
2906
2859
|
interface PalletDomainsCall extends Enum {
|
|
2907
2860
|
readonly isSetZoneRecord: boolean;
|
|
2908
2861
|
readonly asSetZoneRecord: {
|
|
@@ -2912,7 +2865,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2912
2865
|
readonly type: 'SetZoneRecord';
|
|
2913
2866
|
}
|
|
2914
2867
|
|
|
2915
|
-
/** @name PalletPriceIndexCall (
|
|
2868
|
+
/** @name PalletPriceIndexCall (245) */
|
|
2916
2869
|
interface PalletPriceIndexCall extends Enum {
|
|
2917
2870
|
readonly isSubmit: boolean;
|
|
2918
2871
|
readonly asSubmit: {
|
|
@@ -2926,7 +2879,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2926
2879
|
readonly type: 'Submit' | 'SetOperator';
|
|
2927
2880
|
}
|
|
2928
2881
|
|
|
2929
|
-
/** @name PalletPriceIndexPriceIndex (
|
|
2882
|
+
/** @name PalletPriceIndexPriceIndex (246) */
|
|
2930
2883
|
interface PalletPriceIndexPriceIndex extends Struct {
|
|
2931
2884
|
readonly btcUsdPrice: Compact<u128>;
|
|
2932
2885
|
readonly argonotUsdPrice: u128;
|
|
@@ -2936,14 +2889,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2936
2889
|
readonly tick: Compact<u64>;
|
|
2937
2890
|
}
|
|
2938
2891
|
|
|
2939
|
-
/** @name PalletPriceIndexEthereumPriceIndex (
|
|
2892
|
+
/** @name PalletPriceIndexEthereumPriceIndex (248) */
|
|
2940
2893
|
interface PalletPriceIndexEthereumPriceIndex extends Struct {
|
|
2941
2894
|
readonly ethereumUsdPrice: u128;
|
|
2942
2895
|
readonly ethereumGasPriceWei: Compact<u128>;
|
|
2943
2896
|
readonly tick: Compact<u64>;
|
|
2944
2897
|
}
|
|
2945
2898
|
|
|
2946
|
-
/** @name PalletGrandpaCall (
|
|
2899
|
+
/** @name PalletGrandpaCall (249) */
|
|
2947
2900
|
interface PalletGrandpaCall extends Enum {
|
|
2948
2901
|
readonly isReportEquivocation: boolean;
|
|
2949
2902
|
readonly asReportEquivocation: {
|
|
@@ -2963,13 +2916,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2963
2916
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
|
2964
2917
|
}
|
|
2965
2918
|
|
|
2966
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
|
2919
|
+
/** @name SpConsensusGrandpaEquivocationProof (250) */
|
|
2967
2920
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
|
2968
2921
|
readonly setId: u64;
|
|
2969
2922
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
|
2970
2923
|
}
|
|
2971
2924
|
|
|
2972
|
-
/** @name SpConsensusGrandpaEquivocation (
|
|
2925
|
+
/** @name SpConsensusGrandpaEquivocation (251) */
|
|
2973
2926
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
|
2974
2927
|
readonly isPrevote: boolean;
|
|
2975
2928
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
|
@@ -2978,7 +2931,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2978
2931
|
readonly type: 'Prevote' | 'Precommit';
|
|
2979
2932
|
}
|
|
2980
2933
|
|
|
2981
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
|
2934
|
+
/** @name FinalityGrandpaEquivocationPrevote (252) */
|
|
2982
2935
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
|
2983
2936
|
readonly roundNumber: u64;
|
|
2984
2937
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2986,16 +2939,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2986
2939
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
2987
2940
|
}
|
|
2988
2941
|
|
|
2989
|
-
/** @name FinalityGrandpaPrevote (
|
|
2942
|
+
/** @name FinalityGrandpaPrevote (253) */
|
|
2990
2943
|
interface FinalityGrandpaPrevote extends Struct {
|
|
2991
2944
|
readonly targetHash: H256;
|
|
2992
2945
|
readonly targetNumber: u32;
|
|
2993
2946
|
}
|
|
2994
2947
|
|
|
2995
|
-
/** @name SpConsensusGrandpaAppSignature (
|
|
2948
|
+
/** @name SpConsensusGrandpaAppSignature (254) */
|
|
2996
2949
|
interface SpConsensusGrandpaAppSignature extends U8aFixed {}
|
|
2997
2950
|
|
|
2998
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
|
2951
|
+
/** @name FinalityGrandpaEquivocationPrecommit (256) */
|
|
2999
2952
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
|
3000
2953
|
readonly roundNumber: u64;
|
|
3001
2954
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -3003,16 +2956,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
3003
2956
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
3004
2957
|
}
|
|
3005
2958
|
|
|
3006
|
-
/** @name FinalityGrandpaPrecommit (
|
|
2959
|
+
/** @name FinalityGrandpaPrecommit (257) */
|
|
3007
2960
|
interface FinalityGrandpaPrecommit extends Struct {
|
|
3008
2961
|
readonly targetHash: H256;
|
|
3009
2962
|
readonly targetNumber: u32;
|
|
3010
2963
|
}
|
|
3011
2964
|
|
|
3012
|
-
/** @name SpCoreVoid (
|
|
2965
|
+
/** @name SpCoreVoid (259) */
|
|
3013
2966
|
type SpCoreVoid = Null;
|
|
3014
2967
|
|
|
3015
|
-
/** @name PalletBlockSealCall (
|
|
2968
|
+
/** @name PalletBlockSealCall (260) */
|
|
3016
2969
|
interface PalletBlockSealCall extends Enum {
|
|
3017
2970
|
readonly isApply: boolean;
|
|
3018
2971
|
readonly asApply: {
|
|
@@ -3021,7 +2974,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3021
2974
|
readonly type: 'Apply';
|
|
3022
2975
|
}
|
|
3023
2976
|
|
|
3024
|
-
/** @name ArgonPrimitivesInherentsBlockSealInherent (
|
|
2977
|
+
/** @name ArgonPrimitivesInherentsBlockSealInherent (261) */
|
|
3025
2978
|
interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
|
|
3026
2979
|
readonly isVote: boolean;
|
|
3027
2980
|
readonly asVote: {
|
|
@@ -3036,14 +2989,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3036
2989
|
readonly type: 'Vote' | 'Compute';
|
|
3037
2990
|
}
|
|
3038
2991
|
|
|
3039
|
-
/** @name ArgonPrimitivesBalanceChangeMerkleProof (
|
|
2992
|
+
/** @name ArgonPrimitivesBalanceChangeMerkleProof (262) */
|
|
3040
2993
|
interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
|
|
3041
2994
|
readonly proof: Vec<H256>;
|
|
3042
2995
|
readonly numberOfLeaves: Compact<u32>;
|
|
3043
2996
|
readonly leafIndex: Compact<u32>;
|
|
3044
2997
|
}
|
|
3045
2998
|
|
|
3046
|
-
/** @name ArgonPrimitivesBlockVoteBlockVoteT (
|
|
2999
|
+
/** @name ArgonPrimitivesBlockVoteBlockVoteT (264) */
|
|
3047
3000
|
interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
|
|
3048
3001
|
readonly accountId: AccountId32;
|
|
3049
3002
|
readonly blockHash: H256;
|
|
@@ -3054,7 +3007,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3054
3007
|
readonly tick: Compact<u64>;
|
|
3055
3008
|
}
|
|
3056
3009
|
|
|
3057
|
-
/** @name PalletBlockRewardsCall (
|
|
3010
|
+
/** @name PalletBlockRewardsCall (265) */
|
|
3058
3011
|
interface PalletBlockRewardsCall extends Enum {
|
|
3059
3012
|
readonly isSetBlockRewardsPaused: boolean;
|
|
3060
3013
|
readonly asSetBlockRewardsPaused: {
|
|
@@ -3067,10 +3020,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
3067
3020
|
readonly type: 'SetBlockRewardsPaused' | 'SetBlockVoterRewardsEnabled';
|
|
3068
3021
|
}
|
|
3069
3022
|
|
|
3070
|
-
/** @name PalletMintCall (
|
|
3023
|
+
/** @name PalletMintCall (266) */
|
|
3071
3024
|
type PalletMintCall = Null;
|
|
3072
3025
|
|
|
3073
|
-
/** @name PalletBalancesCall (
|
|
3026
|
+
/** @name PalletBalancesCall (267) */
|
|
3074
3027
|
interface PalletBalancesCall extends Enum {
|
|
3075
3028
|
readonly isTransferAllowDeath: boolean;
|
|
3076
3029
|
readonly asTransferAllowDeath: {
|
|
@@ -3129,14 +3082,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3129
3082
|
| 'Burn';
|
|
3130
3083
|
}
|
|
3131
3084
|
|
|
3132
|
-
/** @name PalletBalancesAdjustmentDirection (
|
|
3085
|
+
/** @name PalletBalancesAdjustmentDirection (268) */
|
|
3133
3086
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
|
3134
3087
|
readonly isIncrease: boolean;
|
|
3135
3088
|
readonly isDecrease: boolean;
|
|
3136
3089
|
readonly type: 'Increase' | 'Decrease';
|
|
3137
3090
|
}
|
|
3138
3091
|
|
|
3139
|
-
/** @name PalletTxPauseCall (
|
|
3092
|
+
/** @name PalletTxPauseCall (270) */
|
|
3140
3093
|
interface PalletTxPauseCall extends Enum {
|
|
3141
3094
|
readonly isPause: boolean;
|
|
3142
3095
|
readonly asPause: {
|
|
@@ -3149,7 +3102,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3149
3102
|
readonly type: 'Pause' | 'Unpause';
|
|
3150
3103
|
}
|
|
3151
3104
|
|
|
3152
|
-
/** @name PalletUtilityCall (
|
|
3105
|
+
/** @name PalletUtilityCall (271) */
|
|
3153
3106
|
interface PalletUtilityCall extends Enum {
|
|
3154
3107
|
readonly isBatch: boolean;
|
|
3155
3108
|
readonly asBatch: {
|
|
@@ -3199,7 +3152,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3199
3152
|
| 'DispatchAsFallible';
|
|
3200
3153
|
}
|
|
3201
3154
|
|
|
3202
|
-
/** @name PalletSudoCall (
|
|
3155
|
+
/** @name PalletSudoCall (273) */
|
|
3203
3156
|
interface PalletSudoCall extends Enum {
|
|
3204
3157
|
readonly isSudo: boolean;
|
|
3205
3158
|
readonly asSudo: {
|
|
@@ -3223,7 +3176,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3223
3176
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
|
3224
3177
|
}
|
|
3225
3178
|
|
|
3226
|
-
/** @name PalletTreasuryCall (
|
|
3179
|
+
/** @name PalletTreasuryCall (274) */
|
|
3227
3180
|
interface PalletTreasuryCall extends Enum {
|
|
3228
3181
|
readonly isBuyBonds: boolean;
|
|
3229
3182
|
readonly asBuyBonds: {
|
|
@@ -3257,7 +3210,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3257
3210
|
| 'SetReservedBondSpace';
|
|
3258
3211
|
}
|
|
3259
3212
|
|
|
3260
|
-
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (
|
|
3213
|
+
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (276) */
|
|
3261
3214
|
interface ArgonPrimitivesVaultTreasuryBonusApprovalProof extends Struct {
|
|
3262
3215
|
readonly vaultId: Compact<u32>;
|
|
3263
3216
|
readonly beneficiary: AccountId32;
|
|
@@ -3268,7 +3221,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3268
3221
|
readonly signature: SpRuntimeMultiSignature;
|
|
3269
3222
|
}
|
|
3270
3223
|
|
|
3271
|
-
/** @name PalletOperationalAccountsCall (
|
|
3224
|
+
/** @name PalletOperationalAccountsCall (277) */
|
|
3272
3225
|
interface PalletOperationalAccountsCall extends Enum {
|
|
3273
3226
|
readonly isRegister: boolean;
|
|
3274
3227
|
readonly asRegister: {
|
|
@@ -3303,14 +3256,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3303
3256
|
| 'ClaimRewards';
|
|
3304
3257
|
}
|
|
3305
3258
|
|
|
3306
|
-
/** @name PalletOperationalAccountsRegistration (
|
|
3259
|
+
/** @name PalletOperationalAccountsRegistration (278) */
|
|
3307
3260
|
interface PalletOperationalAccountsRegistration extends Enum {
|
|
3308
3261
|
readonly isV1: boolean;
|
|
3309
3262
|
readonly asV1: PalletOperationalAccountsRegistrationV1;
|
|
3310
3263
|
readonly type: 'V1';
|
|
3311
3264
|
}
|
|
3312
3265
|
|
|
3313
|
-
/** @name PalletOperationalAccountsRegistrationV1 (
|
|
3266
|
+
/** @name PalletOperationalAccountsRegistrationV1 (279) */
|
|
3314
3267
|
interface PalletOperationalAccountsRegistrationV1 extends Struct {
|
|
3315
3268
|
readonly operationalAccount: AccountId32;
|
|
3316
3269
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
@@ -3322,21 +3275,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3322
3275
|
readonly accessProof: Option<PalletOperationalAccountsUpstreamAccessProof>;
|
|
3323
3276
|
}
|
|
3324
3277
|
|
|
3325
|
-
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (
|
|
3278
|
+
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (280) */
|
|
3326
3279
|
interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {}
|
|
3327
3280
|
|
|
3328
|
-
/** @name PalletOperationalAccountsAccountOwnershipProof (
|
|
3281
|
+
/** @name PalletOperationalAccountsAccountOwnershipProof (281) */
|
|
3329
3282
|
interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
|
|
3330
3283
|
readonly signature: SpRuntimeMultiSignature;
|
|
3331
3284
|
}
|
|
3332
3285
|
|
|
3333
|
-
/** @name PalletOperationalAccountsUpstreamAccessProof (
|
|
3286
|
+
/** @name PalletOperationalAccountsUpstreamAccessProof (283) */
|
|
3334
3287
|
interface PalletOperationalAccountsUpstreamAccessProof extends Struct {
|
|
3335
3288
|
readonly upstreamAccount: AccountId32;
|
|
3336
3289
|
readonly signature: SpRuntimeMultiSignature;
|
|
3337
3290
|
}
|
|
3338
3291
|
|
|
3339
|
-
/** @name PalletOperationalAccountsOperationalProgressPatch (
|
|
3292
|
+
/** @name PalletOperationalAccountsOperationalProgressPatch (286) */
|
|
3340
3293
|
interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
|
|
3341
3294
|
readonly uniswapArgonTransfersInAmount: Option<u128>;
|
|
3342
3295
|
readonly accountBitcoinAmount: Option<u128>;
|
|
@@ -3346,7 +3299,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3346
3299
|
readonly miningSeatCount: Option<u32>;
|
|
3347
3300
|
}
|
|
3348
3301
|
|
|
3349
|
-
/** @name PalletEthereumVerifierCall (
|
|
3302
|
+
/** @name PalletEthereumVerifierCall (288) */
|
|
3350
3303
|
interface PalletEthereumVerifierCall extends Enum {
|
|
3351
3304
|
readonly isForceCheckpoint: boolean;
|
|
3352
3305
|
readonly asForceCheckpoint: {
|
|
@@ -3374,7 +3327,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3374
3327
|
| 'SetOperatingMode';
|
|
3375
3328
|
}
|
|
3376
3329
|
|
|
3377
|
-
/** @name PalletEthereumVerifierCheckpointUpdate (
|
|
3330
|
+
/** @name PalletEthereumVerifierCheckpointUpdate (289) */
|
|
3378
3331
|
interface PalletEthereumVerifierCheckpointUpdate extends Struct {
|
|
3379
3332
|
readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3380
3333
|
readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
@@ -3383,7 +3336,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3383
3336
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3384
3337
|
}
|
|
3385
3338
|
|
|
3386
|
-
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (
|
|
3339
|
+
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (290) */
|
|
3387
3340
|
interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
|
|
3388
3341
|
readonly slot: u64;
|
|
3389
3342
|
readonly proposerIndex: u64;
|
|
@@ -3392,22 +3345,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3392
3345
|
readonly bodyRoot: H256;
|
|
3393
3346
|
}
|
|
3394
3347
|
|
|
3395
|
-
/** @name PalletEthereumVerifierSyncCommittee (
|
|
3348
|
+
/** @name PalletEthereumVerifierSyncCommittee (291) */
|
|
3396
3349
|
interface PalletEthereumVerifierSyncCommittee extends Struct {
|
|
3397
3350
|
readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
|
|
3398
3351
|
readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
|
|
3399
3352
|
}
|
|
3400
3353
|
|
|
3401
|
-
/** @name SnowbridgeBeaconPrimitivesPublicKey (
|
|
3354
|
+
/** @name SnowbridgeBeaconPrimitivesPublicKey (293) */
|
|
3402
3355
|
interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
|
|
3403
3356
|
|
|
3404
|
-
/** @name PalletEthereumVerifierExecutionHeaderProof (
|
|
3357
|
+
/** @name PalletEthereumVerifierExecutionHeaderProof (297) */
|
|
3405
3358
|
interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
|
|
3406
3359
|
readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
|
|
3407
3360
|
readonly executionBranch: Vec<H256>;
|
|
3408
3361
|
}
|
|
3409
3362
|
|
|
3410
|
-
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (
|
|
3363
|
+
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (298) */
|
|
3411
3364
|
interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
|
|
3412
3365
|
readonly isCapella: boolean;
|
|
3413
3366
|
readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
|
|
@@ -3416,7 +3369,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3416
3369
|
readonly type: 'Capella' | 'Deneb';
|
|
3417
3370
|
}
|
|
3418
3371
|
|
|
3419
|
-
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (
|
|
3372
|
+
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (299) */
|
|
3420
3373
|
interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
|
|
3421
3374
|
readonly parentHash: H256;
|
|
3422
3375
|
readonly feeRecipient: H160;
|
|
@@ -3435,7 +3388,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3435
3388
|
readonly withdrawalsRoot: H256;
|
|
3436
3389
|
}
|
|
3437
3390
|
|
|
3438
|
-
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (
|
|
3391
|
+
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (300) */
|
|
3439
3392
|
interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
|
|
3440
3393
|
readonly parentHash: H256;
|
|
3441
3394
|
readonly feeRecipient: H160;
|
|
@@ -3456,7 +3409,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3456
3409
|
readonly excessBlobGas: u64;
|
|
3457
3410
|
}
|
|
3458
3411
|
|
|
3459
|
-
/** @name PalletEthereumVerifierForkVersions (
|
|
3412
|
+
/** @name PalletEthereumVerifierForkVersions (301) */
|
|
3460
3413
|
interface PalletEthereumVerifierForkVersions extends Struct {
|
|
3461
3414
|
readonly genesis: PalletEthereumVerifierFork;
|
|
3462
3415
|
readonly altair: PalletEthereumVerifierFork;
|
|
@@ -3467,13 +3420,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3467
3420
|
readonly fulu: PalletEthereumVerifierFork;
|
|
3468
3421
|
}
|
|
3469
3422
|
|
|
3470
|
-
/** @name PalletEthereumVerifierFork (
|
|
3423
|
+
/** @name PalletEthereumVerifierFork (302) */
|
|
3471
3424
|
interface PalletEthereumVerifierFork extends Struct {
|
|
3472
3425
|
readonly version: U8aFixed;
|
|
3473
3426
|
readonly epoch: Compact<u64>;
|
|
3474
3427
|
}
|
|
3475
3428
|
|
|
3476
|
-
/** @name PalletEthereumVerifierUpdate (
|
|
3429
|
+
/** @name PalletEthereumVerifierUpdate (303) */
|
|
3477
3430
|
interface PalletEthereumVerifierUpdate extends Struct {
|
|
3478
3431
|
readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3479
3432
|
readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
|
|
@@ -3484,22 +3437,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3484
3437
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3485
3438
|
}
|
|
3486
3439
|
|
|
3487
|
-
/** @name PalletEthereumVerifierSyncAggregate (
|
|
3440
|
+
/** @name PalletEthereumVerifierSyncAggregate (304) */
|
|
3488
3441
|
interface PalletEthereumVerifierSyncAggregate extends Struct {
|
|
3489
3442
|
readonly syncCommitteeBits: Bytes;
|
|
3490
3443
|
readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
|
|
3491
3444
|
}
|
|
3492
3445
|
|
|
3493
|
-
/** @name SnowbridgeBeaconPrimitivesSignature (
|
|
3446
|
+
/** @name SnowbridgeBeaconPrimitivesSignature (306) */
|
|
3494
3447
|
interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
|
|
3495
3448
|
|
|
3496
|
-
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (
|
|
3449
|
+
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (309) */
|
|
3497
3450
|
interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
|
|
3498
3451
|
readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
3499
3452
|
readonly nextSyncCommitteeBranch: Vec<H256>;
|
|
3500
3453
|
}
|
|
3501
3454
|
|
|
3502
|
-
/** @name PalletCrosschainTransferCall (
|
|
3455
|
+
/** @name PalletCrosschainTransferCall (310) */
|
|
3503
3456
|
interface PalletCrosschainTransferCall extends Enum {
|
|
3504
3457
|
readonly isSetChainConfig: boolean;
|
|
3505
3458
|
readonly asSetChainConfig: {
|
|
@@ -3589,7 +3542,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3589
3542
|
| 'CollateralizeTransfer';
|
|
3590
3543
|
}
|
|
3591
3544
|
|
|
3592
|
-
/** @name PalletCrosschainTransferChainConfig (
|
|
3545
|
+
/** @name PalletCrosschainTransferChainConfig (311) */
|
|
3593
3546
|
interface PalletCrosschainTransferChainConfig extends Enum {
|
|
3594
3547
|
readonly isEvm: boolean;
|
|
3595
3548
|
readonly asEvm: {
|
|
@@ -3601,7 +3554,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3601
3554
|
readonly type: 'Evm';
|
|
3602
3555
|
}
|
|
3603
3556
|
|
|
3604
|
-
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (
|
|
3557
|
+
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (313) */
|
|
3605
3558
|
interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
|
|
3606
3559
|
readonly activationGasCost: Compact<u128>;
|
|
3607
3560
|
readonly signatureGasCost: Compact<u128>;
|
|
@@ -3609,56 +3562,56 @@ declare module '@polkadot/types/lookup' {
|
|
|
3609
3562
|
readonly estimatedMicrogonsPerEth: u128;
|
|
3610
3563
|
}
|
|
3611
3564
|
|
|
3612
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (
|
|
3565
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (316) */
|
|
3613
3566
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
|
|
3614
3567
|
readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
|
|
3615
3568
|
readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
|
|
3616
3569
|
}
|
|
3617
3570
|
|
|
3618
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (
|
|
3571
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (317) */
|
|
3619
3572
|
interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
|
|
3620
3573
|
readonly anchorBlockHash: H256;
|
|
3621
3574
|
readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
|
|
3622
3575
|
}
|
|
3623
3576
|
|
|
3624
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (
|
|
3577
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (319) */
|
|
3625
3578
|
interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
|
|
3626
3579
|
readonly rlp: Bytes;
|
|
3627
3580
|
}
|
|
3628
3581
|
|
|
3629
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (
|
|
3582
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (323) */
|
|
3630
3583
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
|
|
3631
3584
|
readonly targetBlockNumber: Compact<u64>;
|
|
3632
3585
|
readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
|
|
3633
3586
|
readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
|
|
3634
3587
|
}
|
|
3635
3588
|
|
|
3636
|
-
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (
|
|
3589
|
+
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (324) */
|
|
3637
3590
|
interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
|
|
3638
3591
|
readonly nodes: Vec<Bytes>;
|
|
3639
3592
|
readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
|
|
3640
3593
|
}
|
|
3641
3594
|
|
|
3642
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (
|
|
3595
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (328) */
|
|
3643
3596
|
interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
|
|
3644
3597
|
readonly transactionIndex: Compact<u64>;
|
|
3645
3598
|
readonly nodeIndexes: Vec<u16>;
|
|
3646
3599
|
}
|
|
3647
3600
|
|
|
3648
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (
|
|
3601
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (333) */
|
|
3649
3602
|
interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
|
|
3650
3603
|
readonly transactionIndex: Compact<u64>;
|
|
3651
3604
|
readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
|
|
3652
3605
|
}
|
|
3653
3606
|
|
|
3654
|
-
/** @name ArgonPrimitivesEthereumEthereumLog (
|
|
3607
|
+
/** @name ArgonPrimitivesEthereumEthereumLog (334) */
|
|
3655
3608
|
interface ArgonPrimitivesEthereumEthereumLog extends Struct {
|
|
3656
3609
|
readonly address: H160;
|
|
3657
3610
|
readonly topics: Vec<H256>;
|
|
3658
3611
|
readonly data: Bytes;
|
|
3659
3612
|
}
|
|
3660
3613
|
|
|
3661
|
-
/** @name PalletBootstrapCall (
|
|
3614
|
+
/** @name PalletBootstrapCall (339) */
|
|
3662
3615
|
interface PalletBootstrapCall extends Enum {
|
|
3663
3616
|
readonly isSetRecoveryPayload: boolean;
|
|
3664
3617
|
readonly asSetRecoveryPayload: {
|
|
@@ -3674,12 +3627,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
3674
3627
|
readonly type: 'SetRecoveryPayload' | 'SetEndpoint';
|
|
3675
3628
|
}
|
|
3676
3629
|
|
|
3677
|
-
/** @name PalletBootstrapRecoveryProof (
|
|
3630
|
+
/** @name PalletBootstrapRecoveryProof (340) */
|
|
3678
3631
|
interface PalletBootstrapRecoveryProof extends Struct {
|
|
3679
3632
|
readonly signature: U8aFixed;
|
|
3680
3633
|
}
|
|
3681
3634
|
|
|
3682
|
-
/** @name PalletMultisigError (
|
|
3635
|
+
/** @name PalletMultisigError (342) */
|
|
3683
3636
|
interface PalletMultisigError extends Enum {
|
|
3684
3637
|
readonly isMinimumThreshold: boolean;
|
|
3685
3638
|
readonly isAlreadyApproved: boolean;
|
|
@@ -3712,21 +3665,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3712
3665
|
| 'AlreadyStored';
|
|
3713
3666
|
}
|
|
3714
3667
|
|
|
3715
|
-
/** @name PalletProxyProxyDefinition (
|
|
3668
|
+
/** @name PalletProxyProxyDefinition (345) */
|
|
3716
3669
|
interface PalletProxyProxyDefinition extends Struct {
|
|
3717
3670
|
readonly delegate: AccountId32;
|
|
3718
3671
|
readonly proxyType: ArgonRuntimeProxyType;
|
|
3719
3672
|
readonly delay: u32;
|
|
3720
3673
|
}
|
|
3721
3674
|
|
|
3722
|
-
/** @name PalletProxyAnnouncement (
|
|
3675
|
+
/** @name PalletProxyAnnouncement (349) */
|
|
3723
3676
|
interface PalletProxyAnnouncement extends Struct {
|
|
3724
3677
|
readonly real: AccountId32;
|
|
3725
3678
|
readonly callHash: H256;
|
|
3726
3679
|
readonly height: u32;
|
|
3727
3680
|
}
|
|
3728
3681
|
|
|
3729
|
-
/** @name PalletProxyError (
|
|
3682
|
+
/** @name PalletProxyError (351) */
|
|
3730
3683
|
interface PalletProxyError extends Enum {
|
|
3731
3684
|
readonly isTooMany: boolean;
|
|
3732
3685
|
readonly isNotFound: boolean;
|
|
@@ -3747,16 +3700,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
3747
3700
|
| 'NoSelfProxy';
|
|
3748
3701
|
}
|
|
3749
3702
|
|
|
3750
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
3703
|
+
/** @name ArgonPrimitivesTickTicker (352) */
|
|
3751
3704
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
3752
3705
|
readonly tickDurationMillis: Compact<u64>;
|
|
3753
3706
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
3754
3707
|
}
|
|
3755
3708
|
|
|
3756
|
-
/** @name PalletTicksError (
|
|
3709
|
+
/** @name PalletTicksError (354) */
|
|
3757
3710
|
type PalletTicksError = Null;
|
|
3758
3711
|
|
|
3759
|
-
/** @name PalletMiningSlotMinerNonceScoring (
|
|
3712
|
+
/** @name PalletMiningSlotMinerNonceScoring (357) */
|
|
3760
3713
|
interface PalletMiningSlotMinerNonceScoring extends Struct {
|
|
3761
3714
|
readonly nonce: U256;
|
|
3762
3715
|
readonly lastWinBlock: Option<u32>;
|
|
@@ -3764,7 +3717,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3764
3717
|
readonly frameStartBlocksWonSurplus: i16;
|
|
3765
3718
|
}
|
|
3766
3719
|
|
|
3767
|
-
/** @name ArgonPrimitivesBlockSealMiningBidStats (
|
|
3720
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (369) */
|
|
3768
3721
|
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
3769
3722
|
readonly bidsCount: u32;
|
|
3770
3723
|
readonly bidAmountMin: u128;
|
|
@@ -3772,14 +3725,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3772
3725
|
readonly bidAmountSum: u128;
|
|
3773
3726
|
}
|
|
3774
3727
|
|
|
3775
|
-
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (
|
|
3728
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (373) */
|
|
3776
3729
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
3777
3730
|
readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
|
|
3778
3731
|
readonly ticksBetweenSlots: Compact<u64>;
|
|
3779
3732
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
3780
3733
|
}
|
|
3781
3734
|
|
|
3782
|
-
/** @name PalletMiningSlotError (
|
|
3735
|
+
/** @name PalletMiningSlotError (383) */
|
|
3783
3736
|
interface PalletMiningSlotError extends Enum {
|
|
3784
3737
|
readonly isSlotNotTakingBids: boolean;
|
|
3785
3738
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -3806,16 +3759,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3806
3759
|
| 'UnrecoverableHold';
|
|
3807
3760
|
}
|
|
3808
3761
|
|
|
3809
|
-
/** @name
|
|
3810
|
-
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
3811
|
-
readonly utxoId: u64;
|
|
3812
|
-
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
3813
|
-
readonly satoshis: Compact<u64>;
|
|
3814
|
-
readonly submittedAtHeight: Compact<u64>;
|
|
3815
|
-
readonly watchForSpentUntilHeight: Compact<u64>;
|
|
3816
|
-
}
|
|
3817
|
-
|
|
3818
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (386) */
|
|
3762
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (384) */
|
|
3819
3763
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
3820
3764
|
readonly isP2wsh: boolean;
|
|
3821
3765
|
readonly asP2wsh: {
|
|
@@ -3824,7 +3768,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3824
3768
|
readonly type: 'P2wsh';
|
|
3825
3769
|
}
|
|
3826
3770
|
|
|
3827
|
-
/** @name
|
|
3771
|
+
/** @name ArgonPrimitivesBitcoinUtxoAddress (385) */
|
|
3772
|
+
interface ArgonPrimitivesBitcoinUtxoAddress extends Struct {
|
|
3773
|
+
readonly utxoId: u64;
|
|
3774
|
+
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
3775
|
+
readonly submittedAtHeight: Compact<u64>;
|
|
3776
|
+
}
|
|
3777
|
+
|
|
3778
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (389) */
|
|
3828
3779
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
3829
3780
|
readonly isBitcoin: boolean;
|
|
3830
3781
|
readonly isTestnet: boolean;
|
|
@@ -3833,7 +3784,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3833
3784
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
3834
3785
|
}
|
|
3835
3786
|
|
|
3836
|
-
/** @name PalletBitcoinUtxosError (
|
|
3787
|
+
/** @name PalletBitcoinUtxosError (390) */
|
|
3837
3788
|
interface PalletBitcoinUtxosError extends Enum {
|
|
3838
3789
|
readonly isNoPermissions: boolean;
|
|
3839
3790
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -3847,9 +3798,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3847
3798
|
readonly isMaxUtxosExceeded: boolean;
|
|
3848
3799
|
readonly isInvalidBitcoinScript: boolean;
|
|
3849
3800
|
readonly isDuplicateUtxoId: boolean;
|
|
3850
|
-
readonly
|
|
3851
|
-
readonly isUtxoNotCandidate: boolean;
|
|
3852
|
-
readonly isLockAlreadyFunded: boolean;
|
|
3801
|
+
readonly isMaxUtxosPerLockExceeded: boolean;
|
|
3853
3802
|
readonly type:
|
|
3854
3803
|
| 'NoPermissions'
|
|
3855
3804
|
| 'NoBitcoinConfirmedBlock'
|
|
@@ -3863,12 +3812,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
3863
3812
|
| 'MaxUtxosExceeded'
|
|
3864
3813
|
| 'InvalidBitcoinScript'
|
|
3865
3814
|
| 'DuplicateUtxoId'
|
|
3866
|
-
| '
|
|
3867
|
-
| 'UtxoNotCandidate'
|
|
3868
|
-
| 'LockAlreadyFunded';
|
|
3815
|
+
| 'MaxUtxosPerLockExceeded';
|
|
3869
3816
|
}
|
|
3870
3817
|
|
|
3871
|
-
/** @name ArgonPrimitivesVault (
|
|
3818
|
+
/** @name ArgonPrimitivesVault (391) */
|
|
3872
3819
|
interface ArgonPrimitivesVault extends Struct {
|
|
3873
3820
|
readonly operatorAccountId: AccountId32;
|
|
3874
3821
|
readonly delegateAccountId: Option<AccountId32>;
|
|
@@ -3890,13 +3837,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3890
3837
|
readonly operationalMinimumReleaseTick: Option<u64>;
|
|
3891
3838
|
}
|
|
3892
3839
|
|
|
3893
|
-
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (
|
|
3840
|
+
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (398) */
|
|
3894
3841
|
interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
|
|
3895
3842
|
readonly committedMicronots: Compact<u128>;
|
|
3896
3843
|
readonly encumberedMicronots: Compact<u128>;
|
|
3897
3844
|
}
|
|
3898
3845
|
|
|
3899
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
3846
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (400) */
|
|
3900
3847
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
3901
3848
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
3902
3849
|
readonly depth: Compact<u8>;
|
|
@@ -3906,14 +3853,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3906
3853
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
3907
3854
|
}
|
|
3908
3855
|
|
|
3909
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
3856
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (402) */
|
|
3910
3857
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
3911
3858
|
readonly isMain: boolean;
|
|
3912
3859
|
readonly isTest: boolean;
|
|
3913
3860
|
readonly type: 'Main' | 'Test';
|
|
3914
3861
|
}
|
|
3915
3862
|
|
|
3916
|
-
/** @name PalletVaultsVaultFrameRevenue (
|
|
3863
|
+
/** @name PalletVaultsVaultFrameRevenue (411) */
|
|
3917
3864
|
interface PalletVaultsVaultFrameRevenue extends Struct {
|
|
3918
3865
|
readonly frameId: Compact<u64>;
|
|
3919
3866
|
readonly bitcoinLockFeeRevenue: Compact<u128>;
|
|
@@ -3933,7 +3880,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3933
3880
|
readonly uncollectedRevenue: Compact<u128>;
|
|
3934
3881
|
}
|
|
3935
3882
|
|
|
3936
|
-
/** @name PalletVaultsError (
|
|
3883
|
+
/** @name PalletVaultsError (413) */
|
|
3937
3884
|
interface PalletVaultsError extends Enum {
|
|
3938
3885
|
readonly isNoMoreVaultIds: boolean;
|
|
3939
3886
|
readonly isInsufficientFunds: boolean;
|
|
@@ -4002,7 +3949,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4002
3949
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
4003
3950
|
}
|
|
4004
3951
|
|
|
4005
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
3952
|
+
/** @name PalletBitcoinLocksLockedBitcoin (414) */
|
|
4006
3953
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
4007
3954
|
readonly vaultId: Compact<u32>;
|
|
4008
3955
|
readonly liquidityPromised: Compact<u128>;
|
|
@@ -4027,7 +3974,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4027
3974
|
readonly createdAtArgonBlock: Compact<u32>;
|
|
4028
3975
|
}
|
|
4029
3976
|
|
|
4030
|
-
/** @name PalletBitcoinLocksLockReleaseRequest (
|
|
3977
|
+
/** @name PalletBitcoinLocksLockReleaseRequest (418) */
|
|
4031
3978
|
interface PalletBitcoinLocksLockReleaseRequest extends Struct {
|
|
4032
3979
|
readonly utxoId: Compact<u64>;
|
|
4033
3980
|
readonly vaultId: Compact<u32>;
|
|
@@ -4037,7 +3984,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4037
3984
|
readonly redemptionAmount: Compact<u128>;
|
|
4038
3985
|
}
|
|
4039
3986
|
|
|
4040
|
-
/** @name PalletBitcoinLocksOrphanedUtxo (
|
|
3987
|
+
/** @name PalletBitcoinLocksOrphanedUtxo (420) */
|
|
4041
3988
|
interface PalletBitcoinLocksOrphanedUtxo extends Struct {
|
|
4042
3989
|
readonly utxoId: Compact<u64>;
|
|
4043
3990
|
readonly vaultId: Compact<u32>;
|
|
@@ -4046,14 +3993,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4046
3993
|
readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
|
|
4047
3994
|
}
|
|
4048
3995
|
|
|
4049
|
-
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (
|
|
3996
|
+
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (422) */
|
|
4050
3997
|
interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
|
|
4051
3998
|
readonly bitcoinNetworkFee: u64;
|
|
4052
3999
|
readonly toScriptPubkey: Bytes;
|
|
4053
4000
|
readonly createdAtArgonBlockNumber: u32;
|
|
4054
4001
|
}
|
|
4055
4002
|
|
|
4056
|
-
/** @name PalletBitcoinLocksError (
|
|
4003
|
+
/** @name PalletBitcoinLocksError (429) */
|
|
4057
4004
|
interface PalletBitcoinLocksError extends Enum {
|
|
4058
4005
|
readonly isInsufficientFunds: boolean;
|
|
4059
4006
|
readonly isInsufficientVaultFunds: boolean;
|
|
@@ -4137,7 +4084,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4137
4084
|
| 'MaxOrphanedUtxoReleaseRequestsExceeded';
|
|
4138
4085
|
}
|
|
4139
4086
|
|
|
4140
|
-
/** @name ArgonPrimitivesVaultVaultError (
|
|
4087
|
+
/** @name ArgonPrimitivesVaultVaultError (430) */
|
|
4141
4088
|
interface ArgonPrimitivesVaultVaultError extends Enum {
|
|
4142
4089
|
readonly isVaultClosed: boolean;
|
|
4143
4090
|
readonly isAccountWouldBeBelowMinimum: boolean;
|
|
@@ -4168,7 +4115,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4168
4115
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
4169
4116
|
}
|
|
4170
4117
|
|
|
4171
|
-
/** @name PalletNotariesError (
|
|
4118
|
+
/** @name PalletNotariesError (442) */
|
|
4172
4119
|
interface PalletNotariesError extends Enum {
|
|
4173
4120
|
readonly isProposalNotFound: boolean;
|
|
4174
4121
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -4191,7 +4138,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4191
4138
|
| 'InvalidNotary';
|
|
4192
4139
|
}
|
|
4193
4140
|
|
|
4194
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
4141
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (446) */
|
|
4195
4142
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
4196
4143
|
readonly notebookNumber: Compact<u32>;
|
|
4197
4144
|
readonly tick: Compact<u64>;
|
|
@@ -4200,7 +4147,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4200
4147
|
readonly parentSecret: Option<H256>;
|
|
4201
4148
|
}
|
|
4202
4149
|
|
|
4203
|
-
/** @name PalletNotebookError (
|
|
4150
|
+
/** @name PalletNotebookError (449) */
|
|
4204
4151
|
interface PalletNotebookError extends Enum {
|
|
4205
4152
|
readonly isDuplicateNotebookNumber: boolean;
|
|
4206
4153
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -4235,7 +4182,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4235
4182
|
| 'InvalidNotebookSubmissionTick';
|
|
4236
4183
|
}
|
|
4237
4184
|
|
|
4238
|
-
/** @name PalletLocalchainTransferQueuedTransferOut (
|
|
4185
|
+
/** @name PalletLocalchainTransferQueuedTransferOut (450) */
|
|
4239
4186
|
interface PalletLocalchainTransferQueuedTransferOut extends Struct {
|
|
4240
4187
|
readonly accountId: AccountId32;
|
|
4241
4188
|
readonly amount: u128;
|
|
@@ -4243,10 +4190,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4243
4190
|
readonly notaryId: u32;
|
|
4244
4191
|
}
|
|
4245
4192
|
|
|
4246
|
-
/** @name FrameSupportPalletId (
|
|
4193
|
+
/** @name FrameSupportPalletId (452) */
|
|
4247
4194
|
interface FrameSupportPalletId extends U8aFixed {}
|
|
4248
4195
|
|
|
4249
|
-
/** @name PalletLocalchainTransferError (
|
|
4196
|
+
/** @name PalletLocalchainTransferError (453) */
|
|
4250
4197
|
interface PalletLocalchainTransferError extends Enum {
|
|
4251
4198
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
4252
4199
|
readonly isInsufficientFunds: boolean;
|
|
@@ -4267,7 +4214,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4267
4214
|
| 'NoAvailableTransferId';
|
|
4268
4215
|
}
|
|
4269
4216
|
|
|
4270
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
4217
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (457) */
|
|
4271
4218
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
4272
4219
|
readonly notaryId: Compact<u32>;
|
|
4273
4220
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -4276,13 +4223,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4276
4223
|
readonly blockVotingPower: Compact<u128>;
|
|
4277
4224
|
}
|
|
4278
4225
|
|
|
4279
|
-
/** @name PalletBlockSealSpecError (
|
|
4226
|
+
/** @name PalletBlockSealSpecError (462) */
|
|
4280
4227
|
interface PalletBlockSealSpecError extends Enum {
|
|
4281
4228
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
4282
4229
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
4283
4230
|
}
|
|
4284
4231
|
|
|
4285
|
-
/** @name PalletDomainsError (
|
|
4232
|
+
/** @name PalletDomainsError (464) */
|
|
4286
4233
|
interface PalletDomainsError extends Enum {
|
|
4287
4234
|
readonly isDomainNotRegistered: boolean;
|
|
4288
4235
|
readonly isNotDomainOwner: boolean;
|
|
@@ -4297,28 +4244,28 @@ declare module '@polkadot/types/lookup' {
|
|
|
4297
4244
|
| 'AccountDecodingError';
|
|
4298
4245
|
}
|
|
4299
4246
|
|
|
4300
|
-
/** @name PalletPriceIndexEthereumPriceFrameAccumulator (
|
|
4247
|
+
/** @name PalletPriceIndexEthereumPriceFrameAccumulator (466) */
|
|
4301
4248
|
interface PalletPriceIndexEthereumPriceFrameAccumulator extends Struct {
|
|
4302
4249
|
readonly totalUsdPrice: u128;
|
|
4303
4250
|
readonly totalWeiPerGas: Compact<u128>;
|
|
4304
4251
|
readonly sampleCount: Compact<u32>;
|
|
4305
4252
|
}
|
|
4306
4253
|
|
|
4307
|
-
/** @name PalletPriceIndexCpiMeasurementBucket (
|
|
4254
|
+
/** @name PalletPriceIndexCpiMeasurementBucket (471) */
|
|
4308
4255
|
interface PalletPriceIndexCpiMeasurementBucket extends Struct {
|
|
4309
4256
|
readonly tickRange: ITuple<[u64, u64]>;
|
|
4310
4257
|
readonly totalCpi: i128;
|
|
4311
4258
|
readonly measurementsCount: u32;
|
|
4312
4259
|
}
|
|
4313
4260
|
|
|
4314
|
-
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (
|
|
4261
|
+
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (475) */
|
|
4315
4262
|
interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
|
|
4316
4263
|
readonly frameId: Compact<u64>;
|
|
4317
4264
|
readonly totalMicrogonsPerArgonot: Compact<u128>;
|
|
4318
4265
|
readonly sampleCount: Compact<u32>;
|
|
4319
4266
|
}
|
|
4320
4267
|
|
|
4321
|
-
/** @name PalletPriceIndexError (
|
|
4268
|
+
/** @name PalletPriceIndexError (476) */
|
|
4322
4269
|
interface PalletPriceIndexError extends Enum {
|
|
4323
4270
|
readonly isNotAuthorizedOperator: boolean;
|
|
4324
4271
|
readonly isMissingValue: boolean;
|
|
@@ -4333,7 +4280,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4333
4280
|
| 'InvalidEthereumPrices';
|
|
4334
4281
|
}
|
|
4335
4282
|
|
|
4336
|
-
/** @name PalletGrandpaStoredState (
|
|
4283
|
+
/** @name PalletGrandpaStoredState (477) */
|
|
4337
4284
|
interface PalletGrandpaStoredState extends Enum {
|
|
4338
4285
|
readonly isLive: boolean;
|
|
4339
4286
|
readonly isPendingPause: boolean;
|
|
@@ -4350,7 +4297,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4350
4297
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
4351
4298
|
}
|
|
4352
4299
|
|
|
4353
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
4300
|
+
/** @name PalletGrandpaStoredPendingChange (478) */
|
|
4354
4301
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
4355
4302
|
readonly scheduledAt: u32;
|
|
4356
4303
|
readonly delay: u32;
|
|
@@ -4358,7 +4305,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4358
4305
|
readonly forced: Option<u32>;
|
|
4359
4306
|
}
|
|
4360
4307
|
|
|
4361
|
-
/** @name PalletGrandpaError (
|
|
4308
|
+
/** @name PalletGrandpaError (480) */
|
|
4362
4309
|
interface PalletGrandpaError extends Enum {
|
|
4363
4310
|
readonly isPauseFailed: boolean;
|
|
4364
4311
|
readonly isResumeFailed: boolean;
|
|
@@ -4377,14 +4324,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4377
4324
|
| 'DuplicateOffenceReport';
|
|
4378
4325
|
}
|
|
4379
4326
|
|
|
4380
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
4327
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (481) */
|
|
4381
4328
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
4382
4329
|
readonly blockAuthorAccountId: AccountId32;
|
|
4383
4330
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
4384
4331
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
4385
4332
|
}
|
|
4386
4333
|
|
|
4387
|
-
/** @name PalletBlockSealError (
|
|
4334
|
+
/** @name PalletBlockSealError (483) */
|
|
4388
4335
|
interface PalletBlockSealError extends Enum {
|
|
4389
4336
|
readonly isInvalidVoteSealStrength: boolean;
|
|
4390
4337
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -4431,10 +4378,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4431
4378
|
| 'DuplicateVoteBlockAtTick';
|
|
4432
4379
|
}
|
|
4433
4380
|
|
|
4434
|
-
/** @name PalletBlockRewardsError (
|
|
4381
|
+
/** @name PalletBlockRewardsError (487) */
|
|
4435
4382
|
type PalletBlockRewardsError = Null;
|
|
4436
4383
|
|
|
4437
|
-
/** @name PalletMintPendingMintUtxo (
|
|
4384
|
+
/** @name PalletMintPendingMintUtxo (488) */
|
|
4438
4385
|
interface PalletMintPendingMintUtxo extends Struct {
|
|
4439
4386
|
readonly utxoId: Compact<u64>;
|
|
4440
4387
|
readonly accountId: AccountId32;
|
|
@@ -4442,34 +4389,34 @@ declare module '@polkadot/types/lookup' {
|
|
|
4442
4389
|
readonly maxAmountPerFrame: Compact<u128>;
|
|
4443
4390
|
}
|
|
4444
4391
|
|
|
4445
|
-
/** @name PalletMintMintQueueCursor (
|
|
4392
|
+
/** @name PalletMintMintQueueCursor (490) */
|
|
4446
4393
|
interface PalletMintMintQueueCursor extends Struct {
|
|
4447
4394
|
readonly payoutStartIndex: Compact<u64>;
|
|
4448
4395
|
readonly payoutCursorIndex: Compact<u64>;
|
|
4449
4396
|
readonly payoutCursorFrameId: Option<u64>;
|
|
4450
4397
|
}
|
|
4451
4398
|
|
|
4452
|
-
/** @name PalletMintMintAction (
|
|
4399
|
+
/** @name PalletMintMintAction (493) */
|
|
4453
4400
|
interface PalletMintMintAction extends Struct {
|
|
4454
4401
|
readonly argonBurned: u128;
|
|
4455
4402
|
readonly argonMinted: u128;
|
|
4456
4403
|
readonly bitcoinMinted: u128;
|
|
4457
4404
|
}
|
|
4458
4405
|
|
|
4459
|
-
/** @name PalletMintError (
|
|
4406
|
+
/** @name PalletMintError (495) */
|
|
4460
4407
|
interface PalletMintError extends Enum {
|
|
4461
4408
|
readonly isTooManyPendingMints: boolean;
|
|
4462
4409
|
readonly type: 'TooManyPendingMints';
|
|
4463
4410
|
}
|
|
4464
4411
|
|
|
4465
|
-
/** @name PalletBalancesBalanceLock (
|
|
4412
|
+
/** @name PalletBalancesBalanceLock (497) */
|
|
4466
4413
|
interface PalletBalancesBalanceLock extends Struct {
|
|
4467
4414
|
readonly id: U8aFixed;
|
|
4468
4415
|
readonly amount: u128;
|
|
4469
4416
|
readonly reasons: PalletBalancesReasons;
|
|
4470
4417
|
}
|
|
4471
4418
|
|
|
4472
|
-
/** @name PalletBalancesReasons (
|
|
4419
|
+
/** @name PalletBalancesReasons (498) */
|
|
4473
4420
|
interface PalletBalancesReasons extends Enum {
|
|
4474
4421
|
readonly isFee: boolean;
|
|
4475
4422
|
readonly isMisc: boolean;
|
|
@@ -4477,38 +4424,38 @@ declare module '@polkadot/types/lookup' {
|
|
|
4477
4424
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
4478
4425
|
}
|
|
4479
4426
|
|
|
4480
|
-
/** @name PalletBalancesReserveData (
|
|
4427
|
+
/** @name PalletBalancesReserveData (501) */
|
|
4481
4428
|
interface PalletBalancesReserveData extends Struct {
|
|
4482
4429
|
readonly id: U8aFixed;
|
|
4483
4430
|
readonly amount: u128;
|
|
4484
4431
|
}
|
|
4485
4432
|
|
|
4486
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
4433
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (504) */
|
|
4487
4434
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
4488
4435
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
4489
4436
|
readonly amount: u128;
|
|
4490
4437
|
}
|
|
4491
4438
|
|
|
4492
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
4439
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (507) */
|
|
4493
4440
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
4494
4441
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
4495
4442
|
readonly amount: u128;
|
|
4496
4443
|
}
|
|
4497
4444
|
|
|
4498
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
4445
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (508) */
|
|
4499
4446
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
4500
4447
|
readonly isBlockRewards: boolean;
|
|
4501
4448
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
4502
4449
|
readonly type: 'BlockRewards';
|
|
4503
4450
|
}
|
|
4504
4451
|
|
|
4505
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
4452
|
+
/** @name PalletBlockRewardsFreezeReason (509) */
|
|
4506
4453
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
4507
4454
|
readonly isMaturationPeriod: boolean;
|
|
4508
4455
|
readonly type: 'MaturationPeriod';
|
|
4509
4456
|
}
|
|
4510
4457
|
|
|
4511
|
-
/** @name PalletBalancesError (
|
|
4458
|
+
/** @name PalletBalancesError (511) */
|
|
4512
4459
|
interface PalletBalancesError extends Enum {
|
|
4513
4460
|
readonly isVestingBalance: boolean;
|
|
4514
4461
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -4537,7 +4484,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4537
4484
|
| 'DeltaZero';
|
|
4538
4485
|
}
|
|
4539
4486
|
|
|
4540
|
-
/** @name PalletTxPauseError (
|
|
4487
|
+
/** @name PalletTxPauseError (513) */
|
|
4541
4488
|
interface PalletTxPauseError extends Enum {
|
|
4542
4489
|
readonly isIsPaused: boolean;
|
|
4543
4490
|
readonly isIsUnpaused: boolean;
|
|
@@ -4546,40 +4493,40 @@ declare module '@polkadot/types/lookup' {
|
|
|
4546
4493
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
4547
4494
|
}
|
|
4548
4495
|
|
|
4549
|
-
/** @name PalletTransactionPaymentReleases (
|
|
4496
|
+
/** @name PalletTransactionPaymentReleases (514) */
|
|
4550
4497
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
4551
4498
|
readonly isV1Ancient: boolean;
|
|
4552
4499
|
readonly isV2: boolean;
|
|
4553
4500
|
readonly type: 'V1Ancient' | 'V2';
|
|
4554
4501
|
}
|
|
4555
4502
|
|
|
4556
|
-
/** @name FrameSupportStorageNoDrop (
|
|
4503
|
+
/** @name FrameSupportStorageNoDrop (515) */
|
|
4557
4504
|
interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
|
|
4558
4505
|
|
|
4559
|
-
/** @name FrameSupportTokensFungibleImbalance (
|
|
4506
|
+
/** @name FrameSupportTokensFungibleImbalance (516) */
|
|
4560
4507
|
interface FrameSupportTokensFungibleImbalance extends Struct {
|
|
4561
4508
|
readonly amount: u128;
|
|
4562
4509
|
}
|
|
4563
4510
|
|
|
4564
|
-
/** @name PalletUtilityError (
|
|
4511
|
+
/** @name PalletUtilityError (517) */
|
|
4565
4512
|
interface PalletUtilityError extends Enum {
|
|
4566
4513
|
readonly isTooManyCalls: boolean;
|
|
4567
4514
|
readonly type: 'TooManyCalls';
|
|
4568
4515
|
}
|
|
4569
4516
|
|
|
4570
|
-
/** @name PalletSudoError (
|
|
4517
|
+
/** @name PalletSudoError (518) */
|
|
4571
4518
|
interface PalletSudoError extends Enum {
|
|
4572
4519
|
readonly isRequireSudo: boolean;
|
|
4573
4520
|
readonly type: 'RequireSudo';
|
|
4574
4521
|
}
|
|
4575
4522
|
|
|
4576
|
-
/** @name PalletTreasuryFrameVaultCapital (
|
|
4523
|
+
/** @name PalletTreasuryFrameVaultCapital (519) */
|
|
4577
4524
|
interface PalletTreasuryFrameVaultCapital extends Struct {
|
|
4578
4525
|
readonly frameId: Compact<u64>;
|
|
4579
4526
|
readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
|
|
4580
4527
|
}
|
|
4581
4528
|
|
|
4582
|
-
/** @name PalletTreasuryVaultCapital (
|
|
4529
|
+
/** @name PalletTreasuryVaultCapital (521) */
|
|
4583
4530
|
interface PalletTreasuryVaultCapital extends Struct {
|
|
4584
4531
|
readonly regularBondAllocations: Vec<PalletTreasuryBondLotAllocation>;
|
|
4585
4532
|
readonly flexibleBondsEligible: Compact<u32>;
|
|
@@ -4587,26 +4534,26 @@ declare module '@polkadot/types/lookup' {
|
|
|
4587
4534
|
readonly eligibleBonds: Compact<u32>;
|
|
4588
4535
|
}
|
|
4589
4536
|
|
|
4590
|
-
/** @name PalletTreasuryBondLotAllocation (
|
|
4537
|
+
/** @name PalletTreasuryBondLotAllocation (523) */
|
|
4591
4538
|
interface PalletTreasuryBondLotAllocation extends Struct {
|
|
4592
4539
|
readonly bondLotId: Compact<u64>;
|
|
4593
4540
|
readonly prorata: u128;
|
|
4594
4541
|
}
|
|
4595
4542
|
|
|
4596
|
-
/** @name PalletTreasuryFrameArgonotBondParticipants (
|
|
4543
|
+
/** @name PalletTreasuryFrameArgonotBondParticipants (528) */
|
|
4597
4544
|
interface PalletTreasuryFrameArgonotBondParticipants extends Struct {
|
|
4598
4545
|
readonly frameId: Compact<u64>;
|
|
4599
4546
|
readonly totalBonds: Compact<u32>;
|
|
4600
4547
|
readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
4601
4548
|
}
|
|
4602
4549
|
|
|
4603
|
-
/** @name PalletTreasuryBondLotSummary (
|
|
4550
|
+
/** @name PalletTreasuryBondLotSummary (530) */
|
|
4604
4551
|
interface PalletTreasuryBondLotSummary extends Struct {
|
|
4605
4552
|
readonly bondLotId: Compact<u64>;
|
|
4606
4553
|
readonly bonds: Compact<u32>;
|
|
4607
4554
|
}
|
|
4608
4555
|
|
|
4609
|
-
/** @name PalletTreasuryBondLot (
|
|
4556
|
+
/** @name PalletTreasuryBondLot (532) */
|
|
4610
4557
|
interface PalletTreasuryBondLot extends Struct {
|
|
4611
4558
|
readonly owner: AccountId32;
|
|
4612
4559
|
readonly program: PalletTreasuryBondProgram;
|
|
@@ -4621,7 +4568,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4621
4568
|
readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
|
|
4622
4569
|
}
|
|
4623
4570
|
|
|
4624
|
-
/** @name PalletTreasuryBondProgram (
|
|
4571
|
+
/** @name PalletTreasuryBondProgram (533) */
|
|
4625
4572
|
interface PalletTreasuryBondProgram extends Enum {
|
|
4626
4573
|
readonly isVault: boolean;
|
|
4627
4574
|
readonly asVault: {
|
|
@@ -4633,14 +4580,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4633
4580
|
readonly type: 'Vault' | 'Argonot';
|
|
4634
4581
|
}
|
|
4635
4582
|
|
|
4636
|
-
/** @name PalletTreasuryVaultBondState (
|
|
4583
|
+
/** @name PalletTreasuryVaultBondState (536) */
|
|
4637
4584
|
interface PalletTreasuryVaultBondState extends Struct {
|
|
4638
4585
|
readonly regularBondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
4639
4586
|
readonly flexibleBonds: Compact<u32>;
|
|
4640
4587
|
readonly reservedBondSpace: Compact<u32>;
|
|
4641
4588
|
}
|
|
4642
4589
|
|
|
4643
|
-
/** @name PalletTreasuryError (
|
|
4590
|
+
/** @name PalletTreasuryError (538) */
|
|
4644
4591
|
interface PalletTreasuryError extends Enum {
|
|
4645
4592
|
readonly isBondPurchaseRejected: boolean;
|
|
4646
4593
|
readonly isVaultNotAcceptingBondPurchases: boolean;
|
|
@@ -4687,13 +4634,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4687
4634
|
| 'NoPermissions';
|
|
4688
4635
|
}
|
|
4689
4636
|
|
|
4690
|
-
/** @name PalletFeeControlError (
|
|
4637
|
+
/** @name PalletFeeControlError (539) */
|
|
4691
4638
|
interface PalletFeeControlError extends Enum {
|
|
4692
4639
|
readonly isSponsoredFeeTooHigh: boolean;
|
|
4693
4640
|
readonly type: 'SponsoredFeeTooHigh';
|
|
4694
4641
|
}
|
|
4695
4642
|
|
|
4696
|
-
/** @name PalletOperationalAccountsOperationalAccount (
|
|
4643
|
+
/** @name PalletOperationalAccountsOperationalAccount (540) */
|
|
4697
4644
|
interface PalletOperationalAccountsOperationalAccount extends Struct {
|
|
4698
4645
|
readonly vaultAccount: AccountId32;
|
|
4699
4646
|
readonly miningAccount: AccountId32;
|
|
@@ -4717,13 +4664,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4717
4664
|
readonly isOperationallyCertified: bool;
|
|
4718
4665
|
}
|
|
4719
4666
|
|
|
4720
|
-
/** @name PalletOperationalAccountsRewardsConfig (
|
|
4667
|
+
/** @name PalletOperationalAccountsRewardsConfig (541) */
|
|
4721
4668
|
interface PalletOperationalAccountsRewardsConfig extends Struct {
|
|
4722
4669
|
readonly operationalCertificationReward: Compact<u128>;
|
|
4723
4670
|
readonly operationalCertificationBonusReward: Compact<u128>;
|
|
4724
4671
|
}
|
|
4725
4672
|
|
|
4726
|
-
/** @name PalletOperationalAccountsError (
|
|
4673
|
+
/** @name PalletOperationalAccountsError (542) */
|
|
4727
4674
|
interface PalletOperationalAccountsError extends Enum {
|
|
4728
4675
|
readonly isAlreadyRegistered: boolean;
|
|
4729
4676
|
readonly isInvalidRegistrationSubmitter: boolean;
|
|
@@ -4768,12 +4715,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
4768
4715
|
| 'InvalidName';
|
|
4769
4716
|
}
|
|
4770
4717
|
|
|
4771
|
-
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (
|
|
4718
|
+
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (543) */
|
|
4772
4719
|
interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
|
|
4773
4720
|
readonly slot: Compact<u64>;
|
|
4774
4721
|
}
|
|
4775
4722
|
|
|
4776
|
-
/** @name PalletEthereumVerifierExecutionHeaderAnchor (
|
|
4723
|
+
/** @name PalletEthereumVerifierExecutionHeaderAnchor (544) */
|
|
4777
4724
|
interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
|
|
4778
4725
|
readonly blockNumber: Compact<u64>;
|
|
4779
4726
|
readonly timestampMillis: Compact<u64>;
|
|
@@ -4783,44 +4730,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
4783
4730
|
readonly receiptsRoot: H256;
|
|
4784
4731
|
}
|
|
4785
4732
|
|
|
4786
|
-
/** @name PalletEthereumVerifierSyncCommitteePrepared (
|
|
4733
|
+
/** @name PalletEthereumVerifierSyncCommitteePrepared (545) */
|
|
4787
4734
|
interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
|
|
4788
4735
|
readonly root: H256;
|
|
4789
4736
|
readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
|
|
4790
4737
|
readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
|
|
4791
4738
|
}
|
|
4792
4739
|
|
|
4793
|
-
/** @name SnowbridgeMilagroBlsKeysPublicKey (
|
|
4740
|
+
/** @name SnowbridgeMilagroBlsKeysPublicKey (547) */
|
|
4794
4741
|
interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
|
|
4795
4742
|
readonly point: SnowbridgeAmclBls381Ecp;
|
|
4796
4743
|
}
|
|
4797
4744
|
|
|
4798
|
-
/** @name SnowbridgeAmclBls381Ecp (
|
|
4745
|
+
/** @name SnowbridgeAmclBls381Ecp (548) */
|
|
4799
4746
|
interface SnowbridgeAmclBls381Ecp extends Struct {
|
|
4800
4747
|
readonly x: SnowbridgeAmclBls381Fp;
|
|
4801
4748
|
readonly y: SnowbridgeAmclBls381Fp;
|
|
4802
4749
|
readonly z: SnowbridgeAmclBls381Fp;
|
|
4803
4750
|
}
|
|
4804
4751
|
|
|
4805
|
-
/** @name SnowbridgeAmclBls381Fp (
|
|
4752
|
+
/** @name SnowbridgeAmclBls381Fp (549) */
|
|
4806
4753
|
interface SnowbridgeAmclBls381Fp extends Struct {
|
|
4807
4754
|
readonly x: SnowbridgeAmclBls381Big;
|
|
4808
4755
|
readonly xes: i32;
|
|
4809
4756
|
}
|
|
4810
4757
|
|
|
4811
|
-
/** @name SnowbridgeAmclBls381Big (
|
|
4758
|
+
/** @name SnowbridgeAmclBls381Big (550) */
|
|
4812
4759
|
interface SnowbridgeAmclBls381Big extends Struct {
|
|
4813
4760
|
readonly w: Vec<i32>;
|
|
4814
4761
|
}
|
|
4815
4762
|
|
|
4816
|
-
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (
|
|
4763
|
+
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (554) */
|
|
4817
4764
|
interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
|
|
4818
4765
|
readonly isMainnet: boolean;
|
|
4819
4766
|
readonly isMinimal: boolean;
|
|
4820
4767
|
readonly type: 'Mainnet' | 'Minimal';
|
|
4821
4768
|
}
|
|
4822
4769
|
|
|
4823
|
-
/** @name PalletEthereumVerifierError (
|
|
4770
|
+
/** @name PalletEthereumVerifierError (555) */
|
|
4824
4771
|
interface PalletEthereumVerifierError extends Enum {
|
|
4825
4772
|
readonly isSkippedSyncCommitteePeriod: boolean;
|
|
4826
4773
|
readonly isSyncCommitteeUpdateRequired: boolean;
|
|
@@ -4873,7 +4820,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4873
4820
|
| 'Halted';
|
|
4874
4821
|
}
|
|
4875
4822
|
|
|
4876
|
-
/** @name PalletCrosschainTransferAccountTransferTotals (
|
|
4823
|
+
/** @name PalletCrosschainTransferAccountTransferTotals (556) */
|
|
4877
4824
|
interface PalletCrosschainTransferAccountTransferTotals extends Struct {
|
|
4878
4825
|
readonly microgonsIn: u128;
|
|
4879
4826
|
readonly microgonsOut: u128;
|
|
@@ -4885,21 +4832,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4885
4832
|
readonly argonotTransfersOutCount: Compact<u32>;
|
|
4886
4833
|
}
|
|
4887
4834
|
|
|
4888
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (
|
|
4835
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (558) */
|
|
4889
4836
|
interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
|
|
4890
4837
|
readonly epochMicrogonsPerArgonot: u128;
|
|
4891
4838
|
readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
|
|
4892
4839
|
readonly totalWeight: u128;
|
|
4893
4840
|
}
|
|
4894
4841
|
|
|
4895
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (
|
|
4842
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (560) */
|
|
4896
4843
|
interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
|
|
4897
4844
|
readonly accountId: AccountId32;
|
|
4898
4845
|
readonly signer: H160;
|
|
4899
4846
|
readonly weight: u128;
|
|
4900
4847
|
}
|
|
4901
4848
|
|
|
4902
|
-
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (
|
|
4849
|
+
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (565) */
|
|
4903
4850
|
interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
|
|
4904
4851
|
readonly approvingCouncilHash: H256;
|
|
4905
4852
|
readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
|
|
@@ -4911,7 +4858,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4911
4858
|
readonly signatures: BTreeMap<H160, U8aFixed>;
|
|
4912
4859
|
}
|
|
4913
4860
|
|
|
4914
|
-
/** @name PalletCrosschainTransferMintingAuthority (
|
|
4861
|
+
/** @name PalletCrosschainTransferMintingAuthority (570) */
|
|
4915
4862
|
interface PalletCrosschainTransferMintingAuthority extends Struct {
|
|
4916
4863
|
readonly accountId: AccountId32;
|
|
4917
4864
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -4928,7 +4875,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4928
4875
|
readonly deactivationApprovalQueueNonce: Option<u64>;
|
|
4929
4876
|
}
|
|
4930
4877
|
|
|
4931
|
-
/** @name PalletCrosschainTransferMintingAuthorityState (
|
|
4878
|
+
/** @name PalletCrosschainTransferMintingAuthorityState (571) */
|
|
4932
4879
|
interface PalletCrosschainTransferMintingAuthorityState extends Enum {
|
|
4933
4880
|
readonly isPendingActivation: boolean;
|
|
4934
4881
|
readonly isActive: boolean;
|
|
@@ -4936,7 +4883,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4936
4883
|
readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
|
|
4937
4884
|
}
|
|
4938
4885
|
|
|
4939
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (
|
|
4886
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (573) */
|
|
4940
4887
|
interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
|
|
4941
4888
|
readonly argonAccountId: AccountId32;
|
|
4942
4889
|
readonly argonTransferNonce: Compact<u64>;
|
|
@@ -4955,7 +4902,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4955
4902
|
readonly state: PalletCrosschainTransferTransferOutTransferOutState;
|
|
4956
4903
|
}
|
|
4957
4904
|
|
|
4958
|
-
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (
|
|
4905
|
+
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (575) */
|
|
4959
4906
|
interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
|
|
4960
4907
|
readonly microgonCollateral: u128;
|
|
4961
4908
|
readonly micronotCollateral: u128;
|
|
@@ -4963,27 +4910,27 @@ declare module '@polkadot/types/lookup' {
|
|
|
4963
4910
|
readonly signature: U8aFixed;
|
|
4964
4911
|
}
|
|
4965
4912
|
|
|
4966
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutState (
|
|
4913
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutState (579) */
|
|
4967
4914
|
interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
|
|
4968
4915
|
readonly isStarted: boolean;
|
|
4969
4916
|
readonly isReady: boolean;
|
|
4970
4917
|
readonly type: 'Started' | 'Ready';
|
|
4971
4918
|
}
|
|
4972
4919
|
|
|
4973
|
-
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (
|
|
4920
|
+
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (581) */
|
|
4974
4921
|
interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
|
|
4975
4922
|
readonly transferId: H256;
|
|
4976
4923
|
readonly remainingCollateral: u128;
|
|
4977
4924
|
readonly remainingMintingAuthorityTip: u128;
|
|
4978
4925
|
}
|
|
4979
4926
|
|
|
4980
|
-
/** @name PalletCrosschainTransferSourceChainCirculation (
|
|
4927
|
+
/** @name PalletCrosschainTransferSourceChainCirculation (583) */
|
|
4981
4928
|
interface PalletCrosschainTransferSourceChainCirculation extends Struct {
|
|
4982
4929
|
readonly argonCirculation: u128;
|
|
4983
4930
|
readonly argonotCirculation: u128;
|
|
4984
4931
|
}
|
|
4985
4932
|
|
|
4986
|
-
/** @name PalletCrosschainTransferError (
|
|
4933
|
+
/** @name PalletCrosschainTransferError (584) */
|
|
4987
4934
|
interface PalletCrosschainTransferError extends Enum {
|
|
4988
4935
|
readonly isInvalidTransferToArgonActivity: boolean;
|
|
4989
4936
|
readonly isNoGatewayProofBlocksProvided: boolean;
|
|
@@ -5098,7 +5045,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
5098
5045
|
| 'CouncilSignerRotationPending';
|
|
5099
5046
|
}
|
|
5100
5047
|
|
|
5101
|
-
/** @name PalletBootstrapError (
|
|
5048
|
+
/** @name PalletBootstrapError (586) */
|
|
5102
5049
|
interface PalletBootstrapError extends Enum {
|
|
5103
5050
|
readonly isEncryptedPayloadTooLong: boolean;
|
|
5104
5051
|
readonly isInvalidRecoveryProof: boolean;
|
|
@@ -5109,45 +5056,45 @@ declare module '@polkadot/types/lookup' {
|
|
|
5109
5056
|
| 'EndpointOwnedByAnotherAccount';
|
|
5110
5057
|
}
|
|
5111
5058
|
|
|
5112
|
-
/** @name FrameSystemExtensionsAuthorizeCall (
|
|
5059
|
+
/** @name FrameSystemExtensionsAuthorizeCall (589) */
|
|
5113
5060
|
type FrameSystemExtensionsAuthorizeCall = Null;
|
|
5114
5061
|
|
|
5115
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
5062
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (590) */
|
|
5116
5063
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
5117
5064
|
|
|
5118
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
5065
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (591) */
|
|
5119
5066
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
5120
5067
|
|
|
5121
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
5068
|
+
/** @name FrameSystemExtensionsCheckTxVersion (592) */
|
|
5122
5069
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
5123
5070
|
|
|
5124
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
5071
|
+
/** @name FrameSystemExtensionsCheckGenesis (593) */
|
|
5125
5072
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
5126
5073
|
|
|
5127
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
5074
|
+
/** @name FrameSystemExtensionsCheckNonce (596) */
|
|
5128
5075
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
|
|
5129
5076
|
|
|
5130
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
5077
|
+
/** @name FrameSystemExtensionsCheckWeight (597) */
|
|
5131
5078
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
5132
5079
|
|
|
5133
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
5080
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (598) */
|
|
5134
5081
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
|
|
5135
5082
|
|
|
5136
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
5083
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (599) */
|
|
5137
5084
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
5138
5085
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
5139
5086
|
}
|
|
5140
5087
|
|
|
5141
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
5088
|
+
/** @name FrameMetadataHashExtensionMode (600) */
|
|
5142
5089
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
5143
5090
|
readonly isDisabled: boolean;
|
|
5144
5091
|
readonly isEnabled: boolean;
|
|
5145
5092
|
readonly type: 'Disabled' | 'Enabled';
|
|
5146
5093
|
}
|
|
5147
5094
|
|
|
5148
|
-
/** @name FrameSystemExtensionsWeightReclaim (
|
|
5095
|
+
/** @name FrameSystemExtensionsWeightReclaim (601) */
|
|
5149
5096
|
type FrameSystemExtensionsWeightReclaim = Null;
|
|
5150
5097
|
|
|
5151
|
-
/** @name ArgonRuntimeRuntime (
|
|
5098
|
+
/** @name ArgonRuntimeRuntime (603) */
|
|
5152
5099
|
type ArgonRuntimeRuntime = Null;
|
|
5153
5100
|
} // declare module
|