@dedot/chaintypes 0.65.0 → 0.67.0

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.
@@ -28,6 +28,9 @@ export type ChainJsonRpcApis<Rv extends RpcVersion> = Pick<
28
28
  | 'chainHead_v1_stopOperation'
29
29
  | 'chainHead_v1_storage'
30
30
  | 'chainHead_v1_unpin'
31
+ | 'chainSpec_v1_chainName'
32
+ | 'chainSpec_v1_genesisHash'
33
+ | 'chainSpec_v1_properties'
31
34
  | 'chain_getBlock'
32
35
  | 'chain_getBlockHash'
33
36
  | 'chain_getFinalizedHead'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dedot/chaintypes",
3
- "version": "0.65.0",
3
+ "version": "0.67.0",
4
4
  "description": "Types for substrate-based chains",
5
5
  "author": "Thang X. Vu <thang@coongcrafts.io>",
6
6
  "main": "",
@@ -19,7 +19,7 @@
19
19
  "directory": "dist"
20
20
  },
21
21
  "license": "Apache-2.0",
22
- "gitHead": "92762d4ad27e13a1c0545ebaee715ede3e2d8827",
22
+ "gitHead": "eb48a388ae5f20671dc41a11f8932a2898eb7dca",
23
23
  "module": "./index.js",
24
24
  "types": "./index.d.ts"
25
25
  }
@@ -23,7 +23,7 @@ export interface VersionedWestendApi<Rv extends RpcVersion> extends GenericSubst
23
23
 
24
24
  /**
25
25
  * @name: WestendApi
26
- * @specVersion: 1018000
26
+ * @specVersion: 1018001
27
27
  **/
28
28
  export interface WestendApi {
29
29
  legacy: VersionedWestendApi<RpcLegacy>;
@@ -684,6 +684,13 @@ export interface RuntimeApis<Rv extends RpcVersion> extends GenericRuntimeApis<R
684
684
  **/
685
685
  schedulingLookahead: GenericRuntimeApiMethod<Rv, () => Promise<number>>;
686
686
 
687
+ /**
688
+ * Retrieve the maximum uncompressed code size.
689
+ *
690
+ * @callname: ParachainHost_validation_code_bomb_limit
691
+ **/
692
+ validationCodeBombLimit: GenericRuntimeApiMethod<Rv, () => Promise<number>>;
693
+
687
694
  /**
688
695
  * Generic runtime api call
689
696
  **/