@argonprotocol/mainchain 0.0.24 → 0.0.26
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 +8 -2
- package/lib/cjs/interfaces/augment-api-errors.d.ts +4 -0
- package/lib/cjs/interfaces/augment-api-query.d.ts +8 -6
- package/lib/cjs/interfaces/augment-api-tx.d.ts +5 -1
- package/lib/cjs/interfaces/lookup.d.ts +216 -188
- package/lib/cjs/interfaces/lookup.js +221 -193
- package/lib/cjs/interfaces/lookup.js.map +1 -1
- package/lib/cjs/interfaces/registry.d.ts +4 -1
- package/lib/cjs/interfaces/types-lookup.d.ts +215 -189
- package/lib/esm/interfaces/augment-api-consts.d.ts +8 -2
- package/lib/esm/interfaces/augment-api-errors.d.ts +4 -0
- package/lib/esm/interfaces/augment-api-query.d.ts +8 -6
- package/lib/esm/interfaces/augment-api-tx.d.ts +5 -1
- package/lib/esm/interfaces/lookup.d.ts +216 -188
- package/lib/esm/interfaces/lookup.js +221 -193
- package/lib/esm/interfaces/lookup.js.map +1 -1
- package/lib/esm/interfaces/registry.d.ts +4 -1
- package/lib/esm/interfaces/types-lookup.d.ts +215 -189
- 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 +8 -2
- package/lib/types/interfaces/augment-api-errors.d.ts +4 -0
- package/lib/types/interfaces/augment-api-query.d.ts +8 -6
- package/lib/types/interfaces/augment-api-tx.d.ts +5 -1
- package/lib/types/interfaces/lookup.d.ts +216 -188
- package/lib/types/interfaces/registry.d.ts +4 -1
- package/lib/types/interfaces/types-lookup.d.ts +215 -189
- package/package.json +4 -4
|
@@ -861,8 +861,17 @@ declare module '@polkadot/types/lookup' {
|
|
|
861
861
|
readonly accountId: AccountId32;
|
|
862
862
|
readonly ownership: Compact<u128>;
|
|
863
863
|
readonly argons: Compact<u128>;
|
|
864
|
+
readonly rewardType: ArgonPrimitivesBlockSealBlockRewardType;
|
|
865
|
+
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
864
866
|
}
|
|
865
|
-
/** @name
|
|
867
|
+
/** @name ArgonPrimitivesBlockSealBlockRewardType (97) */
|
|
868
|
+
interface ArgonPrimitivesBlockSealBlockRewardType extends Enum {
|
|
869
|
+
readonly isMiner: boolean;
|
|
870
|
+
readonly isVoter: boolean;
|
|
871
|
+
readonly isProfitShare: boolean;
|
|
872
|
+
readonly type: 'Miner' | 'Voter' | 'ProfitShare';
|
|
873
|
+
}
|
|
874
|
+
/** @name PalletMintEvent (100) */
|
|
866
875
|
interface PalletMintEvent extends Enum {
|
|
867
876
|
readonly isArgonsMinted: boolean;
|
|
868
877
|
readonly asArgonsMinted: {
|
|
@@ -881,13 +890,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
881
890
|
} & Struct;
|
|
882
891
|
readonly type: 'ArgonsMinted' | 'MintError';
|
|
883
892
|
}
|
|
884
|
-
/** @name PalletMintMintType (
|
|
893
|
+
/** @name PalletMintMintType (101) */
|
|
885
894
|
interface PalletMintMintType extends Enum {
|
|
886
895
|
readonly isBitcoin: boolean;
|
|
887
896
|
readonly isMining: boolean;
|
|
888
897
|
readonly type: 'Bitcoin' | 'Mining';
|
|
889
898
|
}
|
|
890
|
-
/** @name PalletBalancesEvent (
|
|
899
|
+
/** @name PalletBalancesEvent (102) */
|
|
891
900
|
interface PalletBalancesEvent extends Enum {
|
|
892
901
|
readonly isEndowed: boolean;
|
|
893
902
|
readonly asEndowed: {
|
|
@@ -1001,13 +1010,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
1001
1010
|
} & Struct;
|
|
1002
1011
|
readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed' | 'Minted' | 'Burned' | 'Suspended' | 'Restored' | 'Upgraded' | 'Issued' | 'Rescinded' | 'Locked' | 'Unlocked' | 'Frozen' | 'Thawed' | 'TotalIssuanceForced';
|
|
1003
1012
|
}
|
|
1004
|
-
/** @name FrameSupportTokensMiscBalanceStatus (
|
|
1013
|
+
/** @name FrameSupportTokensMiscBalanceStatus (103) */
|
|
1005
1014
|
interface FrameSupportTokensMiscBalanceStatus extends Enum {
|
|
1006
1015
|
readonly isFree: boolean;
|
|
1007
1016
|
readonly isReserved: boolean;
|
|
1008
1017
|
readonly type: 'Free' | 'Reserved';
|
|
1009
1018
|
}
|
|
1010
|
-
/** @name PalletTxPauseEvent (
|
|
1019
|
+
/** @name PalletTxPauseEvent (105) */
|
|
1011
1020
|
interface PalletTxPauseEvent extends Enum {
|
|
1012
1021
|
readonly isCallPaused: boolean;
|
|
1013
1022
|
readonly asCallPaused: {
|
|
@@ -1019,7 +1028,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1019
1028
|
} & Struct;
|
|
1020
1029
|
readonly type: 'CallPaused' | 'CallUnpaused';
|
|
1021
1030
|
}
|
|
1022
|
-
/** @name PalletTransactionPaymentEvent (
|
|
1031
|
+
/** @name PalletTransactionPaymentEvent (108) */
|
|
1023
1032
|
interface PalletTransactionPaymentEvent extends Enum {
|
|
1024
1033
|
readonly isTransactionFeePaid: boolean;
|
|
1025
1034
|
readonly asTransactionFeePaid: {
|
|
@@ -1029,7 +1038,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1029
1038
|
} & Struct;
|
|
1030
1039
|
readonly type: 'TransactionFeePaid';
|
|
1031
1040
|
}
|
|
1032
|
-
/** @name PalletUtilityEvent (
|
|
1041
|
+
/** @name PalletUtilityEvent (109) */
|
|
1033
1042
|
interface PalletUtilityEvent extends Enum {
|
|
1034
1043
|
readonly isBatchInterrupted: boolean;
|
|
1035
1044
|
readonly asBatchInterrupted: {
|
|
@@ -1049,7 +1058,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1049
1058
|
} & Struct;
|
|
1050
1059
|
readonly type: 'BatchInterrupted' | 'BatchCompleted' | 'BatchCompletedWithErrors' | 'ItemCompleted' | 'ItemFailed' | 'DispatchedAs';
|
|
1051
1060
|
}
|
|
1052
|
-
/** @name PalletSudoEvent (
|
|
1061
|
+
/** @name PalletSudoEvent (110) */
|
|
1053
1062
|
interface PalletSudoEvent extends Enum {
|
|
1054
1063
|
readonly isSudid: boolean;
|
|
1055
1064
|
readonly asSudid: {
|
|
@@ -1067,7 +1076,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1067
1076
|
} & Struct;
|
|
1068
1077
|
readonly type: 'Sudid' | 'KeyChanged' | 'KeyRemoved' | 'SudoAsDone';
|
|
1069
1078
|
}
|
|
1070
|
-
/** @name PalletIsmpEvent (
|
|
1079
|
+
/** @name PalletIsmpEvent (112) */
|
|
1071
1080
|
interface PalletIsmpEvent extends Enum {
|
|
1072
1081
|
readonly isStateMachineUpdated: boolean;
|
|
1073
1082
|
readonly asStateMachineUpdated: {
|
|
@@ -1120,12 +1129,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
1120
1129
|
readonly asGetRequestTimeoutHandled: IsmpEventsTimeoutHandled;
|
|
1121
1130
|
readonly type: 'StateMachineUpdated' | 'StateCommitmentVetoed' | 'ConsensusClientCreated' | 'ConsensusClientFrozen' | 'Response' | 'Request' | 'Errors' | 'PostRequestHandled' | 'PostResponseHandled' | 'GetRequestHandled' | 'PostRequestTimeoutHandled' | 'PostResponseTimeoutHandled' | 'GetRequestTimeoutHandled';
|
|
1122
1131
|
}
|
|
1123
|
-
/** @name IsmpConsensusStateMachineId (
|
|
1132
|
+
/** @name IsmpConsensusStateMachineId (113) */
|
|
1124
1133
|
interface IsmpConsensusStateMachineId extends Struct {
|
|
1125
1134
|
readonly stateId: IsmpHostStateMachine;
|
|
1126
1135
|
readonly consensusStateId: U8aFixed;
|
|
1127
1136
|
}
|
|
1128
|
-
/** @name IsmpHostStateMachine (
|
|
1137
|
+
/** @name IsmpHostStateMachine (114) */
|
|
1129
1138
|
interface IsmpHostStateMachine extends Enum {
|
|
1130
1139
|
readonly isEvm: boolean;
|
|
1131
1140
|
readonly asEvm: u32;
|
|
@@ -1139,27 +1148,27 @@ declare module '@polkadot/types/lookup' {
|
|
|
1139
1148
|
readonly asTendermint: U8aFixed;
|
|
1140
1149
|
readonly type: 'Evm' | 'Polkadot' | 'Kusama' | 'Substrate' | 'Tendermint';
|
|
1141
1150
|
}
|
|
1142
|
-
/** @name IsmpConsensusStateMachineHeight (
|
|
1151
|
+
/** @name IsmpConsensusStateMachineHeight (115) */
|
|
1143
1152
|
interface IsmpConsensusStateMachineHeight extends Struct {
|
|
1144
1153
|
readonly id: IsmpConsensusStateMachineId;
|
|
1145
1154
|
readonly height: u64;
|
|
1146
1155
|
}
|
|
1147
|
-
/** @name PalletIsmpErrorsHandlingError (
|
|
1156
|
+
/** @name PalletIsmpErrorsHandlingError (118) */
|
|
1148
1157
|
interface PalletIsmpErrorsHandlingError extends Struct {
|
|
1149
1158
|
readonly message: Bytes;
|
|
1150
1159
|
}
|
|
1151
|
-
/** @name IsmpEventsRequestResponseHandled (
|
|
1160
|
+
/** @name IsmpEventsRequestResponseHandled (120) */
|
|
1152
1161
|
interface IsmpEventsRequestResponseHandled extends Struct {
|
|
1153
1162
|
readonly commitment: H256;
|
|
1154
1163
|
readonly relayer: Bytes;
|
|
1155
1164
|
}
|
|
1156
|
-
/** @name IsmpEventsTimeoutHandled (
|
|
1165
|
+
/** @name IsmpEventsTimeoutHandled (121) */
|
|
1157
1166
|
interface IsmpEventsTimeoutHandled extends Struct {
|
|
1158
1167
|
readonly commitment: H256;
|
|
1159
1168
|
readonly source: IsmpHostStateMachine;
|
|
1160
1169
|
readonly dest: IsmpHostStateMachine;
|
|
1161
1170
|
}
|
|
1162
|
-
/** @name IsmpGrandpaEvent (
|
|
1171
|
+
/** @name IsmpGrandpaEvent (122) */
|
|
1163
1172
|
interface IsmpGrandpaEvent extends Enum {
|
|
1164
1173
|
readonly isStateMachineAdded: boolean;
|
|
1165
1174
|
readonly asStateMachineAdded: {
|
|
@@ -1171,7 +1180,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1171
1180
|
} & Struct;
|
|
1172
1181
|
readonly type: 'StateMachineAdded' | 'StateMachineRemoved';
|
|
1173
1182
|
}
|
|
1174
|
-
/** @name PalletHyperbridgeEvent (
|
|
1183
|
+
/** @name PalletHyperbridgeEvent (124) */
|
|
1175
1184
|
interface PalletHyperbridgeEvent extends Enum {
|
|
1176
1185
|
readonly isHostParamsUpdated: boolean;
|
|
1177
1186
|
readonly asHostParamsUpdated: {
|
|
@@ -1190,19 +1199,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
1190
1199
|
} & Struct;
|
|
1191
1200
|
readonly type: 'HostParamsUpdated' | 'RelayerFeeWithdrawn' | 'ProtocolRevenueWithdrawn';
|
|
1192
1201
|
}
|
|
1193
|
-
/** @name PalletHyperbridgeVersionedHostParams (
|
|
1202
|
+
/** @name PalletHyperbridgeVersionedHostParams (125) */
|
|
1194
1203
|
interface PalletHyperbridgeVersionedHostParams extends Enum {
|
|
1195
1204
|
readonly isV1: boolean;
|
|
1196
1205
|
readonly asV1: PalletHyperbridgeSubstrateHostParams;
|
|
1197
1206
|
readonly type: 'V1';
|
|
1198
1207
|
}
|
|
1199
|
-
/** @name PalletHyperbridgeSubstrateHostParams (
|
|
1208
|
+
/** @name PalletHyperbridgeSubstrateHostParams (126) */
|
|
1200
1209
|
interface PalletHyperbridgeSubstrateHostParams extends Struct {
|
|
1201
1210
|
readonly defaultPerByteFee: u128;
|
|
1202
1211
|
readonly perByteFees: BTreeMap<IsmpHostStateMachine, u128>;
|
|
1203
1212
|
readonly assetRegistrationFee: u128;
|
|
1204
1213
|
}
|
|
1205
|
-
/** @name PalletTokenGatewayEvent (
|
|
1214
|
+
/** @name PalletTokenGatewayEvent (130) */
|
|
1206
1215
|
interface PalletTokenGatewayEvent extends Enum {
|
|
1207
1216
|
readonly isAssetTeleported: boolean;
|
|
1208
1217
|
readonly asAssetTeleported: {
|
|
@@ -1230,7 +1239,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1230
1239
|
} & Struct;
|
|
1231
1240
|
readonly type: 'AssetTeleported' | 'AssetReceived' | 'AssetRefunded' | 'Erc6160AssetRegistrationDispatched';
|
|
1232
1241
|
}
|
|
1233
|
-
/** @name FrameSystemPhase (
|
|
1242
|
+
/** @name FrameSystemPhase (131) */
|
|
1234
1243
|
interface FrameSystemPhase extends Enum {
|
|
1235
1244
|
readonly isApplyExtrinsic: boolean;
|
|
1236
1245
|
readonly asApplyExtrinsic: u32;
|
|
@@ -1238,17 +1247,17 @@ declare module '@polkadot/types/lookup' {
|
|
|
1238
1247
|
readonly isInitialization: boolean;
|
|
1239
1248
|
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
|
|
1240
1249
|
}
|
|
1241
|
-
/** @name FrameSystemLastRuntimeUpgradeInfo (
|
|
1250
|
+
/** @name FrameSystemLastRuntimeUpgradeInfo (135) */
|
|
1242
1251
|
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
|
|
1243
1252
|
readonly specVersion: Compact<u32>;
|
|
1244
1253
|
readonly specName: Text;
|
|
1245
1254
|
}
|
|
1246
|
-
/** @name FrameSystemCodeUpgradeAuthorization (
|
|
1255
|
+
/** @name FrameSystemCodeUpgradeAuthorization (136) */
|
|
1247
1256
|
interface FrameSystemCodeUpgradeAuthorization extends Struct {
|
|
1248
1257
|
readonly codeHash: H256;
|
|
1249
1258
|
readonly checkVersion: bool;
|
|
1250
1259
|
}
|
|
1251
|
-
/** @name FrameSystemCall (
|
|
1260
|
+
/** @name FrameSystemCall (137) */
|
|
1252
1261
|
interface FrameSystemCall extends Enum {
|
|
1253
1262
|
readonly isRemark: boolean;
|
|
1254
1263
|
readonly asRemark: {
|
|
@@ -1297,41 +1306,41 @@ declare module '@polkadot/types/lookup' {
|
|
|
1297
1306
|
} & Struct;
|
|
1298
1307
|
readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent' | 'AuthorizeUpgrade' | 'AuthorizeUpgradeWithoutChecks' | 'ApplyAuthorizedUpgrade';
|
|
1299
1308
|
}
|
|
1300
|
-
/** @name FrameSystemLimitsBlockWeights (
|
|
1309
|
+
/** @name FrameSystemLimitsBlockWeights (141) */
|
|
1301
1310
|
interface FrameSystemLimitsBlockWeights extends Struct {
|
|
1302
1311
|
readonly baseBlock: SpWeightsWeightV2Weight;
|
|
1303
1312
|
readonly maxBlock: SpWeightsWeightV2Weight;
|
|
1304
1313
|
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
|
|
1305
1314
|
}
|
|
1306
|
-
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (
|
|
1315
|
+
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (142) */
|
|
1307
1316
|
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
|
|
1308
1317
|
readonly normal: FrameSystemLimitsWeightsPerClass;
|
|
1309
1318
|
readonly operational: FrameSystemLimitsWeightsPerClass;
|
|
1310
1319
|
readonly mandatory: FrameSystemLimitsWeightsPerClass;
|
|
1311
1320
|
}
|
|
1312
|
-
/** @name FrameSystemLimitsWeightsPerClass (
|
|
1321
|
+
/** @name FrameSystemLimitsWeightsPerClass (143) */
|
|
1313
1322
|
interface FrameSystemLimitsWeightsPerClass extends Struct {
|
|
1314
1323
|
readonly baseExtrinsic: SpWeightsWeightV2Weight;
|
|
1315
1324
|
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
|
|
1316
1325
|
readonly maxTotal: Option<SpWeightsWeightV2Weight>;
|
|
1317
1326
|
readonly reserved: Option<SpWeightsWeightV2Weight>;
|
|
1318
1327
|
}
|
|
1319
|
-
/** @name FrameSystemLimitsBlockLength (
|
|
1328
|
+
/** @name FrameSystemLimitsBlockLength (145) */
|
|
1320
1329
|
interface FrameSystemLimitsBlockLength extends Struct {
|
|
1321
1330
|
readonly max: FrameSupportDispatchPerDispatchClassU32;
|
|
1322
1331
|
}
|
|
1323
|
-
/** @name FrameSupportDispatchPerDispatchClassU32 (
|
|
1332
|
+
/** @name FrameSupportDispatchPerDispatchClassU32 (146) */
|
|
1324
1333
|
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
|
|
1325
1334
|
readonly normal: u32;
|
|
1326
1335
|
readonly operational: u32;
|
|
1327
1336
|
readonly mandatory: u32;
|
|
1328
1337
|
}
|
|
1329
|
-
/** @name SpWeightsRuntimeDbWeight (
|
|
1338
|
+
/** @name SpWeightsRuntimeDbWeight (147) */
|
|
1330
1339
|
interface SpWeightsRuntimeDbWeight extends Struct {
|
|
1331
1340
|
readonly read: u64;
|
|
1332
1341
|
readonly write: u64;
|
|
1333
1342
|
}
|
|
1334
|
-
/** @name SpVersionRuntimeVersion (
|
|
1343
|
+
/** @name SpVersionRuntimeVersion (148) */
|
|
1335
1344
|
interface SpVersionRuntimeVersion extends Struct {
|
|
1336
1345
|
readonly specName: Text;
|
|
1337
1346
|
readonly implName: Text;
|
|
@@ -1342,7 +1351,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1342
1351
|
readonly transactionVersion: u32;
|
|
1343
1352
|
readonly stateVersion: u8;
|
|
1344
1353
|
}
|
|
1345
|
-
/** @name FrameSystemError (
|
|
1354
|
+
/** @name FrameSystemError (153) */
|
|
1346
1355
|
interface FrameSystemError extends Enum {
|
|
1347
1356
|
readonly isInvalidSpecName: boolean;
|
|
1348
1357
|
readonly isSpecVersionNeedsToIncrease: boolean;
|
|
@@ -1355,7 +1364,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1355
1364
|
readonly isUnauthorized: boolean;
|
|
1356
1365
|
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered' | 'MultiBlockMigrationsOngoing' | 'NothingAuthorized' | 'Unauthorized';
|
|
1357
1366
|
}
|
|
1358
|
-
/** @name ArgonPrimitivesDigestsDigestset (
|
|
1367
|
+
/** @name ArgonPrimitivesDigestsDigestset (154) */
|
|
1359
1368
|
interface ArgonPrimitivesDigestsDigestset extends Struct {
|
|
1360
1369
|
readonly author: AccountId32;
|
|
1361
1370
|
readonly blockVote: ArgonPrimitivesDigestsBlockVoteDigest;
|
|
@@ -1364,16 +1373,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
1364
1373
|
readonly tick: u64;
|
|
1365
1374
|
readonly notebooks: ArgonPrimitivesDigestsNotebookDigest;
|
|
1366
1375
|
}
|
|
1367
|
-
/** @name ArgonPrimitivesDigestsBlockVoteDigest (
|
|
1376
|
+
/** @name ArgonPrimitivesDigestsBlockVoteDigest (155) */
|
|
1368
1377
|
interface ArgonPrimitivesDigestsBlockVoteDigest extends Struct {
|
|
1369
1378
|
readonly votingPower: Compact<u128>;
|
|
1370
1379
|
readonly votesCount: Compact<u32>;
|
|
1371
1380
|
}
|
|
1372
|
-
/** @name ArgonPrimitivesDigestsParentVotingKeyDigest (
|
|
1381
|
+
/** @name ArgonPrimitivesDigestsParentVotingKeyDigest (157) */
|
|
1373
1382
|
interface ArgonPrimitivesDigestsParentVotingKeyDigest extends Struct {
|
|
1374
1383
|
readonly parentVotingKey: Option<H256>;
|
|
1375
1384
|
}
|
|
1376
|
-
/** @name ArgonPrimitivesForkPower (
|
|
1385
|
+
/** @name ArgonPrimitivesForkPower (160) */
|
|
1377
1386
|
interface ArgonPrimitivesForkPower extends Struct {
|
|
1378
1387
|
readonly isLatestVote: bool;
|
|
1379
1388
|
readonly notebooks: Compact<u64>;
|
|
@@ -1382,18 +1391,18 @@ declare module '@polkadot/types/lookup' {
|
|
|
1382
1391
|
readonly totalComputeDifficulty: U256;
|
|
1383
1392
|
readonly voteCreatedBlocks: Compact<u128>;
|
|
1384
1393
|
}
|
|
1385
|
-
/** @name ArgonPrimitivesDigestsNotebookDigest (
|
|
1394
|
+
/** @name ArgonPrimitivesDigestsNotebookDigest (164) */
|
|
1386
1395
|
interface ArgonPrimitivesDigestsNotebookDigest extends Struct {
|
|
1387
1396
|
readonly notebooks: Vec<ArgonPrimitivesNotebookNotebookAuditResult>;
|
|
1388
1397
|
}
|
|
1389
|
-
/** @name ArgonPrimitivesNotebookNotebookAuditResult (
|
|
1398
|
+
/** @name ArgonPrimitivesNotebookNotebookAuditResult (166) */
|
|
1390
1399
|
interface ArgonPrimitivesNotebookNotebookAuditResult extends Struct {
|
|
1391
1400
|
readonly notaryId: Compact<u32>;
|
|
1392
1401
|
readonly notebookNumber: Compact<u32>;
|
|
1393
1402
|
readonly tick: Compact<u64>;
|
|
1394
1403
|
readonly auditFirstFailure: Option<ArgonNotaryAuditErrorVerifyError>;
|
|
1395
1404
|
}
|
|
1396
|
-
/** @name PalletDigestsError (
|
|
1405
|
+
/** @name PalletDigestsError (168) */
|
|
1397
1406
|
interface PalletDigestsError extends Enum {
|
|
1398
1407
|
readonly isDuplicateBlockVoteDigest: boolean;
|
|
1399
1408
|
readonly isDuplicateAuthorDigest: boolean;
|
|
@@ -1409,7 +1418,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1409
1418
|
readonly isCouldNotDecodeDigest: boolean;
|
|
1410
1419
|
readonly type: 'DuplicateBlockVoteDigest' | 'DuplicateAuthorDigest' | 'DuplicateTickDigest' | 'DuplicateParentVotingKeyDigest' | 'DuplicateNotebookDigest' | 'DuplicateForkPowerDigest' | 'MissingBlockVoteDigest' | 'MissingAuthorDigest' | 'MissingTickDigest' | 'MissingParentVotingKeyDigest' | 'MissingNotebookDigest' | 'CouldNotDecodeDigest';
|
|
1411
1420
|
}
|
|
1412
|
-
/** @name PalletTimestampCall (
|
|
1421
|
+
/** @name PalletTimestampCall (169) */
|
|
1413
1422
|
interface PalletTimestampCall extends Enum {
|
|
1414
1423
|
readonly isSet: boolean;
|
|
1415
1424
|
readonly asSet: {
|
|
@@ -1417,14 +1426,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1417
1426
|
} & Struct;
|
|
1418
1427
|
readonly type: 'Set';
|
|
1419
1428
|
}
|
|
1420
|
-
/** @name PalletMultisigMultisig (
|
|
1429
|
+
/** @name PalletMultisigMultisig (171) */
|
|
1421
1430
|
interface PalletMultisigMultisig extends Struct {
|
|
1422
1431
|
readonly when: PalletMultisigTimepoint;
|
|
1423
1432
|
readonly deposit: u128;
|
|
1424
1433
|
readonly depositor: AccountId32;
|
|
1425
1434
|
readonly approvals: Vec<AccountId32>;
|
|
1426
1435
|
}
|
|
1427
|
-
/** @name PalletMultisigCall (
|
|
1436
|
+
/** @name PalletMultisigCall (174) */
|
|
1428
1437
|
interface PalletMultisigCall extends Enum {
|
|
1429
1438
|
readonly isAsMultiThreshold1: boolean;
|
|
1430
1439
|
readonly asAsMultiThreshold1: {
|
|
@@ -1456,7 +1465,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1456
1465
|
} & Struct;
|
|
1457
1466
|
readonly type: 'AsMultiThreshold1' | 'AsMulti' | 'ApproveAsMulti' | 'CancelAsMulti';
|
|
1458
1467
|
}
|
|
1459
|
-
/** @name PalletProxyCall (
|
|
1468
|
+
/** @name PalletProxyCall (176) */
|
|
1460
1469
|
interface PalletProxyCall extends Enum {
|
|
1461
1470
|
readonly isProxy: boolean;
|
|
1462
1471
|
readonly asProxy: {
|
|
@@ -1515,9 +1524,9 @@ declare module '@polkadot/types/lookup' {
|
|
|
1515
1524
|
} & Struct;
|
|
1516
1525
|
readonly type: 'Proxy' | 'AddProxy' | 'RemoveProxy' | 'RemoveProxies' | 'CreatePure' | 'KillPure' | 'Announce' | 'RemoveAnnouncement' | 'RejectAnnouncement' | 'ProxyAnnounced';
|
|
1517
1526
|
}
|
|
1518
|
-
/** @name PalletTicksCall (
|
|
1527
|
+
/** @name PalletTicksCall (181) */
|
|
1519
1528
|
type PalletTicksCall = Null;
|
|
1520
|
-
/** @name PalletMiningSlotCall (
|
|
1529
|
+
/** @name PalletMiningSlotCall (182) */
|
|
1521
1530
|
interface PalletMiningSlotCall extends Enum {
|
|
1522
1531
|
readonly isBid: boolean;
|
|
1523
1532
|
readonly asBid: {
|
|
@@ -1527,12 +1536,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
1527
1536
|
} & Struct;
|
|
1528
1537
|
readonly type: 'Bid';
|
|
1529
1538
|
}
|
|
1530
|
-
/** @name PalletMiningSlotMiningSlotBid (
|
|
1539
|
+
/** @name PalletMiningSlotMiningSlotBid (184) */
|
|
1531
1540
|
interface PalletMiningSlotMiningSlotBid extends Struct {
|
|
1532
1541
|
readonly vaultId: u32;
|
|
1533
1542
|
readonly amount: u128;
|
|
1534
1543
|
}
|
|
1535
|
-
/** @name PalletBitcoinUtxosCall (
|
|
1544
|
+
/** @name PalletBitcoinUtxosCall (185) */
|
|
1536
1545
|
interface PalletBitcoinUtxosCall extends Enum {
|
|
1537
1546
|
readonly isSync: boolean;
|
|
1538
1547
|
readonly asSync: {
|
|
@@ -1549,19 +1558,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
1549
1558
|
} & Struct;
|
|
1550
1559
|
readonly type: 'Sync' | 'SetConfirmedBlock' | 'SetOperator';
|
|
1551
1560
|
}
|
|
1552
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoSync (
|
|
1561
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoSync (186) */
|
|
1553
1562
|
interface ArgonPrimitivesInherentsBitcoinUtxoSync extends Struct {
|
|
1554
1563
|
readonly spent: BTreeMap<u64, u64>;
|
|
1555
1564
|
readonly verified: BTreeMap<u64, ArgonPrimitivesBitcoinUtxoRef>;
|
|
1556
1565
|
readonly invalid: BTreeMap<u64, ArgonPrimitivesBitcoinBitcoinRejectedReason>;
|
|
1557
1566
|
readonly syncToBlock: ArgonPrimitivesBitcoinBitcoinBlock;
|
|
1558
1567
|
}
|
|
1559
|
-
/** @name ArgonPrimitivesBitcoinBitcoinBlock (
|
|
1568
|
+
/** @name ArgonPrimitivesBitcoinBitcoinBlock (196) */
|
|
1560
1569
|
interface ArgonPrimitivesBitcoinBitcoinBlock extends Struct {
|
|
1561
1570
|
readonly blockHeight: Compact<u64>;
|
|
1562
1571
|
readonly blockHash: ArgonPrimitivesBitcoinH256Le;
|
|
1563
1572
|
}
|
|
1564
|
-
/** @name PalletVaultsCall (
|
|
1573
|
+
/** @name PalletVaultsCall (197) */
|
|
1565
1574
|
interface PalletVaultsCall extends Enum {
|
|
1566
1575
|
readonly isCreate: boolean;
|
|
1567
1576
|
readonly asCreate: {
|
|
@@ -1590,7 +1599,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1590
1599
|
} & Struct;
|
|
1591
1600
|
readonly type: 'Create' | 'ModifyFunding' | 'ModifyTerms' | 'Close' | 'ReplaceBitcoinXpub';
|
|
1592
1601
|
}
|
|
1593
|
-
/** @name PalletVaultsVaultConfig (
|
|
1602
|
+
/** @name PalletVaultsVaultConfig (198) */
|
|
1594
1603
|
interface PalletVaultsVaultConfig extends Struct {
|
|
1595
1604
|
readonly terms: ArgonPrimitivesBondVaultTerms;
|
|
1596
1605
|
readonly bitcoinAmountAllocated: Compact<u128>;
|
|
@@ -1598,7 +1607,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1598
1607
|
readonly miningAmountAllocated: Compact<u128>;
|
|
1599
1608
|
readonly securitizationPercent: Compact<u128>;
|
|
1600
1609
|
}
|
|
1601
|
-
/** @name ArgonPrimitivesBondVaultTerms (
|
|
1610
|
+
/** @name ArgonPrimitivesBondVaultTerms (199) */
|
|
1602
1611
|
interface ArgonPrimitivesBondVaultTerms extends Struct {
|
|
1603
1612
|
readonly bitcoinAnnualPercentRate: Compact<u128>;
|
|
1604
1613
|
readonly bitcoinBaseFee: Compact<u128>;
|
|
@@ -1606,10 +1615,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
1606
1615
|
readonly miningBaseFee: Compact<u128>;
|
|
1607
1616
|
readonly miningRewardSharingPercentTake: Compact<u128>;
|
|
1608
1617
|
}
|
|
1609
|
-
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (
|
|
1618
|
+
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (200) */
|
|
1610
1619
|
interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {
|
|
1611
1620
|
}
|
|
1612
|
-
/** @name PalletBondCall (
|
|
1621
|
+
/** @name PalletBondCall (202) */
|
|
1613
1622
|
interface PalletBondCall extends Enum {
|
|
1614
1623
|
readonly isBondBitcoin: boolean;
|
|
1615
1624
|
readonly asBondBitcoin: {
|
|
@@ -1630,10 +1639,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
1630
1639
|
} & Struct;
|
|
1631
1640
|
readonly type: 'BondBitcoin' | 'UnlockBitcoinBond' | 'CosignBitcoinUnlock';
|
|
1632
1641
|
}
|
|
1633
|
-
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (
|
|
1642
|
+
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (203) */
|
|
1634
1643
|
interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {
|
|
1635
1644
|
}
|
|
1636
|
-
/** @name PalletNotariesCall (
|
|
1645
|
+
/** @name PalletNotariesCall (207) */
|
|
1637
1646
|
interface PalletNotariesCall extends Enum {
|
|
1638
1647
|
readonly isPropose: boolean;
|
|
1639
1648
|
readonly asPropose: {
|
|
@@ -1651,7 +1660,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1651
1660
|
} & Struct;
|
|
1652
1661
|
readonly type: 'Propose' | 'Activate' | 'Update';
|
|
1653
1662
|
}
|
|
1654
|
-
/** @name PalletNotebookCall (
|
|
1663
|
+
/** @name PalletNotebookCall (208) */
|
|
1655
1664
|
interface PalletNotebookCall extends Enum {
|
|
1656
1665
|
readonly isSubmit: boolean;
|
|
1657
1666
|
readonly asSubmit: {
|
|
@@ -1663,12 +1672,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
1663
1672
|
} & Struct;
|
|
1664
1673
|
readonly type: 'Submit' | 'Unlock';
|
|
1665
1674
|
}
|
|
1666
|
-
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (
|
|
1675
|
+
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (210) */
|
|
1667
1676
|
interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
|
|
1668
1677
|
readonly header: ArgonPrimitivesNotebookNotebookHeader;
|
|
1669
1678
|
readonly signature: U8aFixed;
|
|
1670
1679
|
}
|
|
1671
|
-
/** @name ArgonPrimitivesNotebookNotebookHeader (
|
|
1680
|
+
/** @name ArgonPrimitivesNotebookNotebookHeader (211) */
|
|
1672
1681
|
interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
|
|
1673
1682
|
readonly version: Compact<u16>;
|
|
1674
1683
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -1686,7 +1695,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1686
1695
|
readonly parentSecret: Option<H256>;
|
|
1687
1696
|
readonly domains: Vec<ITuple<[H256, AccountId32]>>;
|
|
1688
1697
|
}
|
|
1689
|
-
/** @name ArgonPrimitivesNotebookChainTransfer (
|
|
1698
|
+
/** @name ArgonPrimitivesNotebookChainTransfer (214) */
|
|
1690
1699
|
interface ArgonPrimitivesNotebookChainTransfer extends Enum {
|
|
1691
1700
|
readonly isToMainchain: boolean;
|
|
1692
1701
|
readonly asToMainchain: {
|
|
@@ -1699,12 +1708,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
1699
1708
|
} & Struct;
|
|
1700
1709
|
readonly type: 'ToMainchain' | 'ToLocalchain';
|
|
1701
1710
|
}
|
|
1702
|
-
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (
|
|
1711
|
+
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (217) */
|
|
1703
1712
|
interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
|
|
1704
1713
|
readonly notebookNumber: Compact<u32>;
|
|
1705
1714
|
readonly accountUid: Compact<u32>;
|
|
1706
1715
|
}
|
|
1707
|
-
/** @name PalletChainTransferCall (
|
|
1716
|
+
/** @name PalletChainTransferCall (224) */
|
|
1708
1717
|
interface PalletChainTransferCall extends Enum {
|
|
1709
1718
|
readonly isSendToLocalchain: boolean;
|
|
1710
1719
|
readonly asSendToLocalchain: {
|
|
@@ -1713,7 +1722,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1713
1722
|
} & Struct;
|
|
1714
1723
|
readonly type: 'SendToLocalchain';
|
|
1715
1724
|
}
|
|
1716
|
-
/** @name PalletBlockSealSpecCall (
|
|
1725
|
+
/** @name PalletBlockSealSpecCall (225) */
|
|
1717
1726
|
interface PalletBlockSealSpecCall extends Enum {
|
|
1718
1727
|
readonly isConfigure: boolean;
|
|
1719
1728
|
readonly asConfigure: {
|
|
@@ -1722,7 +1731,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1722
1731
|
} & Struct;
|
|
1723
1732
|
readonly type: 'Configure';
|
|
1724
1733
|
}
|
|
1725
|
-
/** @name PalletDomainsCall (
|
|
1734
|
+
/** @name PalletDomainsCall (226) */
|
|
1726
1735
|
interface PalletDomainsCall extends Enum {
|
|
1727
1736
|
readonly isSetZoneRecord: boolean;
|
|
1728
1737
|
readonly asSetZoneRecord: {
|
|
@@ -1731,7 +1740,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1731
1740
|
} & Struct;
|
|
1732
1741
|
readonly type: 'SetZoneRecord';
|
|
1733
1742
|
}
|
|
1734
|
-
/** @name PalletPriceIndexCall (
|
|
1743
|
+
/** @name PalletPriceIndexCall (227) */
|
|
1735
1744
|
interface PalletPriceIndexCall extends Enum {
|
|
1736
1745
|
readonly isSubmit: boolean;
|
|
1737
1746
|
readonly asSubmit: {
|
|
@@ -1743,14 +1752,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1743
1752
|
} & Struct;
|
|
1744
1753
|
readonly type: 'Submit' | 'SetOperator';
|
|
1745
1754
|
}
|
|
1746
|
-
/** @name PalletPriceIndexPriceIndex (
|
|
1755
|
+
/** @name PalletPriceIndexPriceIndex (228) */
|
|
1747
1756
|
interface PalletPriceIndexPriceIndex extends Struct {
|
|
1748
1757
|
readonly btcUsdPrice: Compact<u128>;
|
|
1749
1758
|
readonly argonUsdPrice: Compact<u128>;
|
|
1750
1759
|
readonly argonUsdTargetPrice: u128;
|
|
1751
1760
|
readonly tick: Compact<u64>;
|
|
1752
1761
|
}
|
|
1753
|
-
/** @name PalletGrandpaCall (
|
|
1762
|
+
/** @name PalletGrandpaCall (229) */
|
|
1754
1763
|
interface PalletGrandpaCall extends Enum {
|
|
1755
1764
|
readonly isReportEquivocation: boolean;
|
|
1756
1765
|
readonly asReportEquivocation: {
|
|
@@ -1769,12 +1778,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
1769
1778
|
} & Struct;
|
|
1770
1779
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
|
1771
1780
|
}
|
|
1772
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
|
1781
|
+
/** @name SpConsensusGrandpaEquivocationProof (230) */
|
|
1773
1782
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
|
1774
1783
|
readonly setId: u64;
|
|
1775
1784
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
|
1776
1785
|
}
|
|
1777
|
-
/** @name SpConsensusGrandpaEquivocation (
|
|
1786
|
+
/** @name SpConsensusGrandpaEquivocation (231) */
|
|
1778
1787
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
|
1779
1788
|
readonly isPrevote: boolean;
|
|
1780
1789
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
|
@@ -1782,36 +1791,36 @@ declare module '@polkadot/types/lookup' {
|
|
|
1782
1791
|
readonly asPrecommit: FinalityGrandpaEquivocationPrecommit;
|
|
1783
1792
|
readonly type: 'Prevote' | 'Precommit';
|
|
1784
1793
|
}
|
|
1785
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
|
1794
|
+
/** @name FinalityGrandpaEquivocationPrevote (232) */
|
|
1786
1795
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
|
1787
1796
|
readonly roundNumber: u64;
|
|
1788
1797
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
1789
1798
|
readonly first: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
1790
1799
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
1791
1800
|
}
|
|
1792
|
-
/** @name FinalityGrandpaPrevote (
|
|
1801
|
+
/** @name FinalityGrandpaPrevote (233) */
|
|
1793
1802
|
interface FinalityGrandpaPrevote extends Struct {
|
|
1794
1803
|
readonly targetHash: H256;
|
|
1795
1804
|
readonly targetNumber: u32;
|
|
1796
1805
|
}
|
|
1797
|
-
/** @name SpConsensusGrandpaAppSignature (
|
|
1806
|
+
/** @name SpConsensusGrandpaAppSignature (234) */
|
|
1798
1807
|
interface SpConsensusGrandpaAppSignature extends U8aFixed {
|
|
1799
1808
|
}
|
|
1800
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
|
1809
|
+
/** @name FinalityGrandpaEquivocationPrecommit (236) */
|
|
1801
1810
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
|
1802
1811
|
readonly roundNumber: u64;
|
|
1803
1812
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
1804
1813
|
readonly first: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
1805
1814
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
1806
1815
|
}
|
|
1807
|
-
/** @name FinalityGrandpaPrecommit (
|
|
1816
|
+
/** @name FinalityGrandpaPrecommit (237) */
|
|
1808
1817
|
interface FinalityGrandpaPrecommit extends Struct {
|
|
1809
1818
|
readonly targetHash: H256;
|
|
1810
1819
|
readonly targetNumber: u32;
|
|
1811
1820
|
}
|
|
1812
|
-
/** @name SpCoreVoid (
|
|
1821
|
+
/** @name SpCoreVoid (239) */
|
|
1813
1822
|
type SpCoreVoid = Null;
|
|
1814
|
-
/** @name PalletBlockSealCall (
|
|
1823
|
+
/** @name PalletBlockSealCall (240) */
|
|
1815
1824
|
interface PalletBlockSealCall extends Enum {
|
|
1816
1825
|
readonly isApply: boolean;
|
|
1817
1826
|
readonly asApply: {
|
|
@@ -1819,7 +1828,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1819
1828
|
} & Struct;
|
|
1820
1829
|
readonly type: 'Apply';
|
|
1821
1830
|
}
|
|
1822
|
-
/** @name ArgonPrimitivesInherentsBlockSealInherent (
|
|
1831
|
+
/** @name ArgonPrimitivesInherentsBlockSealInherent (241) */
|
|
1823
1832
|
interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
|
|
1824
1833
|
readonly isVote: boolean;
|
|
1825
1834
|
readonly asVote: {
|
|
@@ -1832,13 +1841,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
1832
1841
|
readonly isCompute: boolean;
|
|
1833
1842
|
readonly type: 'Vote' | 'Compute';
|
|
1834
1843
|
}
|
|
1835
|
-
/** @name ArgonPrimitivesBalanceChangeMerkleProof (
|
|
1844
|
+
/** @name ArgonPrimitivesBalanceChangeMerkleProof (242) */
|
|
1836
1845
|
interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
|
|
1837
1846
|
readonly proof: Vec<H256>;
|
|
1838
1847
|
readonly numberOfLeaves: Compact<u32>;
|
|
1839
1848
|
readonly leafIndex: Compact<u32>;
|
|
1840
1849
|
}
|
|
1841
|
-
/** @name ArgonPrimitivesBlockVoteBlockVoteT (
|
|
1850
|
+
/** @name ArgonPrimitivesBlockVoteBlockVoteT (244) */
|
|
1842
1851
|
interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
|
|
1843
1852
|
readonly accountId: AccountId32;
|
|
1844
1853
|
readonly blockHash: H256;
|
|
@@ -1848,7 +1857,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1848
1857
|
readonly blockRewardsAccountId: AccountId32;
|
|
1849
1858
|
readonly tick: Compact<u64>;
|
|
1850
1859
|
}
|
|
1851
|
-
/** @name SpRuntimeMultiSignature (
|
|
1860
|
+
/** @name SpRuntimeMultiSignature (245) */
|
|
1852
1861
|
interface SpRuntimeMultiSignature extends Enum {
|
|
1853
1862
|
readonly isEd25519: boolean;
|
|
1854
1863
|
readonly asEd25519: U8aFixed;
|
|
@@ -1858,11 +1867,11 @@ declare module '@polkadot/types/lookup' {
|
|
|
1858
1867
|
readonly asEcdsa: U8aFixed;
|
|
1859
1868
|
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
|
|
1860
1869
|
}
|
|
1861
|
-
/** @name PalletBlockRewardsCall (
|
|
1870
|
+
/** @name PalletBlockRewardsCall (247) */
|
|
1862
1871
|
type PalletBlockRewardsCall = Null;
|
|
1863
|
-
/** @name PalletMintCall (
|
|
1872
|
+
/** @name PalletMintCall (248) */
|
|
1864
1873
|
type PalletMintCall = Null;
|
|
1865
|
-
/** @name PalletBalancesCall (
|
|
1874
|
+
/** @name PalletBalancesCall (249) */
|
|
1866
1875
|
interface PalletBalancesCall extends Enum {
|
|
1867
1876
|
readonly isTransferAllowDeath: boolean;
|
|
1868
1877
|
readonly asTransferAllowDeath: {
|
|
@@ -1911,13 +1920,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
1911
1920
|
} & Struct;
|
|
1912
1921
|
readonly type: 'TransferAllowDeath' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'ForceSetBalance' | 'ForceAdjustTotalIssuance' | 'Burn';
|
|
1913
1922
|
}
|
|
1914
|
-
/** @name PalletBalancesAdjustmentDirection (
|
|
1923
|
+
/** @name PalletBalancesAdjustmentDirection (250) */
|
|
1915
1924
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
|
1916
1925
|
readonly isIncrease: boolean;
|
|
1917
1926
|
readonly isDecrease: boolean;
|
|
1918
1927
|
readonly type: 'Increase' | 'Decrease';
|
|
1919
1928
|
}
|
|
1920
|
-
/** @name PalletTxPauseCall (
|
|
1929
|
+
/** @name PalletTxPauseCall (252) */
|
|
1921
1930
|
interface PalletTxPauseCall extends Enum {
|
|
1922
1931
|
readonly isPause: boolean;
|
|
1923
1932
|
readonly asPause: {
|
|
@@ -1929,7 +1938,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1929
1938
|
} & Struct;
|
|
1930
1939
|
readonly type: 'Pause' | 'Unpause';
|
|
1931
1940
|
}
|
|
1932
|
-
/** @name PalletUtilityCall (
|
|
1941
|
+
/** @name PalletUtilityCall (253) */
|
|
1933
1942
|
interface PalletUtilityCall extends Enum {
|
|
1934
1943
|
readonly isBatch: boolean;
|
|
1935
1944
|
readonly asBatch: {
|
|
@@ -1960,14 +1969,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1960
1969
|
} & Struct;
|
|
1961
1970
|
readonly type: 'Batch' | 'AsDerivative' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight';
|
|
1962
1971
|
}
|
|
1963
|
-
/** @name ArgonRuntimeOriginCaller (
|
|
1972
|
+
/** @name ArgonRuntimeOriginCaller (255) */
|
|
1964
1973
|
interface ArgonRuntimeOriginCaller extends Enum {
|
|
1965
1974
|
readonly isSystem: boolean;
|
|
1966
1975
|
readonly asSystem: FrameSupportDispatchRawOrigin;
|
|
1967
1976
|
readonly isVoid: boolean;
|
|
1968
1977
|
readonly type: 'System' | 'Void';
|
|
1969
1978
|
}
|
|
1970
|
-
/** @name FrameSupportDispatchRawOrigin (
|
|
1979
|
+
/** @name FrameSupportDispatchRawOrigin (256) */
|
|
1971
1980
|
interface FrameSupportDispatchRawOrigin extends Enum {
|
|
1972
1981
|
readonly isRoot: boolean;
|
|
1973
1982
|
readonly isSigned: boolean;
|
|
@@ -1975,7 +1984,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1975
1984
|
readonly isNone: boolean;
|
|
1976
1985
|
readonly type: 'Root' | 'Signed' | 'None';
|
|
1977
1986
|
}
|
|
1978
|
-
/** @name PalletSudoCall (
|
|
1987
|
+
/** @name PalletSudoCall (257) */
|
|
1979
1988
|
interface PalletSudoCall extends Enum {
|
|
1980
1989
|
readonly isSudo: boolean;
|
|
1981
1990
|
readonly asSudo: {
|
|
@@ -1998,7 +2007,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1998
2007
|
readonly isRemoveKey: boolean;
|
|
1999
2008
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
|
2000
2009
|
}
|
|
2001
|
-
/** @name PalletIsmpCall (
|
|
2010
|
+
/** @name PalletIsmpCall (258) */
|
|
2002
2011
|
interface PalletIsmpCall extends Enum {
|
|
2003
2012
|
readonly isHandleUnsigned: boolean;
|
|
2004
2013
|
readonly asHandleUnsigned: {
|
|
@@ -2018,7 +2027,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2018
2027
|
} & Struct;
|
|
2019
2028
|
readonly type: 'HandleUnsigned' | 'CreateConsensusClient' | 'UpdateConsensusState' | 'FundMessage';
|
|
2020
2029
|
}
|
|
2021
|
-
/** @name IsmpMessagingMessage (
|
|
2030
|
+
/** @name IsmpMessagingMessage (260) */
|
|
2022
2031
|
interface IsmpMessagingMessage extends Enum {
|
|
2023
2032
|
readonly isConsensus: boolean;
|
|
2024
2033
|
readonly asConsensus: IsmpMessagingConsensusMessage;
|
|
@@ -2032,25 +2041,25 @@ declare module '@polkadot/types/lookup' {
|
|
|
2032
2041
|
readonly asTimeout: IsmpMessagingTimeoutMessage;
|
|
2033
2042
|
readonly type: 'Consensus' | 'FraudProof' | 'Request' | 'Response' | 'Timeout';
|
|
2034
2043
|
}
|
|
2035
|
-
/** @name IsmpMessagingConsensusMessage (
|
|
2044
|
+
/** @name IsmpMessagingConsensusMessage (261) */
|
|
2036
2045
|
interface IsmpMessagingConsensusMessage extends Struct {
|
|
2037
2046
|
readonly consensusProof: Bytes;
|
|
2038
2047
|
readonly consensusStateId: U8aFixed;
|
|
2039
2048
|
readonly signer: Bytes;
|
|
2040
2049
|
}
|
|
2041
|
-
/** @name IsmpMessagingFraudProofMessage (
|
|
2050
|
+
/** @name IsmpMessagingFraudProofMessage (262) */
|
|
2042
2051
|
interface IsmpMessagingFraudProofMessage extends Struct {
|
|
2043
2052
|
readonly proof1: Bytes;
|
|
2044
2053
|
readonly proof2: Bytes;
|
|
2045
2054
|
readonly consensusStateId: U8aFixed;
|
|
2046
2055
|
}
|
|
2047
|
-
/** @name IsmpMessagingRequestMessage (
|
|
2056
|
+
/** @name IsmpMessagingRequestMessage (263) */
|
|
2048
2057
|
interface IsmpMessagingRequestMessage extends Struct {
|
|
2049
2058
|
readonly requests: Vec<IsmpRouterPostRequest>;
|
|
2050
2059
|
readonly proof: IsmpMessagingProof;
|
|
2051
2060
|
readonly signer: Bytes;
|
|
2052
2061
|
}
|
|
2053
|
-
/** @name IsmpRouterPostRequest (
|
|
2062
|
+
/** @name IsmpRouterPostRequest (265) */
|
|
2054
2063
|
interface IsmpRouterPostRequest extends Struct {
|
|
2055
2064
|
readonly source: IsmpHostStateMachine;
|
|
2056
2065
|
readonly dest: IsmpHostStateMachine;
|
|
@@ -2060,18 +2069,18 @@ declare module '@polkadot/types/lookup' {
|
|
|
2060
2069
|
readonly timeoutTimestamp: u64;
|
|
2061
2070
|
readonly body: Bytes;
|
|
2062
2071
|
}
|
|
2063
|
-
/** @name IsmpMessagingProof (
|
|
2072
|
+
/** @name IsmpMessagingProof (266) */
|
|
2064
2073
|
interface IsmpMessagingProof extends Struct {
|
|
2065
2074
|
readonly height: IsmpConsensusStateMachineHeight;
|
|
2066
2075
|
readonly proof: Bytes;
|
|
2067
2076
|
}
|
|
2068
|
-
/** @name IsmpMessagingResponseMessage (
|
|
2077
|
+
/** @name IsmpMessagingResponseMessage (267) */
|
|
2069
2078
|
interface IsmpMessagingResponseMessage extends Struct {
|
|
2070
2079
|
readonly datagram: IsmpRouterRequestResponse;
|
|
2071
2080
|
readonly proof: IsmpMessagingProof;
|
|
2072
2081
|
readonly signer: Bytes;
|
|
2073
2082
|
}
|
|
2074
|
-
/** @name IsmpRouterRequestResponse (
|
|
2083
|
+
/** @name IsmpRouterRequestResponse (268) */
|
|
2075
2084
|
interface IsmpRouterRequestResponse extends Enum {
|
|
2076
2085
|
readonly isRequest: boolean;
|
|
2077
2086
|
readonly asRequest: Vec<IsmpRouterRequest>;
|
|
@@ -2079,7 +2088,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2079
2088
|
readonly asResponse: Vec<IsmpRouterResponse>;
|
|
2080
2089
|
readonly type: 'Request' | 'Response';
|
|
2081
2090
|
}
|
|
2082
|
-
/** @name IsmpRouterRequest (
|
|
2091
|
+
/** @name IsmpRouterRequest (270) */
|
|
2083
2092
|
interface IsmpRouterRequest extends Enum {
|
|
2084
2093
|
readonly isPost: boolean;
|
|
2085
2094
|
readonly asPost: IsmpRouterPostRequest;
|
|
@@ -2087,7 +2096,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2087
2096
|
readonly asGet: IsmpRouterGetRequest;
|
|
2088
2097
|
readonly type: 'Post' | 'Get';
|
|
2089
2098
|
}
|
|
2090
|
-
/** @name IsmpRouterGetRequest (
|
|
2099
|
+
/** @name IsmpRouterGetRequest (271) */
|
|
2091
2100
|
interface IsmpRouterGetRequest extends Struct {
|
|
2092
2101
|
readonly source: IsmpHostStateMachine;
|
|
2093
2102
|
readonly dest: IsmpHostStateMachine;
|
|
@@ -2098,7 +2107,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2098
2107
|
readonly context: Bytes;
|
|
2099
2108
|
readonly timeoutTimestamp: u64;
|
|
2100
2109
|
}
|
|
2101
|
-
/** @name IsmpRouterResponse (
|
|
2110
|
+
/** @name IsmpRouterResponse (273) */
|
|
2102
2111
|
interface IsmpRouterResponse extends Enum {
|
|
2103
2112
|
readonly isPost: boolean;
|
|
2104
2113
|
readonly asPost: IsmpRouterPostResponse;
|
|
@@ -2106,23 +2115,23 @@ declare module '@polkadot/types/lookup' {
|
|
|
2106
2115
|
readonly asGet: IsmpRouterGetResponse;
|
|
2107
2116
|
readonly type: 'Post' | 'Get';
|
|
2108
2117
|
}
|
|
2109
|
-
/** @name IsmpRouterPostResponse (
|
|
2118
|
+
/** @name IsmpRouterPostResponse (274) */
|
|
2110
2119
|
interface IsmpRouterPostResponse extends Struct {
|
|
2111
2120
|
readonly post: IsmpRouterPostRequest;
|
|
2112
2121
|
readonly response: Bytes;
|
|
2113
2122
|
readonly timeoutTimestamp: u64;
|
|
2114
2123
|
}
|
|
2115
|
-
/** @name IsmpRouterGetResponse (
|
|
2124
|
+
/** @name IsmpRouterGetResponse (275) */
|
|
2116
2125
|
interface IsmpRouterGetResponse extends Struct {
|
|
2117
2126
|
readonly get_: IsmpRouterGetRequest;
|
|
2118
2127
|
readonly values_: Vec<IsmpRouterStorageValue>;
|
|
2119
2128
|
}
|
|
2120
|
-
/** @name IsmpRouterStorageValue (
|
|
2129
|
+
/** @name IsmpRouterStorageValue (277) */
|
|
2121
2130
|
interface IsmpRouterStorageValue extends Struct {
|
|
2122
2131
|
readonly key: Bytes;
|
|
2123
2132
|
readonly value: Option<Bytes>;
|
|
2124
2133
|
}
|
|
2125
|
-
/** @name IsmpMessagingTimeoutMessage (
|
|
2134
|
+
/** @name IsmpMessagingTimeoutMessage (279) */
|
|
2126
2135
|
interface IsmpMessagingTimeoutMessage extends Enum {
|
|
2127
2136
|
readonly isPost: boolean;
|
|
2128
2137
|
readonly asPost: {
|
|
@@ -2140,7 +2149,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2140
2149
|
} & Struct;
|
|
2141
2150
|
readonly type: 'Post' | 'PostResponse' | 'Get';
|
|
2142
2151
|
}
|
|
2143
|
-
/** @name IsmpMessagingCreateConsensusState (
|
|
2152
|
+
/** @name IsmpMessagingCreateConsensusState (281) */
|
|
2144
2153
|
interface IsmpMessagingCreateConsensusState extends Struct {
|
|
2145
2154
|
readonly consensusState: Bytes;
|
|
2146
2155
|
readonly consensusClientId: U8aFixed;
|
|
@@ -2149,29 +2158,29 @@ declare module '@polkadot/types/lookup' {
|
|
|
2149
2158
|
readonly challengePeriods: BTreeMap<IsmpHostStateMachine, u64>;
|
|
2150
2159
|
readonly stateMachineCommitments: Vec<ITuple<[IsmpConsensusStateMachineId, IsmpMessagingStateCommitmentHeight]>>;
|
|
2151
2160
|
}
|
|
2152
|
-
/** @name IsmpMessagingStateCommitmentHeight (
|
|
2161
|
+
/** @name IsmpMessagingStateCommitmentHeight (287) */
|
|
2153
2162
|
interface IsmpMessagingStateCommitmentHeight extends Struct {
|
|
2154
2163
|
readonly commitment: IsmpConsensusStateCommitment;
|
|
2155
2164
|
readonly height: u64;
|
|
2156
2165
|
}
|
|
2157
|
-
/** @name IsmpConsensusStateCommitment (
|
|
2166
|
+
/** @name IsmpConsensusStateCommitment (288) */
|
|
2158
2167
|
interface IsmpConsensusStateCommitment extends Struct {
|
|
2159
2168
|
readonly timestamp: u64;
|
|
2160
2169
|
readonly overlayRoot: Option<H256>;
|
|
2161
2170
|
readonly stateRoot: H256;
|
|
2162
2171
|
}
|
|
2163
|
-
/** @name PalletIsmpUtilsUpdateConsensusState (
|
|
2172
|
+
/** @name PalletIsmpUtilsUpdateConsensusState (289) */
|
|
2164
2173
|
interface PalletIsmpUtilsUpdateConsensusState extends Struct {
|
|
2165
2174
|
readonly consensusStateId: U8aFixed;
|
|
2166
2175
|
readonly unbondingPeriod: Option<u64>;
|
|
2167
2176
|
readonly challengePeriods: BTreeMap<IsmpHostStateMachine, u64>;
|
|
2168
2177
|
}
|
|
2169
|
-
/** @name PalletIsmpUtilsFundMessageParams (
|
|
2178
|
+
/** @name PalletIsmpUtilsFundMessageParams (290) */
|
|
2170
2179
|
interface PalletIsmpUtilsFundMessageParams extends Struct {
|
|
2171
2180
|
readonly commitment: PalletIsmpUtilsMessageCommitment;
|
|
2172
2181
|
readonly amount: u128;
|
|
2173
2182
|
}
|
|
2174
|
-
/** @name PalletIsmpUtilsMessageCommitment (
|
|
2183
|
+
/** @name PalletIsmpUtilsMessageCommitment (291) */
|
|
2175
2184
|
interface PalletIsmpUtilsMessageCommitment extends Enum {
|
|
2176
2185
|
readonly isRequest: boolean;
|
|
2177
2186
|
readonly asRequest: H256;
|
|
@@ -2179,7 +2188,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2179
2188
|
readonly asResponse: H256;
|
|
2180
2189
|
readonly type: 'Request' | 'Response';
|
|
2181
2190
|
}
|
|
2182
|
-
/** @name IsmpGrandpaCall (
|
|
2191
|
+
/** @name IsmpGrandpaCall (292) */
|
|
2183
2192
|
interface IsmpGrandpaCall extends Enum {
|
|
2184
2193
|
readonly isAddStateMachines: boolean;
|
|
2185
2194
|
readonly asAddStateMachines: {
|
|
@@ -2191,12 +2200,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
2191
2200
|
} & Struct;
|
|
2192
2201
|
readonly type: 'AddStateMachines' | 'RemoveStateMachines';
|
|
2193
2202
|
}
|
|
2194
|
-
/** @name IsmpGrandpaAddStateMachine (
|
|
2203
|
+
/** @name IsmpGrandpaAddStateMachine (294) */
|
|
2195
2204
|
interface IsmpGrandpaAddStateMachine extends Struct {
|
|
2196
2205
|
readonly stateMachine: IsmpHostStateMachine;
|
|
2197
2206
|
readonly slotDuration: u64;
|
|
2198
2207
|
}
|
|
2199
|
-
/** @name PalletTokenGatewayCall (
|
|
2208
|
+
/** @name PalletTokenGatewayCall (295) */
|
|
2200
2209
|
interface PalletTokenGatewayCall extends Enum {
|
|
2201
2210
|
readonly isTeleport: boolean;
|
|
2202
2211
|
readonly asTeleport: {
|
|
@@ -2216,7 +2225,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2216
2225
|
} & Struct;
|
|
2217
2226
|
readonly type: 'Teleport' | 'SetTokenGatewayAddresses' | 'CreateErc6160Asset' | 'UpdateErc6160Asset';
|
|
2218
2227
|
}
|
|
2219
|
-
/** @name PalletTokenGatewayTeleportParams (
|
|
2228
|
+
/** @name PalletTokenGatewayTeleportParams (296) */
|
|
2220
2229
|
interface PalletTokenGatewayTeleportParams extends Struct {
|
|
2221
2230
|
readonly assetId: u32;
|
|
2222
2231
|
readonly destination: IsmpHostStateMachine;
|
|
@@ -2225,27 +2234,29 @@ declare module '@polkadot/types/lookup' {
|
|
|
2225
2234
|
readonly timeout: u64;
|
|
2226
2235
|
readonly tokenGateway: Bytes;
|
|
2227
2236
|
readonly relayerFee: u128;
|
|
2237
|
+
readonly callData: Option<Bytes>;
|
|
2228
2238
|
}
|
|
2229
|
-
/** @name PalletTokenGatewayAssetRegistration (
|
|
2239
|
+
/** @name PalletTokenGatewayAssetRegistration (300) */
|
|
2230
2240
|
interface PalletTokenGatewayAssetRegistration extends Struct {
|
|
2231
2241
|
readonly localId: u32;
|
|
2232
2242
|
readonly reg: TokenGatewayPrimitivesGatewayAssetRegistration;
|
|
2243
|
+
readonly native: bool;
|
|
2233
2244
|
}
|
|
2234
|
-
/** @name TokenGatewayPrimitivesGatewayAssetRegistration (
|
|
2245
|
+
/** @name TokenGatewayPrimitivesGatewayAssetRegistration (301) */
|
|
2235
2246
|
interface TokenGatewayPrimitivesGatewayAssetRegistration extends Struct {
|
|
2236
2247
|
readonly name: Bytes;
|
|
2237
2248
|
readonly symbol: Bytes;
|
|
2238
2249
|
readonly chains: Vec<IsmpHostStateMachine>;
|
|
2239
2250
|
readonly minimumBalance: Option<u128>;
|
|
2240
2251
|
}
|
|
2241
|
-
/** @name TokenGatewayPrimitivesGatewayAssetUpdate (
|
|
2252
|
+
/** @name TokenGatewayPrimitivesGatewayAssetUpdate (303) */
|
|
2242
2253
|
interface TokenGatewayPrimitivesGatewayAssetUpdate extends Struct {
|
|
2243
2254
|
readonly assetId: H256;
|
|
2244
2255
|
readonly addChains: Vec<IsmpHostStateMachine>;
|
|
2245
2256
|
readonly removeChains: Vec<IsmpHostStateMachine>;
|
|
2246
2257
|
readonly newAdmins: Vec<ITuple<[IsmpHostStateMachine, H160]>>;
|
|
2247
2258
|
}
|
|
2248
|
-
/** @name PalletMultisigError (
|
|
2259
|
+
/** @name PalletMultisigError (310) */
|
|
2249
2260
|
interface PalletMultisigError extends Enum {
|
|
2250
2261
|
readonly isMinimumThreshold: boolean;
|
|
2251
2262
|
readonly isAlreadyApproved: boolean;
|
|
@@ -2263,19 +2274,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
2263
2274
|
readonly isAlreadyStored: boolean;
|
|
2264
2275
|
readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored';
|
|
2265
2276
|
}
|
|
2266
|
-
/** @name PalletProxyProxyDefinition (
|
|
2277
|
+
/** @name PalletProxyProxyDefinition (313) */
|
|
2267
2278
|
interface PalletProxyProxyDefinition extends Struct {
|
|
2268
2279
|
readonly delegate: AccountId32;
|
|
2269
2280
|
readonly proxyType: ArgonRuntimeConfigsProxyType;
|
|
2270
2281
|
readonly delay: u32;
|
|
2271
2282
|
}
|
|
2272
|
-
/** @name PalletProxyAnnouncement (
|
|
2283
|
+
/** @name PalletProxyAnnouncement (317) */
|
|
2273
2284
|
interface PalletProxyAnnouncement extends Struct {
|
|
2274
2285
|
readonly real: AccountId32;
|
|
2275
2286
|
readonly callHash: H256;
|
|
2276
2287
|
readonly height: u32;
|
|
2277
2288
|
}
|
|
2278
|
-
/** @name PalletProxyError (
|
|
2289
|
+
/** @name PalletProxyError (319) */
|
|
2279
2290
|
interface PalletProxyError extends Enum {
|
|
2280
2291
|
readonly isTooMany: boolean;
|
|
2281
2292
|
readonly isNotFound: boolean;
|
|
@@ -2287,20 +2298,27 @@ declare module '@polkadot/types/lookup' {
|
|
|
2287
2298
|
readonly isNoSelfProxy: boolean;
|
|
2288
2299
|
readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy';
|
|
2289
2300
|
}
|
|
2290
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
2301
|
+
/** @name ArgonPrimitivesTickTicker (320) */
|
|
2291
2302
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
2292
2303
|
readonly tickDurationMillis: Compact<u64>;
|
|
2293
2304
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
2294
2305
|
}
|
|
2295
|
-
/** @name PalletTicksError (
|
|
2306
|
+
/** @name PalletTicksError (322) */
|
|
2296
2307
|
type PalletTicksError = Null;
|
|
2297
|
-
/** @name
|
|
2308
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (328) */
|
|
2309
|
+
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
2310
|
+
readonly bidsCount: u32;
|
|
2311
|
+
readonly bidAmountMin: u128;
|
|
2312
|
+
readonly bidAmountMax: u128;
|
|
2313
|
+
readonly bidAmountSum: u128;
|
|
2314
|
+
}
|
|
2315
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (330) */
|
|
2298
2316
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
2299
2317
|
readonly blocksBeforeBidEndForVrfClose: Compact<u32>;
|
|
2300
2318
|
readonly blocksBetweenSlots: Compact<u32>;
|
|
2301
|
-
readonly
|
|
2319
|
+
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
2302
2320
|
}
|
|
2303
|
-
/** @name PalletMiningSlotError (
|
|
2321
|
+
/** @name PalletMiningSlotError (332) */
|
|
2304
2322
|
interface PalletMiningSlotError extends Enum {
|
|
2305
2323
|
readonly isSlotNotTakingBids: boolean;
|
|
2306
2324
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -2326,7 +2344,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2326
2344
|
readonly asGenericBondError: ArgonPrimitivesBondBondError;
|
|
2327
2345
|
readonly type: 'SlotNotTakingBids' | 'TooManyBlockRegistrants' | 'InsufficientOwnershipTokens' | 'BidTooLow' | 'CannotRegisterOverlappingSessions' | 'BondNotFound' | 'NoMoreBondIds' | 'VaultClosed' | 'MinimumBondAmountNotMet' | 'ExpirationAtBlockOverflow' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'BondAlreadyClosed' | 'FeeExceedsBondAmount' | 'AccountWouldBeBelowMinimum' | 'GenericBondError';
|
|
2328
2346
|
}
|
|
2329
|
-
/** @name ArgonPrimitivesBondBondError (
|
|
2347
|
+
/** @name ArgonPrimitivesBondBondError (333) */
|
|
2330
2348
|
interface ArgonPrimitivesBondBondError extends Enum {
|
|
2331
2349
|
readonly isBondNotFound: boolean;
|
|
2332
2350
|
readonly isNoMoreBondIds: boolean;
|
|
@@ -2350,7 +2368,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2350
2368
|
readonly isInternalError: boolean;
|
|
2351
2369
|
readonly type: 'BondNotFound' | 'NoMoreBondIds' | 'MinimumBondAmountNotMet' | 'VaultClosed' | 'ExpirationAtBlockOverflow' | 'AccountWouldBeBelowMinimum' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'InsufficientBitcoinsForMining' | 'ExpirationTooSoon' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'UnableToDecodeVaultBitcoinPubkey' | 'FeeExceedsBondAmount' | 'InvalidBitcoinScript' | 'InternalError';
|
|
2352
2370
|
}
|
|
2353
|
-
/** @name ArgonPrimitivesBitcoinUtxoValue (
|
|
2371
|
+
/** @name ArgonPrimitivesBitcoinUtxoValue (334) */
|
|
2354
2372
|
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
2355
2373
|
readonly utxoId: u64;
|
|
2356
2374
|
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
@@ -2358,7 +2376,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2358
2376
|
readonly submittedAtHeight: Compact<u64>;
|
|
2359
2377
|
readonly watchForSpentUntilHeight: Compact<u64>;
|
|
2360
2378
|
}
|
|
2361
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (
|
|
2379
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (335) */
|
|
2362
2380
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
2363
2381
|
readonly isP2wsh: boolean;
|
|
2364
2382
|
readonly asP2wsh: {
|
|
@@ -2366,7 +2384,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2366
2384
|
} & Struct;
|
|
2367
2385
|
readonly type: 'P2wsh';
|
|
2368
2386
|
}
|
|
2369
|
-
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (
|
|
2387
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (340) */
|
|
2370
2388
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
2371
2389
|
readonly isBitcoin: boolean;
|
|
2372
2390
|
readonly isTestnet: boolean;
|
|
@@ -2374,7 +2392,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2374
2392
|
readonly isRegtest: boolean;
|
|
2375
2393
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
2376
2394
|
}
|
|
2377
|
-
/** @name PalletBitcoinUtxosError (
|
|
2395
|
+
/** @name PalletBitcoinUtxosError (343) */
|
|
2378
2396
|
interface PalletBitcoinUtxosError extends Enum {
|
|
2379
2397
|
readonly isNoPermissions: boolean;
|
|
2380
2398
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -2389,7 +2407,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2389
2407
|
readonly isInvalidBitcoinScript: boolean;
|
|
2390
2408
|
readonly type: 'NoPermissions' | 'NoBitcoinConfirmedBlock' | 'InsufficientBitcoinAmount' | 'NoBitcoinPricesAvailable' | 'ScriptPubkeyConflict' | 'UtxoNotLocked' | 'RedemptionsUnavailable' | 'InvalidBitcoinSyncHeight' | 'BitcoinHeightNotConfirmed' | 'MaxUtxosExceeded' | 'InvalidBitcoinScript';
|
|
2391
2409
|
}
|
|
2392
|
-
/** @name ArgonPrimitivesBondVault (
|
|
2410
|
+
/** @name ArgonPrimitivesBondVault (344) */
|
|
2393
2411
|
interface ArgonPrimitivesBondVault extends Struct {
|
|
2394
2412
|
readonly operatorAccountId: AccountId32;
|
|
2395
2413
|
readonly bitcoinArgons: ArgonPrimitivesBondVaultArgons;
|
|
@@ -2400,14 +2418,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2400
2418
|
readonly isClosed: bool;
|
|
2401
2419
|
readonly pendingTerms: Option<ITuple<[u32, ArgonPrimitivesBondVaultTerms]>>;
|
|
2402
2420
|
}
|
|
2403
|
-
/** @name ArgonPrimitivesBondVaultArgons (
|
|
2421
|
+
/** @name ArgonPrimitivesBondVaultArgons (345) */
|
|
2404
2422
|
interface ArgonPrimitivesBondVaultArgons extends Struct {
|
|
2405
2423
|
readonly annualPercentRate: Compact<u128>;
|
|
2406
2424
|
readonly allocated: Compact<u128>;
|
|
2407
2425
|
readonly bonded: Compact<u128>;
|
|
2408
2426
|
readonly baseFee: Compact<u128>;
|
|
2409
2427
|
}
|
|
2410
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
2428
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (349) */
|
|
2411
2429
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
2412
2430
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
2413
2431
|
readonly depth: Compact<u8>;
|
|
@@ -2416,13 +2434,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2416
2434
|
readonly chainCode: U8aFixed;
|
|
2417
2435
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
2418
2436
|
}
|
|
2419
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
2437
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (351) */
|
|
2420
2438
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
2421
2439
|
readonly isMain: boolean;
|
|
2422
2440
|
readonly isTest: boolean;
|
|
2423
2441
|
readonly type: 'Main' | 'Test';
|
|
2424
2442
|
}
|
|
2425
|
-
/** @name PalletVaultsError (
|
|
2443
|
+
/** @name PalletVaultsError (354) */
|
|
2426
2444
|
interface PalletVaultsError extends Enum {
|
|
2427
2445
|
readonly isBondNotFound: boolean;
|
|
2428
2446
|
readonly isNoMoreVaultIds: boolean;
|
|
@@ -2463,7 +2481,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2463
2481
|
readonly isUnableToDecodeVaultBitcoinPubkey: boolean;
|
|
2464
2482
|
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';
|
|
2465
2483
|
}
|
|
2466
|
-
/** @name ArgonPrimitivesBond (
|
|
2484
|
+
/** @name ArgonPrimitivesBond (355) */
|
|
2467
2485
|
interface ArgonPrimitivesBond extends Struct {
|
|
2468
2486
|
readonly bondType: ArgonPrimitivesBondBondType;
|
|
2469
2487
|
readonly vaultId: Compact<u32>;
|
|
@@ -2475,7 +2493,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2475
2493
|
readonly startBlock: Compact<u32>;
|
|
2476
2494
|
readonly expiration: ArgonPrimitivesBondBondExpiration;
|
|
2477
2495
|
}
|
|
2478
|
-
/** @name PalletBondUtxoState (
|
|
2496
|
+
/** @name PalletBondUtxoState (358) */
|
|
2479
2497
|
interface PalletBondUtxoState extends Struct {
|
|
2480
2498
|
readonly bondId: Compact<u64>;
|
|
2481
2499
|
readonly satoshis: Compact<u64>;
|
|
@@ -2489,7 +2507,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2489
2507
|
readonly utxoScriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
2490
2508
|
readonly isVerified: bool;
|
|
2491
2509
|
}
|
|
2492
|
-
/** @name PalletBondUtxoCosignRequest (
|
|
2510
|
+
/** @name PalletBondUtxoCosignRequest (362) */
|
|
2493
2511
|
interface PalletBondUtxoCosignRequest extends Struct {
|
|
2494
2512
|
readonly bondId: Compact<u64>;
|
|
2495
2513
|
readonly vaultId: Compact<u32>;
|
|
@@ -2498,7 +2516,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2498
2516
|
readonly toScriptPubkey: Bytes;
|
|
2499
2517
|
readonly redemptionPrice: Compact<u128>;
|
|
2500
2518
|
}
|
|
2501
|
-
/** @name PalletBondError (
|
|
2519
|
+
/** @name PalletBondError (366) */
|
|
2502
2520
|
interface PalletBondError extends Enum {
|
|
2503
2521
|
readonly isBondNotFound: boolean;
|
|
2504
2522
|
readonly isNoMoreBondIds: boolean;
|
|
@@ -2532,7 +2550,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2532
2550
|
readonly asGenericBondError: ArgonPrimitivesBondBondError;
|
|
2533
2551
|
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';
|
|
2534
2552
|
}
|
|
2535
|
-
/** @name PalletNotariesError (
|
|
2553
|
+
/** @name PalletNotariesError (378) */
|
|
2536
2554
|
interface PalletNotariesError extends Enum {
|
|
2537
2555
|
readonly isProposalNotFound: boolean;
|
|
2538
2556
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -2545,7 +2563,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2545
2563
|
readonly isInvalidNotary: boolean;
|
|
2546
2564
|
readonly type: 'ProposalNotFound' | 'MaxNotariesExceeded' | 'MaxProposalsPerBlockExceeded' | 'NotAnActiveNotary' | 'InvalidNotaryOperator' | 'NoMoreNotaryIds' | 'EffectiveTickTooSoon' | 'TooManyKeys' | 'InvalidNotary';
|
|
2547
2565
|
}
|
|
2548
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
2566
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (382) */
|
|
2549
2567
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
2550
2568
|
readonly notebookNumber: Compact<u32>;
|
|
2551
2569
|
readonly tick: Compact<u64>;
|
|
@@ -2553,7 +2571,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2553
2571
|
readonly secretHash: H256;
|
|
2554
2572
|
readonly parentSecret: Option<H256>;
|
|
2555
2573
|
}
|
|
2556
|
-
/** @name PalletNotebookError (
|
|
2574
|
+
/** @name PalletNotebookError (385) */
|
|
2557
2575
|
interface PalletNotebookError extends Enum {
|
|
2558
2576
|
readonly isDuplicateNotebookNumber: boolean;
|
|
2559
2577
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -2571,17 +2589,17 @@ declare module '@polkadot/types/lookup' {
|
|
|
2571
2589
|
readonly isInvalidNotaryOperator: boolean;
|
|
2572
2590
|
readonly type: 'DuplicateNotebookNumber' | 'MissingNotebookNumber' | 'NotebookTickAlreadyUsed' | 'InvalidNotebookSignature' | 'InvalidSecretProvided' | 'CouldNotDecodeNotebook' | 'DuplicateNotebookDigest' | 'MissingNotebookDigest' | 'InvalidNotebookDigest' | 'MultipleNotebookInherentsProvided' | 'InternalError' | 'NotebookSubmittedForLockedNotary' | 'InvalidReprocessNotebook' | 'InvalidNotaryOperator';
|
|
2573
2591
|
}
|
|
2574
|
-
/** @name PalletChainTransferQueuedTransferOut (
|
|
2592
|
+
/** @name PalletChainTransferQueuedTransferOut (386) */
|
|
2575
2593
|
interface PalletChainTransferQueuedTransferOut extends Struct {
|
|
2576
2594
|
readonly accountId: AccountId32;
|
|
2577
2595
|
readonly amount: u128;
|
|
2578
2596
|
readonly expirationTick: u64;
|
|
2579
2597
|
readonly notaryId: u32;
|
|
2580
2598
|
}
|
|
2581
|
-
/** @name FrameSupportPalletId (
|
|
2599
|
+
/** @name FrameSupportPalletId (392) */
|
|
2582
2600
|
interface FrameSupportPalletId extends U8aFixed {
|
|
2583
2601
|
}
|
|
2584
|
-
/** @name PalletChainTransferError (
|
|
2602
|
+
/** @name PalletChainTransferError (393) */
|
|
2585
2603
|
interface PalletChainTransferError extends Enum {
|
|
2586
2604
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
2587
2605
|
readonly isInsufficientFunds: boolean;
|
|
@@ -2591,7 +2609,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2591
2609
|
readonly isInvalidNotaryUsedForTransfer: boolean;
|
|
2592
2610
|
readonly type: 'MaxBlockTransfersExceeded' | 'InsufficientFunds' | 'InsufficientNotarizedFunds' | 'InvalidOrDuplicatedLocalchainTransfer' | 'NotebookIncludesExpiredLocalchainTransfer' | 'InvalidNotaryUsedForTransfer';
|
|
2593
2611
|
}
|
|
2594
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
2612
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (398) */
|
|
2595
2613
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
2596
2614
|
readonly notaryId: Compact<u32>;
|
|
2597
2615
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2599,12 +2617,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
2599
2617
|
readonly blockVotesCount: Compact<u32>;
|
|
2600
2618
|
readonly blockVotingPower: Compact<u128>;
|
|
2601
2619
|
}
|
|
2602
|
-
/** @name PalletBlockSealSpecError (
|
|
2620
|
+
/** @name PalletBlockSealSpecError (403) */
|
|
2603
2621
|
interface PalletBlockSealSpecError extends Enum {
|
|
2604
2622
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
2605
2623
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
2606
2624
|
}
|
|
2607
|
-
/** @name PalletDomainsError (
|
|
2625
|
+
/** @name PalletDomainsError (405) */
|
|
2608
2626
|
interface PalletDomainsError extends Enum {
|
|
2609
2627
|
readonly isDomainNotRegistered: boolean;
|
|
2610
2628
|
readonly isNotDomainOwner: boolean;
|
|
@@ -2613,7 +2631,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2613
2631
|
readonly isAccountDecodingError: boolean;
|
|
2614
2632
|
readonly type: 'DomainNotRegistered' | 'NotDomainOwner' | 'FailedToAddToAddressHistory' | 'FailedToAddExpiringDomain' | 'AccountDecodingError';
|
|
2615
2633
|
}
|
|
2616
|
-
/** @name PalletPriceIndexError (
|
|
2634
|
+
/** @name PalletPriceIndexError (406) */
|
|
2617
2635
|
interface PalletPriceIndexError extends Enum {
|
|
2618
2636
|
readonly isNotAuthorizedOperator: boolean;
|
|
2619
2637
|
readonly isMissingValue: boolean;
|
|
@@ -2621,7 +2639,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2621
2639
|
readonly isMaxPriceChangePerTickExceeded: boolean;
|
|
2622
2640
|
readonly type: 'NotAuthorizedOperator' | 'MissingValue' | 'PricesTooOld' | 'MaxPriceChangePerTickExceeded';
|
|
2623
2641
|
}
|
|
2624
|
-
/** @name PalletGrandpaStoredState (
|
|
2642
|
+
/** @name PalletGrandpaStoredState (407) */
|
|
2625
2643
|
interface PalletGrandpaStoredState extends Enum {
|
|
2626
2644
|
readonly isLive: boolean;
|
|
2627
2645
|
readonly isPendingPause: boolean;
|
|
@@ -2637,14 +2655,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2637
2655
|
} & Struct;
|
|
2638
2656
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
2639
2657
|
}
|
|
2640
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
2658
|
+
/** @name PalletGrandpaStoredPendingChange (408) */
|
|
2641
2659
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
2642
2660
|
readonly scheduledAt: u32;
|
|
2643
2661
|
readonly delay: u32;
|
|
2644
2662
|
readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
|
|
2645
2663
|
readonly forced: Option<u32>;
|
|
2646
2664
|
}
|
|
2647
|
-
/** @name PalletGrandpaError (
|
|
2665
|
+
/** @name PalletGrandpaError (411) */
|
|
2648
2666
|
interface PalletGrandpaError extends Enum {
|
|
2649
2667
|
readonly isPauseFailed: boolean;
|
|
2650
2668
|
readonly isResumeFailed: boolean;
|
|
@@ -2655,12 +2673,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2655
2673
|
readonly isDuplicateOffenceReport: boolean;
|
|
2656
2674
|
readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
|
|
2657
2675
|
}
|
|
2658
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
2676
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (412) */
|
|
2659
2677
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
2660
2678
|
readonly blockAuthorAccountId: AccountId32;
|
|
2661
2679
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
2680
|
+
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
2662
2681
|
}
|
|
2663
|
-
/** @name PalletBlockSealError (
|
|
2682
|
+
/** @name PalletBlockSealError (416) */
|
|
2664
2683
|
interface PalletBlockSealError extends Enum {
|
|
2665
2684
|
readonly isInvalidVoteSealStrength: boolean;
|
|
2666
2685
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -2679,39 +2698,46 @@ declare module '@polkadot/types/lookup' {
|
|
|
2679
2698
|
readonly isNoClosestMinerFoundForVote: boolean;
|
|
2680
2699
|
readonly isBlockVoteInvalidSignature: boolean;
|
|
2681
2700
|
readonly isInvalidForkPowerParent: boolean;
|
|
2682
|
-
readonly
|
|
2701
|
+
readonly isBlockSealDecodeError: boolean;
|
|
2702
|
+
readonly type: 'InvalidVoteSealStrength' | 'InvalidSubmitter' | 'UnableToDecodeVoteAccount' | 'UnregisteredBlockAuthor' | 'InvalidBlockVoteProof' | 'NoGrandparentVoteMinimum' | 'DuplicateBlockSealProvided' | 'InsufficientVotingPower' | 'ParentVotingKeyNotFound' | 'InvalidVoteGrandparentHash' | 'IneligibleNotebookUsed' | 'NoEligibleVotingRoot' | 'CouldNotDecodeVote' | 'MaxNotebooksAtTickExceeded' | 'NoClosestMinerFoundForVote' | 'BlockVoteInvalidSignature' | 'InvalidForkPowerParent' | 'BlockSealDecodeError';
|
|
2683
2703
|
}
|
|
2684
|
-
/** @name PalletBlockRewardsError (
|
|
2704
|
+
/** @name PalletBlockRewardsError (419) */
|
|
2685
2705
|
type PalletBlockRewardsError = Null;
|
|
2686
|
-
/** @name
|
|
2706
|
+
/** @name PalletMintMintAction (424) */
|
|
2707
|
+
interface PalletMintMintAction extends Struct {
|
|
2708
|
+
readonly argonBurned: u128;
|
|
2709
|
+
readonly argonMinted: u128;
|
|
2710
|
+
readonly bitcoinMinted: u128;
|
|
2711
|
+
}
|
|
2712
|
+
/** @name PalletMintError (425) */
|
|
2687
2713
|
interface PalletMintError extends Enum {
|
|
2688
2714
|
readonly isTooManyPendingMints: boolean;
|
|
2689
2715
|
readonly type: 'TooManyPendingMints';
|
|
2690
2716
|
}
|
|
2691
|
-
/** @name PalletBalancesBalanceLock (
|
|
2717
|
+
/** @name PalletBalancesBalanceLock (427) */
|
|
2692
2718
|
interface PalletBalancesBalanceLock extends Struct {
|
|
2693
2719
|
readonly id: U8aFixed;
|
|
2694
2720
|
readonly amount: u128;
|
|
2695
2721
|
readonly reasons: PalletBalancesReasons;
|
|
2696
2722
|
}
|
|
2697
|
-
/** @name PalletBalancesReasons (
|
|
2723
|
+
/** @name PalletBalancesReasons (428) */
|
|
2698
2724
|
interface PalletBalancesReasons extends Enum {
|
|
2699
2725
|
readonly isFee: boolean;
|
|
2700
2726
|
readonly isMisc: boolean;
|
|
2701
2727
|
readonly isAll: boolean;
|
|
2702
2728
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
2703
2729
|
}
|
|
2704
|
-
/** @name PalletBalancesReserveData (
|
|
2730
|
+
/** @name PalletBalancesReserveData (431) */
|
|
2705
2731
|
interface PalletBalancesReserveData extends Struct {
|
|
2706
2732
|
readonly id: U8aFixed;
|
|
2707
2733
|
readonly amount: u128;
|
|
2708
2734
|
}
|
|
2709
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
2735
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (434) */
|
|
2710
2736
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
2711
2737
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
2712
2738
|
readonly amount: u128;
|
|
2713
2739
|
}
|
|
2714
|
-
/** @name ArgonRuntimeRuntimeHoldReason (
|
|
2740
|
+
/** @name ArgonRuntimeRuntimeHoldReason (435) */
|
|
2715
2741
|
interface ArgonRuntimeRuntimeHoldReason extends Enum {
|
|
2716
2742
|
readonly isMiningSlot: boolean;
|
|
2717
2743
|
readonly asMiningSlot: PalletMiningSlotHoldReason;
|
|
@@ -2723,44 +2749,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
2723
2749
|
readonly asBlockRewards: PalletBlockRewardsHoldReason;
|
|
2724
2750
|
readonly type: 'MiningSlot' | 'Vaults' | 'Bonds' | 'BlockRewards';
|
|
2725
2751
|
}
|
|
2726
|
-
/** @name PalletMiningSlotHoldReason (
|
|
2752
|
+
/** @name PalletMiningSlotHoldReason (436) */
|
|
2727
2753
|
interface PalletMiningSlotHoldReason extends Enum {
|
|
2728
2754
|
readonly isRegisterAsMiner: boolean;
|
|
2729
2755
|
readonly type: 'RegisterAsMiner';
|
|
2730
2756
|
}
|
|
2731
|
-
/** @name PalletVaultsHoldReason (
|
|
2757
|
+
/** @name PalletVaultsHoldReason (437) */
|
|
2732
2758
|
interface PalletVaultsHoldReason extends Enum {
|
|
2733
2759
|
readonly isEnterVault: boolean;
|
|
2734
2760
|
readonly isBondFee: boolean;
|
|
2735
2761
|
readonly type: 'EnterVault' | 'BondFee';
|
|
2736
2762
|
}
|
|
2737
|
-
/** @name PalletBondHoldReason (
|
|
2763
|
+
/** @name PalletBondHoldReason (438) */
|
|
2738
2764
|
interface PalletBondHoldReason extends Enum {
|
|
2739
2765
|
readonly isUnlockingBitcoin: boolean;
|
|
2740
2766
|
readonly type: 'UnlockingBitcoin';
|
|
2741
2767
|
}
|
|
2742
|
-
/** @name PalletBlockRewardsHoldReason (
|
|
2768
|
+
/** @name PalletBlockRewardsHoldReason (439) */
|
|
2743
2769
|
interface PalletBlockRewardsHoldReason extends Enum {
|
|
2744
2770
|
readonly isMaturationPeriod: boolean;
|
|
2745
2771
|
readonly type: 'MaturationPeriod';
|
|
2746
2772
|
}
|
|
2747
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
2773
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (442) */
|
|
2748
2774
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
2749
2775
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
2750
2776
|
readonly amount: u128;
|
|
2751
2777
|
}
|
|
2752
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
2778
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (443) */
|
|
2753
2779
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
2754
2780
|
readonly isBlockRewards: boolean;
|
|
2755
2781
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
2756
2782
|
readonly type: 'BlockRewards';
|
|
2757
2783
|
}
|
|
2758
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
2784
|
+
/** @name PalletBlockRewardsFreezeReason (444) */
|
|
2759
2785
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
2760
2786
|
readonly isMaturationPeriod: boolean;
|
|
2761
2787
|
readonly type: 'MaturationPeriod';
|
|
2762
2788
|
}
|
|
2763
|
-
/** @name PalletBalancesError (
|
|
2789
|
+
/** @name PalletBalancesError (446) */
|
|
2764
2790
|
interface PalletBalancesError extends Enum {
|
|
2765
2791
|
readonly isVestingBalance: boolean;
|
|
2766
2792
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -2776,7 +2802,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2776
2802
|
readonly isDeltaZero: boolean;
|
|
2777
2803
|
readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
|
|
2778
2804
|
}
|
|
2779
|
-
/** @name PalletTxPauseError (
|
|
2805
|
+
/** @name PalletTxPauseError (448) */
|
|
2780
2806
|
interface PalletTxPauseError extends Enum {
|
|
2781
2807
|
readonly isIsPaused: boolean;
|
|
2782
2808
|
readonly isIsUnpaused: boolean;
|
|
@@ -2784,23 +2810,23 @@ declare module '@polkadot/types/lookup' {
|
|
|
2784
2810
|
readonly isNotFound: boolean;
|
|
2785
2811
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
2786
2812
|
}
|
|
2787
|
-
/** @name PalletTransactionPaymentReleases (
|
|
2813
|
+
/** @name PalletTransactionPaymentReleases (449) */
|
|
2788
2814
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
2789
2815
|
readonly isV1Ancient: boolean;
|
|
2790
2816
|
readonly isV2: boolean;
|
|
2791
2817
|
readonly type: 'V1Ancient' | 'V2';
|
|
2792
2818
|
}
|
|
2793
|
-
/** @name PalletUtilityError (
|
|
2819
|
+
/** @name PalletUtilityError (450) */
|
|
2794
2820
|
interface PalletUtilityError extends Enum {
|
|
2795
2821
|
readonly isTooManyCalls: boolean;
|
|
2796
2822
|
readonly type: 'TooManyCalls';
|
|
2797
2823
|
}
|
|
2798
|
-
/** @name PalletSudoError (
|
|
2824
|
+
/** @name PalletSudoError (451) */
|
|
2799
2825
|
interface PalletSudoError extends Enum {
|
|
2800
2826
|
readonly isRequireSudo: boolean;
|
|
2801
2827
|
readonly type: 'RequireSudo';
|
|
2802
2828
|
}
|
|
2803
|
-
/** @name PalletIsmpError (
|
|
2829
|
+
/** @name PalletIsmpError (452) */
|
|
2804
2830
|
interface PalletIsmpError extends Enum {
|
|
2805
2831
|
readonly isInvalidMessage: boolean;
|
|
2806
2832
|
readonly isMessageNotFound: boolean;
|
|
@@ -2809,9 +2835,9 @@ declare module '@polkadot/types/lookup' {
|
|
|
2809
2835
|
readonly isChallengePeriodUpdateFailed: boolean;
|
|
2810
2836
|
readonly type: 'InvalidMessage' | 'MessageNotFound' | 'ConsensusClientCreationFailed' | 'UnbondingPeriodUpdateFailed' | 'ChallengePeriodUpdateFailed';
|
|
2811
2837
|
}
|
|
2812
|
-
/** @name PalletHyperbridgeError (
|
|
2838
|
+
/** @name PalletHyperbridgeError (453) */
|
|
2813
2839
|
type PalletHyperbridgeError = Null;
|
|
2814
|
-
/** @name PalletTokenGatewayError (
|
|
2840
|
+
/** @name PalletTokenGatewayError (454) */
|
|
2815
2841
|
interface PalletTokenGatewayError extends Enum {
|
|
2816
2842
|
readonly isUnregisteredAsset: boolean;
|
|
2817
2843
|
readonly isAssetTeleportError: boolean;
|
|
@@ -2824,32 +2850,32 @@ declare module '@polkadot/types/lookup' {
|
|
|
2824
2850
|
readonly isNotAssetOwner: boolean;
|
|
2825
2851
|
readonly type: 'UnregisteredAsset' | 'AssetTeleportError' | 'CoprocessorNotConfigured' | 'DispatchError' | 'AssetCreationError' | 'AssetDecimalsNotFound' | 'NotInitialized' | 'UnknownAsset' | 'NotAssetOwner';
|
|
2826
2852
|
}
|
|
2827
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
2853
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (457) */
|
|
2828
2854
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
2829
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
2855
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (458) */
|
|
2830
2856
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
2831
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
2857
|
+
/** @name FrameSystemExtensionsCheckTxVersion (459) */
|
|
2832
2858
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
2833
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
2859
|
+
/** @name FrameSystemExtensionsCheckGenesis (460) */
|
|
2834
2860
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
2835
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
2861
|
+
/** @name FrameSystemExtensionsCheckNonce (463) */
|
|
2836
2862
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
|
|
2837
2863
|
}
|
|
2838
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
2864
|
+
/** @name FrameSystemExtensionsCheckWeight (464) */
|
|
2839
2865
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
2840
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
2866
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (465) */
|
|
2841
2867
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
|
|
2842
2868
|
}
|
|
2843
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
2869
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (466) */
|
|
2844
2870
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
2845
2871
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
2846
2872
|
}
|
|
2847
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
2873
|
+
/** @name FrameMetadataHashExtensionMode (467) */
|
|
2848
2874
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
2849
2875
|
readonly isDisabled: boolean;
|
|
2850
2876
|
readonly isEnabled: boolean;
|
|
2851
2877
|
readonly type: 'Disabled' | 'Enabled';
|
|
2852
2878
|
}
|
|
2853
|
-
/** @name ArgonRuntimeRuntime (
|
|
2879
|
+
/** @name ArgonRuntimeRuntime (469) */
|
|
2854
2880
|
type ArgonRuntimeRuntime = Null;
|
|
2855
2881
|
}
|