@dedot/chaintypes 0.0.1-alpha.40 → 0.0.1-alpha.42
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/kusama/events.d.ts +5 -0
- package/kusama/types.d.ts +5 -1
- package/moonbeam/rpc.d.ts +0 -44
- package/package.json +2 -2
package/kusama/events.d.ts
CHANGED
|
@@ -377,6 +377,11 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
377
377
|
**/
|
|
378
378
|
ForceEra: GenericPalletEvent<'Staking', 'ForceEra', { mode: PalletStakingForcing }>;
|
|
379
379
|
|
|
380
|
+
/**
|
|
381
|
+
* Report of a controller batch deprecation.
|
|
382
|
+
**/
|
|
383
|
+
ControllerBatchDeprecated: GenericPalletEvent<'Staking', 'ControllerBatchDeprecated', { failures: number }>;
|
|
384
|
+
|
|
380
385
|
/**
|
|
381
386
|
* Generic pallet event
|
|
382
387
|
**/
|
package/kusama/types.d.ts
CHANGED
|
@@ -342,7 +342,11 @@ export type PalletStakingPalletEvent =
|
|
|
342
342
|
/**
|
|
343
343
|
* A new force era mode was set.
|
|
344
344
|
**/
|
|
345
|
-
| { name: 'ForceEra'; data: { mode: PalletStakingForcing } }
|
|
345
|
+
| { name: 'ForceEra'; data: { mode: PalletStakingForcing } }
|
|
346
|
+
/**
|
|
347
|
+
* Report of a controller batch deprecation.
|
|
348
|
+
**/
|
|
349
|
+
| { name: 'ControllerBatchDeprecated'; data: { failures: number } };
|
|
346
350
|
|
|
347
351
|
export type PalletStakingRewardDestination =
|
|
348
352
|
| { tag: 'Staked' }
|
package/moonbeam/rpc.d.ts
CHANGED
|
@@ -307,24 +307,6 @@ export interface RpcCalls extends GenericRpcCalls {
|
|
|
307
307
|
|
|
308
308
|
[method: string]: GenericRpcCall;
|
|
309
309
|
};
|
|
310
|
-
debug: {
|
|
311
|
-
/**
|
|
312
|
-
* @rpcname: debug_traceBlockByHash
|
|
313
|
-
**/
|
|
314
|
-
traceBlockByHash: GenericRpcCall;
|
|
315
|
-
|
|
316
|
-
/**
|
|
317
|
-
* @rpcname: debug_traceBlockByNumber
|
|
318
|
-
**/
|
|
319
|
-
traceBlockByNumber: GenericRpcCall;
|
|
320
|
-
|
|
321
|
-
/**
|
|
322
|
-
* @rpcname: debug_traceTransaction
|
|
323
|
-
**/
|
|
324
|
-
traceTransaction: GenericRpcCall;
|
|
325
|
-
|
|
326
|
-
[method: string]: GenericRpcCall;
|
|
327
|
-
};
|
|
328
310
|
eth: {
|
|
329
311
|
/**
|
|
330
312
|
* @rpcname: eth_accounts
|
|
@@ -960,14 +942,6 @@ export interface RpcCalls extends GenericRpcCalls {
|
|
|
960
942
|
|
|
961
943
|
[method: string]: GenericRpcCall;
|
|
962
944
|
};
|
|
963
|
-
trace: {
|
|
964
|
-
/**
|
|
965
|
-
* @rpcname: trace_filter
|
|
966
|
-
**/
|
|
967
|
-
filter: GenericRpcCall;
|
|
968
|
-
|
|
969
|
-
[method: string]: GenericRpcCall;
|
|
970
|
-
};
|
|
971
945
|
transaction: {
|
|
972
946
|
/**
|
|
973
947
|
* @rpcname: transaction_unstable_submitAndWatch
|
|
@@ -981,24 +955,6 @@ export interface RpcCalls extends GenericRpcCalls {
|
|
|
981
955
|
|
|
982
956
|
[method: string]: GenericRpcCall;
|
|
983
957
|
};
|
|
984
|
-
txpool: {
|
|
985
|
-
/**
|
|
986
|
-
* @rpcname: txpool_content
|
|
987
|
-
**/
|
|
988
|
-
content: GenericRpcCall;
|
|
989
|
-
|
|
990
|
-
/**
|
|
991
|
-
* @rpcname: txpool_inspect
|
|
992
|
-
**/
|
|
993
|
-
inspect: GenericRpcCall;
|
|
994
|
-
|
|
995
|
-
/**
|
|
996
|
-
* @rpcname: txpool_status
|
|
997
|
-
**/
|
|
998
|
-
status: GenericRpcCall;
|
|
999
|
-
|
|
1000
|
-
[method: string]: GenericRpcCall;
|
|
1001
|
-
};
|
|
1002
958
|
web3: {
|
|
1003
959
|
/**
|
|
1004
960
|
* @rpcname: web3_clientVersion
|
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.42",
|
|
4
4
|
"description": "Types for substrate-based chains",
|
|
5
5
|
"author": "Thang X. Vu <thang@coongcrafts.io>",
|
|
6
6
|
"main": "",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"directory": "dist"
|
|
21
21
|
},
|
|
22
22
|
"license": "Apache-2.0",
|
|
23
|
-
"gitHead": "
|
|
23
|
+
"gitHead": "225e7c1f527be05efd6e61758a4da3095012837b",
|
|
24
24
|
"module": "./index.js",
|
|
25
25
|
"types": "./index.d.ts"
|
|
26
26
|
}
|