@dedot/chaintypes 0.0.1-alpha.88 → 0.0.1-alpha.89
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/moonbeam/json-rpc.d.ts +7 -0
- package/package.json +2 -2
package/moonbeam/json-rpc.d.ts
CHANGED
|
@@ -41,6 +41,9 @@ export type ChainJsonRpcApis<Rv extends RpcVersion> = Pick<
|
|
|
41
41
|
| 'childstate_getStorageEntries'
|
|
42
42
|
| 'childstate_getStorageHash'
|
|
43
43
|
| 'childstate_getStorageSize'
|
|
44
|
+
| 'debug_traceBlockByHash'
|
|
45
|
+
| 'debug_traceBlockByNumber'
|
|
46
|
+
| 'debug_traceTransaction'
|
|
44
47
|
| 'eth_accounts'
|
|
45
48
|
| 'eth_blockNumber'
|
|
46
49
|
| 'eth_call'
|
|
@@ -130,7 +133,11 @@ export type ChainJsonRpcApis<Rv extends RpcVersion> = Pick<
|
|
|
130
133
|
| 'system_syncState'
|
|
131
134
|
| 'system_unstable_networkState'
|
|
132
135
|
| 'system_version'
|
|
136
|
+
| 'trace_filter'
|
|
133
137
|
| 'transactionWatch_unstable_submitAndWatch'
|
|
138
|
+
| 'txpool_content'
|
|
139
|
+
| 'txpool_inspect'
|
|
140
|
+
| 'txpool_status'
|
|
134
141
|
| 'web3_clientVersion'
|
|
135
142
|
| 'web3_sha3'
|
|
136
143
|
> &
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dedot/chaintypes",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.89",
|
|
4
4
|
"description": "Types for substrate-based chains",
|
|
5
5
|
"author": "Thang X. Vu <thang@coongcrafts.io>",
|
|
6
6
|
"main": "",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"directory": "dist"
|
|
20
20
|
},
|
|
21
21
|
"license": "Apache-2.0",
|
|
22
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "4ea39755169d00bc9606310aa3621ae8af370d2f",
|
|
23
23
|
"module": "./index.js",
|
|
24
24
|
"types": "./index.d.ts"
|
|
25
25
|
}
|