@dedot/chaintypes 0.108.0 → 0.110.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.
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dedot/chaintypes",
3
- "version": "0.108.0",
3
+ "version": "0.110.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": "d625b6b5e618281eeaf35818e7e5a075df083529",
28
+ "gitHead": "68f56ea50a273d1b5921098d6cb2e2e709ae3c48",
29
29
  "module": "./index.js",
30
30
  "types": "./index.d.ts",
31
31
  "exports": {
package/paseo/index.d.ts CHANGED
@@ -23,7 +23,7 @@ export interface VersionedPaseoApi<Rv extends RpcVersion> extends GenericSubstra
23
23
 
24
24
  /**
25
25
  * @name: PaseoApi
26
- * @specVersion: 1004003
26
+ * @specVersion: 1004004
27
27
  **/
28
28
  export interface PaseoApi {
29
29
  legacy: VersionedPaseoApi<RpcLegacy>;