@dedot/chaintypes 0.0.1-alpha.26 → 0.0.1-alpha.28
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/astar/runtime.d.ts +2 -2
- package/index.d.ts +1 -0
- package/index.ts +1 -0
- package/package.json +7 -6
- package/packageInfo.js +1 -1
- package/packageInfo.ts +1 -1
- package/rococo/consts.d.ts +1405 -0
- package/rococo/errors.d.ts +2855 -0
- package/rococo/events.d.ts +3142 -0
- package/rococo/index.d.ts +22 -0
- package/rococo/query.d.ts +3270 -0
- package/rococo/rpc.d.ts +904 -0
- package/rococo/runtime.d.ts +1051 -0
- package/rococo/tx.d.ts +6862 -0
- package/rococo/types.d.ts +10411 -0
- package/westendAssetHub/runtime.d.ts +29 -1
package/astar/runtime.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import type {
|
|
|
11
11
|
OpaqueExtrinsicLike,
|
|
12
12
|
CheckInherentsResult,
|
|
13
13
|
InherentData,
|
|
14
|
-
|
|
14
|
+
OpaqueExtrinsic,
|
|
15
15
|
TransactionValidity,
|
|
16
16
|
TransactionSource,
|
|
17
17
|
BlockHash,
|
|
@@ -118,7 +118,7 @@ export interface RuntimeApis extends GenericRuntimeApis {
|
|
|
118
118
|
* @callname: BlockBuilder_inherent_extrinsics
|
|
119
119
|
* @param {InherentData} inherent
|
|
120
120
|
**/
|
|
121
|
-
inherentExtrinsics: GenericRuntimeApiMethod<(inherent: InherentData) => Promise<Array<
|
|
121
|
+
inherentExtrinsics: GenericRuntimeApiMethod<(inherent: InherentData) => Promise<Array<OpaqueExtrinsic>>>;
|
|
122
122
|
|
|
123
123
|
/**
|
|
124
124
|
*
|
package/index.d.ts
CHANGED
|
@@ -6,5 +6,6 @@ export type { AstarApi } from './astar';
|
|
|
6
6
|
export type { KusamaAssetHubApi } from './kusamaAssetHub';
|
|
7
7
|
export type { AlephApi } from './aleph';
|
|
8
8
|
export type { PolkadotAssetHubApi } from './polkadotAssetHub';
|
|
9
|
+
export type { RococoApi } from './rococo';
|
|
9
10
|
export type { RococoAssetHubApi } from './rococoAssetHub';
|
|
10
11
|
export type { WestendAssetHubApi } from './westendAssetHub';
|
package/index.ts
CHANGED
|
@@ -6,5 +6,6 @@ export type { AstarApi } from './astar';
|
|
|
6
6
|
export type { KusamaAssetHubApi } from './kusamaAssetHub';
|
|
7
7
|
export type { AlephApi } from './aleph';
|
|
8
8
|
export type { PolkadotAssetHubApi } from './polkadotAssetHub';
|
|
9
|
+
export type { RococoApi } from './rococo';
|
|
9
10
|
export type { RococoAssetHubApi } from './rococoAssetHub';
|
|
10
11
|
export type { WestendAssetHubApi } from './westendAssetHub';
|
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.28",
|
|
4
4
|
"description": "Types for substrate-based chains",
|
|
5
5
|
"author": "Thang X. Vu <thang@coongcrafts.io>",
|
|
6
6
|
"homepage": "https://github.com/dedotdev/dedot/tree/main/packages/chaintypes",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"url": "https://github.com/dedotdev/dedot.git"
|
|
11
11
|
},
|
|
12
12
|
"main": "./cjs/index.js",
|
|
13
|
+
"sideEffects": false,
|
|
13
14
|
"type": "module",
|
|
14
15
|
"scripts": {
|
|
15
16
|
"build": "tsc --project tsconfig.build.json && yarn copy",
|
|
@@ -17,10 +18,10 @@
|
|
|
17
18
|
"copy": "cp -R ./src/* ./dist"
|
|
18
19
|
},
|
|
19
20
|
"dependencies": {
|
|
20
|
-
"@dedot/codecs": "0.0.1-alpha.
|
|
21
|
-
"@dedot/shape": "0.0.1-alpha.
|
|
22
|
-
"@dedot/types": "0.0.1-alpha.
|
|
23
|
-
"@dedot/utils": "0.0.1-alpha.
|
|
21
|
+
"@dedot/codecs": "0.0.1-alpha.28",
|
|
22
|
+
"@dedot/shape": "0.0.1-alpha.28",
|
|
23
|
+
"@dedot/types": "0.0.1-alpha.28",
|
|
24
|
+
"@dedot/utils": "0.0.1-alpha.28",
|
|
24
25
|
"@polkadot/util": "^12.6.2"
|
|
25
26
|
},
|
|
26
27
|
"publishConfig": {
|
|
@@ -28,7 +29,7 @@
|
|
|
28
29
|
"directory": "dist"
|
|
29
30
|
},
|
|
30
31
|
"license": "Apache-2.0",
|
|
31
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "564588ef7baeb1eca72c594b8dccd5c71181e81e",
|
|
32
33
|
"module": "./index.js",
|
|
33
34
|
"types": "./index.d.ts"
|
|
34
35
|
}
|
package/packageInfo.js
CHANGED
package/packageInfo.ts
CHANGED