@argonprotocol/mainchain 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/lib/cjs/interfaces/augment-api-consts.d.ts +39 -33
  2. package/lib/cjs/interfaces/augment-api-errors.d.ts +57 -51
  3. package/lib/cjs/interfaces/augment-api-events.d.ts +102 -68
  4. package/lib/cjs/interfaces/augment-api-query.d.ts +65 -65
  5. package/lib/cjs/interfaces/augment-api-tx.d.ts +253 -157
  6. package/lib/cjs/interfaces/lookup.d.ts +217 -140
  7. package/lib/cjs/interfaces/lookup.js +217 -140
  8. package/lib/cjs/interfaces/lookup.js.map +1 -1
  9. package/lib/cjs/interfaces/registry.d.ts +7 -1
  10. package/lib/cjs/interfaces/types-lookup.d.ts +213 -140
  11. package/lib/cjs/package.json +3 -0
  12. package/lib/esm/interfaces/augment-api-consts.d.ts +39 -33
  13. package/lib/esm/interfaces/augment-api-errors.d.ts +57 -51
  14. package/lib/esm/interfaces/augment-api-events.d.ts +102 -68
  15. package/lib/esm/interfaces/augment-api-query.d.ts +65 -65
  16. package/lib/esm/interfaces/augment-api-tx.d.ts +253 -157
  17. package/lib/esm/interfaces/lookup.d.ts +217 -140
  18. package/lib/esm/interfaces/lookup.js +217 -140
  19. package/lib/esm/interfaces/lookup.js.map +1 -1
  20. package/lib/esm/interfaces/registry.d.ts +7 -1
  21. package/lib/esm/interfaces/types-lookup.d.ts +213 -140
  22. package/lib/tsconfig-cjs.tsbuildinfo +1 -1
  23. package/lib/tsconfig-types.tsbuildinfo +1 -1
  24. package/lib/tsconfig.tsbuildinfo +1 -1
  25. package/lib/types/interfaces/augment-api-consts.d.ts +39 -33
  26. package/lib/types/interfaces/augment-api-errors.d.ts +57 -51
  27. package/lib/types/interfaces/augment-api-events.d.ts +102 -68
  28. package/lib/types/interfaces/augment-api-query.d.ts +65 -65
  29. package/lib/types/interfaces/augment-api-tx.d.ts +253 -157
  30. package/lib/types/interfaces/lookup.d.ts +217 -140
  31. package/lib/types/interfaces/registry.d.ts +7 -1
  32. package/lib/types/interfaces/types-lookup.d.ts +213 -140
  33. package/package.json +3 -2
