@pezkuwi/types-known 16.5.5 → 16.5.6

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 (150) hide show
  1. package/LICENSE +201 -0
  2. package/bundle.js +3 -0
  3. package/chain/index.js +1 -0
  4. package/cjs/bundle.d.ts +3 -0
  5. package/cjs/bundle.js +9 -0
  6. package/cjs/chain/index.d.ts +2 -0
  7. package/cjs/chain/index.js +4 -0
  8. package/cjs/index.js +5 -0
  9. package/cjs/package.json +3 -0
  10. package/cjs/packageDetect.js +6 -0
  11. package/cjs/packageInfo.js +4 -0
  12. package/cjs/spec/centrifuge-chain.js +105 -0
  13. package/cjs/spec/dicle.js +118 -0
  14. package/cjs/spec/index.js +27 -0
  15. package/cjs/spec/node-template.js +13 -0
  16. package/cjs/spec/node.js +13 -0
  17. package/cjs/spec/pezkuwi.js +105 -0
  18. package/cjs/spec/pezkuwichain.js +65 -0
  19. package/cjs/spec/shell.js +11 -0
  20. package/cjs/spec/statemine.js +55 -0
  21. package/cjs/spec/statemint.js +67 -0
  22. package/cjs/spec/westmint.js +55 -0
  23. package/cjs/spec/zagros.js +118 -0
  24. package/cjs/upgrades/e2e/dicle.js +6429 -0
  25. package/cjs/upgrades/e2e/index.d.ts +3 -0
  26. package/cjs/upgrades/e2e/index.js +9 -0
  27. package/cjs/upgrades/e2e/pezkuwi.js +3707 -0
  28. package/cjs/upgrades/e2e/zagros.js +6429 -0
  29. package/cjs/upgrades/index.js +29 -0
  30. package/cjs/upgrades/manual/dicle.js +25 -0
  31. package/cjs/upgrades/manual/index.d.ts +3 -0
  32. package/cjs/upgrades/manual/index.js +9 -0
  33. package/cjs/upgrades/manual/pezkuwi.js +17 -0
  34. package/cjs/upgrades/manual/zagros.js +25 -0
  35. package/cjs/upgrades/types.js +2 -0
  36. package/cjs/util.js +112 -0
  37. package/index.d.ts +2 -0
  38. package/index.js +2 -0
  39. package/package.json +424 -11
  40. package/packageDetect.d.ts +1 -0
  41. package/packageDetect.js +4 -0
  42. package/packageInfo.d.ts +6 -0
  43. package/packageInfo.js +1 -0
  44. package/spec/centrifuge-chain.d.ts +2 -0
  45. package/spec/centrifuge-chain.js +102 -0
  46. package/spec/dicle.d.ts +2 -0
  47. package/spec/dicle.js +115 -0
  48. package/spec/index.d.ts +2 -0
  49. package/spec/index.js +24 -0
  50. package/spec/node-template.d.ts +2 -0
  51. package/spec/node-template.js +10 -0
  52. package/spec/node.d.ts +2 -0
  53. package/spec/node.js +10 -0
  54. package/spec/pezkuwi.d.ts +2 -0
  55. package/spec/pezkuwi.js +102 -0
  56. package/spec/pezkuwichain.d.ts +2 -0
  57. package/spec/pezkuwichain.js +62 -0
  58. package/spec/shell.d.ts +2 -0
  59. package/spec/shell.js +8 -0
  60. package/spec/statemine.d.ts +2 -0
  61. package/spec/statemine.js +52 -0
  62. package/spec/statemint.d.ts +2 -0
  63. package/spec/statemint.js +64 -0
  64. package/spec/westmint.d.ts +2 -0
  65. package/spec/westmint.js +52 -0
  66. package/spec/zagros.d.ts +2 -0
  67. package/spec/zagros.js +115 -0
  68. package/upgrades/e2e/dicle.d.ts +2 -0
  69. package/upgrades/e2e/dicle.js +6426 -0
  70. package/upgrades/e2e/index.d.ts +3 -0
  71. package/upgrades/e2e/index.js +3 -0
  72. package/upgrades/e2e/pezkuwi.d.ts +2 -0
  73. package/upgrades/e2e/pezkuwi.js +3704 -0
  74. package/upgrades/e2e/zagros.d.ts +2 -0
  75. package/upgrades/e2e/zagros.js +6426 -0
  76. package/upgrades/index.d.ts +2 -0
  77. package/upgrades/index.js +25 -0
  78. package/upgrades/manual/dicle.d.ts +2 -0
  79. package/upgrades/manual/dicle.js +22 -0
  80. package/upgrades/manual/index.d.ts +3 -0
  81. package/upgrades/manual/index.js +3 -0
  82. package/upgrades/manual/pezkuwi.d.ts +2 -0
  83. package/upgrades/manual/pezkuwi.js +14 -0
  84. package/upgrades/manual/zagros.d.ts +2 -0
  85. package/upgrades/manual/zagros.js +22 -0
  86. package/{src/upgrades/types.ts → upgrades/types.d.ts} +0 -5
  87. package/upgrades/types.js +1 -0
  88. package/util.d.ts +33 -0
  89. package/util.js +103 -0
  90. package/build/upgrades/e2e/index.d.ts +0 -3
  91. package/build/upgrades/manual/index.d.ts +0 -3
  92. package/src/bundle.ts +0 -11
  93. package/src/chain/index.ts +0 -7
  94. package/src/index.ts +0 -6
  95. package/src/mod.ts +0 -4
  96. package/src/packageDetect.ts +0 -12
  97. package/src/packageInfo.ts +0 -6
  98. package/src/spec/centrifuge-chain.ts +0 -116
  99. package/src/spec/index.ts +0 -31
  100. package/src/spec/kusama.ts +0 -258
  101. package/src/spec/node-template.ts +0 -17
  102. package/src/spec/node.ts +0 -17
  103. package/src/spec/polkadot.ts +0 -112
  104. package/src/spec/rococo.ts +0 -73
  105. package/src/spec/shell.ts +0 -15
  106. package/src/spec/statemine.ts +0 -62
  107. package/src/spec/statemint.ts +0 -74
  108. package/src/spec/westend.ts +0 -125
  109. package/src/spec/westmint.ts +0 -62
  110. package/src/upgrades/e2e/index.spec.ts +0 -67
  111. package/src/upgrades/e2e/index.ts +0 -6
  112. package/src/upgrades/e2e/kusama.ts +0 -5372
  113. package/src/upgrades/e2e/polkadot.ts +0 -3712
  114. package/src/upgrades/e2e/westend.ts +0 -6434
  115. package/src/upgrades/index.spec.ts +0 -118
  116. package/src/upgrades/index.ts +0 -40
  117. package/src/upgrades/manual/index.ts +0 -6
  118. package/src/upgrades/manual/kusama.ts +0 -26
  119. package/src/upgrades/manual/polkadot.ts +0 -19
  120. package/src/upgrades/manual/westend.ts +0 -27
  121. package/src/util.ts +0 -128
  122. package/tsconfig.build.json +0 -17
  123. package/tsconfig.build.tsbuildinfo +0 -1
  124. package/tsconfig.spec.json +0 -19
  125. /package/{build/bundle.d.ts → bundle.d.ts} +0 -0
  126. /package/{build/chain → chain}/index.d.ts +0 -0
  127. /package/{build → cjs}/index.d.ts +0 -0
  128. /package/{build → cjs}/packageDetect.d.ts +0 -0
  129. /package/{build → cjs}/packageInfo.d.ts +0 -0
  130. /package/{build → cjs}/spec/centrifuge-chain.d.ts +0 -0
  131. /package/{build/spec/kusama.d.ts → cjs/spec/dicle.d.ts} +0 -0
  132. /package/{build → cjs}/spec/index.d.ts +0 -0
  133. /package/{build → cjs}/spec/node-template.d.ts +0 -0
  134. /package/{build → cjs}/spec/node.d.ts +0 -0
  135. /package/{build/spec/polkadot.d.ts → cjs/spec/pezkuwi.d.ts} +0 -0
  136. /package/{build/spec/rococo.d.ts → cjs/spec/pezkuwichain.d.ts} +0 -0
  137. /package/{build → cjs}/spec/shell.d.ts +0 -0
  138. /package/{build → cjs}/spec/statemine.d.ts +0 -0
  139. /package/{build → cjs}/spec/statemint.d.ts +0 -0
  140. /package/{build → cjs}/spec/westmint.d.ts +0 -0
  141. /package/{build/spec/westend.d.ts → cjs/spec/zagros.d.ts} +0 -0
  142. /package/{build/upgrades/e2e/kusama.d.ts → cjs/upgrades/e2e/dicle.d.ts} +0 -0
  143. /package/{build/upgrades/e2e/polkadot.d.ts → cjs/upgrades/e2e/pezkuwi.d.ts} +0 -0
  144. /package/{build/upgrades/e2e/westend.d.ts → cjs/upgrades/e2e/zagros.d.ts} +0 -0
  145. /package/{build → cjs}/upgrades/index.d.ts +0 -0
  146. /package/{build/upgrades/manual/kusama.d.ts → cjs/upgrades/manual/dicle.d.ts} +0 -0
  147. /package/{build/upgrades/manual/polkadot.d.ts → cjs/upgrades/manual/pezkuwi.d.ts} +0 -0
  148. /package/{build/upgrades/manual/westend.d.ts → cjs/upgrades/manual/zagros.d.ts} +0 -0
  149. /package/{build → cjs}/upgrades/types.d.ts +0 -0
  150. /package/{build → cjs}/util.d.ts +0 -0
