@dedot/chaintypes 0.65.0 → 0.66.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.
- package/package.json +2 -2
- package/westend/index.d.ts +1 -1
- package/westend/runtime.d.ts +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dedot/chaintypes",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.66.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": "
|
|
22
|
+
"gitHead": "a8b5780dfc0b9384391d707e43e7779c9e1c275f",
|
|
23
23
|
"module": "./index.js",
|
|
24
24
|
"types": "./index.d.ts"
|
|
25
25
|
}
|
package/westend/index.d.ts
CHANGED
package/westend/runtime.d.ts
CHANGED
|
@@ -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
|
**/
|