@dedot/chaintypes 0.76.0 → 0.78.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/README.md +8 -4
- package/kusama-people/consts.d.ts +477 -0
- package/kusama-people/errors.d.ts +818 -0
- package/kusama-people/events.d.ts +1108 -0
- package/kusama-people/index.d.ts +31 -0
- package/kusama-people/json-rpc.d.ts +97 -0
- package/kusama-people/query.d.ts +1245 -0
- package/kusama-people/runtime.d.ts +636 -0
- package/kusama-people/tx.d.ts +3153 -0
- package/kusama-people/types.d.ts +5330 -0
- package/package.json +14 -2
- package/paseo-asset-hub/consts.d.ts +788 -0
- package/paseo-asset-hub/errors.d.ts +1539 -0
- package/paseo-asset-hub/events.d.ts +2538 -0
- package/paseo-asset-hub/index.d.ts +31 -0
- package/paseo-asset-hub/json-rpc.d.ts +97 -0
- package/paseo-asset-hub/query.d.ts +1753 -0
- package/paseo-asset-hub/runtime.d.ts +726 -0
- package/paseo-asset-hub/tx.d.ts +9202 -0
- package/paseo-asset-hub/types.d.ts +12526 -0
- package/paseo-people/consts.d.ts +486 -0
- package/paseo-people/errors.d.ts +832 -0
- package/paseo-people/events.d.ts +1172 -0
- package/paseo-people/index.d.ts +31 -0
- package/paseo-people/json-rpc.d.ts +96 -0
- package/paseo-people/query.d.ts +1257 -0
- package/paseo-people/runtime.d.ts +636 -0
- package/paseo-people/tx.d.ts +3273 -0
- package/paseo-people/types.d.ts +5460 -0
- package/polkadot-people/consts.d.ts +477 -0
- package/polkadot-people/errors.d.ts +818 -0
- package/polkadot-people/events.d.ts +1108 -0
- package/polkadot-people/index.d.ts +31 -0
- package/polkadot-people/json-rpc.d.ts +97 -0
- package/polkadot-people/query.d.ts +1245 -0
- package/polkadot-people/runtime.d.ts +636 -0
- package/polkadot-people/tx.d.ts +3153 -0
- package/polkadot-people/types.d.ts +5349 -0
- package/westend/json-rpc.d.ts +10 -10
- package/westend-asset-hub/json-rpc.d.ts +10 -10
- package/westend-people/json-rpc.d.ts +11 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dedot/chaintypes",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.78.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": "0474a95208d74011d9be41d885821792d6fc1222",
|
|
23
23
|
"module": "./index.js",
|
|
24
24
|
"types": "./index.d.ts",
|
|
25
25
|
"exports": {
|
|
@@ -40,18 +40,30 @@
|
|
|
40
40
|
"./kusama-asset-hub": {
|
|
41
41
|
"types": "./kusama-asset-hub/index.d.ts"
|
|
42
42
|
},
|
|
43
|
+
"./kusama-people": {
|
|
44
|
+
"types": "./kusama-people/index.d.ts"
|
|
45
|
+
},
|
|
43
46
|
"./moonbeam": {
|
|
44
47
|
"types": "./moonbeam/index.d.ts"
|
|
45
48
|
},
|
|
46
49
|
"./paseo": {
|
|
47
50
|
"types": "./paseo/index.d.ts"
|
|
48
51
|
},
|
|
52
|
+
"./paseo-asset-hub": {
|
|
53
|
+
"types": "./paseo-asset-hub/index.d.ts"
|
|
54
|
+
},
|
|
55
|
+
"./paseo-people": {
|
|
56
|
+
"types": "./paseo-people/index.d.ts"
|
|
57
|
+
},
|
|
49
58
|
"./polkadot": {
|
|
50
59
|
"types": "./polkadot/index.d.ts"
|
|
51
60
|
},
|
|
52
61
|
"./polkadot-asset-hub": {
|
|
53
62
|
"types": "./polkadot-asset-hub/index.d.ts"
|
|
54
63
|
},
|
|
64
|
+
"./polkadot-people": {
|
|
65
|
+
"types": "./polkadot-people/index.d.ts"
|
|
66
|
+
},
|
|
55
67
|
"./substrate": {
|
|
56
68
|
"types": "./substrate/index.d.ts"
|
|
57
69
|
},
|