@@ -1,125 +0,0 @@
1
- // Copyright 2017-2025 @polkadot/types-known authors & contributors
2
- // SPDX-License-Identifier: Apache-2.0
3
-
4
- /* eslint-disable sort-keys */
5
-
6
- import type { OverrideVersionedType } from '@pezkuwi/types/types';
7
-
8
- import { mapXcmTypes } from '@pezkuwi/types-create';
9
-
10
- const sharedTypes = {
11
- // 16 validators
12
- CompactAssignments: 'CompactAssignmentsWith16',
13
- DispatchErrorModule: 'DispatchErrorModuleU8',
14
- RawSolution: 'RawSolutionWith16',
15
- // general
16
- Keys: 'SessionKeys6',
17
- ProxyType: {
18
- _enum: ['Any', 'NonTransfer', 'Staking', 'SudoBalances', 'IdentityJudgement', 'CancelProxy']
19
- },
20
- Weight: 'WeightV1'
21
- };
22
-
23
- const addrAccountIdTypes = {
24
- AccountInfo: 'AccountInfoWithRefCount',
25
- Address: 'AccountId',
26
- CompactAssignments: 'CompactAssignmentsWith16',
27
- DispatchErrorModule: 'DispatchErrorModuleU8',
28
- LookupSource: 'AccountId',
29
- Keys: 'SessionKeys5',
30
- RawSolution: 'RawSolutionWith16',
31
- ValidatorPrefs: 'ValidatorPrefsWithCommission'
32
- };
33
-
34
- export const versioned: OverrideVersionedType[] = [
35
- {
36
- minmax: [1, 2],
37
- types: {
38
- ...sharedTypes,
39
- ...addrAccountIdTypes,
40
- CompactAssignments: 'CompactAssignmentsTo257',
41
- DispatchInfo: 'DispatchInfoTo244',
42
- Heartbeat: 'HeartbeatTo244',
43
- Multiplier: 'Fixed64',
44
- OpenTip: 'OpenTipTo225',
45
- RefCount: 'RefCountTo259',
46
- Weight: 'u32'
47
- }
48
- },
49
- {
50
- minmax: [3, 22],
51
- types: {
52
- ...sharedTypes,
53
- ...addrAccountIdTypes,
54
- CompactAssignments: 'CompactAssignmentsTo257',
55
- DispatchInfo: 'DispatchInfoTo244',
56
- Heartbeat: 'HeartbeatTo244',
57
- OpenTip: 'OpenTipTo225',
58
- RefCount: 'RefCountTo259'
59
- }
60
- },
61
- {
62
- minmax: [23, 42],
63
- types: {
64
- ...sharedTypes,
65
- ...addrAccountIdTypes,
66
- CompactAssignments: 'CompactAssignmentsTo257',
67
- DispatchInfo: 'DispatchInfoTo244',
68
- Heartbeat: 'HeartbeatTo244',
69
- RefCount: 'RefCountTo259'
70
- }
71
- },
72
- {
73
- minmax: [43, 44],
74
- types: {
75
- ...sharedTypes,
76
- ...addrAccountIdTypes,
77
- DispatchInfo: 'DispatchInfoTo244',
78
- Heartbeat: 'HeartbeatTo244',
79
- RefCount: 'RefCountTo259'
80
- }
81
- },
82
- {
83
- minmax: [45, 47],
84
- types: {
85
- ...sharedTypes,
86
- ...addrAccountIdTypes
87
- }
88
- },
89
- {
90
- minmax: [48, 49],
91
- types: {
92
- ...sharedTypes,
93
- AccountInfo: 'AccountInfoWithDualRefCount'
94
- }
95
- },
96
- {
97
- minmax: [50, 9099],
98
- types: {
99
- ...sharedTypes,
100
- ...mapXcmTypes('V0')
101
- }
102
- },
103
- {
104
- minmax: [9100, 9105],
105
- types: {
106
- ...sharedTypes,
107
- ...mapXcmTypes('V1')
108
- }
109
- },
110
- {
111
- // metadata v14
112
- minmax: [9106, undefined],
113
- types: {
114
- Weight: 'WeightV1'
115
- }
116
- }
117
- // ,
118
- // {
119
- // // weight v2 introduction
120
- // minmax: [9300, undefined],
121
- // types: {
122
- // Weight: 'WeightV2'
123
- // }
124
- // }
125
- ];
@@ -1,62 +0,0 @@
1
- // Copyright 2017-2025 @polkadot/types-known authors & contributors
2
- // SPDX-License-Identifier: Apache-2.0
3
-
4
- /* eslint-disable sort-keys */
5
-
6
- import type { OverrideVersionedType } from '@pezkuwi/types/types';
7
-
8
- import { mapXcmTypes } from '@pezkuwi/types-create';
9
-
10
- const sharedTypes = {
11
- DispatchErrorModule: 'DispatchErrorModuleU8',
12
- TAssetBalance: 'u128',
13
- ProxyType: {
14
- _enum: [
15
- 'Any',
16
- 'NonTransfer',
17
- 'CancelProxy',
18
- 'Assets',
19
- 'AssetOwner',
20
- 'AssetManager',
21
- 'Staking'
22
- ]
23
- },
24
- Weight: 'WeightV1'
25
- };
26
-
27
- // these are override types for Statemine, Westmint
28
- export const versioned: OverrideVersionedType[] = [
29
- {
30
- minmax: [0, 3],
31
- types: {
32
- // Enum was modified mid-flight -
33
- // https://github.com/paritytech/substrate/pull/10382/files#diff-e4e016b33a82268b6208dc974eea841bad47597865a749fee2f937eb6fdf67b4R498
34
- DispatchError: 'DispatchErrorPre6First',
35
- ...sharedTypes,
36
- ...mapXcmTypes('V0')
37
- }
38
- },
39
- {
40
- minmax: [4, 5],
41
- types: {
42
- // As above, see https://github.com/polkadot-js/api/issues/5301
43
- DispatchError: 'DispatchErrorPre6First',
44
- ...sharedTypes,
45
- ...mapXcmTypes('V1')
46
- }
47
- },
48
- {
49
- // metadata V14
50
- minmax: [500, 9434],
51
- types: {
52
- Weight: 'WeightV1',
53
- TAssetConversion: 'Option<AssetId>'
54
- }
55
- },
56
- {
57
- minmax: [9435, undefined],
58
- types: {
59
- Weight: 'WeightV1'
60
- }
61
- }
62
- ];
@@ -1,67 +0,0 @@
1
- // Copyright 2017-2025 @polkadot/types-known authors & contributors
2
- // SPDX-License-Identifier: Apache-2.0
3
-
4
- /// <reference types="@pezkuwi/dev-test/globals.d.ts" />
5
-
6
- import type { HexString } from '@pezkuwi/util/types';
7
- import type { ChainUpgradesExpanded } from '../types.js';
8
-
9
- import fs from 'node:fs';
10
-
11
- import { ApiPromise, WsProvider } from '@pezkuwi/api';
12
- import { stringify } from '@pezkuwi/util';
13
-
14
- import * as allMan from '../manual/index.js';
15
- import * as allGen from './index.js';
16
-
17
- const keys = ['kusama', 'polkadot', 'westend'] as const;
18
- const urls = {
19
- 'asset-hub-kusama': 'wss://kusama-asset-hub-rpc.polkadot.io',
20
- 'asset-hub-polkadot': 'wss://polkadot-asset-hub-rpc.polkadot.io',
21
- kusama: 'wss://kusama-rpc.polkadot.io',
22
- polkadot: 'wss://rpc.polkadot.io',
23
- westend: 'wss://westend-rpc.polkadot.io'
24
- };
25
-
26
- for (const chain of keys) {
27
- describe(`generate ${chain}`, (): void => {
28
- const avail = allGen[chain];
29
- const final: ChainUpgradesExpanded = [];
30
- let api: ApiPromise;
31
-
32
- beforeAll(async (): Promise<void> => {
33
- api = await ApiPromise.create({ provider: new WsProvider(urls[chain]) });
34
- });
35
-
36
- afterAll(async (): Promise<void> => {
37
- fs.writeFileSync(`packages/types-known/src/upgrades/e2e/${chain}.ts`, `// Copyright 2017-${new Date().getFullYear()} @polkadot/types-known authors & contributors
38
- // SPDX-License-Identifier: Apache-2.0
39
-
40
- // Auto-generated from on-chain data & manual definitions, do not edit
41
- /* eslint-disable quotes, comma-spacing */
42
-
43
- import type { ChainUpgradesExpanded } from '../types.js';
44
-
45
- export const upgrades: ChainUpgradesExpanded = ${stringify(final, 2)};
46
- `);
47
- await api.disconnect();
48
- });
49
-
50
- for (const [blockNumber, specVersion] of allMan[chain]) {
51
- // eslint-disable-next-line jest/expect-expect
52
- it(`blockNumber=${blockNumber}, specVersion=${specVersion}`, async (): Promise<void> => {
53
- const found = avail.find(([n, s]) => n === blockNumber && s === specVersion);
54
-
55
- if (found) {
56
- final.push(found);
57
- } else {
58
- const blockHash = await api.rpc.chain.getBlockHash(blockNumber + 1);
59
- const runtime = await api.rpc.state.getRuntimeVersion(blockHash);
60
- const apis = runtime.apis.map(([api, version]): [HexString, number] => [api.toHex(), version.toNumber()]);
61
-
62
- final.push([blockNumber, specVersion, apis]);
63
- }
64
- });
65
- }
66
- });
67
- }
@@ -1,6 +0,0 @@
1
- // Copyright 2017-2025 @polkadot/types-known authors & contributors
2
- // SPDX-License-Identifier: Apache-2.0
3
-
4
- export { upgrades as kusama } from './kusama.js';
5
- export { upgrades as polkadot } from './polkadot.js';
6
- export { upgrades as westend } from './westend.js';