@dedot/chaintypes 0.0.1-alpha.140 → 0.0.1-alpha.142
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
CHANGED
|
@@ -41,6 +41,10 @@ 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_traceCall'
|
|
47
|
+
| 'debug_traceTransaction'
|
|
44
48
|
| 'eth_accounts'
|
|
45
49
|
| 'eth_blockNumber'
|
|
46
50
|
| 'eth_call'
|
|
@@ -130,7 +134,11 @@ export type ChainJsonRpcApis<Rv extends RpcVersion> = Pick<
|
|
|
130
134
|
| 'system_syncState'
|
|
131
135
|
| 'system_unstable_networkState'
|
|
132
136
|
| 'system_version'
|
|
137
|
+
| 'trace_filter'
|
|
133
138
|
| 'transactionWatch_unstable_submitAndWatch'
|
|
139
|
+
| 'txpool_content'
|
|
140
|
+
| 'txpool_inspect'
|
|
141
|
+
| 'txpool_status'
|
|
134
142
|
| 'web3_clientVersion'
|
|
135
143
|
| 'web3_sha3'
|
|
136
144
|
> &
|
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.142",
|
|
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": "b336bec7b801ed6f84503ea3f613396f1afe0e4a",
|
|
23
23
|
"module": "./index.js",
|
|
24
24
|
"types": "./index.d.ts"
|
|
25
25
|
}
|
|
@@ -6734,6 +6734,10 @@ export type PalletAssetConversionTxPaymentChargeAssetTxPayment = {
|
|
|
6734
6734
|
assetId?: StagingXcmV3MultilocationMultiLocation | undefined;
|
|
6735
6735
|
};
|
|
6736
6736
|
|
|
6737
|
+
export type FrameMetadataHashExtensionCheckMetadataHash = { mode: FrameMetadataHashExtensionMode };
|
|
6738
|
+
|
|
6739
|
+
export type FrameMetadataHashExtensionMode = 'Disabled' | 'Enabled';
|
|
6740
|
+
|
|
6737
6741
|
export type AssetHubPolkadotRuntimeRuntime = {};
|
|
6738
6742
|
|
|
6739
6743
|
export type SpConsensusSlotsSlotDuration = bigint;
|