@@ -812,14 +812,14 @@ declare module '@polkadot/types/lookup' {
812
812
  readonly asRewardUnlockError: {
813
813
  readonly accountId: AccountId32;
814
814
  readonly argons: Option<u128>;
815
- readonly shares: Option<u128>;
815
+ readonly ownership: Option<u128>;
816
816
  readonly error: SpRuntimeDispatchError;
817
817
  } & Struct;
818
818
  readonly isRewardCreateError: boolean;
819
819
  readonly asRewardCreateError: {
820
820
  readonly accountId: AccountId32;
821
821
  readonly argons: Option<u128>;
822
- readonly shares: Option<u128>;
822
+ readonly ownership: Option<u128>;
823
823
  readonly error: SpRuntimeDispatchError;
824
824
  } & Struct;
825
825
  readonly type: 'RewardCreated' | 'RewardUnlocked' | 'RewardUnlockError' | 'RewardCreateError';
@@ -827,7 +827,7 @@ declare module '@polkadot/types/lookup' {
827
827
  /** @name ArgonPrimitivesBlockSealBlockPayout (90) */
828
828
  interface ArgonPrimitivesBlockSealBlockPayout extends Struct {
829
829
  readonly accountId: AccountId32;
830
- readonly shares: Compact<u128>;
830
+ readonly ownership: Compact<u128>;
831
831
  readonly argons: Compact<u128>;
832
832
  }
833
833
  /** @name PalletGrandpaEvent (92) */
@@ -1019,7 +1019,27 @@ declare module '@polkadot/types/lookup' {
1019
1019
  } & Struct;
1020
1020
  readonly type: 'TransactionFeePaid';
1021
1021
  }
1022
- /** @name PalletSudoEvent (107) */
1022
+ /** @name PalletUtilityEvent (107) */
1023
+ interface PalletUtilityEvent extends Enum {
1024
+ readonly isBatchInterrupted: boolean;
1025
+ readonly asBatchInterrupted: {
1026
+ readonly index: u32;
1027
+ readonly error: SpRuntimeDispatchError;
1028
+ } & Struct;
1029
+ readonly isBatchCompleted: boolean;
1030
+ readonly isBatchCompletedWithErrors: boolean;
1031
+ readonly isItemCompleted: boolean;
1032
+ readonly isItemFailed: boolean;
1033
+ readonly asItemFailed: {
1034
+ readonly error: SpRuntimeDispatchError;
1035
+ } & Struct;
1036
+ readonly isDispatchedAs: boolean;
1037
+ readonly asDispatchedAs: {
1038
+ readonly result: Result<Null, SpRuntimeDispatchError>;
1039
+ } & Struct;
1040
+ readonly type: 'BatchInterrupted' | 'BatchCompleted' | 'BatchCompletedWithErrors' | 'ItemCompleted' | 'ItemFailed' | 'DispatchedAs';
1041
+ }
1042
+ /** @name PalletSudoEvent (108) */
1023
1043
  interface PalletSudoEvent extends Enum {
1024
1044
  readonly isSudid: boolean;
1025
1045
  readonly asSudid: {
@@ -1037,7 +1057,7 @@ declare module '@polkadot/types/lookup' {
1037
1057
  } & Struct;
1038
1058
  readonly type: 'Sudid' | 'KeyChanged' | 'KeyRemoved' | 'SudoAsDone';
1039
1059
  }
1040
- /** @name FrameSystemPhase (109) */
1060
+ /** @name FrameSystemPhase (110) */
1041
1061
  interface FrameSystemPhase extends Enum {
1042
1062
  readonly isApplyExtrinsic: boolean;
1043
1063
  readonly asApplyExtrinsic: u32;
@@ -1045,17 +1065,17 @@ declare module '@polkadot/types/lookup' {
1045
1065
  readonly isInitialization: boolean;
1046
1066
  readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
1047
1067
  }
1048
- /** @name FrameSystemLastRuntimeUpgradeInfo (113) */
1068
+ /** @name FrameSystemLastRuntimeUpgradeInfo (114) */
1049
1069
  interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
1050
1070
  readonly specVersion: Compact<u32>;
1051
1071
  readonly specName: Text;
1052
1072
  }
1053
- /** @name FrameSystemCodeUpgradeAuthorization (114) */
1073
+ /** @name FrameSystemCodeUpgradeAuthorization (115) */
1054
1074
  interface FrameSystemCodeUpgradeAuthorization extends Struct {
1055
1075
  readonly codeHash: H256;
1056
1076
  readonly checkVersion: bool;
1057
1077
  }
1058
- /** @name FrameSystemCall (115) */
1078
+ /** @name FrameSystemCall (116) */
1059
1079
  interface FrameSystemCall extends Enum {
1060
1080
  readonly isRemark: boolean;
1061
1081
  readonly asRemark: {
@@ -1104,41 +1124,41 @@ declare module '@polkadot/types/lookup' {
1104
1124
  } & Struct;
1105
1125
  readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent' | 'AuthorizeUpgrade' | 'AuthorizeUpgradeWithoutChecks' | 'ApplyAuthorizedUpgrade';
1106
1126
  }
1107
- /** @name FrameSystemLimitsBlockWeights (119) */
1127
+ /** @name FrameSystemLimitsBlockWeights (120) */
1108
1128
  interface FrameSystemLimitsBlockWeights extends Struct {
1109
1129
  readonly baseBlock: SpWeightsWeightV2Weight;
1110
1130
  readonly maxBlock: SpWeightsWeightV2Weight;
1111
1131
  readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
1112
1132
  }
1113
- /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (120) */
1133
+ /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (121) */
1114
1134
  interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
1115
1135
  readonly normal: FrameSystemLimitsWeightsPerClass;
1116
1136
  readonly operational: FrameSystemLimitsWeightsPerClass;
1117
1137
  readonly mandatory: FrameSystemLimitsWeightsPerClass;
1118
1138
  }
1119
- /** @name FrameSystemLimitsWeightsPerClass (121) */
1139
+ /** @name FrameSystemLimitsWeightsPerClass (122) */
1120
1140
  interface FrameSystemLimitsWeightsPerClass extends Struct {
1121
1141
  readonly baseExtrinsic: SpWeightsWeightV2Weight;
1122
1142
  readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
1123
1143
  readonly maxTotal: Option<SpWeightsWeightV2Weight>;
1124
1144
  readonly reserved: Option<SpWeightsWeightV2Weight>;
1125
1145
  }
1126
- /** @name FrameSystemLimitsBlockLength (123) */
1146
+ /** @name FrameSystemLimitsBlockLength (124) */
1127
1147
  interface FrameSystemLimitsBlockLength extends Struct {
1128
1148
  readonly max: FrameSupportDispatchPerDispatchClassU32;
1129
1149
  }
1130
- /** @name FrameSupportDispatchPerDispatchClassU32 (124) */
1150
+ /** @name FrameSupportDispatchPerDispatchClassU32 (125) */
1131
1151
  interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
1132
1152
  readonly normal: u32;
1133
1153
  readonly operational: u32;
1134
1154
  readonly mandatory: u32;
1135
1155
  }
1136
- /** @name SpWeightsRuntimeDbWeight (125) */
1156
+ /** @name SpWeightsRuntimeDbWeight (126) */
1137
1157
  interface SpWeightsRuntimeDbWeight extends Struct {
1138
1158
  readonly read: u64;
1139
1159
  readonly write: u64;
1140
1160
  }
1141
- /** @name SpVersionRuntimeVersion (126) */
1161
+ /** @name SpVersionRuntimeVersion (127) */
1142
1162
  interface SpVersionRuntimeVersion extends Struct {
1143
1163
  readonly specName: Text;
1144
1164
  readonly implName: Text;
@@ -1149,7 +1169,7 @@ declare module '@polkadot/types/lookup' {
1149
1169
  readonly transactionVersion: u32;
1150
1170
  readonly stateVersion: u8;
1151
1171
  }
1152
- /** @name FrameSystemError (131) */
1172
+ /** @name FrameSystemError (132) */
1153
1173
  interface FrameSystemError extends Enum {
1154
1174
  readonly isInvalidSpecName: boolean;
1155
1175
  readonly isSpecVersionNeedsToIncrease: boolean;
@@ -1162,7 +1182,7 @@ declare module '@polkadot/types/lookup' {
1162
1182
  readonly isUnauthorized: boolean;
1163
1183
  readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered' | 'MultiBlockMigrationsOngoing' | 'NothingAuthorized' | 'Unauthorized';
1164
1184
  }
1165
- /** @name PalletTimestampCall (132) */
1185
+ /** @name PalletTimestampCall (133) */
1166
1186
  interface PalletTimestampCall extends Enum {
1167
1187
  readonly isSet: boolean;
1168
1188
  readonly asSet: {
@@ -1170,14 +1190,14 @@ declare module '@polkadot/types/lookup' {
1170
1190
  } & Struct;
1171
1191
  readonly type: 'Set';
1172
1192
  }
1173
- /** @name PalletMultisigMultisig (134) */
1193
+ /** @name PalletMultisigMultisig (135) */
1174
1194
  interface PalletMultisigMultisig extends Struct {
1175
1195
  readonly when: PalletMultisigTimepoint;
1176
1196
  readonly deposit: u128;
1177
1197
  readonly depositor: AccountId32;
1178
1198
  readonly approvals: Vec<AccountId32>;
1179
1199
  }
1180
- /** @name PalletMultisigCall (137) */
1200
+ /** @name PalletMultisigCall (138) */
1181
1201
  interface PalletMultisigCall extends Enum {
1182
1202
  readonly isAsMultiThreshold1: boolean;
1183
1203
  readonly asAsMultiThreshold1: {
@@ -1209,7 +1229,7 @@ declare module '@polkadot/types/lookup' {
1209
1229
  } & Struct;
1210
1230
  readonly type: 'AsMultiThreshold1' | 'AsMulti' | 'ApproveAsMulti' | 'CancelAsMulti';
1211
1231
  }
1212
- /** @name PalletProxyCall (139) */
1232
+ /** @name PalletProxyCall (140) */
1213
1233
  interface PalletProxyCall extends Enum {
1214
1234
  readonly isProxy: boolean;
1215
1235
  readonly asProxy: {
@@ -1268,9 +1288,9 @@ declare module '@polkadot/types/lookup' {
1268
1288
  } & Struct;
1269
1289
  readonly type: 'Proxy' | 'AddProxy' | 'RemoveProxy' | 'RemoveProxies' | 'CreatePure' | 'KillPure' | 'Announce' | 'RemoveAnnouncement' | 'RejectAnnouncement' | 'ProxyAnnounced';
1270
1290
  }
1271
- /** @name PalletTicksCall (144) */
1291
+ /** @name PalletTicksCall (145) */
1272
1292
  type PalletTicksCall = Null;
1273
- /** @name PalletMiningSlotCall (145) */
1293
+ /** @name PalletMiningSlotCall (146) */
1274
1294
  interface PalletMiningSlotCall extends Enum {
1275
1295
  readonly isBid: boolean;
1276
1296
  readonly asBid: {
@@ -1279,12 +1299,12 @@ declare module '@polkadot/types/lookup' {
1279
1299
  } & Struct;
1280
1300
  readonly type: 'Bid';
1281
1301
  }
1282
- /** @name PalletMiningSlotMiningSlotBid (147) */
1302
+ /** @name PalletMiningSlotMiningSlotBid (148) */
1283
1303
  interface PalletMiningSlotMiningSlotBid extends Struct {
1284
1304
  readonly vaultId: u32;
1285
1305
  readonly amount: u128;
1286
1306
  }
1287
- /** @name PalletBitcoinUtxosCall (148) */
1307
+ /** @name PalletBitcoinUtxosCall (149) */
1288
1308
  interface PalletBitcoinUtxosCall extends Enum {
1289
1309
  readonly isSync: boolean;
1290
1310
  readonly asSync: {
@@ -1301,19 +1321,19 @@ declare module '@polkadot/types/lookup' {
1301
1321
  } & Struct;
1302
1322
  readonly type: 'Sync' | 'SetConfirmedBlock' | 'SetOperator';
1303
1323
  }
1304
- /** @name ArgonPrimitivesInherentsBitcoinUtxoSync (149) */
1324
+ /** @name ArgonPrimitivesInherentsBitcoinUtxoSync (150) */
1305
1325
  interface ArgonPrimitivesInherentsBitcoinUtxoSync extends Struct {
1306
1326
  readonly spent: BTreeMap<u64, u64>;
1307
1327
  readonly verified: BTreeMap<u64, ArgonPrimitivesBitcoinUtxoRef>;
1308
1328
  readonly invalid: BTreeMap<u64, ArgonPrimitivesBitcoinBitcoinRejectedReason>;
1309
1329
  readonly syncToBlock: ArgonPrimitivesBitcoinBitcoinBlock;
1310
1330
  }
1311
- /** @name ArgonPrimitivesBitcoinBitcoinBlock (159) */
1331
+ /** @name ArgonPrimitivesBitcoinBitcoinBlock (160) */
1312
1332
  interface ArgonPrimitivesBitcoinBitcoinBlock extends Struct {
1313
1333
  readonly blockHeight: Compact<u64>;
1314
1334
  readonly blockHash: ArgonPrimitivesBitcoinH256Le;
1315
1335
  }
1316
- /** @name PalletVaultsCall (160) */
1336
+ /** @name PalletVaultsCall (161) */
1317
1337
  interface PalletVaultsCall extends Enum {
1318
1338
  readonly isCreate: boolean;
1319
1339
  readonly asCreate: {
@@ -1342,7 +1362,7 @@ declare module '@polkadot/types/lookup' {
1342
1362
  } & Struct;
1343
1363
  readonly type: 'Create' | 'ModifyFunding' | 'ModifyTerms' | 'Close' | 'ReplaceBitcoinXpub';
1344
1364
  }
1345
- /** @name PalletVaultsVaultConfig (161) */
1365
+ /** @name PalletVaultsVaultConfig (162) */
1346
1366
  interface PalletVaultsVaultConfig extends Struct {
1347
1367
  readonly terms: ArgonPrimitivesBondVaultTerms;
1348
1368
  readonly bitcoinAmountAllocated: Compact<u128>;
@@ -1350,7 +1370,7 @@ declare module '@polkadot/types/lookup' {
1350
1370
  readonly miningAmountAllocated: Compact<u128>;
1351
1371
  readonly securitizationPercent: Compact<u128>;
1352
1372
  }
1353
- /** @name ArgonPrimitivesBondVaultTerms (162) */
1373
+ /** @name ArgonPrimitivesBondVaultTerms (163) */
1354
1374
  interface ArgonPrimitivesBondVaultTerms extends Struct {
1355
1375
  readonly bitcoinAnnualPercentRate: Compact<u128>;
1356
1376
  readonly bitcoinBaseFee: Compact<u128>;
@@ -1358,10 +1378,10 @@ declare module '@polkadot/types/lookup' {
1358
1378
  readonly miningBaseFee: Compact<u128>;
1359
1379
  readonly miningRewardSharingPercentTake: Compact<u128>;
1360
1380
  }
1361
- /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (163) */
1381
+ /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (164) */
1362
1382
  interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {
1363
1383
  }
1364
- /** @name PalletBondCall (165) */
1384
+ /** @name PalletBondCall (166) */
1365
1385
  interface PalletBondCall extends Enum {
1366
1386
  readonly isBondBitcoin: boolean;
1367
1387
  readonly asBondBitcoin: {
@@ -1382,10 +1402,10 @@ declare module '@polkadot/types/lookup' {
1382
1402
  } & Struct;
1383
1403
  readonly type: 'BondBitcoin' | 'UnlockBitcoinBond' | 'CosignBitcoinUnlock';
1384
1404
  }
1385
- /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (166) */
1405
+ /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (167) */
1386
1406
  interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {
1387
1407
  }
1388
- /** @name PalletNotariesCall (170) */
1408
+ /** @name PalletNotariesCall (171) */
1389
1409
  interface PalletNotariesCall extends Enum {
1390
1410
  readonly isPropose: boolean;
1391
1411
  readonly asPropose: {
@@ -1403,7 +1423,7 @@ declare module '@polkadot/types/lookup' {
1403
1423
  } & Struct;
1404
1424
  readonly type: 'Propose' | 'Activate' | 'Update';
1405
1425
  }
1406
- /** @name PalletNotebookCall (171) */
1426
+ /** @name PalletNotebookCall (172) */
1407
1427
  interface PalletNotebookCall extends Enum {
1408
1428
  readonly isSubmit: boolean;
1409
1429
  readonly asSubmit: {
@@ -1411,12 +1431,12 @@ declare module '@polkadot/types/lookup' {
1411
1431
  } & Struct;
1412
1432
  readonly type: 'Submit';
1413
1433
  }
1414
- /** @name ArgonPrimitivesNotebookSignedNotebookHeader (173) */
1434
+ /** @name ArgonPrimitivesNotebookSignedNotebookHeader (174) */
1415
1435
  interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
1416
1436
  readonly header: ArgonPrimitivesNotebookNotebookHeader;
1417
1437
  readonly signature: U8aFixed;
1418
1438
  }
1419
- /** @name ArgonPrimitivesNotebookNotebookHeader (174) */
1439
+ /** @name ArgonPrimitivesNotebookNotebookHeader (175) */
1420
1440
  interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
1421
1441
  readonly version: Compact<u16>;
1422
1442
  readonly notebookNumber: Compact<u32>;
@@ -1434,7 +1454,7 @@ declare module '@polkadot/types/lookup' {
1434
1454
  readonly parentSecret: Option<H256>;
1435
1455
  readonly dataDomains: Vec<ITuple<[H256, AccountId32]>>;
1436
1456
  }
1437
- /** @name ArgonPrimitivesNotebookChainTransfer (177) */
1457
+ /** @name ArgonPrimitivesNotebookChainTransfer (178) */
1438
1458
  interface ArgonPrimitivesNotebookChainTransfer extends Enum {
1439
1459
  readonly isToMainchain: boolean;
1440
1460
  readonly asToMainchain: {
@@ -1447,12 +1467,12 @@ declare module '@polkadot/types/lookup' {
1447
1467
  } & Struct;
1448
1468
  readonly type: 'ToMainchain' | 'ToLocalchain';
1449
1469
  }
1450
- /** @name ArgonPrimitivesBalanceChangeAccountOrigin (180) */
1470
+ /** @name ArgonPrimitivesBalanceChangeAccountOrigin (181) */
1451
1471
  interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
1452
1472
  readonly notebookNumber: Compact<u32>;
1453
1473
  readonly accountUid: Compact<u32>;
1454
1474
  }
1455
- /** @name PalletChainTransferCall (188) */
1475
+ /** @name PalletChainTransferCall (189) */
1456
1476
  interface PalletChainTransferCall extends Enum {
1457
1477
  readonly isSendToLocalchain: boolean;
1458
1478
  readonly asSendToLocalchain: {
@@ -1461,7 +1481,7 @@ declare module '@polkadot/types/lookup' {
1461
1481
  } & Struct;
1462
1482
  readonly type: 'SendToLocalchain';
1463
1483
  }
1464
- /** @name PalletBlockSealSpecCall (189) */
1484
+ /** @name PalletBlockSealSpecCall (190) */
1465
1485
  interface PalletBlockSealSpecCall extends Enum {
1466
1486
  readonly isConfigure: boolean;
1467
1487
  readonly asConfigure: {
@@ -1470,7 +1490,7 @@ declare module '@polkadot/types/lookup' {
1470
1490
  } & Struct;
1471
1491
  readonly type: 'Configure';
1472
1492
  }
1473
- /** @name PalletDataDomainCall (190) */
1493
+ /** @name PalletDataDomainCall (191) */
1474
1494
  interface PalletDataDomainCall extends Enum {
1475
1495
  readonly isSetZoneRecord: boolean;
1476
1496
  readonly asSetZoneRecord: {
@@ -1479,7 +1499,7 @@ declare module '@polkadot/types/lookup' {
1479
1499
  } & Struct;
1480
1500
  readonly type: 'SetZoneRecord';
1481
1501
  }
1482
- /** @name PalletPriceIndexCall (191) */
1502
+ /** @name PalletPriceIndexCall (192) */
1483
1503
  interface PalletPriceIndexCall extends Enum {
1484
1504
  readonly isSubmit: boolean;
1485
1505
  readonly asSubmit: {
@@ -1491,14 +1511,14 @@ declare module '@polkadot/types/lookup' {
1491
1511
  } & Struct;
1492
1512
  readonly type: 'Submit' | 'SetOperator';
1493
1513
  }
1494
- /** @name PalletPriceIndexPriceIndex (192) */
1514
+ /** @name PalletPriceIndexPriceIndex (193) */
1495
1515
  interface PalletPriceIndexPriceIndex extends Struct {
1496
1516
  readonly btcUsdPrice: Compact<u128>;
1497
1517
  readonly argonUsdPrice: Compact<u128>;
1498
1518
  readonly argonUsdTargetPrice: u128;
1499
1519
  readonly tick: Compact<u32>;
1500
1520
  }
1501
- /** @name PalletSessionCall (193) */
1521
+ /** @name PalletSessionCall (194) */
1502
1522
  interface PalletSessionCall extends Enum {
1503
1523
  readonly isSetKeys: boolean;
1504
1524
  readonly asSetKeys: {
@@ -1508,15 +1528,15 @@ declare module '@polkadot/types/lookup' {
1508
1528
  readonly isPurgeKeys: boolean;
1509
1529
  readonly type: 'SetKeys' | 'PurgeKeys';
1510
1530
  }
1511
- /** @name ArgonNodeRuntimeOpaqueSessionKeys (194) */
1531
+ /** @name ArgonNodeRuntimeOpaqueSessionKeys (195) */
1512
1532
  interface ArgonNodeRuntimeOpaqueSessionKeys extends Struct {
1513
1533
  readonly grandpa: SpConsensusGrandpaAppPublic;
1514
1534
  readonly blockSealAuthority: ArgonPrimitivesBlockSealAppPublic;
1515
1535
  }
1516
- /** @name ArgonPrimitivesBlockSealAppPublic (195) */
1536
+ /** @name ArgonPrimitivesBlockSealAppPublic (196) */
1517
1537
  interface ArgonPrimitivesBlockSealAppPublic extends U8aFixed {
1518
1538
  }
1519
- /** @name PalletBlockSealCall (196) */
1539
+ /** @name PalletBlockSealCall (197) */
1520
1540
  interface PalletBlockSealCall extends Enum {
1521
1541
  readonly isApply: boolean;
1522
1542
  readonly asApply: {
@@ -1524,7 +1544,7 @@ declare module '@polkadot/types/lookup' {
1524
1544
  } & Struct;
1525
1545
  readonly type: 'Apply';
1526
1546
  }
1527
- /** @name ArgonPrimitivesInherentsBlockSealInherent (197) */
1547
+ /** @name ArgonPrimitivesInherentsBlockSealInherent (198) */
1528
1548
  interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
1529
1549
  readonly isVote: boolean;
1530
1550
  readonly asVote: {
@@ -1538,13 +1558,13 @@ declare module '@polkadot/types/lookup' {
1538
1558
  readonly isCompute: boolean;
1539
1559
  readonly type: 'Vote' | 'Compute';
1540
1560
  }
1541
- /** @name ArgonPrimitivesBalanceChangeMerkleProof (200) */
1561
+ /** @name ArgonPrimitivesBalanceChangeMerkleProof (201) */
1542
1562
  interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
1543
1563
  readonly proof: Vec<H256>;
1544
1564
  readonly numberOfLeaves: Compact<u32>;
1545
1565
  readonly leafIndex: Compact<u32>;
1546
1566
  }
1547
- /** @name ArgonPrimitivesBlockVoteBlockVoteT (202) */
1567
+ /** @name ArgonPrimitivesBlockVoteBlockVoteT (203) */
1548
1568
  interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
1549
1569
  readonly accountId: AccountId32;
1550
1570
  readonly blockHash: H256;
@@ -1555,7 +1575,7 @@ declare module '@polkadot/types/lookup' {
1555
1575
  readonly signature: SpRuntimeMultiSignature;
1556
1576
  readonly blockRewardsAccountId: AccountId32;
1557
1577
  }
1558
- /** @name SpRuntimeMultiSignature (203) */
1578
+ /** @name SpRuntimeMultiSignature (204) */
1559
1579
  interface SpRuntimeMultiSignature extends Enum {
1560
1580
  readonly isEd25519: boolean;
1561
1581
  readonly asEd25519: U8aFixed;
@@ -1565,12 +1585,12 @@ declare module '@polkadot/types/lookup' {
1565
1585
  readonly asEcdsa: U8aFixed;
1566
1586
  readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
1567
1587
  }
1568
- /** @name ArgonPrimitivesBlockSealAppSignature (205) */
1588
+ /** @name ArgonPrimitivesBlockSealAppSignature (206) */
1569
1589
  interface ArgonPrimitivesBlockSealAppSignature extends U8aFixed {
1570
1590
  }
1571
- /** @name PalletBlockRewardsCall (206) */
1591
+ /** @name PalletBlockRewardsCall (207) */
1572
1592
  type PalletBlockRewardsCall = Null;
1573
- /** @name PalletGrandpaCall (207) */
1593
+ /** @name PalletGrandpaCall (208) */
1574
1594
  interface PalletGrandpaCall extends Enum {
1575
1595
  readonly isReportEquivocation: boolean;
1576
1596
  readonly asReportEquivocation: {
@@ -1589,12 +1609,12 @@ declare module '@polkadot/types/lookup' {
1589
1609
  } & Struct;
1590
1610
  readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
1591
1611
  }
1592
- /** @name SpConsensusGrandpaEquivocationProof (208) */
1612
+ /** @name SpConsensusGrandpaEquivocationProof (209) */
1593
1613
  interface SpConsensusGrandpaEquivocationProof extends Struct {
1594
1614
  readonly setId: u64;
1595
1615
  readonly equivocation: SpConsensusGrandpaEquivocation;
1596
1616
  }
1597
- /** @name SpConsensusGrandpaEquivocation (209) */
1617
+ /** @name SpConsensusGrandpaEquivocation (210) */
1598
1618
  interface SpConsensusGrandpaEquivocation extends Enum {
1599
1619
  readonly isPrevote: boolean;
1600
1620
  readonly asPrevote: FinalityGrandpaEquivocationPrevote;
@@ -1602,42 +1622,42 @@ declare module '@polkadot/types/lookup' {
1602
1622
  readonly asPrecommit: FinalityGrandpaEquivocationPrecommit;
1603
1623
  readonly type: 'Prevote' | 'Precommit';
1604
1624
  }
1605
- /** @name FinalityGrandpaEquivocationPrevote (210) */
1625
+ /** @name FinalityGrandpaEquivocationPrevote (211) */
1606
1626
  interface FinalityGrandpaEquivocationPrevote extends Struct {
1607
1627
  readonly roundNumber: u64;
1608
1628
  readonly identity: SpConsensusGrandpaAppPublic;
1609
1629
  readonly first: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
1610
1630
  readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
1611
1631
  }
1612
- /** @name FinalityGrandpaPrevote (211) */
1632
+ /** @name FinalityGrandpaPrevote (212) */
1613
1633
  interface FinalityGrandpaPrevote extends Struct {
1614
1634
  readonly targetHash: H256;
1615
1635
  readonly targetNumber: u32;
1616
1636
  }
1617
- /** @name SpConsensusGrandpaAppSignature (212) */
1637
+ /** @name SpConsensusGrandpaAppSignature (213) */
1618
1638
  interface SpConsensusGrandpaAppSignature extends U8aFixed {
1619
1639
  }
1620
- /** @name FinalityGrandpaEquivocationPrecommit (214) */
1640
+ /** @name FinalityGrandpaEquivocationPrecommit (215) */
1621
1641
  interface FinalityGrandpaEquivocationPrecommit extends Struct {
1622
1642
  readonly roundNumber: u64;
1623
1643
  readonly identity: SpConsensusGrandpaAppPublic;
1624
1644
  readonly first: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
1625
1645
  readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
1626
1646
  }
1627
- /** @name FinalityGrandpaPrecommit (215) */
1647
+ /** @name FinalityGrandpaPrecommit (216) */
1628
1648
  interface FinalityGrandpaPrecommit extends Struct {
1629
1649
  readonly targetHash: H256;
1630
1650
  readonly targetNumber: u32;
1631
1651
  }
1632
- /** @name SpSessionMembershipProof (217) */
1652
+ /** @name SpSessionMembershipProof (218) */
1633
1653
  interface SpSessionMembershipProof extends Struct {
1634
1654
  readonly session: u32;
1635
1655
  readonly trieNodes: Vec<Bytes>;
1636
1656
  readonly validatorCount: u32;
1637
1657
  }
1638
- /** @name PalletMintCall (218) */
1658
+ /** @name PalletMintCall (219) */
1639
1659
  type PalletMintCall = Null;
1640
- /** @name PalletBalancesCall (219) */
1660
+ /** @name PalletBalancesCall (220) */
1641
1661
  interface PalletBalancesCall extends Enum {
1642
1662
  readonly isTransferAllowDeath: boolean;
1643
1663
  readonly asTransferAllowDeath: {
@@ -1686,13 +1706,13 @@ declare module '@polkadot/types/lookup' {
1686
1706
  } & Struct;
1687
1707
  readonly type: 'TransferAllowDeath' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'ForceSetBalance' | 'ForceAdjustTotalIssuance' | 'Burn';
1688
1708
  }
1689
- /** @name PalletBalancesAdjustmentDirection (220) */
1709
+ /** @name PalletBalancesAdjustmentDirection (221) */
1690
1710
  interface PalletBalancesAdjustmentDirection extends Enum {
1691
1711
  readonly isIncrease: boolean;
1692
1712
  readonly isDecrease: boolean;
1693
1713
  readonly type: 'Increase' | 'Decrease';
1694
1714
  }
1695
- /** @name PalletTxPauseCall (222) */
1715
+ /** @name PalletTxPauseCall (223) */
1696
1716
  interface PalletTxPauseCall extends Enum {
1697
1717
  readonly isPause: boolean;
1698
1718
  readonly asPause: {
@@ -1704,7 +1724,55 @@ declare module '@polkadot/types/lookup' {
1704
1724
  } & Struct;
1705
1725
  readonly type: 'Pause' | 'Unpause';
1706
1726
  }
1707
- /** @name PalletSudoCall (223) */
1727
+ /** @name PalletUtilityCall (224) */
1728
+ interface PalletUtilityCall extends Enum {
1729
+ readonly isBatch: boolean;
1730
+ readonly asBatch: {
1731
+ readonly calls: Vec<Call>;
1732
+ } & Struct;
1733
+ readonly isAsDerivative: boolean;
1734
+ readonly asAsDerivative: {
1735
+ readonly index: u16;
1736
+ readonly call: Call;
1737
+ } & Struct;
1738
+ readonly isBatchAll: boolean;
1739
+ readonly asBatchAll: {
1740
+ readonly calls: Vec<Call>;
1741
+ } & Struct;
1742
+ readonly isDispatchAs: boolean;
1743
+ readonly asDispatchAs: {
1744
+ readonly asOrigin: ArgonNodeRuntimeOriginCaller;
1745
+ readonly call: Call;
1746
+ } & Struct;
1747
+ readonly isForceBatch: boolean;
1748
+ readonly asForceBatch: {
1749
+ readonly calls: Vec<Call>;
1750
+ } & Struct;
1751
+ readonly isWithWeight: boolean;
1752
+ readonly asWithWeight: {
1753
+ readonly call: Call;
1754
+ readonly weight: SpWeightsWeightV2Weight;
1755
+ } & Struct;
1756
+ readonly type: 'Batch' | 'AsDerivative' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight';
1757
+ }
1758
+ /** @name ArgonNodeRuntimeOriginCaller (226) */
1759
+ interface ArgonNodeRuntimeOriginCaller extends Enum {
1760
+ readonly isSystem: boolean;
1761
+ readonly asSystem: FrameSupportDispatchRawOrigin;
1762
+ readonly isVoid: boolean;
1763
+ readonly type: 'System' | 'Void';
1764
+ }
1765
+ /** @name FrameSupportDispatchRawOrigin (227) */
1766
+ interface FrameSupportDispatchRawOrigin extends Enum {
1767
+ readonly isRoot: boolean;
1768
+ readonly isSigned: boolean;
1769
+ readonly asSigned: AccountId32;
1770
+ readonly isNone: boolean;
1771
+ readonly type: 'Root' | 'Signed' | 'None';
1772
+ }
1773
+ /** @name SpCoreVoid (228) */
1774
+ type SpCoreVoid = Null;
1775
+ /** @name PalletSudoCall (229) */
1708
1776
  interface PalletSudoCall extends Enum {
1709
1777
  readonly isSudo: boolean;
1710
1778
  readonly asSudo: {
@@ -1727,7 +1795,7 @@ declare module '@polkadot/types/lookup' {
1727
1795
  readonly isRemoveKey: boolean;
1728
1796
  readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
1729
1797
  }
1730
- /** @name PalletMultisigError (225) */
1798
+ /** @name PalletMultisigError (231) */
1731
1799
  interface PalletMultisigError extends Enum {
1732
1800
  readonly isMinimumThreshold: boolean;
1733
1801
  readonly isAlreadyApproved: boolean;
@@ -1745,19 +1813,19 @@ declare module '@polkadot/types/lookup' {
1745
1813
  readonly isAlreadyStored: boolean;
1746
1814
  readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored';
1747
1815
  }
1748
- /** @name PalletProxyProxyDefinition (228) */
1816
+ /** @name PalletProxyProxyDefinition (234) */
1749
1817
  interface PalletProxyProxyDefinition extends Struct {
1750
1818
  readonly delegate: AccountId32;
1751
1819
  readonly proxyType: ArgonNodeRuntimeProxyType;
1752
1820
  readonly delay: u32;
1753
1821
  }
1754
- /** @name PalletProxyAnnouncement (232) */
1822
+ /** @name PalletProxyAnnouncement (238) */
1755
1823
  interface PalletProxyAnnouncement extends Struct {
1756
1824
  readonly real: AccountId32;
1757
1825
  readonly callHash: H256;
1758
1826
  readonly height: u32;
1759
1827
  }
1760
- /** @name PalletProxyError (234) */
1828
+ /** @name PalletProxyError (240) */
1761
1829
  interface PalletProxyError extends Enum {
1762
1830
  readonly isTooMany: boolean;
1763
1831
  readonly isNotFound: boolean;
@@ -1769,21 +1837,21 @@ declare module '@polkadot/types/lookup' {
1769
1837
  readonly isNoSelfProxy: boolean;
1770
1838
  readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy';
1771
1839
  }
1772
- /** @name ArgonPrimitivesTickTicker (235) */
1840
+ /** @name ArgonPrimitivesTickTicker (241) */
1773
1841
  interface ArgonPrimitivesTickTicker extends Struct {
1774
1842
  readonly tickDurationMillis: Compact<u64>;
1775
1843
  readonly genesisUtcTime: Compact<u64>;
1776
1844
  readonly escrowExpirationTicks: Compact<u32>;
1777
1845
  }
1778
- /** @name PalletTicksError (237) */
1846
+ /** @name PalletTicksError (243) */
1779
1847
  type PalletTicksError = Null;
1780
- /** @name ArgonPrimitivesBlockSealMiningSlotConfig (245) */
1848
+ /** @name ArgonPrimitivesBlockSealMiningSlotConfig (251) */
1781
1849
  interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
1782
1850
  readonly blocksBeforeBidEndForVrfClose: Compact<u32>;
1783
1851
  readonly blocksBetweenSlots: Compact<u32>;
1784
1852
  readonly slotBiddingStartBlock: Compact<u32>;
1785
1853
  }
1786
- /** @name PalletMiningSlotError (246) */
1854
+ /** @name PalletMiningSlotError (252) */
1787
1855
  interface PalletMiningSlotError extends Enum {
1788
1856
  readonly isSlotNotTakingBids: boolean;
1789
1857
  readonly isTooManyBlockRegistrants: boolean;
@@ -1809,7 +1877,7 @@ declare module '@polkadot/types/lookup' {
1809
1877
  readonly asGenericBondError: ArgonPrimitivesBondBondError;
1810
1878
  readonly type: 'SlotNotTakingBids' | 'TooManyBlockRegistrants' | 'InsufficientOwnershipTokens' | 'BidTooLow' | 'CannotRegisterOverlappingSessions' | 'BondNotFound' | 'NoMoreBondIds' | 'VaultClosed' | 'MinimumBondAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'BondAlreadyClosed' | 'FeeExceedsBondAmount' | 'AccountWouldBeBelowMinimum' | 'GenericBondError';
1811
1879
  }
1812
- /** @name ArgonPrimitivesBondBondError (247) */
1880
+ /** @name ArgonPrimitivesBondBondError (253) */
1813
1881
  interface ArgonPrimitivesBondBondError extends Enum {
1814
1882
  readonly isBondNotFound: boolean;
1815
1883
  readonly isNoMoreBondIds: boolean;
@@ -1833,7 +1901,7 @@ declare module '@polkadot/types/lookup' {
1833
1901
  readonly isInternalError: boolean;
1834
1902
  readonly type: 'BondNotFound' | 'NoMoreBondIds' | 'MinimumBondAmountNotMet' | 'VaultClosed' | 'ExpirationAtBlockOverflow' | 'AccountWouldBeBelowMinimum' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'InsufficientBitcoinsForMining' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'UnableToDecodeVaultBitcoinPubkey' | 'FeeExceedsBondAmount' | 'InvalidBitcoinScript' | 'InternalError';
1835
1903
  }
1836
- /** @name ArgonPrimitivesBitcoinUtxoValue (248) */
1904
+ /** @name ArgonPrimitivesBitcoinUtxoValue (254) */
1837
1905
  interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
1838
1906
  readonly utxoId: u64;
1839
1907
  readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
@@ -1841,7 +1909,7 @@ declare module '@polkadot/types/lookup' {
1841
1909
  readonly submittedAtHeight: Compact<u64>;
1842
1910
  readonly watchForSpentUntilHeight: Compact<u64>;
1843
1911
  }
1844
- /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (249) */
1912
+ /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (255) */
1845
1913
  interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
1846
1914
  readonly isP2wsh: boolean;
1847
1915
  readonly asP2wsh: {
@@ -1849,7 +1917,7 @@ declare module '@polkadot/types/lookup' {
1849
1917
  } & Struct;
1850
1918
  readonly type: 'P2wsh';
1851
1919
  }
1852
- /** @name ArgonPrimitivesBitcoinBitcoinNetwork (254) */
1920
+ /** @name ArgonPrimitivesBitcoinBitcoinNetwork (260) */
1853
1921
  interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
1854
1922
  readonly isBitcoin: boolean;
1855
1923
  readonly isTestnet: boolean;
@@ -1857,7 +1925,7 @@ declare module '@polkadot/types/lookup' {
1857
1925
  readonly isRegtest: boolean;
1858
1926
  readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
1859
1927
  }
1860
- /** @name PalletBitcoinUtxosError (257) */
1928
+ /** @name PalletBitcoinUtxosError (263) */
1861
1929
  interface PalletBitcoinUtxosError extends Enum {
1862
1930
  readonly isNoPermissions: boolean;
1863
1931
  readonly isNoBitcoinConfirmedBlock: boolean;
@@ -1872,7 +1940,7 @@ declare module '@polkadot/types/lookup' {
1872
1940
  readonly isInvalidBitcoinScript: boolean;
1873
1941
  readonly type: 'NoPermissions' | 'NoBitcoinConfirmedBlock' | 'InsufficientBitcoinAmount' | 'NoBitcoinPricesAvailable' | 'ScriptPubkeyConflict' | 'UtxoNotLocked' | 'RedemptionsUnavailable' | 'InvalidBitcoinSyncHeight' | 'BitcoinHeightNotConfirmed' | 'MaxUtxosExceeded' | 'InvalidBitcoinScript';
1874
1942
  }
1875
- /** @name ArgonPrimitivesBondVault (258) */
1943
+ /** @name ArgonPrimitivesBondVault (264) */
1876
1944
  interface ArgonPrimitivesBondVault extends Struct {
1877
1945
  readonly operatorAccountId: AccountId32;
1878
1946
  readonly bitcoinArgons: ArgonPrimitivesBondVaultArgons;
@@ -1883,14 +1951,14 @@ declare module '@polkadot/types/lookup' {
1883
1951
  readonly isClosed: bool;
1884
1952
  readonly pendingTerms: Option<ITuple<[u32, ArgonPrimitivesBondVaultTerms]>>;
1885
1953
  }
1886
- /** @name ArgonPrimitivesBondVaultArgons (259) */
1954
+ /** @name ArgonPrimitivesBondVaultArgons (265) */
1887
1955
  interface ArgonPrimitivesBondVaultArgons extends Struct {
1888
1956
  readonly annualPercentRate: Compact<u128>;
1889
1957
  readonly allocated: Compact<u128>;
1890
1958
  readonly bonded: Compact<u128>;
1891
1959
  readonly baseFee: Compact<u128>;
1892
1960
  }
1893
- /** @name ArgonPrimitivesBitcoinBitcoinXPub (263) */
1961
+ /** @name ArgonPrimitivesBitcoinBitcoinXPub (269) */
1894
1962
  interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
1895
1963
  readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
1896
1964
  readonly depth: Compact<u8>;
@@ -1899,13 +1967,13 @@ declare module '@polkadot/types/lookup' {
1899
1967
  readonly chainCode: U8aFixed;
1900
1968
  readonly network: ArgonPrimitivesBitcoinNetworkKind;
1901
1969
  }
1902
- /** @name ArgonPrimitivesBitcoinNetworkKind (265) */
1970
+ /** @name ArgonPrimitivesBitcoinNetworkKind (271) */
1903
1971
  interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
1904
1972
  readonly isMain: boolean;
1905
1973
  readonly isTest: boolean;
1906
1974
  readonly type: 'Main' | 'Test';
1907
1975
  }
1908
- /** @name PalletVaultsError (267) */
1976
+ /** @name PalletVaultsError (273) */
1909
1977
  interface PalletVaultsError extends Enum {
1910
1978
  readonly isBondNotFound: boolean;
1911
1979
  readonly isNoMoreVaultIds: boolean;
@@ -1946,7 +2014,7 @@ declare module '@polkadot/types/lookup' {
1946
2014
  readonly isUnableToDecodeVaultBitcoinPubkey: boolean;
1947
2015
  readonly type: 'BondNotFound' | 'NoMoreVaultIds' | 'NoMoreBondIds' | 'MinimumBondAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'InsufficientBitcoinsForMining' | 'AccountBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'VaultReductionBelowAllocatedFunds' | 'InvalidSecuritization' | 'ReusedVaultBitcoinXpub' | 'MaxSecuritizationPercentExceeded' | 'InvalidBondType' | 'BitcoinUtxoNotFound' | 'InsufficientSatoshisBonded' | 'NoBitcoinPricesAvailable' | 'InvalidBitcoinScript' | 'InvalidXpubkey' | 'WrongXpubNetwork' | 'UnsafeXpubkey' | 'UnableToDeriveVaultXpubChild' | 'BitcoinConversionFailed' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'FeeExceedsBondAmount' | 'NoVaultBitcoinPubkeysAvailable' | 'TermsModificationOverflow' | 'TermsChangeAlreadyScheduled' | 'InternalError' | 'UnableToGenerateVaultBitcoinPubkey' | 'UnableToDecodeVaultBitcoinPubkey';
1948
2016
  }
1949
- /** @name ArgonPrimitivesBond (268) */
2017
+ /** @name ArgonPrimitivesBond (274) */
1950
2018
  interface ArgonPrimitivesBond extends Struct {
1951
2019
  readonly bondType: ArgonPrimitivesBondBondType;
1952
2020
  readonly vaultId: Compact<u32>;
@@ -1958,7 +2026,7 @@ declare module '@polkadot/types/lookup' {
1958
2026
  readonly startBlock: Compact<u32>;
1959
2027
  readonly expiration: ArgonPrimitivesBondBondExpiration;
1960
2028
  }
1961
- /** @name PalletBondUtxoState (271) */
2029
+ /** @name PalletBondUtxoState (277) */
1962
2030
  interface PalletBondUtxoState extends Struct {
1963
2031
  readonly bondId: Compact<u64>;
1964
2032
  readonly satoshis: Compact<u64>;
@@ -1972,7 +2040,7 @@ declare module '@polkadot/types/lookup' {
1972
2040
  readonly utxoScriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
1973
2041
  readonly isVerified: bool;
1974
2042
  }
1975
- /** @name PalletBondUtxoCosignRequest (275) */
2043
+ /** @name PalletBondUtxoCosignRequest (281) */
1976
2044
  interface PalletBondUtxoCosignRequest extends Struct {
1977
2045
  readonly bondId: Compact<u64>;
1978
2046
  readonly vaultId: Compact<u32>;
@@ -1981,7 +2049,7 @@ declare module '@polkadot/types/lookup' {
1981
2049
  readonly toScriptPubkey: Bytes;
1982
2050
  readonly redemptionPrice: Compact<u128>;
1983
2051
  }
1984
- /** @name PalletBondError (279) */
2052
+ /** @name PalletBondError (285) */
1985
2053
  interface PalletBondError extends Enum {
1986
2054
  readonly isBondNotFound: boolean;
1987
2055
  readonly isNoMoreBondIds: boolean;
@@ -2015,7 +2083,7 @@ declare module '@polkadot/types/lookup' {
2015
2083
  readonly asGenericBondError: ArgonPrimitivesBondBondError;
2016
2084
  readonly type: 'BondNotFound' | 'NoMoreBondIds' | 'MinimumBondAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'InsufficientBitcoinsForMining' | 'AccountWouldGoBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'BondRedemptionNotLocked' | 'BitcoinUnlockInitiationDeadlinePassed' | 'BitcoinFeeTooHigh' | 'InvalidBondType' | 'BitcoinUtxoNotFound' | 'BitcoinUnableToBeDecodedForUnlock' | 'BitcoinSignatureUnableToBeDecoded' | 'BitcoinPubkeyUnableToBeDecoded' | 'BitcoinInvalidCosignature' | 'InsufficientSatoshisBonded' | 'NoBitcoinPricesAvailable' | 'InvalidBitcoinScript' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'FeeExceedsBondAmount' | 'GenericBondError';
2017
2085
  }
2018
- /** @name PalletNotariesError (291) */
2086
+ /** @name PalletNotariesError (297) */
2019
2087
  interface PalletNotariesError extends Enum {
2020
2088
  readonly isProposalNotFound: boolean;
2021
2089
  readonly isMaxNotariesExceeded: boolean;
@@ -2028,7 +2096,7 @@ declare module '@polkadot/types/lookup' {
2028
2096
  readonly isInvalidNotary: boolean;
2029
2097
  readonly type: 'ProposalNotFound' | 'MaxNotariesExceeded' | 'MaxProposalsPerBlockExceeded' | 'NotAnActiveNotary' | 'InvalidNotaryOperator' | 'NoMoreNotaryIds' | 'EffectiveTickTooSoon' | 'TooManyKeys' | 'InvalidNotary';
2030
2098
  }
2031
- /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (295) */
2099
+ /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (301) */
2032
2100
  interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
2033
2101
  readonly notebookNumber: Compact<u32>;
2034
2102
  readonly tick: Compact<u32>;
@@ -2036,18 +2104,18 @@ declare module '@polkadot/types/lookup' {
2036
2104
  readonly secretHash: H256;
2037
2105
  readonly parentSecret: Option<H256>;
2038
2106
  }
2039
- /** @name ArgonPrimitivesDigestsNotebookDigest (297) */
2107
+ /** @name ArgonPrimitivesDigestsNotebookDigest (303) */
2040
2108
  interface ArgonPrimitivesDigestsNotebookDigest extends Struct {
2041
2109
  readonly notebooks: Vec<ArgonPrimitivesDigestsNotebookDigestRecord>;
2042
2110
  }
2043
- /** @name ArgonPrimitivesDigestsNotebookDigestRecord (299) */
2111
+ /** @name ArgonPrimitivesDigestsNotebookDigestRecord (305) */
2044
2112
  interface ArgonPrimitivesDigestsNotebookDigestRecord extends Struct {
2045
2113
  readonly notaryId: Compact<u32>;
2046
2114
  readonly notebookNumber: Compact<u32>;
2047
2115
  readonly tick: Compact<u32>;
2048
2116
  readonly auditFirstFailure: Option<ArgonNotaryAuditErrorVerifyError>;
2049
2117
  }
2050
- /** @name PalletNotebookError (302) */
2118
+ /** @name PalletNotebookError (308) */
2051
2119
  interface PalletNotebookError extends Enum {
2052
2120
  readonly isDuplicateNotebookNumber: boolean;
2053
2121
  readonly isMissingNotebookNumber: boolean;
@@ -2062,17 +2130,17 @@ declare module '@polkadot/types/lookup' {
2062
2130
  readonly isInternalError: boolean;
2063
2131
  readonly type: 'DuplicateNotebookNumber' | 'MissingNotebookNumber' | 'NotebookTickAlreadyUsed' | 'InvalidNotebookSignature' | 'InvalidSecretProvided' | 'CouldNotDecodeNotebook' | 'DuplicateNotebookDigest' | 'MissingNotebookDigest' | 'InvalidNotebookDigest' | 'MultipleNotebookInherentsProvided' | 'InternalError';
2064
2132
  }
2065
- /** @name PalletChainTransferQueuedTransferOut (303) */
2133
+ /** @name PalletChainTransferQueuedTransferOut (309) */
2066
2134
  interface PalletChainTransferQueuedTransferOut extends Struct {
2067
2135
  readonly accountId: AccountId32;
2068
2136
  readonly amount: u128;
2069
2137
  readonly expirationTick: u32;
2070
2138
  readonly notaryId: u32;
2071
2139
  }
2072
- /** @name FrameSupportPalletId (308) */
2140
+ /** @name FrameSupportPalletId (314) */
2073
2141
  interface FrameSupportPalletId extends U8aFixed {
2074
2142
  }
2075
- /** @name PalletChainTransferError (309) */
2143
+ /** @name PalletChainTransferError (315) */
2076
2144
  interface PalletChainTransferError extends Enum {
2077
2145
  readonly isMaxBlockTransfersExceeded: boolean;
2078
2146
  readonly isInsufficientFunds: boolean;
@@ -2083,7 +2151,7 @@ declare module '@polkadot/types/lookup' {
2083
2151
  readonly isNotaryLocked: boolean;
2084
2152
  readonly type: 'MaxBlockTransfersExceeded' | 'InsufficientFunds' | 'InsufficientNotarizedFunds' | 'InvalidOrDuplicatedLocalchainTransfer' | 'NotebookIncludesExpiredLocalchainTransfer' | 'InvalidNotaryUsedForTransfer' | 'NotaryLocked';
2085
2153
  }
2086
- /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (314) */
2154
+ /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (320) */
2087
2155
  interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
2088
2156
  readonly notaryId: Compact<u32>;
2089
2157
  readonly notebookNumber: Compact<u32>;
@@ -2091,17 +2159,17 @@ declare module '@polkadot/types/lookup' {
2091
2159
  readonly blockVotesCount: Compact<u32>;
2092
2160
  readonly blockVotingPower: Compact<u128>;
2093
2161
  }
2094
- /** @name ArgonPrimitivesDigestsBlockVoteDigest (316) */
2162
+ /** @name ArgonPrimitivesDigestsBlockVoteDigest (322) */
2095
2163
  interface ArgonPrimitivesDigestsBlockVoteDigest extends Struct {
2096
2164
  readonly votingPower: Compact<u128>;
2097
2165
  readonly votesCount: Compact<u32>;
2098
2166
  }
2099
- /** @name PalletBlockSealSpecError (320) */
2167
+ /** @name PalletBlockSealSpecError (326) */
2100
2168
  interface PalletBlockSealSpecError extends Enum {
2101
2169
  readonly isMaxNotebooksAtTickExceeded: boolean;
2102
2170
  readonly type: 'MaxNotebooksAtTickExceeded';
2103
2171
  }
2104
- /** @name PalletDataDomainError (323) */
2172
+ /** @name PalletDataDomainError (329) */
2105
2173
  interface PalletDataDomainError extends Enum {
2106
2174
  readonly isDomainNotRegistered: boolean;
2107
2175
  readonly isNotDomainOwner: boolean;
@@ -2110,7 +2178,7 @@ declare module '@polkadot/types/lookup' {
2110
2178
  readonly isAccountDecodingError: boolean;
2111
2179
  readonly type: 'DomainNotRegistered' | 'NotDomainOwner' | 'FailedToAddToAddressHistory' | 'FailedToAddExpiringDomain' | 'AccountDecodingError';
2112
2180
  }
2113
- /** @name PalletPriceIndexError (324) */
2181
+ /** @name PalletPriceIndexError (330) */
2114
2182
  interface PalletPriceIndexError extends Enum {
2115
2183
  readonly isNotAuthorizedOperator: boolean;
2116
2184
  readonly isMissingValue: boolean;
@@ -2118,10 +2186,10 @@ declare module '@polkadot/types/lookup' {
2118
2186
  readonly isMaxPriceChangePerTickExceeded: boolean;
2119
2187
  readonly type: 'NotAuthorizedOperator' | 'MissingValue' | 'PricesTooOld' | 'MaxPriceChangePerTickExceeded';
2120
2188
  }
2121
- /** @name SpCoreCryptoKeyTypeId (329) */
2189
+ /** @name SpCoreCryptoKeyTypeId (335) */
2122
2190
  interface SpCoreCryptoKeyTypeId extends U8aFixed {
2123
2191
  }
2124
- /** @name PalletSessionError (330) */
2192
+ /** @name PalletSessionError (336) */
2125
2193
  interface PalletSessionError extends Enum {
2126
2194
  readonly isInvalidProof: boolean;
2127
2195
  readonly isNoAssociatedValidatorId: boolean;
@@ -2130,16 +2198,16 @@ declare module '@polkadot/types/lookup' {
2130
2198
  readonly isNoAccount: boolean;
2131
2199
  readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
2132
2200
  }
2133
- /** @name ArgonPrimitivesProvidersBlockSealerInfo (331) */
2201
+ /** @name ArgonPrimitivesProvidersBlockSealerInfo (337) */
2134
2202
  interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
2135
2203
  readonly blockAuthorAccountId: AccountId32;
2136
2204
  readonly blockVoteRewardsAccount: Option<AccountId32>;
2137
2205
  }
2138
- /** @name ArgonPrimitivesDigestsParentVotingKeyDigest (332) */
2206
+ /** @name ArgonPrimitivesDigestsParentVotingKeyDigest (338) */
2139
2207
  interface ArgonPrimitivesDigestsParentVotingKeyDigest extends Struct {
2140
2208
  readonly parentVotingKey: Option<H256>;
2141
2209
  }
2142
- /** @name PalletBlockSealError (333) */
2210
+ /** @name PalletBlockSealError (339) */
2143
2211
  interface PalletBlockSealError extends Enum {
2144
2212
  readonly isInvalidVoteSealStrength: boolean;
2145
2213
  readonly isInvalidSubmitter: boolean;
@@ -2162,9 +2230,9 @@ declare module '@polkadot/types/lookup' {
2162
2230
  readonly isBlockVoteInvalidSignature: boolean;
2163
2231
  readonly type: 'InvalidVoteSealStrength' | 'InvalidSubmitter' | 'UnableToDecodeVoteAccount' | 'UnregisteredBlockAuthor' | 'InvalidBlockVoteProof' | 'NoGrandparentVoteMinimum' | 'DuplicateBlockSealProvided' | 'InsufficientVotingPower' | 'ParentVotingKeyNotFound' | 'InvalidVoteGrandparentHash' | 'IneligibleNotebookUsed' | 'NoEligibleVotingRoot' | 'UnregisteredDataDomain' | 'InvalidDataDomainAccount' | 'InvalidAuthoritySignature' | 'CouldNotDecodeVote' | 'MaxNotebooksAtTickExceeded' | 'NoClosestMinerFoundForVote' | 'BlockVoteInvalidSignature';
2164
2232
  }
2165
- /** @name PalletBlockRewardsError (335) */
2233
+ /** @name PalletBlockRewardsError (341) */
2166
2234
  type PalletBlockRewardsError = Null;
2167
- /** @name PalletGrandpaStoredState (336) */
2235
+ /** @name PalletGrandpaStoredState (342) */
2168
2236
  interface PalletGrandpaStoredState extends Enum {
2169
2237
  readonly isLive: boolean;
2170
2238
  readonly isPendingPause: boolean;
@@ -2180,14 +2248,14 @@ declare module '@polkadot/types/lookup' {
2180
2248
  } & Struct;
2181
2249
  readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
2182
2250
  }
2183
- /** @name PalletGrandpaStoredPendingChange (337) */
2251
+ /** @name PalletGrandpaStoredPendingChange (343) */
2184
2252
  interface PalletGrandpaStoredPendingChange extends Struct {
2185
2253
  readonly scheduledAt: u32;
2186
2254
  readonly delay: u32;
2187
2255
  readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
2188
2256
  readonly forced: Option<u32>;
2189
2257
  }
2190
- /** @name PalletGrandpaError (340) */
2258
+ /** @name PalletGrandpaError (346) */
2191
2259
  interface PalletGrandpaError extends Enum {
2192
2260
  readonly isPauseFailed: boolean;
2193
2261
  readonly isResumeFailed: boolean;
@@ -2198,44 +2266,44 @@ declare module '@polkadot/types/lookup' {
2198
2266
  readonly isDuplicateOffenceReport: boolean;
2199
2267
  readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
2200
2268
  }
2201
- /** @name SpStakingOffenceOffenceDetails (341) */
2269
+ /** @name SpStakingOffenceOffenceDetails (347) */
2202
2270
  interface SpStakingOffenceOffenceDetails extends Struct {
2203
2271
  readonly offender: ITuple<[AccountId32, PalletMiningSlotMinerHistory]>;
2204
2272
  readonly reporters: Vec<AccountId32>;
2205
2273
  }
2206
- /** @name PalletMiningSlotMinerHistory (343) */
2274
+ /** @name PalletMiningSlotMinerHistory (349) */
2207
2275
  interface PalletMiningSlotMinerHistory extends Struct {
2208
2276
  readonly authorityIndex: u32;
2209
2277
  }
2210
- /** @name PalletMintError (348) */
2278
+ /** @name PalletMintError (354) */
2211
2279
  interface PalletMintError extends Enum {
2212
2280
  readonly isTooManyPendingMints: boolean;
2213
2281
  readonly type: 'TooManyPendingMints';
2214
2282
  }
2215
- /** @name PalletBalancesBalanceLock (350) */
2283
+ /** @name PalletBalancesBalanceLock (356) */
2216
2284
  interface PalletBalancesBalanceLock extends Struct {
2217
2285
  readonly id: U8aFixed;
2218
2286
  readonly amount: u128;
2219
2287
  readonly reasons: PalletBalancesReasons;
2220
2288
  }
2221
- /** @name PalletBalancesReasons (351) */
2289
+ /** @name PalletBalancesReasons (357) */
2222
2290
  interface PalletBalancesReasons extends Enum {
2223
2291
  readonly isFee: boolean;
2224
2292
  readonly isMisc: boolean;
2225
2293
  readonly isAll: boolean;
2226
2294
  readonly type: 'Fee' | 'Misc' | 'All';
2227
2295
  }
2228
- /** @name PalletBalancesReserveData (354) */
2296
+ /** @name PalletBalancesReserveData (360) */
2229
2297
  interface PalletBalancesReserveData extends Struct {
2230
2298
  readonly id: U8aFixed;
2231
2299
  readonly amount: u128;
2232
2300
  }
2233
- /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (357) */
2301
+ /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (363) */
2234
2302
  interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
2235
2303
  readonly id: ArgonNodeRuntimeRuntimeHoldReason;
2236
2304
  readonly amount: u128;
2237
2305
  }
2238
- /** @name ArgonNodeRuntimeRuntimeHoldReason (358) */
2306
+ /** @name ArgonNodeRuntimeRuntimeHoldReason (364) */
2239
2307
  interface ArgonNodeRuntimeRuntimeHoldReason extends Enum {
2240
2308
  readonly isMiningSlot: boolean;
2241
2309
  readonly asMiningSlot: PalletMiningSlotHoldReason;
@@ -2247,44 +2315,44 @@ declare module '@polkadot/types/lookup' {
2247
2315
  readonly asBlockRewards: PalletBlockRewardsHoldReason;
2248
2316
  readonly type: 'MiningSlot' | 'Vaults' | 'Bonds' | 'BlockRewards';
2249
2317
  }
2250
- /** @name PalletMiningSlotHoldReason (359) */
2318
+ /** @name PalletMiningSlotHoldReason (365) */
2251
2319
  interface PalletMiningSlotHoldReason extends Enum {
2252
2320
  readonly isRegisterAsMiner: boolean;
2253
2321
  readonly type: 'RegisterAsMiner';
2254
2322
  }
2255
- /** @name PalletVaultsHoldReason (360) */
2323
+ /** @name PalletVaultsHoldReason (366) */
2256
2324
  interface PalletVaultsHoldReason extends Enum {
2257
2325
  readonly isEnterVault: boolean;
2258
2326
  readonly isBondFee: boolean;
2259
2327
  readonly type: 'EnterVault' | 'BondFee';
2260
2328
  }
2261
- /** @name PalletBondHoldReason (361) */
2329
+ /** @name PalletBondHoldReason (367) */
2262
2330
  interface PalletBondHoldReason extends Enum {
2263
2331
  readonly isUnlockingBitcoin: boolean;
2264
2332
  readonly type: 'UnlockingBitcoin';
2265
2333
  }
2266
- /** @name PalletBlockRewardsHoldReason (362) */
2334
+ /** @name PalletBlockRewardsHoldReason (368) */
2267
2335
  interface PalletBlockRewardsHoldReason extends Enum {
2268
2336
  readonly isMaturationPeriod: boolean;
2269
2337
  readonly type: 'MaturationPeriod';
2270
2338
  }
2271
- /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (365) */
2339
+ /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (371) */
2272
2340
  interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
2273
2341
  readonly id: ArgonNodeRuntimeRuntimeFreezeReason;
2274
2342
  readonly amount: u128;
2275
2343
  }
2276
- /** @name ArgonNodeRuntimeRuntimeFreezeReason (366) */
2344
+ /** @name ArgonNodeRuntimeRuntimeFreezeReason (372) */
2277
2345
  interface ArgonNodeRuntimeRuntimeFreezeReason extends Enum {
2278
2346
  readonly isBlockRewards: boolean;
2279
2347
  readonly asBlockRewards: PalletBlockRewardsFreezeReason;
2280
2348
  readonly type: 'BlockRewards';
2281
2349
  }
2282
- /** @name PalletBlockRewardsFreezeReason (367) */
2350
+ /** @name PalletBlockRewardsFreezeReason (373) */
2283
2351
  interface PalletBlockRewardsFreezeReason extends Enum {
2284
2352
  readonly isMaturationPeriod: boolean;
2285
2353
  readonly type: 'MaturationPeriod';
2286
2354
  }
2287
- /** @name PalletBalancesError (369) */
2355
+ /** @name PalletBalancesError (375) */
2288
2356
  interface PalletBalancesError extends Enum {
2289
2357
  readonly isVestingBalance: boolean;
2290
2358
  readonly isLiquidityRestrictions: boolean;
@@ -2300,7 +2368,7 @@ declare module '@polkadot/types/lookup' {
2300
2368
  readonly isDeltaZero: boolean;
2301
2369
  readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
2302
2370
  }
2303
- /** @name PalletTxPauseError (371) */
2371
+ /** @name PalletTxPauseError (377) */
2304
2372
  interface PalletTxPauseError extends Enum {
2305
2373
  readonly isIsPaused: boolean;
2306
2374
  readonly isIsUnpaused: boolean;
@@ -2308,43 +2376,48 @@ declare module '@polkadot/types/lookup' {
2308
2376
  readonly isNotFound: boolean;
2309
2377
  readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
2310
2378
  }
2311
- /** @name PalletTransactionPaymentReleases (372) */
2379
+ /** @name PalletTransactionPaymentReleases (378) */
2312
2380
  interface PalletTransactionPaymentReleases extends Enum {
2313
2381
  readonly isV1Ancient: boolean;
2314
2382
  readonly isV2: boolean;
2315
2383
  readonly type: 'V1Ancient' | 'V2';
2316
2384
  }
2317
- /** @name PalletSudoError (373) */
2385
+ /** @name PalletUtilityError (379) */
2386
+ interface PalletUtilityError extends Enum {
2387
+ readonly isTooManyCalls: boolean;
2388
+ readonly type: 'TooManyCalls';
2389
+ }
2390
+ /** @name PalletSudoError (380) */
2318
2391
  interface PalletSudoError extends Enum {
2319
2392
  readonly isRequireSudo: boolean;
2320
2393
  readonly type: 'RequireSudo';
2321
2394
  }
2322
- /** @name FrameSystemExtensionsCheckNonZeroSender (376) */
2395
+ /** @name FrameSystemExtensionsCheckNonZeroSender (383) */
2323
2396
  type FrameSystemExtensionsCheckNonZeroSender = Null;
2324
- /** @name FrameSystemExtensionsCheckSpecVersion (377) */
2397
+ /** @name FrameSystemExtensionsCheckSpecVersion (384) */
2325
2398
  type FrameSystemExtensionsCheckSpecVersion = Null;
2326
- /** @name FrameSystemExtensionsCheckTxVersion (378) */
2399
+ /** @name FrameSystemExtensionsCheckTxVersion (385) */
2327
2400
  type FrameSystemExtensionsCheckTxVersion = Null;
2328
- /** @name FrameSystemExtensionsCheckGenesis (379) */
2401
+ /** @name FrameSystemExtensionsCheckGenesis (386) */
2329
2402
  type FrameSystemExtensionsCheckGenesis = Null;
2330
- /** @name FrameSystemExtensionsCheckNonce (382) */
2403
+ /** @name FrameSystemExtensionsCheckNonce (389) */
2331
2404
  interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
2332
2405
  }
2333
- /** @name FrameSystemExtensionsCheckWeight (383) */
2406
+ /** @name FrameSystemExtensionsCheckWeight (390) */
2334
2407
  type FrameSystemExtensionsCheckWeight = Null;
2335
- /** @name PalletTransactionPaymentChargeTransactionPayment (384) */
2408
+ /** @name PalletTransactionPaymentChargeTransactionPayment (391) */
2336
2409
  interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
2337
2410
  }
2338
- /** @name FrameMetadataHashExtensionCheckMetadataHash (385) */
2411
+ /** @name FrameMetadataHashExtensionCheckMetadataHash (392) */
2339
2412
  interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
2340
2413
  readonly mode: FrameMetadataHashExtensionMode;
2341
2414
  }
2342
- /** @name FrameMetadataHashExtensionMode (386) */
2415
+ /** @name FrameMetadataHashExtensionMode (393) */
2343
2416
  interface FrameMetadataHashExtensionMode extends Enum {
2344
2417
  readonly isDisabled: boolean;
2345
2418
  readonly isEnabled: boolean;
2346
2419
  readonly type: 'Disabled' | 'Enabled';
2347
2420
  }
2348
- /** @name ArgonNodeRuntimeRuntime (388) */
2421
+ /** @name ArgonNodeRuntimeRuntime (395) */
2349
2422
  type ArgonNodeRuntimeRuntime = Null;
2350
2423
  }