@dedot/chaintypes 0.74.0 → 0.77.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.
Files changed (44) hide show
  1. package/README.md +8 -4
  2. package/kusama/json-rpc.d.ts +11 -10
  3. package/kusama-asset-hub/json-rpc.d.ts +11 -10
  4. package/kusama-people/consts.d.ts +477 -0
  5. package/kusama-people/errors.d.ts +818 -0
  6. package/kusama-people/events.d.ts +1108 -0
  7. package/kusama-people/index.d.ts +31 -0
  8. package/kusama-people/json-rpc.d.ts +97 -0
  9. package/kusama-people/query.d.ts +1245 -0
  10. package/kusama-people/runtime.d.ts +636 -0
  11. package/kusama-people/tx.d.ts +3153 -0
  12. package/kusama-people/types.d.ts +5330 -0
  13. package/package.json +14 -2
  14. package/paseo/json-rpc.d.ts +11 -10
  15. package/paseo-asset-hub/consts.d.ts +788 -0
  16. package/paseo-asset-hub/errors.d.ts +1539 -0
  17. package/paseo-asset-hub/events.d.ts +2538 -0
  18. package/paseo-asset-hub/index.d.ts +31 -0
  19. package/paseo-asset-hub/json-rpc.d.ts +97 -0
  20. package/paseo-asset-hub/query.d.ts +1753 -0
  21. package/paseo-asset-hub/runtime.d.ts +726 -0
  22. package/paseo-asset-hub/tx.d.ts +9202 -0
  23. package/paseo-asset-hub/types.d.ts +12526 -0
  24. package/paseo-people/consts.d.ts +486 -0
  25. package/paseo-people/errors.d.ts +832 -0
  26. package/paseo-people/events.d.ts +1172 -0
  27. package/paseo-people/index.d.ts +31 -0
  28. package/paseo-people/json-rpc.d.ts +97 -0
  29. package/paseo-people/query.d.ts +1257 -0
  30. package/paseo-people/runtime.d.ts +636 -0
  31. package/paseo-people/tx.d.ts +3273 -0
  32. package/paseo-people/types.d.ts +5460 -0
  33. package/polkadot/json-rpc.d.ts +11 -10
  34. package/polkadot-asset-hub/json-rpc.d.ts +11 -10
  35. package/polkadot-people/consts.d.ts +477 -0
  36. package/polkadot-people/errors.d.ts +818 -0
  37. package/polkadot-people/events.d.ts +1108 -0
  38. package/polkadot-people/index.d.ts +31 -0
  39. package/polkadot-people/json-rpc.d.ts +97 -0
  40. package/polkadot-people/query.d.ts +1245 -0
  41. package/polkadot-people/runtime.d.ts +636 -0
  42. package/polkadot-people/tx.d.ts +3153 -0
  43. package/polkadot-people/types.d.ts +5349 -0
  44. 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.74.0",
3
+ "version": "0.77.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": "a6680c9729c4159608237c44cc94509192b9aa24",
22
+ "gitHead": "3321656a6d738c22f95c54865924a12d31ebee14",
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
  },
@@ -5,16 +5,16 @@ import type { JsonRpcApis } from 'dedot/types/json-rpc';
5
5
 
6
6
  export type ChainJsonRpcApis<Rv extends RpcVersion> = Pick<
7
7
  JsonRpcApis,
8
- | 'archive_unstable_body'
9
- | 'archive_unstable_call'
10
- | 'archive_unstable_finalizedHeight'
11
- | 'archive_unstable_genesisHash'
12
- | 'archive_unstable_hashByHeight'
13
- | 'archive_unstable_header'
14
- | 'archive_unstable_stopStorage'
15
- | 'archive_unstable_storage'
16
- | 'archive_unstable_storageDiff'
17
- | 'archive_unstable_storageDiff_stopStorageDiff'
8
+ | 'archive_v1_body'
9
+ | 'archive_v1_call'
10
+ | 'archive_v1_finalizedHeight'
11
+ | 'archive_v1_genesisHash'
12
+ | 'archive_v1_hashByHeight'
13
+ | 'archive_v1_header'
14
+ | 'archive_v1_stopStorage'
15
+ | 'archive_v1_storage'
16
+ | 'archive_v1_storageDiff'
17
+ | 'archive_v1_storageDiff_stopStorageDiff'
18
18
  | 'author_hasKey'
19
19
  | 'author_hasSessionKeys'
20
20
  | 'author_insertKey'
@@ -57,6 +57,7 @@ export type ChainJsonRpcApis<Rv extends RpcVersion> = Pick<
57
57
  | 'mmr_root'
58
58
  | 'mmr_verifyProof'
59
59
  | 'mmr_verifyProofStateless'
60
+ | 'offchain_localStorageClear'
60
61
  | 'offchain_localStorageGet'
61
62
  | 'offchain_localStorageSet'
62
63
  | 'payment_queryFeeDetails'