@dedot/chaintypes 0.34.0 → 0.35.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dedot/chaintypes",
3
- "version": "0.34.0",
3
+ "version": "0.35.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": "b37dee7a08991967df7891c4e887b40f883fd991",
22
+ "gitHead": "7d05315bbf4c4cf67b777c257dc51223ba3665b4",
23
23
  "module": "./index.js",
24
24
  "types": "./index.d.ts"
25
25
  }
@@ -873,6 +873,11 @@ export interface ChainConsts<Rv extends RpcVersion> extends GenericChainConsts<R
873
873
  * preventing replay attacks.
874
874
  **/
875
875
  chainId: bigint;
876
+
877
+ /**
878
+ * The ratio between the decimal representation of the native token and the ETH token.
879
+ **/
880
+ nativeToEthRatio: number;
876
881
  apiVersion: number;
877
882
 
878
883
  /**
@@ -23,7 +23,7 @@ export interface VersionedWestendAssetHubApi<Rv extends RpcVersion> extends Gene
23
23
 
24
24
  /**
25
25
  * @name: WestendAssetHubApi
26
- * @specVersion: 1016003
26
+ * @specVersion: 1016004
27
27
  **/
28
28
  export interface WestendAssetHubApi {
29
29
  legacy: VersionedWestendAssetHubApi<RpcLegacy>;