@dedot/chaintypes 0.209.0 → 0.211.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.
@@ -99,6 +99,9 @@ export type ChainJsonRpcApis = Pick<
99
99
  | 'ismp_queryStateMachineLatestHeight'
100
100
  | 'ismp_queryStateMachineUpdateTime'
101
101
  | 'ismp_queryStateProof'
102
+ | 'liquidation_getBorrowers'
103
+ | 'liquidation_isRunning'
104
+ | 'liquidation_maxTransactionsPerBlock'
102
105
  | 'net_listening'
103
106
  | 'net_peerCount'
104
107
  | 'net_version'
@@ -52,6 +52,7 @@ export type ChainJsonRpcApis = Pick<
52
52
  | 'grandpa_proveFinality'
53
53
  | 'grandpa_roundState'
54
54
  | 'grandpa_subscribeJustifications'
55
+ | 'mmr_generateAncestryProof'
55
56
  | 'mmr_generateProof'
56
57
  | 'mmr_root'
57
58
  | 'mmr_verifyProof'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dedot/chaintypes",
3
- "version": "0.209.0",
3
+ "version": "0.211.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": "cf097c5d9639a6174c1f45afd5ad3f616d66eddc",
28
+ "gitHead": "59367590477b4a502787f2f70c7b0ef2ec75cf93",
29
29
  "module": "./index.js",
30
30
  "types": "./index.d.ts",
31
31
  "exports": {
@@ -5,6 +5,15 @@ import type { JsonRpcApis } from 'dedot/types/json-rpc';
5
5
 
6
6
  export type ChainJsonRpcApis = Pick<
7
7
  JsonRpcApis,
8
+ | 'archive_v1_body'
9
+ | 'archive_v1_call'
10
+ | 'archive_v1_finalizedHeight'
11
+ | 'archive_v1_genesisHash'
12
+ | 'archive_v1_hashByHeight'
13
+ | 'archive_v1_header'
14
+ | 'archive_v1_storage'
15
+ | 'archive_v1_storageDiff'
16
+ | 'archive_v1_storageDiff_stopStorageDiff'
8
17
  | 'author_hasKey'
9
18
  | 'author_hasSessionKeys'
10
19
  | 'author_insertKey'
@@ -5,6 +5,15 @@ import type { JsonRpcApis } from 'dedot/types/json-rpc';
5
5
 
6
6
  export type ChainJsonRpcApis = Pick<
7
7
  JsonRpcApis,
8
+ | 'archive_v1_body'
9
+ | 'archive_v1_call'
10
+ | 'archive_v1_finalizedHeight'
11
+ | 'archive_v1_genesisHash'
12
+ | 'archive_v1_hashByHeight'
13
+ | 'archive_v1_header'
14
+ | 'archive_v1_storage'
15
+ | 'archive_v1_storageDiff'
16
+ | 'archive_v1_storageDiff_stopStorageDiff'
8
17
  | 'author_hasKey'
9
18
  | 'author_hasSessionKeys'
10
19
  | 'author_insertKey'
@@ -52,7 +52,7 @@ interface ChainKnownTypes extends GenericChainKnownTypes {
52
52
 
53
53
  /**
54
54
  * @name: PaseoHydrationApi
55
- * @specVersion: 377
55
+ * @specVersion: 378
56
56
  **/
57
57
  export interface PaseoHydrationApi extends GenericSubstrateApi {
58
58
  rpc: ChainJsonRpcApis;
@@ -52,6 +52,7 @@ export type ChainJsonRpcApis = Pick<
52
52
  | 'grandpa_proveFinality'
53
53
  | 'grandpa_roundState'
54
54
  | 'grandpa_subscribeJustifications'
55
+ | 'mmr_generateAncestryProof'
55
56
  | 'mmr_generateProof'
56
57
  | 'mmr_root'
57
58
  | 'mmr_verifyProof'
@@ -52,6 +52,7 @@ export type ChainJsonRpcApis = Pick<
52
52
  | 'grandpa_proveFinality'
53
53
  | 'grandpa_roundState'
54
54
  | 'grandpa_subscribeJustifications'
55
+ | 'mmr_generateAncestryProof'
55
56
  | 'mmr_generateProof'
56
57
  | 'mmr_root'
57
58
  | 'mmr_verifyProof'