Skip to content

Commit cc497ce

Browse files
author
debot
committed
chore: regenerate chaintypes
1 parent 00a8ee1 commit cc497ce

File tree

10 files changed

+1564
-200
lines changed

10 files changed

+1564
-200
lines changed

packages/chaintypes/src/hydration/errors.d.ts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3928,6 +3928,25 @@ export interface ChainErrors extends GenericChainErrors {
39283928
**/
39293929
[error: string]: GenericPalletError;
39303930
};
3931+
/**
3932+
* Pallet `IsmpParachain`'s errors
3933+
**/
3934+
ismpParachain: {
3935+
/**
3936+
* Only Parachain Consensus updates should be passed in the inherents.
3937+
**/
3938+
InvalidConsensusStateId: GenericPalletError;
3939+
3940+
/**
3941+
* ValidationData must be updated only once in a block.
3942+
**/
3943+
ConsensusAlreadyUpdated: GenericPalletError;
3944+
3945+
/**
3946+
* Generic pallet error
3947+
**/
3948+
[error: string]: GenericPalletError;
3949+
};
39313950
/**
39323951
* Pallet `Hyperbridge`'s errors
39333952
**/

packages/chaintypes/src/hydration/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ interface ChainKnownTypes extends GenericChainKnownTypes {
5252

5353
/**
5454
* @name: HydrationApi
55-
* @specVersion: 359
55+
* @specVersion: 360
5656
**/
5757
export interface HydrationApi extends GenericSubstrateApi {
5858
rpc: ChainJsonRpcApis;

packages/chaintypes/src/hydration/types.d.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19846,6 +19846,19 @@ export type PalletIsmpError =
1984619846
**/
1984719847
| 'ChallengePeriodUpdateFailed';
1984819848

19849+
/**
19850+
* The `Error` enum of this pallet.
19851+
**/
19852+
export type IsmpParachainError =
19853+
/**
19854+
* Only Parachain Consensus updates should be passed in the inherents.
19855+
**/
19856+
| 'InvalidConsensusStateId'
19857+
/**
19858+
* ValidationData must be updated only once in a block.
19859+
**/
19860+
| 'ConsensusAlreadyUpdated';
19861+
1984919862
/**
1985019863
* The `Error` enum of this pallet.
1985119864
**/
@@ -20172,6 +20185,7 @@ export type HydradxRuntimeRuntimeError =
2017220185
| { pallet: 'CollatorSelection'; palletError: PalletCollatorSelectionError }
2017320186
| { pallet: 'Session'; palletError: PalletSessionError }
2017420187
| { pallet: 'Ismp'; palletError: PalletIsmpError }
20188+
| { pallet: 'IsmpParachain'; palletError: IsmpParachainError }
2017520189
| { pallet: 'Hyperbridge'; palletError: PalletHyperbridgeError }
2017620190
| { pallet: 'TokenGateway'; palletError: PalletTokenGatewayError }
2017720191
| { pallet: 'EmaOracle'; palletError: PalletEmaOracleError }

packages/chaintypes/src/paseo-hydration/consts.d.ts

Lines changed: 83 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1246,6 +1246,89 @@ export interface ChainConsts extends GenericChainConsts {
12461246
**/
12471247
[name: string]: any;
12481248
};
1249+
/**
1250+
* Pallet `Signet`'s constants
1251+
**/
1252+
signet: {
1253+
/**
1254+
* The pallet's unique ID for deriving its account
1255+
**/
1256+
palletId: FrameSupportPalletId;
1257+
1258+
/**
1259+
* Maximum length for chain ID
1260+
**/
1261+
maxChainIdLength: number;
1262+
1263+
/**
1264+
* Maximum length of transaction data
1265+
**/
1266+
maxDataLength: number;
1267+
maxSignatureDeposit: bigint;
1268+
1269+
/**
1270+
* Generic pallet constant
1271+
**/
1272+
[name: string]: any;
1273+
};
1274+
/**
1275+
* Pallet `EthDispenser`'s constants
1276+
**/
1277+
ethDispenser: {
1278+
/**
1279+
* Minimum amount of faucet asset that can be requested in a single call.
1280+
**/
1281+
minimumRequestAmount: bigint;
1282+
1283+
/**
1284+
* Maximum amount of faucet asset that can be requested in a single call.
1285+
**/
1286+
maxDispenseAmount: bigint;
1287+
1288+
/**
1289+
* Flat fee charged in `FeeAsset` for each faucet request.
1290+
**/
1291+
dispenserFee: bigint;
1292+
1293+
/**
1294+
* Asset ID used to charge the faucet request fee.
1295+
* (HDX - 0)
1296+
**/
1297+
feeAsset: number;
1298+
1299+
/**
1300+
* Asset ID deducted to receive faucet on the destination chain.
1301+
* (WETH - 20)
1302+
**/
1303+
faucetAsset: number;
1304+
1305+
/**
1306+
* Account that receives the collected dispenser fees and faucet asset.
1307+
**/
1308+
feeDestination: AccountId32;
1309+
1310+
/**
1311+
* EVM address of the external gas faucet contract.
1312+
**/
1313+
faucetAddress: FixedBytes<20>;
1314+
1315+
/**
1316+
* Pallet ID used to derive the pallet's sovereign account.
1317+
**/
1318+
palletId: FrameSupportPalletId;
1319+
1320+
/**
1321+
* Minimum remaining ETH (in wei) that must be available in the faucet
1322+
* after servicing a request. Requests are rejected if this threshold
1323+
* would be breached.
1324+
**/
1325+
minFaucetEthThreshold: bigint;
1326+
1327+
/**
1328+
* Generic pallet constant
1329+
**/
1330+
[name: string]: any;
1331+
};
12491332
/**
12501333
* Pallet `Tokens`'s constants
12511334
**/
@@ -1772,17 +1855,6 @@ export interface ChainConsts extends GenericChainConsts {
17721855
**/
17731856
[name: string]: any;
17741857
};
1775-
/**
1776-
* Pallet `IsmpOracle`'s constants
1777-
**/
1778-
ismpOracle: {
1779-
requestsTimeout: bigint;
1780-
1781-
/**
1782-
* Generic pallet constant
1783-
**/
1784-
[name: string]: any;
1785-
};
17861858
/**
17871859
* Pallet `EmaOracle`'s constants
17881860
**/

0 commit comments

Comments
 (0)