@dedot/chaintypes 0.109.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
 
@@ -11,7 +11,10 @@ export type ChainJsonRpcApis<Rv extends RpcVersion> = Pick<
11
11
  | 'archive_unstable_genesisHash'
12
12
  | 'archive_unstable_hashByHeight'
13
13
  | 'archive_unstable_header'
14
+ | 'archive_unstable_stopStorage'
14
15
  | 'archive_unstable_storage'
16
+ | 'archive_unstable_storageDiff'
17
+ | 'archive_unstable_storageDiff_stopStorageDiff'
15
18
  | 'author_hasKey'
16
19
  | 'author_hasSessionKeys'
17
20
  | 'author_insertKey'
@@ -20,14 +23,17 @@ export type ChainJsonRpcApis<Rv extends RpcVersion> = Pick<
20
23
  | 'author_rotateKeys'
21
24
  | 'author_submitAndWatchExtrinsic'
22
25
  | 'author_submitExtrinsic'
23
- | 'chainHead_unstable_body'
24
- | 'chainHead_unstable_call'
25
- | 'chainHead_unstable_continue'
26
- | 'chainHead_unstable_follow'
27
- | 'chainHead_unstable_header'
28
- | 'chainHead_unstable_stopOperation'
29
- | 'chainHead_unstable_storage'
30
- | 'chainHead_unstable_unpin'
26
+ | 'chainHead_v1_body'
27
+ | 'chainHead_v1_call'
28
+ | 'chainHead_v1_continue'
29
+ | 'chainHead_v1_follow'
30
+ | 'chainHead_v1_header'
31
+ | 'chainHead_v1_stopOperation'
32
+ | 'chainHead_v1_storage'
33
+ | 'chainHead_v1_unpin'
34
+ | 'chainSpec_v1_chainName'
35
+ | 'chainSpec_v1_genesisHash'
36
+ | 'chainSpec_v1_properties'
31
37
  | 'chain_getBlock'
32
38
  | 'chain_getBlockHash'
33
39
  | 'chain_getFinalizedHead'
@@ -129,7 +135,9 @@ export type ChainJsonRpcApis<Rv extends RpcVersion> = Pick<
129
135
  | 'system_syncState'
130
136
  | 'system_unstable_networkState'
131
137
  | 'system_version'
132
- | 'transactionWatch_unstable_submitAndWatch'
138
+ | 'transactionWatch_v1_submitAndWatch'
139
+ | 'transaction_v1_broadcast'
140
+ | 'transaction_v1_stop'
133
141
  | 'web3_clientVersion'
134
142
  | 'web3_sha3'
135
143
  > &
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.109.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": "1bdf046bd05f2060861e0177887df157846828d7",
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
  },