@dedot/chaintypes 0.184.0 → 0.186.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/moonbeam/index.d.ts +1 -1
- package/moonbeam/json-rpc.d.ts +8 -0
- package/moonbeam/types.d.ts +1 -1
- package/package.json +2 -2
package/moonbeam/index.d.ts
CHANGED
package/moonbeam/json-rpc.d.ts
CHANGED
|
@@ -46,6 +46,10 @@ export type ChainJsonRpcApis<Rv extends RpcVersion> = Pick<
|
|
|
46
46
|
| 'childstate_getStorageEntries'
|
|
47
47
|
| 'childstate_getStorageHash'
|
|
48
48
|
| 'childstate_getStorageSize'
|
|
49
|
+
| 'debug_traceBlockByHash'
|
|
50
|
+
| 'debug_traceBlockByNumber'
|
|
51
|
+
| 'debug_traceCall'
|
|
52
|
+
| 'debug_traceTransaction'
|
|
49
53
|
| 'eth_accounts'
|
|
50
54
|
| 'eth_blockNumber'
|
|
51
55
|
| 'eth_call'
|
|
@@ -138,9 +142,13 @@ export type ChainJsonRpcApis<Rv extends RpcVersion> = Pick<
|
|
|
138
142
|
| 'system_syncState'
|
|
139
143
|
| 'system_unstable_networkState'
|
|
140
144
|
| 'system_version'
|
|
145
|
+
| 'trace_filter'
|
|
141
146
|
| 'transactionWatch_v1_submitAndWatch'
|
|
142
147
|
| 'transaction_v1_broadcast'
|
|
143
148
|
| 'transaction_v1_stop'
|
|
149
|
+
| 'txpool_content'
|
|
150
|
+
| 'txpool_inspect'
|
|
151
|
+
| 'txpool_status'
|
|
144
152
|
| 'web3_clientVersion'
|
|
145
153
|
| 'web3_sha3'
|
|
146
154
|
> &
|
package/moonbeam/types.d.ts
CHANGED
|
@@ -8444,7 +8444,7 @@ export type PalletXcmTransactorCallLike =
|
|
|
8444
8444
|
};
|
|
8445
8445
|
};
|
|
8446
8446
|
|
|
8447
|
-
export type MoonbeamRuntimeXcmConfigTransactors = 'Relay';
|
|
8447
|
+
export type MoonbeamRuntimeXcmConfigTransactors = 'Relay' | 'AssetHub';
|
|
8448
8448
|
|
|
8449
8449
|
export type PalletXcmTransactorCurrencyPayment = {
|
|
8450
8450
|
currency: PalletXcmTransactorCurrency;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dedot/chaintypes",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.186.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": "c8edc01fd643df573a782ba382e1d43afc9d86cf",
|
|
29
29
|
"module": "./index.js",
|
|
30
30
|
"types": "./index.d.ts",
|
|
31
31
|
"exports": {
|