@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.
- package/lib/cjs/interfaces/augment-api-consts.d.ts +39 -33
- package/lib/cjs/interfaces/augment-api-errors.d.ts +57 -51
- package/lib/cjs/interfaces/augment-api-events.d.ts +102 -68
- package/lib/cjs/interfaces/augment-api-query.d.ts +65 -65
- package/lib/cjs/interfaces/augment-api-tx.d.ts +253 -157
- package/lib/cjs/interfaces/lookup.d.ts +217 -140
- package/lib/cjs/interfaces/lookup.js +217 -140
- package/lib/cjs/interfaces/lookup.js.map +1 -1
- package/lib/cjs/interfaces/registry.d.ts +7 -1
- package/lib/cjs/interfaces/types-lookup.d.ts +213 -140
- package/lib/cjs/package.json +3 -0
- package/lib/esm/interfaces/augment-api-consts.d.ts +39 -33
- package/lib/esm/interfaces/augment-api-errors.d.ts +57 -51
- package/lib/esm/interfaces/augment-api-events.d.ts +102 -68
- package/lib/esm/interfaces/augment-api-query.d.ts +65 -65
- package/lib/esm/interfaces/augment-api-tx.d.ts +253 -157
- package/lib/esm/interfaces/lookup.d.ts +217 -140
- package/lib/esm/interfaces/lookup.js +217 -140
- package/lib/esm/interfaces/lookup.js.map +1 -1
- package/lib/esm/interfaces/registry.d.ts +7 -1
- package/lib/esm/interfaces/types-lookup.d.ts +213 -140
- package/lib/tsconfig-cjs.tsbuildinfo +1 -1
- package/lib/tsconfig-types.tsbuildinfo +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/types/interfaces/augment-api-consts.d.ts +39 -33
- package/lib/types/interfaces/augment-api-errors.d.ts +57 -51
- package/lib/types/interfaces/augment-api-events.d.ts +102 -68
- package/lib/types/interfaces/augment-api-query.d.ts +65 -65
- package/lib/types/interfaces/augment-api-tx.d.ts +253 -157
- package/lib/types/interfaces/lookup.d.ts +217 -140
- package/lib/types/interfaces/registry.d.ts +7 -1
- package/lib/types/interfaces/types-lookup.d.ts +213 -140
- package/package.json +3 -2
|
@@ -804,13 +804,13 @@ declare const _default: {
|
|
|
804
804
|
RewardUnlockError: {
|
|
805
805
|
accountId: string;
|
|
806
806
|
argons: string;
|
|
807
|
-
|
|
807
|
+
ownership: string;
|
|
808
808
|
error: string;
|
|
809
809
|
};
|
|
810
810
|
RewardCreateError: {
|
|
811
811
|
accountId: string;
|
|
812
812
|
argons: string;
|
|
813
|
-
|
|
813
|
+
ownership: string;
|
|
814
814
|
error: string;
|
|
815
815
|
};
|
|
816
816
|
};
|
|
@@ -820,7 +820,7 @@ declare const _default: {
|
|
|
820
820
|
**/
|
|
821
821
|
ArgonPrimitivesBlockSealBlockPayout: {
|
|
822
822
|
accountId: string;
|
|
823
|
-
|
|
823
|
+
ownership: string;
|
|
824
824
|
argons: string;
|
|
825
825
|
};
|
|
826
826
|
/**
|
|
@@ -1006,7 +1006,27 @@ declare const _default: {
|
|
|
1006
1006
|
};
|
|
1007
1007
|
};
|
|
1008
1008
|
/**
|
|
1009
|
-
* Lookup107:
|
|
1009
|
+
* Lookup107: pallet_utility::pallet::Event
|
|
1010
|
+
**/
|
|
1011
|
+
PalletUtilityEvent: {
|
|
1012
|
+
_enum: {
|
|
1013
|
+
BatchInterrupted: {
|
|
1014
|
+
index: string;
|
|
1015
|
+
error: string;
|
|
1016
|
+
};
|
|
1017
|
+
BatchCompleted: string;
|
|
1018
|
+
BatchCompletedWithErrors: string;
|
|
1019
|
+
ItemCompleted: string;
|
|
1020
|
+
ItemFailed: {
|
|
1021
|
+
error: string;
|
|
1022
|
+
};
|
|
1023
|
+
DispatchedAs: {
|
|
1024
|
+
result: string;
|
|
1025
|
+
};
|
|
1026
|
+
};
|
|
1027
|
+
};
|
|
1028
|
+
/**
|
|
1029
|
+
* Lookup108: pallet_sudo::pallet::Event<T>
|
|
1010
1030
|
**/
|
|
1011
1031
|
PalletSudoEvent: {
|
|
1012
1032
|
_enum: {
|
|
@@ -1027,7 +1047,7 @@ declare const _default: {
|
|
|
1027
1047
|
};
|
|
1028
1048
|
};
|
|
1029
1049
|
/**
|
|
1030
|
-
*
|
|
1050
|
+
* Lookup110: frame_system::Phase
|
|
1031
1051
|
**/
|
|
1032
1052
|
FrameSystemPhase: {
|
|
1033
1053
|
_enum: {
|
|
@@ -1037,21 +1057,21 @@ declare const _default: {
|
|
|
1037
1057
|
};
|
|
1038
1058
|
};
|
|
1039
1059
|
/**
|
|
1040
|
-
*
|
|
1060
|
+
* Lookup114: frame_system::LastRuntimeUpgradeInfo
|
|
1041
1061
|
**/
|
|
1042
1062
|
FrameSystemLastRuntimeUpgradeInfo: {
|
|
1043
1063
|
specVersion: string;
|
|
1044
1064
|
specName: string;
|
|
1045
1065
|
};
|
|
1046
1066
|
/**
|
|
1047
|
-
*
|
|
1067
|
+
* Lookup115: frame_system::CodeUpgradeAuthorization<T>
|
|
1048
1068
|
**/
|
|
1049
1069
|
FrameSystemCodeUpgradeAuthorization: {
|
|
1050
1070
|
codeHash: string;
|
|
1051
1071
|
checkVersion: string;
|
|
1052
1072
|
};
|
|
1053
1073
|
/**
|
|
1054
|
-
*
|
|
1074
|
+
* Lookup116: frame_system::pallet::Call<T>
|
|
1055
1075
|
**/
|
|
1056
1076
|
FrameSystemCall: {
|
|
1057
1077
|
_enum: {
|
|
@@ -1096,7 +1116,7 @@ declare const _default: {
|
|
|
1096
1116
|
};
|
|
1097
1117
|
};
|
|
1098
1118
|
/**
|
|
1099
|
-
*
|
|
1119
|
+
* Lookup120: frame_system::limits::BlockWeights
|
|
1100
1120
|
**/
|
|
1101
1121
|
FrameSystemLimitsBlockWeights: {
|
|
1102
1122
|
baseBlock: string;
|
|
@@ -1104,7 +1124,7 @@ declare const _default: {
|
|
|
1104
1124
|
perClass: string;
|
|
1105
1125
|
};
|
|
1106
1126
|
/**
|
|
1107
|
-
*
|
|
1127
|
+
* Lookup121: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
|
1108
1128
|
**/
|
|
1109
1129
|
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
|
|
1110
1130
|
normal: string;
|
|
@@ -1112,7 +1132,7 @@ declare const _default: {
|
|
|
1112
1132
|
mandatory: string;
|
|
1113
1133
|
};
|
|
1114
1134
|
/**
|
|
1115
|
-
*
|
|
1135
|
+
* Lookup122: frame_system::limits::WeightsPerClass
|
|
1116
1136
|
**/
|
|
1117
1137
|
FrameSystemLimitsWeightsPerClass: {
|
|
1118
1138
|
baseExtrinsic: string;
|
|
@@ -1121,13 +1141,13 @@ declare const _default: {
|
|
|
1121
1141
|
reserved: string;
|
|
1122
1142
|
};
|
|
1123
1143
|
/**
|
|
1124
|
-
*
|
|
1144
|
+
* Lookup124: frame_system::limits::BlockLength
|
|
1125
1145
|
**/
|
|
1126
1146
|
FrameSystemLimitsBlockLength: {
|
|
1127
1147
|
max: string;
|
|
1128
1148
|
};
|
|
1129
1149
|
/**
|
|
1130
|
-
*
|
|
1150
|
+
* Lookup125: frame_support::dispatch::PerDispatchClass<T>
|
|
1131
1151
|
**/
|
|
1132
1152
|
FrameSupportDispatchPerDispatchClassU32: {
|
|
1133
1153
|
normal: string;
|
|
@@ -1135,14 +1155,14 @@ declare const _default: {
|
|
|
1135
1155
|
mandatory: string;
|
|
1136
1156
|
};
|
|
1137
1157
|
/**
|
|
1138
|
-
*
|
|
1158
|
+
* Lookup126: sp_weights::RuntimeDbWeight
|
|
1139
1159
|
**/
|
|
1140
1160
|
SpWeightsRuntimeDbWeight: {
|
|
1141
1161
|
read: string;
|
|
1142
1162
|
write: string;
|
|
1143
1163
|
};
|
|
1144
1164
|
/**
|
|
1145
|
-
*
|
|
1165
|
+
* Lookup127: sp_version::RuntimeVersion
|
|
1146
1166
|
**/
|
|
1147
1167
|
SpVersionRuntimeVersion: {
|
|
1148
1168
|
specName: string;
|
|
@@ -1155,13 +1175,13 @@ declare const _default: {
|
|
|
1155
1175
|
stateVersion: string;
|
|
1156
1176
|
};
|
|
1157
1177
|
/**
|
|
1158
|
-
*
|
|
1178
|
+
* Lookup132: frame_system::pallet::Error<T>
|
|
1159
1179
|
**/
|
|
1160
1180
|
FrameSystemError: {
|
|
1161
1181
|
_enum: string[];
|
|
1162
1182
|
};
|
|
1163
1183
|
/**
|
|
1164
|
-
*
|
|
1184
|
+
* Lookup133: pallet_timestamp::pallet::Call<T>
|
|
1165
1185
|
**/
|
|
1166
1186
|
PalletTimestampCall: {
|
|
1167
1187
|
_enum: {
|
|
@@ -1171,7 +1191,7 @@ declare const _default: {
|
|
|
1171
1191
|
};
|
|
1172
1192
|
};
|
|
1173
1193
|
/**
|
|
1174
|
-
*
|
|
1194
|
+
* Lookup135: pallet_multisig::Multisig<BlockNumber, Balance, sp_core::crypto::AccountId32, MaxApprovals>
|
|
1175
1195
|
**/
|
|
1176
1196
|
PalletMultisigMultisig: {
|
|
1177
1197
|
when: string;
|
|
@@ -1180,7 +1200,7 @@ declare const _default: {
|
|
|
1180
1200
|
approvals: string;
|
|
1181
1201
|
};
|
|
1182
1202
|
/**
|
|
1183
|
-
*
|
|
1203
|
+
* Lookup138: pallet_multisig::pallet::Call<T>
|
|
1184
1204
|
**/
|
|
1185
1205
|
PalletMultisigCall: {
|
|
1186
1206
|
_enum: {
|
|
@@ -1211,7 +1231,7 @@ declare const _default: {
|
|
|
1211
1231
|
};
|
|
1212
1232
|
};
|
|
1213
1233
|
/**
|
|
1214
|
-
*
|
|
1234
|
+
* Lookup140: pallet_proxy::pallet::Call<T>
|
|
1215
1235
|
**/
|
|
1216
1236
|
PalletProxyCall: {
|
|
1217
1237
|
_enum: {
|
|
@@ -1264,11 +1284,11 @@ declare const _default: {
|
|
|
1264
1284
|
};
|
|
1265
1285
|
};
|
|
1266
1286
|
/**
|
|
1267
|
-
*
|
|
1287
|
+
* Lookup145: pallet_ticks::pallet::Call<T>
|
|
1268
1288
|
**/
|
|
1269
1289
|
PalletTicksCall: string;
|
|
1270
1290
|
/**
|
|
1271
|
-
*
|
|
1291
|
+
* Lookup146: pallet_mining_slot::pallet::Call<T>
|
|
1272
1292
|
**/
|
|
1273
1293
|
PalletMiningSlotCall: {
|
|
1274
1294
|
_enum: {
|
|
@@ -1279,14 +1299,14 @@ declare const _default: {
|
|
|
1279
1299
|
};
|
|
1280
1300
|
};
|
|
1281
1301
|
/**
|
|
1282
|
-
*
|
|
1302
|
+
* Lookup148: pallet_mining_slot::MiningSlotBid<VaultId, Balance>
|
|
1283
1303
|
**/
|
|
1284
1304
|
PalletMiningSlotMiningSlotBid: {
|
|
1285
1305
|
vaultId: string;
|
|
1286
1306
|
amount: string;
|
|
1287
1307
|
};
|
|
1288
1308
|
/**
|
|
1289
|
-
*
|
|
1309
|
+
* Lookup149: pallet_bitcoin_utxos::pallet::Call<T>
|
|
1290
1310
|
**/
|
|
1291
1311
|
PalletBitcoinUtxosCall: {
|
|
1292
1312
|
_enum: {
|
|
@@ -1303,7 +1323,7 @@ declare const _default: {
|
|
|
1303
1323
|
};
|
|
1304
1324
|
};
|
|
1305
1325
|
/**
|
|
1306
|
-
*
|
|
1326
|
+
* Lookup150: argon_primitives::inherents::BitcoinUtxoSync
|
|
1307
1327
|
**/
|
|
1308
1328
|
ArgonPrimitivesInherentsBitcoinUtxoSync: {
|
|
1309
1329
|
spent: string;
|
|
@@ -1312,14 +1332,14 @@ declare const _default: {
|
|
|
1312
1332
|
syncToBlock: string;
|
|
1313
1333
|
};
|
|
1314
1334
|
/**
|
|
1315
|
-
*
|
|
1335
|
+
* Lookup160: argon_primitives::bitcoin::BitcoinBlock
|
|
1316
1336
|
**/
|
|
1317
1337
|
ArgonPrimitivesBitcoinBitcoinBlock: {
|
|
1318
1338
|
blockHeight: string;
|
|
1319
1339
|
blockHash: string;
|
|
1320
1340
|
};
|
|
1321
1341
|
/**
|
|
1322
|
-
*
|
|
1342
|
+
* Lookup161: pallet_vaults::pallet::Call<T>
|
|
1323
1343
|
**/
|
|
1324
1344
|
PalletVaultsCall: {
|
|
1325
1345
|
_enum: {
|
|
@@ -1346,7 +1366,7 @@ declare const _default: {
|
|
|
1346
1366
|
};
|
|
1347
1367
|
};
|
|
1348
1368
|
/**
|
|
1349
|
-
*
|
|
1369
|
+
* Lookup162: pallet_vaults::pallet::VaultConfig<Balance>
|
|
1350
1370
|
**/
|
|
1351
1371
|
PalletVaultsVaultConfig: {
|
|
1352
1372
|
terms: string;
|
|
@@ -1356,7 +1376,7 @@ declare const _default: {
|
|
|
1356
1376
|
securitizationPercent: string;
|
|
1357
1377
|
};
|
|
1358
1378
|
/**
|
|
1359
|
-
*
|
|
1379
|
+
* Lookup163: argon_primitives::bond::VaultTerms<Balance>
|
|
1360
1380
|
**/
|
|
1361
1381
|
ArgonPrimitivesBondVaultTerms: {
|
|
1362
1382
|
bitcoinAnnualPercentRate: string;
|
|
@@ -1366,11 +1386,11 @@ declare const _default: {
|
|
|
1366
1386
|
miningRewardSharingPercentTake: string;
|
|
1367
1387
|
};
|
|
1368
1388
|
/**
|
|
1369
|
-
*
|
|
1389
|
+
* Lookup164: argon_primitives::bitcoin::OpaqueBitcoinXpub
|
|
1370
1390
|
**/
|
|
1371
1391
|
ArgonPrimitivesBitcoinOpaqueBitcoinXpub: string;
|
|
1372
1392
|
/**
|
|
1373
|
-
*
|
|
1393
|
+
* Lookup166: pallet_bond::pallet::Call<T>
|
|
1374
1394
|
**/
|
|
1375
1395
|
PalletBondCall: {
|
|
1376
1396
|
_enum: {
|
|
@@ -1394,11 +1414,11 @@ declare const _default: {
|
|
|
1394
1414
|
};
|
|
1395
1415
|
};
|
|
1396
1416
|
/**
|
|
1397
|
-
*
|
|
1417
|
+
* Lookup167: argon_primitives::bitcoin::CompressedBitcoinPubkey
|
|
1398
1418
|
**/
|
|
1399
1419
|
ArgonPrimitivesBitcoinCompressedBitcoinPubkey: string;
|
|
1400
1420
|
/**
|
|
1401
|
-
*
|
|
1421
|
+
* Lookup171: pallet_notaries::pallet::Call<T>
|
|
1402
1422
|
**/
|
|
1403
1423
|
PalletNotariesCall: {
|
|
1404
1424
|
_enum: {
|
|
@@ -1416,7 +1436,7 @@ declare const _default: {
|
|
|
1416
1436
|
};
|
|
1417
1437
|
};
|
|
1418
1438
|
/**
|
|
1419
|
-
*
|
|
1439
|
+
* Lookup172: pallet_notebook::pallet::Call<T>
|
|
1420
1440
|
**/
|
|
1421
1441
|
PalletNotebookCall: {
|
|
1422
1442
|
_enum: {
|
|
@@ -1426,14 +1446,14 @@ declare const _default: {
|
|
|
1426
1446
|
};
|
|
1427
1447
|
};
|
|
1428
1448
|
/**
|
|
1429
|
-
*
|
|
1449
|
+
* Lookup174: argon_primitives::notebook::SignedNotebookHeader
|
|
1430
1450
|
**/
|
|
1431
1451
|
ArgonPrimitivesNotebookSignedNotebookHeader: {
|
|
1432
1452
|
header: string;
|
|
1433
1453
|
signature: string;
|
|
1434
1454
|
};
|
|
1435
1455
|
/**
|
|
1436
|
-
*
|
|
1456
|
+
* Lookup175: argon_primitives::notebook::NotebookHeader
|
|
1437
1457
|
**/
|
|
1438
1458
|
ArgonPrimitivesNotebookNotebookHeader: {
|
|
1439
1459
|
version: string;
|
|
@@ -1453,7 +1473,7 @@ declare const _default: {
|
|
|
1453
1473
|
dataDomains: string;
|
|
1454
1474
|
};
|
|
1455
1475
|
/**
|
|
1456
|
-
*
|
|
1476
|
+
* Lookup178: argon_primitives::notebook::ChainTransfer
|
|
1457
1477
|
**/
|
|
1458
1478
|
ArgonPrimitivesNotebookChainTransfer: {
|
|
1459
1479
|
_enum: {
|
|
@@ -1467,14 +1487,14 @@ declare const _default: {
|
|
|
1467
1487
|
};
|
|
1468
1488
|
};
|
|
1469
1489
|
/**
|
|
1470
|
-
*
|
|
1490
|
+
* Lookup181: argon_primitives::balance_change::AccountOrigin
|
|
1471
1491
|
**/
|
|
1472
1492
|
ArgonPrimitivesBalanceChangeAccountOrigin: {
|
|
1473
1493
|
notebookNumber: string;
|
|
1474
1494
|
accountUid: string;
|
|
1475
1495
|
};
|
|
1476
1496
|
/**
|
|
1477
|
-
*
|
|
1497
|
+
* Lookup189: pallet_chain_transfer::pallet::Call<T>
|
|
1478
1498
|
**/
|
|
1479
1499
|
PalletChainTransferCall: {
|
|
1480
1500
|
_enum: {
|
|
@@ -1485,7 +1505,7 @@ declare const _default: {
|
|
|
1485
1505
|
};
|
|
1486
1506
|
};
|
|
1487
1507
|
/**
|
|
1488
|
-
*
|
|
1508
|
+
* Lookup190: pallet_block_seal_spec::pallet::Call<T>
|
|
1489
1509
|
**/
|
|
1490
1510
|
PalletBlockSealSpecCall: {
|
|
1491
1511
|
_enum: {
|
|
@@ -1496,7 +1516,7 @@ declare const _default: {
|
|
|
1496
1516
|
};
|
|
1497
1517
|
};
|
|
1498
1518
|
/**
|
|
1499
|
-
*
|
|
1519
|
+
* Lookup191: pallet_data_domain::pallet::Call<T>
|
|
1500
1520
|
**/
|
|
1501
1521
|
PalletDataDomainCall: {
|
|
1502
1522
|
_enum: {
|
|
@@ -1507,7 +1527,7 @@ declare const _default: {
|
|
|
1507
1527
|
};
|
|
1508
1528
|
};
|
|
1509
1529
|
/**
|
|
1510
|
-
*
|
|
1530
|
+
* Lookup192: pallet_price_index::pallet::Call<T>
|
|
1511
1531
|
**/
|
|
1512
1532
|
PalletPriceIndexCall: {
|
|
1513
1533
|
_enum: {
|
|
@@ -1520,7 +1540,7 @@ declare const _default: {
|
|
|
1520
1540
|
};
|
|
1521
1541
|
};
|
|
1522
1542
|
/**
|
|
1523
|
-
*
|
|
1543
|
+
* Lookup193: pallet_price_index::PriceIndex
|
|
1524
1544
|
**/
|
|
1525
1545
|
PalletPriceIndexPriceIndex: {
|
|
1526
1546
|
btcUsdPrice: string;
|
|
@@ -1529,7 +1549,7 @@ declare const _default: {
|
|
|
1529
1549
|
tick: string;
|
|
1530
1550
|
};
|
|
1531
1551
|
/**
|
|
1532
|
-
*
|
|
1552
|
+
* Lookup194: pallet_session::pallet::Call<T>
|
|
1533
1553
|
**/
|
|
1534
1554
|
PalletSessionCall: {
|
|
1535
1555
|
_enum: {
|
|
@@ -1544,18 +1564,18 @@ declare const _default: {
|
|
|
1544
1564
|
};
|
|
1545
1565
|
};
|
|
1546
1566
|
/**
|
|
1547
|
-
*
|
|
1567
|
+
* Lookup195: argon_node_runtime::opaque::SessionKeys
|
|
1548
1568
|
**/
|
|
1549
1569
|
ArgonNodeRuntimeOpaqueSessionKeys: {
|
|
1550
1570
|
grandpa: string;
|
|
1551
1571
|
blockSealAuthority: string;
|
|
1552
1572
|
};
|
|
1553
1573
|
/**
|
|
1554
|
-
*
|
|
1574
|
+
* Lookup196: argon_primitives::block_seal::app::Public
|
|
1555
1575
|
**/
|
|
1556
1576
|
ArgonPrimitivesBlockSealAppPublic: string;
|
|
1557
1577
|
/**
|
|
1558
|
-
*
|
|
1578
|
+
* Lookup197: pallet_block_seal::pallet::Call<T>
|
|
1559
1579
|
**/
|
|
1560
1580
|
PalletBlockSealCall: {
|
|
1561
1581
|
_enum: {
|
|
@@ -1565,7 +1585,7 @@ declare const _default: {
|
|
|
1565
1585
|
};
|
|
1566
1586
|
};
|
|
1567
1587
|
/**
|
|
1568
|
-
*
|
|
1588
|
+
* Lookup198: argon_primitives::inherents::BlockSealInherent
|
|
1569
1589
|
**/
|
|
1570
1590
|
ArgonPrimitivesInherentsBlockSealInherent: {
|
|
1571
1591
|
_enum: {
|
|
@@ -1581,7 +1601,7 @@ declare const _default: {
|
|
|
1581
1601
|
};
|
|
1582
1602
|
};
|
|
1583
1603
|
/**
|
|
1584
|
-
*
|
|
1604
|
+
* Lookup201: argon_primitives::balance_change::MerkleProof
|
|
1585
1605
|
**/
|
|
1586
1606
|
ArgonPrimitivesBalanceChangeMerkleProof: {
|
|
1587
1607
|
proof: string;
|
|
@@ -1589,7 +1609,7 @@ declare const _default: {
|
|
|
1589
1609
|
leafIndex: string;
|
|
1590
1610
|
};
|
|
1591
1611
|
/**
|
|
1592
|
-
*
|
|
1612
|
+
* Lookup203: argon_primitives::block_vote::BlockVoteT<primitive_types::H256>
|
|
1593
1613
|
**/
|
|
1594
1614
|
ArgonPrimitivesBlockVoteBlockVoteT: {
|
|
1595
1615
|
accountId: string;
|
|
@@ -1602,7 +1622,7 @@ declare const _default: {
|
|
|
1602
1622
|
blockRewardsAccountId: string;
|
|
1603
1623
|
};
|
|
1604
1624
|
/**
|
|
1605
|
-
*
|
|
1625
|
+
* Lookup204: sp_runtime::MultiSignature
|
|
1606
1626
|
**/
|
|
1607
1627
|
SpRuntimeMultiSignature: {
|
|
1608
1628
|
_enum: {
|
|
@@ -1612,15 +1632,15 @@ declare const _default: {
|
|
|
1612
1632
|
};
|
|
1613
1633
|
};
|
|
1614
1634
|
/**
|
|
1615
|
-
*
|
|
1635
|
+
* Lookup206: argon_primitives::block_seal::app::Signature
|
|
1616
1636
|
**/
|
|
1617
1637
|
ArgonPrimitivesBlockSealAppSignature: string;
|
|
1618
1638
|
/**
|
|
1619
|
-
*
|
|
1639
|
+
* Lookup207: pallet_block_rewards::pallet::Call<T>
|
|
1620
1640
|
**/
|
|
1621
1641
|
PalletBlockRewardsCall: string;
|
|
1622
1642
|
/**
|
|
1623
|
-
*
|
|
1643
|
+
* Lookup208: pallet_grandpa::pallet::Call<T>
|
|
1624
1644
|
**/
|
|
1625
1645
|
PalletGrandpaCall: {
|
|
1626
1646
|
_enum: {
|
|
@@ -1639,14 +1659,14 @@ declare const _default: {
|
|
|
1639
1659
|
};
|
|
1640
1660
|
};
|
|
1641
1661
|
/**
|
|
1642
|
-
*
|
|
1662
|
+
* Lookup209: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
|
1643
1663
|
**/
|
|
1644
1664
|
SpConsensusGrandpaEquivocationProof: {
|
|
1645
1665
|
setId: string;
|
|
1646
1666
|
equivocation: string;
|
|
1647
1667
|
};
|
|
1648
1668
|
/**
|
|
1649
|
-
*
|
|
1669
|
+
* Lookup210: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
|
1650
1670
|
**/
|
|
1651
1671
|
SpConsensusGrandpaEquivocation: {
|
|
1652
1672
|
_enum: {
|
|
@@ -1655,7 +1675,7 @@ declare const _default: {
|
|
|
1655
1675
|
};
|
|
1656
1676
|
};
|
|
1657
1677
|
/**
|
|
1658
|
-
*
|
|
1678
|
+
* Lookup211: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
1659
1679
|
**/
|
|
1660
1680
|
FinalityGrandpaEquivocationPrevote: {
|
|
1661
1681
|
roundNumber: string;
|
|
@@ -1664,18 +1684,18 @@ declare const _default: {
|
|
|
1664
1684
|
second: string;
|
|
1665
1685
|
};
|
|
1666
1686
|
/**
|
|
1667
|
-
*
|
|
1687
|
+
* Lookup212: finality_grandpa::Prevote<primitive_types::H256, N>
|
|
1668
1688
|
**/
|
|
1669
1689
|
FinalityGrandpaPrevote: {
|
|
1670
1690
|
targetHash: string;
|
|
1671
1691
|
targetNumber: string;
|
|
1672
1692
|
};
|
|
1673
1693
|
/**
|
|
1674
|
-
*
|
|
1694
|
+
* Lookup213: sp_consensus_grandpa::app::Signature
|
|
1675
1695
|
**/
|
|
1676
1696
|
SpConsensusGrandpaAppSignature: string;
|
|
1677
1697
|
/**
|
|
1678
|
-
*
|
|
1698
|
+
* Lookup215: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
1679
1699
|
**/
|
|
1680
1700
|
FinalityGrandpaEquivocationPrecommit: {
|
|
1681
1701
|
roundNumber: string;
|
|
@@ -1684,14 +1704,14 @@ declare const _default: {
|
|
|
1684
1704
|
second: string;
|
|
1685
1705
|
};
|
|
1686
1706
|
/**
|
|
1687
|
-
*
|
|
1707
|
+
* Lookup216: finality_grandpa::Precommit<primitive_types::H256, N>
|
|
1688
1708
|
**/
|
|
1689
1709
|
FinalityGrandpaPrecommit: {
|
|
1690
1710
|
targetHash: string;
|
|
1691
1711
|
targetNumber: string;
|
|
1692
1712
|
};
|
|
1693
1713
|
/**
|
|
1694
|
-
*
|
|
1714
|
+
* Lookup218: sp_session::MembershipProof
|
|
1695
1715
|
**/
|
|
1696
1716
|
SpSessionMembershipProof: {
|
|
1697
1717
|
session: string;
|
|
@@ -1699,11 +1719,11 @@ declare const _default: {
|
|
|
1699
1719
|
validatorCount: string;
|
|
1700
1720
|
};
|
|
1701
1721
|
/**
|
|
1702
|
-
*
|
|
1722
|
+
* Lookup219: pallet_mint::pallet::Call<T>
|
|
1703
1723
|
**/
|
|
1704
1724
|
PalletMintCall: string;
|
|
1705
1725
|
/**
|
|
1706
|
-
*
|
|
1726
|
+
* Lookup220: pallet_balances::pallet::Call<T, I>
|
|
1707
1727
|
**/
|
|
1708
1728
|
PalletBalancesCall: {
|
|
1709
1729
|
_enum: {
|
|
@@ -1748,13 +1768,13 @@ declare const _default: {
|
|
|
1748
1768
|
};
|
|
1749
1769
|
};
|
|
1750
1770
|
/**
|
|
1751
|
-
*
|
|
1771
|
+
* Lookup221: pallet_balances::types::AdjustmentDirection
|
|
1752
1772
|
**/
|
|
1753
1773
|
PalletBalancesAdjustmentDirection: {
|
|
1754
1774
|
_enum: string[];
|
|
1755
1775
|
};
|
|
1756
1776
|
/**
|
|
1757
|
-
*
|
|
1777
|
+
* Lookup223: pallet_tx_pause::pallet::Call<T>
|
|
1758
1778
|
**/
|
|
1759
1779
|
PalletTxPauseCall: {
|
|
1760
1780
|
_enum: {
|
|
@@ -1767,7 +1787,58 @@ declare const _default: {
|
|
|
1767
1787
|
};
|
|
1768
1788
|
};
|
|
1769
1789
|
/**
|
|
1770
|
-
*
|
|
1790
|
+
* Lookup224: pallet_utility::pallet::Call<T>
|
|
1791
|
+
**/
|
|
1792
|
+
PalletUtilityCall: {
|
|
1793
|
+
_enum: {
|
|
1794
|
+
batch: {
|
|
1795
|
+
calls: string;
|
|
1796
|
+
};
|
|
1797
|
+
as_derivative: {
|
|
1798
|
+
index: string;
|
|
1799
|
+
call: string;
|
|
1800
|
+
};
|
|
1801
|
+
batch_all: {
|
|
1802
|
+
calls: string;
|
|
1803
|
+
};
|
|
1804
|
+
dispatch_as: {
|
|
1805
|
+
asOrigin: string;
|
|
1806
|
+
call: string;
|
|
1807
|
+
};
|
|
1808
|
+
force_batch: {
|
|
1809
|
+
calls: string;
|
|
1810
|
+
};
|
|
1811
|
+
with_weight: {
|
|
1812
|
+
call: string;
|
|
1813
|
+
weight: string;
|
|
1814
|
+
};
|
|
1815
|
+
};
|
|
1816
|
+
};
|
|
1817
|
+
/**
|
|
1818
|
+
* Lookup226: argon_node_runtime::OriginCaller
|
|
1819
|
+
**/
|
|
1820
|
+
ArgonNodeRuntimeOriginCaller: {
|
|
1821
|
+
_enum: {
|
|
1822
|
+
system: string;
|
|
1823
|
+
Void: string;
|
|
1824
|
+
};
|
|
1825
|
+
};
|
|
1826
|
+
/**
|
|
1827
|
+
* Lookup227: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
|
|
1828
|
+
**/
|
|
1829
|
+
FrameSupportDispatchRawOrigin: {
|
|
1830
|
+
_enum: {
|
|
1831
|
+
Root: string;
|
|
1832
|
+
Signed: string;
|
|
1833
|
+
None: string;
|
|
1834
|
+
};
|
|
1835
|
+
};
|
|
1836
|
+
/**
|
|
1837
|
+
* Lookup228: sp_core::Void
|
|
1838
|
+
**/
|
|
1839
|
+
SpCoreVoid: string;
|
|
1840
|
+
/**
|
|
1841
|
+
* Lookup229: pallet_sudo::pallet::Call<T>
|
|
1771
1842
|
**/
|
|
1772
1843
|
PalletSudoCall: {
|
|
1773
1844
|
_enum: {
|
|
@@ -1792,13 +1863,13 @@ declare const _default: {
|
|
|
1792
1863
|
};
|
|
1793
1864
|
};
|
|
1794
1865
|
/**
|
|
1795
|
-
*
|
|
1866
|
+
* Lookup231: pallet_multisig::pallet::Error<T>
|
|
1796
1867
|
**/
|
|
1797
1868
|
PalletMultisigError: {
|
|
1798
1869
|
_enum: string[];
|
|
1799
1870
|
};
|
|
1800
1871
|
/**
|
|
1801
|
-
*
|
|
1872
|
+
* Lookup234: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, argon_node_runtime::ProxyType, BlockNumber>
|
|
1802
1873
|
**/
|
|
1803
1874
|
PalletProxyProxyDefinition: {
|
|
1804
1875
|
delegate: string;
|
|
@@ -1806,7 +1877,7 @@ declare const _default: {
|
|
|
1806
1877
|
delay: string;
|
|
1807
1878
|
};
|
|
1808
1879
|
/**
|
|
1809
|
-
*
|
|
1880
|
+
* Lookup238: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
|
|
1810
1881
|
**/
|
|
1811
1882
|
PalletProxyAnnouncement: {
|
|
1812
1883
|
real: string;
|
|
@@ -1814,13 +1885,13 @@ declare const _default: {
|
|
|
1814
1885
|
height: string;
|
|
1815
1886
|
};
|
|
1816
1887
|
/**
|
|
1817
|
-
*
|
|
1888
|
+
* Lookup240: pallet_proxy::pallet::Error<T>
|
|
1818
1889
|
**/
|
|
1819
1890
|
PalletProxyError: {
|
|
1820
1891
|
_enum: string[];
|
|
1821
1892
|
};
|
|
1822
1893
|
/**
|
|
1823
|
-
*
|
|
1894
|
+
* Lookup241: argon_primitives::tick::Ticker
|
|
1824
1895
|
**/
|
|
1825
1896
|
ArgonPrimitivesTickTicker: {
|
|
1826
1897
|
tickDurationMillis: string;
|
|
@@ -1828,11 +1899,11 @@ declare const _default: {
|
|
|
1828
1899
|
escrowExpirationTicks: string;
|
|
1829
1900
|
};
|
|
1830
1901
|
/**
|
|
1831
|
-
*
|
|
1902
|
+
* Lookup243: pallet_ticks::pallet::Error<T>
|
|
1832
1903
|
**/
|
|
1833
1904
|
PalletTicksError: string;
|
|
1834
1905
|
/**
|
|
1835
|
-
*
|
|
1906
|
+
* Lookup251: argon_primitives::block_seal::MiningSlotConfig<BlockNumber>
|
|
1836
1907
|
**/
|
|
1837
1908
|
ArgonPrimitivesBlockSealMiningSlotConfig: {
|
|
1838
1909
|
blocksBeforeBidEndForVrfClose: string;
|
|
@@ -1840,7 +1911,7 @@ declare const _default: {
|
|
|
1840
1911
|
slotBiddingStartBlock: string;
|
|
1841
1912
|
};
|
|
1842
1913
|
/**
|
|
1843
|
-
*
|
|
1914
|
+
* Lookup252: pallet_mining_slot::pallet::Error<T>
|
|
1844
1915
|
**/
|
|
1845
1916
|
PalletMiningSlotError: {
|
|
1846
1917
|
_enum: {
|
|
@@ -1868,13 +1939,13 @@ declare const _default: {
|
|
|
1868
1939
|
};
|
|
1869
1940
|
};
|
|
1870
1941
|
/**
|
|
1871
|
-
*
|
|
1942
|
+
* Lookup253: argon_primitives::bond::BondError
|
|
1872
1943
|
**/
|
|
1873
1944
|
ArgonPrimitivesBondBondError: {
|
|
1874
1945
|
_enum: string[];
|
|
1875
1946
|
};
|
|
1876
1947
|
/**
|
|
1877
|
-
*
|
|
1948
|
+
* Lookup254: argon_primitives::bitcoin::UtxoValue
|
|
1878
1949
|
**/
|
|
1879
1950
|
ArgonPrimitivesBitcoinUtxoValue: {
|
|
1880
1951
|
utxoId: string;
|
|
@@ -1884,7 +1955,7 @@ declare const _default: {
|
|
|
1884
1955
|
watchForSpentUntilHeight: string;
|
|
1885
1956
|
};
|
|
1886
1957
|
/**
|
|
1887
|
-
*
|
|
1958
|
+
* Lookup255: argon_primitives::bitcoin::BitcoinCosignScriptPubkey
|
|
1888
1959
|
**/
|
|
1889
1960
|
ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey: {
|
|
1890
1961
|
_enum: {
|
|
@@ -1894,19 +1965,19 @@ declare const _default: {
|
|
|
1894
1965
|
};
|
|
1895
1966
|
};
|
|
1896
1967
|
/**
|
|
1897
|
-
*
|
|
1968
|
+
* Lookup260: argon_primitives::bitcoin::BitcoinNetwork
|
|
1898
1969
|
**/
|
|
1899
1970
|
ArgonPrimitivesBitcoinBitcoinNetwork: {
|
|
1900
1971
|
_enum: string[];
|
|
1901
1972
|
};
|
|
1902
1973
|
/**
|
|
1903
|
-
*
|
|
1974
|
+
* Lookup263: pallet_bitcoin_utxos::pallet::Error<T>
|
|
1904
1975
|
**/
|
|
1905
1976
|
PalletBitcoinUtxosError: {
|
|
1906
1977
|
_enum: string[];
|
|
1907
1978
|
};
|
|
1908
1979
|
/**
|
|
1909
|
-
*
|
|
1980
|
+
* Lookup264: argon_primitives::bond::Vault<sp_core::crypto::AccountId32, Balance, BlockNumber>
|
|
1910
1981
|
**/
|
|
1911
1982
|
ArgonPrimitivesBondVault: {
|
|
1912
1983
|
operatorAccountId: string;
|
|
@@ -1919,7 +1990,7 @@ declare const _default: {
|
|
|
1919
1990
|
pendingTerms: string;
|
|
1920
1991
|
};
|
|
1921
1992
|
/**
|
|
1922
|
-
*
|
|
1993
|
+
* Lookup265: argon_primitives::bond::VaultArgons<Balance>
|
|
1923
1994
|
**/
|
|
1924
1995
|
ArgonPrimitivesBondVaultArgons: {
|
|
1925
1996
|
annualPercentRate: string;
|
|
@@ -1928,7 +1999,7 @@ declare const _default: {
|
|
|
1928
1999
|
baseFee: string;
|
|
1929
2000
|
};
|
|
1930
2001
|
/**
|
|
1931
|
-
*
|
|
2002
|
+
* Lookup269: argon_primitives::bitcoin::BitcoinXPub
|
|
1932
2003
|
**/
|
|
1933
2004
|
ArgonPrimitivesBitcoinBitcoinXPub: {
|
|
1934
2005
|
publicKey: string;
|
|
@@ -1939,19 +2010,19 @@ declare const _default: {
|
|
|
1939
2010
|
network: string;
|
|
1940
2011
|
};
|
|
1941
2012
|
/**
|
|
1942
|
-
*
|
|
2013
|
+
* Lookup271: argon_primitives::bitcoin::NetworkKind
|
|
1943
2014
|
**/
|
|
1944
2015
|
ArgonPrimitivesBitcoinNetworkKind: {
|
|
1945
2016
|
_enum: string[];
|
|
1946
2017
|
};
|
|
1947
2018
|
/**
|
|
1948
|
-
*
|
|
2019
|
+
* Lookup273: pallet_vaults::pallet::Error<T>
|
|
1949
2020
|
**/
|
|
1950
2021
|
PalletVaultsError: {
|
|
1951
2022
|
_enum: string[];
|
|
1952
2023
|
};
|
|
1953
2024
|
/**
|
|
1954
|
-
*
|
|
2025
|
+
* Lookup274: argon_primitives::bond::Bond<sp_core::crypto::AccountId32, Balance, BlockNumber>
|
|
1955
2026
|
**/
|
|
1956
2027
|
ArgonPrimitivesBond: {
|
|
1957
2028
|
bondType: string;
|
|
@@ -1965,7 +2036,7 @@ declare const _default: {
|
|
|
1965
2036
|
expiration: string;
|
|
1966
2037
|
};
|
|
1967
2038
|
/**
|
|
1968
|
-
*
|
|
2039
|
+
* Lookup277: pallet_bond::pallet::UtxoState
|
|
1969
2040
|
**/
|
|
1970
2041
|
PalletBondUtxoState: {
|
|
1971
2042
|
bondId: string;
|
|
@@ -1981,7 +2052,7 @@ declare const _default: {
|
|
|
1981
2052
|
isVerified: string;
|
|
1982
2053
|
};
|
|
1983
2054
|
/**
|
|
1984
|
-
*
|
|
2055
|
+
* Lookup281: pallet_bond::pallet::UtxoCosignRequest<Balance>
|
|
1985
2056
|
**/
|
|
1986
2057
|
PalletBondUtxoCosignRequest: {
|
|
1987
2058
|
bondId: string;
|
|
@@ -1992,7 +2063,7 @@ declare const _default: {
|
|
|
1992
2063
|
redemptionPrice: string;
|
|
1993
2064
|
};
|
|
1994
2065
|
/**
|
|
1995
|
-
*
|
|
2066
|
+
* Lookup285: pallet_bond::pallet::Error<T>
|
|
1996
2067
|
**/
|
|
1997
2068
|
PalletBondError: {
|
|
1998
2069
|
_enum: {
|
|
@@ -2028,13 +2099,13 @@ declare const _default: {
|
|
|
2028
2099
|
};
|
|
2029
2100
|
};
|
|
2030
2101
|
/**
|
|
2031
|
-
*
|
|
2102
|
+
* Lookup297: pallet_notaries::pallet::Error<T>
|
|
2032
2103
|
**/
|
|
2033
2104
|
PalletNotariesError: {
|
|
2034
2105
|
_enum: string[];
|
|
2035
2106
|
};
|
|
2036
2107
|
/**
|
|
2037
|
-
*
|
|
2108
|
+
* Lookup301: argon_primitives::notary::NotaryNotebookKeyDetails
|
|
2038
2109
|
**/
|
|
2039
2110
|
ArgonPrimitivesNotaryNotaryNotebookKeyDetails: {
|
|
2040
2111
|
notebookNumber: string;
|
|
@@ -2044,13 +2115,13 @@ declare const _default: {
|
|
|
2044
2115
|
parentSecret: string;
|
|
2045
2116
|
};
|
|
2046
2117
|
/**
|
|
2047
|
-
*
|
|
2118
|
+
* Lookup303: argon_primitives::digests::NotebookDigest<argon_notary_audit::error::VerifyError>
|
|
2048
2119
|
**/
|
|
2049
2120
|
ArgonPrimitivesDigestsNotebookDigest: {
|
|
2050
2121
|
notebooks: string;
|
|
2051
2122
|
};
|
|
2052
2123
|
/**
|
|
2053
|
-
*
|
|
2124
|
+
* Lookup305: argon_primitives::digests::NotebookDigestRecord<argon_notary_audit::error::VerifyError>
|
|
2054
2125
|
**/
|
|
2055
2126
|
ArgonPrimitivesDigestsNotebookDigestRecord: {
|
|
2056
2127
|
notaryId: string;
|
|
@@ -2059,13 +2130,13 @@ declare const _default: {
|
|
|
2059
2130
|
auditFirstFailure: string;
|
|
2060
2131
|
};
|
|
2061
2132
|
/**
|
|
2062
|
-
*
|
|
2133
|
+
* Lookup308: pallet_notebook::pallet::Error<T>
|
|
2063
2134
|
**/
|
|
2064
2135
|
PalletNotebookError: {
|
|
2065
2136
|
_enum: string[];
|
|
2066
2137
|
};
|
|
2067
2138
|
/**
|
|
2068
|
-
*
|
|
2139
|
+
* Lookup309: pallet_chain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
|
|
2069
2140
|
**/
|
|
2070
2141
|
PalletChainTransferQueuedTransferOut: {
|
|
2071
2142
|
accountId: string;
|
|
@@ -2074,17 +2145,17 @@ declare const _default: {
|
|
|
2074
2145
|
notaryId: string;
|
|
2075
2146
|
};
|
|
2076
2147
|
/**
|
|
2077
|
-
*
|
|
2148
|
+
* Lookup314: frame_support::PalletId
|
|
2078
2149
|
**/
|
|
2079
2150
|
FrameSupportPalletId: string;
|
|
2080
2151
|
/**
|
|
2081
|
-
*
|
|
2152
|
+
* Lookup315: pallet_chain_transfer::pallet::Error<T>
|
|
2082
2153
|
**/
|
|
2083
2154
|
PalletChainTransferError: {
|
|
2084
2155
|
_enum: string[];
|
|
2085
2156
|
};
|
|
2086
2157
|
/**
|
|
2087
|
-
*
|
|
2158
|
+
* Lookup320: argon_primitives::notary::NotaryNotebookVoteDigestDetails
|
|
2088
2159
|
**/
|
|
2089
2160
|
ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails: {
|
|
2090
2161
|
notaryId: string;
|
|
@@ -2094,65 +2165,65 @@ declare const _default: {
|
|
|
2094
2165
|
blockVotingPower: string;
|
|
2095
2166
|
};
|
|
2096
2167
|
/**
|
|
2097
|
-
*
|
|
2168
|
+
* Lookup322: argon_primitives::digests::BlockVoteDigest
|
|
2098
2169
|
**/
|
|
2099
2170
|
ArgonPrimitivesDigestsBlockVoteDigest: {
|
|
2100
2171
|
votingPower: string;
|
|
2101
2172
|
votesCount: string;
|
|
2102
2173
|
};
|
|
2103
2174
|
/**
|
|
2104
|
-
*
|
|
2175
|
+
* Lookup326: pallet_block_seal_spec::pallet::Error<T>
|
|
2105
2176
|
**/
|
|
2106
2177
|
PalletBlockSealSpecError: {
|
|
2107
2178
|
_enum: string[];
|
|
2108
2179
|
};
|
|
2109
2180
|
/**
|
|
2110
|
-
*
|
|
2181
|
+
* Lookup329: pallet_data_domain::pallet::Error<T>
|
|
2111
2182
|
**/
|
|
2112
2183
|
PalletDataDomainError: {
|
|
2113
2184
|
_enum: string[];
|
|
2114
2185
|
};
|
|
2115
2186
|
/**
|
|
2116
|
-
*
|
|
2187
|
+
* Lookup330: pallet_price_index::pallet::Error<T>
|
|
2117
2188
|
**/
|
|
2118
2189
|
PalletPriceIndexError: {
|
|
2119
2190
|
_enum: string[];
|
|
2120
2191
|
};
|
|
2121
2192
|
/**
|
|
2122
|
-
*
|
|
2193
|
+
* Lookup335: sp_core::crypto::KeyTypeId
|
|
2123
2194
|
**/
|
|
2124
2195
|
SpCoreCryptoKeyTypeId: string;
|
|
2125
2196
|
/**
|
|
2126
|
-
*
|
|
2197
|
+
* Lookup336: pallet_session::pallet::Error<T>
|
|
2127
2198
|
**/
|
|
2128
2199
|
PalletSessionError: {
|
|
2129
2200
|
_enum: string[];
|
|
2130
2201
|
};
|
|
2131
2202
|
/**
|
|
2132
|
-
*
|
|
2203
|
+
* Lookup337: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32>
|
|
2133
2204
|
**/
|
|
2134
2205
|
ArgonPrimitivesProvidersBlockSealerInfo: {
|
|
2135
2206
|
blockAuthorAccountId: string;
|
|
2136
2207
|
blockVoteRewardsAccount: string;
|
|
2137
2208
|
};
|
|
2138
2209
|
/**
|
|
2139
|
-
*
|
|
2210
|
+
* Lookup338: argon_primitives::digests::ParentVotingKeyDigest
|
|
2140
2211
|
**/
|
|
2141
2212
|
ArgonPrimitivesDigestsParentVotingKeyDigest: {
|
|
2142
2213
|
parentVotingKey: string;
|
|
2143
2214
|
};
|
|
2144
2215
|
/**
|
|
2145
|
-
*
|
|
2216
|
+
* Lookup339: pallet_block_seal::pallet::Error<T>
|
|
2146
2217
|
**/
|
|
2147
2218
|
PalletBlockSealError: {
|
|
2148
2219
|
_enum: string[];
|
|
2149
2220
|
};
|
|
2150
2221
|
/**
|
|
2151
|
-
*
|
|
2222
|
+
* Lookup341: pallet_block_rewards::pallet::Error<T>
|
|
2152
2223
|
**/
|
|
2153
2224
|
PalletBlockRewardsError: string;
|
|
2154
2225
|
/**
|
|
2155
|
-
*
|
|
2226
|
+
* Lookup342: pallet_grandpa::StoredState<N>
|
|
2156
2227
|
**/
|
|
2157
2228
|
PalletGrandpaStoredState: {
|
|
2158
2229
|
_enum: {
|
|
@@ -2169,7 +2240,7 @@ declare const _default: {
|
|
|
2169
2240
|
};
|
|
2170
2241
|
};
|
|
2171
2242
|
/**
|
|
2172
|
-
*
|
|
2243
|
+
* Lookup343: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
2173
2244
|
**/
|
|
2174
2245
|
PalletGrandpaStoredPendingChange: {
|
|
2175
2246
|
scheduledAt: string;
|
|
@@ -2178,32 +2249,32 @@ declare const _default: {
|
|
|
2178
2249
|
forced: string;
|
|
2179
2250
|
};
|
|
2180
2251
|
/**
|
|
2181
|
-
*
|
|
2252
|
+
* Lookup346: pallet_grandpa::pallet::Error<T>
|
|
2182
2253
|
**/
|
|
2183
2254
|
PalletGrandpaError: {
|
|
2184
2255
|
_enum: string[];
|
|
2185
2256
|
};
|
|
2186
2257
|
/**
|
|
2187
|
-
*
|
|
2258
|
+
* Lookup347: sp_staking::offence::OffenceDetails<sp_core::crypto::AccountId32, Offender>
|
|
2188
2259
|
**/
|
|
2189
2260
|
SpStakingOffenceOffenceDetails: {
|
|
2190
2261
|
offender: string;
|
|
2191
2262
|
reporters: string;
|
|
2192
2263
|
};
|
|
2193
2264
|
/**
|
|
2194
|
-
*
|
|
2265
|
+
* Lookup349: pallet_mining_slot::MinerHistory
|
|
2195
2266
|
**/
|
|
2196
2267
|
PalletMiningSlotMinerHistory: {
|
|
2197
2268
|
authorityIndex: string;
|
|
2198
2269
|
};
|
|
2199
2270
|
/**
|
|
2200
|
-
*
|
|
2271
|
+
* Lookup354: pallet_mint::pallet::Error<T>
|
|
2201
2272
|
**/
|
|
2202
2273
|
PalletMintError: {
|
|
2203
2274
|
_enum: string[];
|
|
2204
2275
|
};
|
|
2205
2276
|
/**
|
|
2206
|
-
*
|
|
2277
|
+
* Lookup356: pallet_balances::types::BalanceLock<Balance>
|
|
2207
2278
|
**/
|
|
2208
2279
|
PalletBalancesBalanceLock: {
|
|
2209
2280
|
id: string;
|
|
@@ -2211,27 +2282,27 @@ declare const _default: {
|
|
|
2211
2282
|
reasons: string;
|
|
2212
2283
|
};
|
|
2213
2284
|
/**
|
|
2214
|
-
*
|
|
2285
|
+
* Lookup357: pallet_balances::types::Reasons
|
|
2215
2286
|
**/
|
|
2216
2287
|
PalletBalancesReasons: {
|
|
2217
2288
|
_enum: string[];
|
|
2218
2289
|
};
|
|
2219
2290
|
/**
|
|
2220
|
-
*
|
|
2291
|
+
* Lookup360: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
2221
2292
|
**/
|
|
2222
2293
|
PalletBalancesReserveData: {
|
|
2223
2294
|
id: string;
|
|
2224
2295
|
amount: string;
|
|
2225
2296
|
};
|
|
2226
2297
|
/**
|
|
2227
|
-
*
|
|
2298
|
+
* Lookup363: frame_support::traits::tokens::misc::IdAmount<argon_node_runtime::RuntimeHoldReason, Balance>
|
|
2228
2299
|
**/
|
|
2229
2300
|
FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
|
|
2230
2301
|
id: string;
|
|
2231
2302
|
amount: string;
|
|
2232
2303
|
};
|
|
2233
2304
|
/**
|
|
2234
|
-
*
|
|
2305
|
+
* Lookup364: argon_node_runtime::RuntimeHoldReason
|
|
2235
2306
|
**/
|
|
2236
2307
|
ArgonNodeRuntimeRuntimeHoldReason: {
|
|
2237
2308
|
_enum: {
|
|
@@ -2258,38 +2329,38 @@ declare const _default: {
|
|
|
2258
2329
|
};
|
|
2259
2330
|
};
|
|
2260
2331
|
/**
|
|
2261
|
-
*
|
|
2332
|
+
* Lookup365: pallet_mining_slot::pallet::HoldReason
|
|
2262
2333
|
**/
|
|
2263
2334
|
PalletMiningSlotHoldReason: {
|
|
2264
2335
|
_enum: string[];
|
|
2265
2336
|
};
|
|
2266
2337
|
/**
|
|
2267
|
-
*
|
|
2338
|
+
* Lookup366: pallet_vaults::pallet::HoldReason
|
|
2268
2339
|
**/
|
|
2269
2340
|
PalletVaultsHoldReason: {
|
|
2270
2341
|
_enum: string[];
|
|
2271
2342
|
};
|
|
2272
2343
|
/**
|
|
2273
|
-
*
|
|
2344
|
+
* Lookup367: pallet_bond::pallet::HoldReason
|
|
2274
2345
|
**/
|
|
2275
2346
|
PalletBondHoldReason: {
|
|
2276
2347
|
_enum: string[];
|
|
2277
2348
|
};
|
|
2278
2349
|
/**
|
|
2279
|
-
*
|
|
2350
|
+
* Lookup368: pallet_block_rewards::pallet::HoldReason
|
|
2280
2351
|
**/
|
|
2281
2352
|
PalletBlockRewardsHoldReason: {
|
|
2282
2353
|
_enum: string[];
|
|
2283
2354
|
};
|
|
2284
2355
|
/**
|
|
2285
|
-
*
|
|
2356
|
+
* Lookup371: frame_support::traits::tokens::misc::IdAmount<argon_node_runtime::RuntimeFreezeReason, Balance>
|
|
2286
2357
|
**/
|
|
2287
2358
|
FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
|
|
2288
2359
|
id: string;
|
|
2289
2360
|
amount: string;
|
|
2290
2361
|
};
|
|
2291
2362
|
/**
|
|
2292
|
-
*
|
|
2363
|
+
* Lookup372: argon_node_runtime::RuntimeFreezeReason
|
|
2293
2364
|
**/
|
|
2294
2365
|
ArgonNodeRuntimeRuntimeFreezeReason: {
|
|
2295
2366
|
_enum: {
|
|
@@ -2316,77 +2387,83 @@ declare const _default: {
|
|
|
2316
2387
|
};
|
|
2317
2388
|
};
|
|
2318
2389
|
/**
|
|
2319
|
-
*
|
|
2390
|
+
* Lookup373: pallet_block_rewards::pallet::FreezeReason
|
|
2320
2391
|
**/
|
|
2321
2392
|
PalletBlockRewardsFreezeReason: {
|
|
2322
2393
|
_enum: string[];
|
|
2323
2394
|
};
|
|
2324
2395
|
/**
|
|
2325
|
-
*
|
|
2396
|
+
* Lookup375: pallet_balances::pallet::Error<T, I>
|
|
2326
2397
|
**/
|
|
2327
2398
|
PalletBalancesError: {
|
|
2328
2399
|
_enum: string[];
|
|
2329
2400
|
};
|
|
2330
2401
|
/**
|
|
2331
|
-
*
|
|
2402
|
+
* Lookup377: pallet_tx_pause::pallet::Error<T>
|
|
2332
2403
|
**/
|
|
2333
2404
|
PalletTxPauseError: {
|
|
2334
2405
|
_enum: string[];
|
|
2335
2406
|
};
|
|
2336
2407
|
/**
|
|
2337
|
-
*
|
|
2408
|
+
* Lookup378: pallet_transaction_payment::Releases
|
|
2338
2409
|
**/
|
|
2339
2410
|
PalletTransactionPaymentReleases: {
|
|
2340
2411
|
_enum: string[];
|
|
2341
2412
|
};
|
|
2342
2413
|
/**
|
|
2343
|
-
*
|
|
2414
|
+
* Lookup379: pallet_utility::pallet::Error<T>
|
|
2415
|
+
**/
|
|
2416
|
+
PalletUtilityError: {
|
|
2417
|
+
_enum: string[];
|
|
2418
|
+
};
|
|
2419
|
+
/**
|
|
2420
|
+
* Lookup380: pallet_sudo::pallet::Error<T>
|
|
2344
2421
|
**/
|
|
2345
2422
|
PalletSudoError: {
|
|
2346
2423
|
_enum: string[];
|
|
2347
2424
|
};
|
|
2348
2425
|
/**
|
|
2349
|
-
*
|
|
2426
|
+
* Lookup383: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
2350
2427
|
**/
|
|
2351
2428
|
FrameSystemExtensionsCheckNonZeroSender: string;
|
|
2352
2429
|
/**
|
|
2353
|
-
*
|
|
2430
|
+
* Lookup384: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
2354
2431
|
**/
|
|
2355
2432
|
FrameSystemExtensionsCheckSpecVersion: string;
|
|
2356
2433
|
/**
|
|
2357
|
-
*
|
|
2434
|
+
* Lookup385: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
2358
2435
|
**/
|
|
2359
2436
|
FrameSystemExtensionsCheckTxVersion: string;
|
|
2360
2437
|
/**
|
|
2361
|
-
*
|
|
2438
|
+
* Lookup386: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
2362
2439
|
**/
|
|
2363
2440
|
FrameSystemExtensionsCheckGenesis: string;
|
|
2364
2441
|
/**
|
|
2365
|
-
*
|
|
2442
|
+
* Lookup389: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
2366
2443
|
**/
|
|
2367
2444
|
FrameSystemExtensionsCheckNonce: string;
|
|
2368
2445
|
/**
|
|
2369
|
-
*
|
|
2446
|
+
* Lookup390: frame_system::extensions::check_weight::CheckWeight<T>
|
|
2370
2447
|
**/
|
|
2371
2448
|
FrameSystemExtensionsCheckWeight: string;
|
|
2372
2449
|
/**
|
|
2373
|
-
*
|
|
2450
|
+
* Lookup391: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
2374
2451
|
**/
|
|
2375
2452
|
PalletTransactionPaymentChargeTransactionPayment: string;
|
|
2376
2453
|
/**
|
|
2377
|
-
*
|
|
2454
|
+
* Lookup392: frame_metadata_hash_extension::CheckMetadataHash<T>
|
|
2378
2455
|
**/
|
|
2379
2456
|
FrameMetadataHashExtensionCheckMetadataHash: {
|
|
2380
2457
|
mode: string;
|
|
2381
2458
|
};
|
|
2382
2459
|
/**
|
|
2383
|
-
*
|
|
2460
|
+
* Lookup393: frame_metadata_hash_extension::Mode
|
|
2384
2461
|
**/
|
|
2385
2462
|
FrameMetadataHashExtensionMode: {
|
|
2386
2463
|
_enum: string[];
|
|
2387
2464
|
};
|
|
2388
2465
|
/**
|
|
2389
|
-
*
|
|
2466
|
+
* Lookup395: argon_node_runtime::Runtime
|
|
2390
2467
|
**/
|
|
2391
2468
|
ArgonNodeRuntimeRuntime: string;
|
|
2392
2469
|
};
|