@dedot/chaintypes 0.9.0 → 0.10.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/aleph/index.d.ts +4 -0
- package/astar/index.d.ts +4 -0
- package/kusama/index.d.ts +4 -0
- package/kusama-asset-hub/index.d.ts +4 -0
- package/moonbeam/index.d.ts +4 -0
- package/package.json +3 -3
- package/paseo/index.d.ts +4 -0
- package/polkadot/index.d.ts +4 -0
- package/polkadot-asset-hub/index.d.ts +4 -0
- package/rococo/index.d.ts +4 -0
- package/rococo-asset-hub/index.d.ts +4 -0
- package/substrate/index.d.ts +4 -0
- package/westend/index.d.ts +4 -0
- package/westend-asset-hub/index.d.ts +4 -0
- package/westend-people/index.d.ts +4 -0
package/aleph/index.d.ts
CHANGED
|
@@ -21,6 +21,10 @@ export interface VersionedAlephApi<Rv extends RpcVersion> extends GenericSubstra
|
|
|
21
21
|
tx: ChainTx<Rv>;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
/**
|
|
25
|
+
* @name: AlephApi
|
|
26
|
+
* @specVersion: 73
|
|
27
|
+
**/
|
|
24
28
|
export interface AlephApi {
|
|
25
29
|
legacy: VersionedAlephApi<RpcLegacy>;
|
|
26
30
|
v2: VersionedAlephApi<RpcV2>;
|
package/astar/index.d.ts
CHANGED
|
@@ -21,6 +21,10 @@ export interface VersionedAstarApi<Rv extends RpcVersion> extends GenericSubstra
|
|
|
21
21
|
tx: ChainTx<Rv>;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
/**
|
|
25
|
+
* @name: AstarApi
|
|
26
|
+
* @specVersion: 92
|
|
27
|
+
**/
|
|
24
28
|
export interface AstarApi {
|
|
25
29
|
legacy: VersionedAstarApi<RpcLegacy>;
|
|
26
30
|
v2: VersionedAstarApi<RpcV2>;
|
package/kusama/index.d.ts
CHANGED
|
@@ -21,6 +21,10 @@ export interface VersionedKusamaApi<Rv extends RpcVersion> extends GenericSubstr
|
|
|
21
21
|
tx: ChainTx<Rv>;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
/**
|
|
25
|
+
* @name: KusamaApi
|
|
26
|
+
* @specVersion: 1002006
|
|
27
|
+
**/
|
|
24
28
|
export interface KusamaApi {
|
|
25
29
|
legacy: VersionedKusamaApi<RpcLegacy>;
|
|
26
30
|
v2: VersionedKusamaApi<RpcV2>;
|
|
@@ -21,6 +21,10 @@ export interface VersionedKusamaAssetHubApi<Rv extends RpcVersion> extends Gener
|
|
|
21
21
|
tx: ChainTx<Rv>;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
/**
|
|
25
|
+
* @name: KusamaAssetHubApi
|
|
26
|
+
* @specVersion: 1002006
|
|
27
|
+
**/
|
|
24
28
|
export interface KusamaAssetHubApi {
|
|
25
29
|
legacy: VersionedKusamaAssetHubApi<RpcLegacy>;
|
|
26
30
|
v2: VersionedKusamaAssetHubApi<RpcV2>;
|
package/moonbeam/index.d.ts
CHANGED
|
@@ -21,6 +21,10 @@ export interface VersionedMoonbeamApi<Rv extends RpcVersion> extends GenericSubs
|
|
|
21
21
|
tx: ChainTx<Rv>;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
/**
|
|
25
|
+
* @name: MoonbeamApi
|
|
26
|
+
* @specVersion: 3001
|
|
27
|
+
**/
|
|
24
28
|
export interface MoonbeamApi {
|
|
25
29
|
legacy: VersionedMoonbeamApi<RpcLegacy>;
|
|
26
30
|
v2: VersionedMoonbeamApi<RpcV2>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dedot/chaintypes",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "Types for substrate-based chains",
|
|
5
5
|
"author": "Thang X. Vu <thang@coongcrafts.io>",
|
|
6
6
|
"main": "",
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
"copy": "cp -R ./src/* ./dist"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"dedot": "^0.
|
|
15
|
+
"dedot": "^0.5.0"
|
|
16
16
|
},
|
|
17
17
|
"publishConfig": {
|
|
18
18
|
"access": "public",
|
|
19
19
|
"directory": "dist"
|
|
20
20
|
},
|
|
21
21
|
"license": "Apache-2.0",
|
|
22
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "e2dcff4ed6abb73b21c760c0954d0d4cb41d126b",
|
|
23
23
|
"module": "./index.js",
|
|
24
24
|
"types": "./index.d.ts"
|
|
25
25
|
}
|
package/paseo/index.d.ts
CHANGED
|
@@ -21,6 +21,10 @@ export interface VersionedPaseoApi<Rv extends RpcVersion> extends GenericSubstra
|
|
|
21
21
|
tx: ChainTx<Rv>;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
/**
|
|
25
|
+
* @name: PaseoApi
|
|
26
|
+
* @specVersion: 1002005
|
|
27
|
+
**/
|
|
24
28
|
export interface PaseoApi {
|
|
25
29
|
legacy: VersionedPaseoApi<RpcLegacy>;
|
|
26
30
|
v2: VersionedPaseoApi<RpcV2>;
|
package/polkadot/index.d.ts
CHANGED
|
@@ -21,6 +21,10 @@ export interface VersionedPolkadotApi<Rv extends RpcVersion> extends GenericSubs
|
|
|
21
21
|
tx: ChainTx<Rv>;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
/**
|
|
25
|
+
* @name: PolkadotApi
|
|
26
|
+
* @specVersion: 1002007
|
|
27
|
+
**/
|
|
24
28
|
export interface PolkadotApi {
|
|
25
29
|
legacy: VersionedPolkadotApi<RpcLegacy>;
|
|
26
30
|
v2: VersionedPolkadotApi<RpcV2>;
|
|
@@ -21,6 +21,10 @@ export interface VersionedPolkadotAssetHubApi<Rv extends RpcVersion> extends Gen
|
|
|
21
21
|
tx: ChainTx<Rv>;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
/**
|
|
25
|
+
* @name: PolkadotAssetHubApi
|
|
26
|
+
* @specVersion: 1002006
|
|
27
|
+
**/
|
|
24
28
|
export interface PolkadotAssetHubApi {
|
|
25
29
|
legacy: VersionedPolkadotAssetHubApi<RpcLegacy>;
|
|
26
30
|
v2: VersionedPolkadotAssetHubApi<RpcV2>;
|
package/rococo/index.d.ts
CHANGED
|
@@ -21,6 +21,10 @@ export interface VersionedRococoApi<Rv extends RpcVersion> extends GenericSubstr
|
|
|
21
21
|
tx: ChainTx<Rv>;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
/**
|
|
25
|
+
* @name: RococoApi
|
|
26
|
+
* @specVersion: 1015000
|
|
27
|
+
**/
|
|
24
28
|
export interface RococoApi {
|
|
25
29
|
legacy: VersionedRococoApi<RpcLegacy>;
|
|
26
30
|
v2: VersionedRococoApi<RpcV2>;
|
|
@@ -21,6 +21,10 @@ export interface VersionedRococoAssetHubApi<Rv extends RpcVersion> extends Gener
|
|
|
21
21
|
tx: ChainTx<Rv>;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
/**
|
|
25
|
+
* @name: RococoAssetHubApi
|
|
26
|
+
* @specVersion: 1015000
|
|
27
|
+
**/
|
|
24
28
|
export interface RococoAssetHubApi {
|
|
25
29
|
legacy: VersionedRococoAssetHubApi<RpcLegacy>;
|
|
26
30
|
v2: VersionedRococoAssetHubApi<RpcV2>;
|
package/substrate/index.d.ts
CHANGED
|
@@ -21,6 +21,10 @@ export interface VersionedSubstrateApi<Rv extends RpcVersion> extends GenericSub
|
|
|
21
21
|
tx: ChainTx<Rv>;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
/**
|
|
25
|
+
* @name: SubstrateApi
|
|
26
|
+
* @specVersion: 268
|
|
27
|
+
**/
|
|
24
28
|
export interface SubstrateApi {
|
|
25
29
|
legacy: VersionedSubstrateApi<RpcLegacy>;
|
|
26
30
|
v2: VersionedSubstrateApi<RpcV2>;
|
package/westend/index.d.ts
CHANGED
|
@@ -21,6 +21,10 @@ export interface VersionedWestendApi<Rv extends RpcVersion> extends GenericSubst
|
|
|
21
21
|
tx: ChainTx<Rv>;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
/**
|
|
25
|
+
* @name: WestendApi
|
|
26
|
+
* @specVersion: 1015000
|
|
27
|
+
**/
|
|
24
28
|
export interface WestendApi {
|
|
25
29
|
legacy: VersionedWestendApi<RpcLegacy>;
|
|
26
30
|
v2: VersionedWestendApi<RpcV2>;
|
|
@@ -21,6 +21,10 @@ export interface VersionedWestendAssetHubApi<Rv extends RpcVersion> extends Gene
|
|
|
21
21
|
tx: ChainTx<Rv>;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
/**
|
|
25
|
+
* @name: WestendAssetHubApi
|
|
26
|
+
* @specVersion: 1015000
|
|
27
|
+
**/
|
|
24
28
|
export interface WestendAssetHubApi {
|
|
25
29
|
legacy: VersionedWestendAssetHubApi<RpcLegacy>;
|
|
26
30
|
v2: VersionedWestendAssetHubApi<RpcV2>;
|
|
@@ -21,6 +21,10 @@ export interface VersionedWestendPeopleApi<Rv extends RpcVersion> extends Generi
|
|
|
21
21
|
tx: ChainTx<Rv>;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
/**
|
|
25
|
+
* @name: WestendPeopleApi
|
|
26
|
+
* @specVersion: 1015000
|
|
27
|
+
**/
|
|
24
28
|
export interface WestendPeopleApi {
|
|
25
29
|
legacy: VersionedWestendPeopleApi<RpcLegacy>;
|
|
26
30
|
v2: VersionedWestendPeopleApi<RpcV2>;
|