@dedot/chaintypes 0.110.0 → 0.111.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/README.md CHANGED
@@ -96,6 +96,7 @@ For more detailed information on connecting to networks, see the [official docum
96
96
  - Aleph
97
97
  - Hydration
98
98
  - Basilisk
99
+ - Vara
99
100
 
100
101
  > Don't see your network? We welcome Pull Requests to add support for additional PolkadotSDK-based networks!
101
102
 
package/index.d.ts CHANGED
@@ -17,3 +17,4 @@ export type { BasiliskApi } from './basilisk/index.js';
17
17
  export type { MoonbeamApi } from './moonbeam/index.js';
18
18
  export type { AstarApi } from './astar/index.js';
19
19
  export type { AlephApi } from './aleph/index.js';
20
+ export type { VaraApi } from './vara/index.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dedot/chaintypes",
3
- "version": "0.110.0",
3
+ "version": "0.111.0",
4
4
  "description": "Types for substrate-based chains",
5
5
  "author": "Thang X. Vu <thang@dedot.dev>",
6
6
  "homepage": "https://dedot.dev",
@@ -25,7 +25,7 @@
25
25
  "directory": "dist"
26
26
  },
27
27
  "license": "Apache-2.0",
28
- "gitHead": "68f56ea50a273d1b5921098d6cb2e2e709ae3c48",
28
+ "gitHead": "8c53288b7ee22e68ebe7bc305e1e78088948de3c",
29
29
  "module": "./index.js",
30
30
  "types": "./index.d.ts",
31
31
  "exports": {
@@ -82,6 +82,9 @@
82
82
  "./substrate": {
83
83
  "types": "./substrate/index.d.ts"
84
84
  },
85
+ "./vara": {
86
+ "types": "./vara/index.d.ts"
87
+ },
85
88
  "./westend": {
86
89
  "types": "./westend/index.d.ts"
87
90
  },