@dedot/chaintypes 0.140.0 → 0.141.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.140.0",
3
+ "version": "0.141.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": "d8fefea5a06e335cf8a9d7ffd8fc52b055dfe6a1",
28
+ "gitHead": "45878be417cda3143499d63c89b2cb063548395e",
29
29
  "module": "./index.js",
30
30
  "types": "./index.d.ts",
31
31
  "exports": {
@@ -25,7 +25,7 @@ export interface VersionedPaseoHydrationApi<Rv extends RpcVersion> extends Gener
25
25
 
26
26
  /**
27
27
  * @name: PaseoHydrationApi
28
- * @specVersion: 339
28
+ * @specVersion: 340
29
29
  **/
30
30
  export interface PaseoHydrationApi {
31
31
  legacy: VersionedPaseoHydrationApi<RpcLegacy>;
@@ -28,6 +28,9 @@ export type ChainJsonRpcApis<Rv extends RpcVersion> = Pick<
28
28
  | 'chainHead_v1_stopOperation'
29
29
  | 'chainHead_v1_storage'
30
30
  | 'chainHead_v1_unpin'
31
+ | 'chainSpec_v1_chainName'
32
+ | 'chainSpec_v1_genesisHash'
33
+ | 'chainSpec_v1_properties'
31
34
  | 'chain_getBlock'
32
35
  | 'chain_getBlockHash'
33
36
  | 'chain_getFinalizedHead'
@@ -76,6 +79,7 @@ export type ChainJsonRpcApis<Rv extends RpcVersion> = Pick<
76
79
  | 'eth_newBlockFilter'
77
80
  | 'eth_newFilter'
78
81
  | 'eth_newPendingTransactionFilter'
82
+ | 'eth_pendingTransactions'
79
83
  | 'eth_protocolVersion'
80
84
  | 'eth_sendRawTransaction'
81
85
  | 'eth_sendTransaction'
@@ -85,6 +89,16 @@ export type ChainJsonRpcApis<Rv extends RpcVersion> = Pick<
85
89
  | 'eth_syncing'
86
90
  | 'eth_uninstallFilter'
87
91
  | 'eth_unsubscribe'
92
+ | 'ismp_queryChallengePeriod'
93
+ | 'ismp_queryChildTrieProof'
94
+ | 'ismp_queryConsensusState'
95
+ | 'ismp_queryEvents'
96
+ | 'ismp_queryEventsWithMetadata'
97
+ | 'ismp_queryRequests'
98
+ | 'ismp_queryResponses'
99
+ | 'ismp_queryStateMachineLatestHeight'
100
+ | 'ismp_queryStateMachineUpdateTime'
101
+ | 'ismp_queryStateProof'
88
102
  | 'net_listening'
89
103
  | 'net_peerCount'
90
104
  | 'net_version'