@dedot/chaintypes 0.11.0 → 0.12.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/index.d.ts +5 -5
- package/index.ts +5 -5
- package/moonbeam/json-rpc.d.ts +12 -9
- package/package.json +2 -2
- package/kusamaAssetHub/consts.d.ts +0 -765
- package/kusamaAssetHub/errors.d.ts +0 -1529
- package/kusamaAssetHub/events.d.ts +0 -2443
- package/kusamaAssetHub/index.d.ts +0 -27
- package/kusamaAssetHub/json-rpc.d.ts +0 -90
- package/kusamaAssetHub/query.d.ts +0 -1677
- package/kusamaAssetHub/runtime.d.ts +0 -555
- package/kusamaAssetHub/tx.d.ts +0 -6364
- package/kusamaAssetHub/types.d.ts +0 -6921
- package/polkadotAssetHub/consts.d.ts +0 -730
- package/polkadotAssetHub/errors.d.ts +0 -1500
- package/polkadotAssetHub/events.d.ts +0 -2414
- package/polkadotAssetHub/index.d.ts +0 -27
- package/polkadotAssetHub/json-rpc.d.ts +0 -90
- package/polkadotAssetHub/query.d.ts +0 -1655
- package/polkadotAssetHub/runtime.d.ts +0 -558
- package/polkadotAssetHub/tx.d.ts +0 -6293
- package/polkadotAssetHub/types.d.ts +0 -6829
- package/rococoAssetHub/consts.d.ts +0 -835
- package/rococoAssetHub/errors.d.ts +0 -1590
- package/rococoAssetHub/events.d.ts +0 -2573
- package/rococoAssetHub/index.d.ts +0 -27
- package/rococoAssetHub/json-rpc.d.ts +0 -90
- package/rococoAssetHub/query.d.ts +0 -1829
- package/rococoAssetHub/runtime.d.ts +0 -726
- package/rococoAssetHub/tx.d.ts +0 -9011
- package/rococoAssetHub/types.d.ts +0 -12431
- package/westendAssetHub/consts.d.ts +0 -869
- package/westendAssetHub/errors.d.ts +0 -1635
- package/westendAssetHub/events.d.ts +0 -2610
- package/westendAssetHub/index.d.ts +0 -27
- package/westendAssetHub/json-rpc.d.ts +0 -90
- package/westendAssetHub/query.d.ts +0 -1868
- package/westendAssetHub/runtime.d.ts +0 -798
- package/westendAssetHub/tx.d.ts +0 -9199
- package/westendAssetHub/types.d.ts +0 -12661
- package/westendPeople/consts.d.ts +0 -434
- package/westendPeople/errors.d.ts +0 -769
- package/westendPeople/events.d.ts +0 -1082
- package/westendPeople/index.d.ts +0 -27
- package/westendPeople/json-rpc.d.ts +0 -89
- package/westendPeople/query.d.ts +0 -1209
- package/westendPeople/runtime.d.ts +0 -636
- package/westendPeople/tx.d.ts +0 -2891
- package/westendPeople/types.d.ts +0 -4984
package/index.d.ts
CHANGED
|
@@ -3,12 +3,12 @@ export type { PolkadotApi } from './polkadot';
|
|
|
3
3
|
export type { KusamaApi } from './kusama';
|
|
4
4
|
export type { MoonbeamApi } from './moonbeam';
|
|
5
5
|
export type { AstarApi } from './astar';
|
|
6
|
-
export type { KusamaAssetHubApi } from './
|
|
6
|
+
export type { KusamaAssetHubApi } from './kusama-asset-hub';
|
|
7
7
|
export type { AlephApi } from './aleph';
|
|
8
|
-
export type { PolkadotAssetHubApi } from './
|
|
8
|
+
export type { PolkadotAssetHubApi } from './polkadot-asset-hub';
|
|
9
9
|
export type { RococoApi } from './rococo';
|
|
10
|
-
export type { RococoAssetHubApi } from './
|
|
10
|
+
export type { RococoAssetHubApi } from './rococo-asset-hub';
|
|
11
11
|
export type { WestendApi } from './westend';
|
|
12
|
-
export type { WestendPeopleApi } from './
|
|
13
|
-
export type { WestendAssetHubApi } from './
|
|
12
|
+
export type { WestendPeopleApi } from './westend-people';
|
|
13
|
+
export type { WestendAssetHubApi } from './westend-asset-hub';
|
|
14
14
|
export type { PaseoApi } from './paseo';
|
package/index.ts
CHANGED
|
@@ -3,12 +3,12 @@ export type { PolkadotApi } from './polkadot';
|
|
|
3
3
|
export type { KusamaApi } from './kusama';
|
|
4
4
|
export type { MoonbeamApi } from './moonbeam';
|
|
5
5
|
export type { AstarApi } from './astar';
|
|
6
|
-
export type { KusamaAssetHubApi } from './
|
|
6
|
+
export type { KusamaAssetHubApi } from './kusama-asset-hub';
|
|
7
7
|
export type { AlephApi } from './aleph';
|
|
8
|
-
export type { PolkadotAssetHubApi } from './
|
|
8
|
+
export type { PolkadotAssetHubApi } from './polkadot-asset-hub';
|
|
9
9
|
export type { RococoApi } from './rococo';
|
|
10
|
-
export type { RococoAssetHubApi } from './
|
|
10
|
+
export type { RococoAssetHubApi } from './rococo-asset-hub';
|
|
11
11
|
export type { WestendApi } from './westend';
|
|
12
|
-
export type { WestendPeopleApi } from './
|
|
13
|
-
export type { WestendAssetHubApi } from './
|
|
12
|
+
export type { WestendPeopleApi } from './westend-people';
|
|
13
|
+
export type { WestendAssetHubApi } from './westend-asset-hub';
|
|
14
14
|
export type { PaseoApi } from './paseo';
|
package/moonbeam/json-rpc.d.ts
CHANGED
|
@@ -20,14 +20,14 @@ export type ChainJsonRpcApis<Rv extends RpcVersion> = Pick<
|
|
|
20
20
|
| 'author_rotateKeys'
|
|
21
21
|
| 'author_submitAndWatchExtrinsic'
|
|
22
22
|
| 'author_submitExtrinsic'
|
|
23
|
-
| '
|
|
24
|
-
| '
|
|
25
|
-
| '
|
|
26
|
-
| '
|
|
27
|
-
| '
|
|
28
|
-
| '
|
|
29
|
-
| '
|
|
30
|
-
| '
|
|
23
|
+
| 'chainHead_v1_body'
|
|
24
|
+
| 'chainHead_v1_call'
|
|
25
|
+
| 'chainHead_v1_continue'
|
|
26
|
+
| 'chainHead_v1_follow'
|
|
27
|
+
| 'chainHead_v1_header'
|
|
28
|
+
| 'chainHead_v1_stopOperation'
|
|
29
|
+
| 'chainHead_v1_storage'
|
|
30
|
+
| 'chainHead_v1_unpin'
|
|
31
31
|
| 'chain_getBlock'
|
|
32
32
|
| 'chain_getBlockHash'
|
|
33
33
|
| 'chain_getFinalizedHead'
|
|
@@ -85,6 +85,7 @@ export type ChainJsonRpcApis<Rv extends RpcVersion> = Pick<
|
|
|
85
85
|
| 'eth_syncing'
|
|
86
86
|
| 'eth_uninstallFilter'
|
|
87
87
|
| 'eth_unsubscribe'
|
|
88
|
+
| 'moon_getLatestBlockHash'
|
|
88
89
|
| 'moon_isBlockFinalized'
|
|
89
90
|
| 'moon_isTxFinalized'
|
|
90
91
|
| 'net_listening'
|
|
@@ -130,7 +131,9 @@ export type ChainJsonRpcApis<Rv extends RpcVersion> = Pick<
|
|
|
130
131
|
| 'system_syncState'
|
|
131
132
|
| 'system_unstable_networkState'
|
|
132
133
|
| 'system_version'
|
|
133
|
-
| '
|
|
134
|
+
| 'transactionWatch_v1_submitAndWatch'
|
|
135
|
+
| 'transaction_v1_broadcast'
|
|
136
|
+
| 'transaction_v1_stop'
|
|
134
137
|
| 'web3_clientVersion'
|
|
135
138
|
| 'web3_sha3'
|
|
136
139
|
> &
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dedot/chaintypes",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
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": "a13655e8a823772147ecd2ccf6d9b28197c223d1",
|
|
23
23
|
"module": "./index.js",
|
|
24
24
|
"types": "./index.d.ts"
|
|
25
25
|
}
|