@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 +1 -0
- package/astar/json-rpc.d.ts +17 -9
- package/index.d.ts +1 -0
- package/package.json +5 -2
- package/vara/consts.d.ts +1218 -0
- package/vara/errors.d.ts +2013 -0
- package/vara/events.d.ts +2496 -0
- package/vara/index.d.ts +31 -0
- package/vara/json-rpc.d.ts +109 -0
- package/vara/query.d.ts +2706 -0
- package/vara/runtime.d.ts +889 -0
- package/vara/tx.d.ts +7512 -0
- package/vara/types.d.ts +11165 -0
package/README.md
CHANGED
package/astar/json-rpc.d.ts
CHANGED
|
@@ -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
|
-
| '
|
|
24
|
-
| '
|
|
25
|
-
| '
|
|
26
|
-
| '
|
|
27
|
-
| '
|
|
28
|
-
| '
|
|
29
|
-
| '
|
|
30
|
-
| '
|
|
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
|
-
| '
|
|
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.
|
|
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": "
|
|
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
|
},
|