@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
@@ -0,0 +1,65 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.versioned = void 0;
4
+ const types_create_1 = require("@pezkuwi/types-create");
5
+ /* eslint-disable sort-keys */
6
+ const sharedTypes = {
7
+ DispatchErrorModule: 'DispatchErrorModuleU8',
8
+ FullIdentification: '()', // No staking, only session (as per config)
9
+ Keys: 'SessionKeys7B',
10
+ Weight: 'WeightV1'
11
+ };
12
+ exports.versioned = [
13
+ {
14
+ minmax: [0, 200],
15
+ types: {
16
+ ...sharedTypes,
17
+ AccountInfo: 'AccountInfoWithDualRefCount',
18
+ Address: 'AccountId',
19
+ LookupSource: 'AccountId'
20
+ }
21
+ },
22
+ {
23
+ minmax: [201, 214],
24
+ types: {
25
+ ...sharedTypes,
26
+ AccountInfo: 'AccountInfoWithDualRefCount'
27
+ }
28
+ },
29
+ {
30
+ minmax: [215, 228],
31
+ types: {
32
+ ...sharedTypes,
33
+ Keys: 'SessionKeys6'
34
+ }
35
+ },
36
+ {
37
+ minmax: [229, 9099],
38
+ types: {
39
+ ...sharedTypes,
40
+ ...(0, types_create_1.mapXcmTypes)('V0')
41
+ }
42
+ },
43
+ {
44
+ minmax: [9100, 9105],
45
+ types: {
46
+ ...sharedTypes,
47
+ ...(0, types_create_1.mapXcmTypes)('V1')
48
+ }
49
+ },
50
+ {
51
+ // metadata v14
52
+ minmax: [9106, undefined],
53
+ types: {
54
+ Weight: 'WeightV1'
55
+ }
56
+ }
57
+ // ,
58
+ // {
59
+ // // weight v2 introduction
60
+ // minmax: [9300, undefined],
61
+ // types: {
62
+ // Weight: 'WeightV2'
63
+ // }
64
+ // }
65
+ ];
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.versioned = void 0;
4
+ exports.versioned = [
5
+ {
6
+ minmax: [0, undefined],
7
+ types: {
8
+ // nothing, limited runtime
9
+ }
10
+ }
11
+ ];
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.versioned = void 0;
4
+ const types_create_1 = require("@pezkuwi/types-create");
5
+ const sharedTypes = {
6
+ DispatchErrorModule: 'DispatchErrorModuleU8',
7
+ TAssetBalance: 'u128',
8
+ ProxyType: {
9
+ _enum: [
10
+ 'Any',
11
+ 'NonTransfer',
12
+ 'CancelProxy',
13
+ 'Assets',
14
+ 'AssetOwner',
15
+ 'AssetManager',
16
+ 'Staking'
17
+ ]
18
+ },
19
+ Weight: 'WeightV1'
20
+ };
21
+ exports.versioned = [
22
+ {
23
+ minmax: [0, 3],
24
+ types: {
25
+ // Enum was modified mid-flight -
26
+ // https://github.com/pezkuwichain/bizinikiwi/pull/10382/files#diff-e4e016b33a82268b6208dc974eea841bad47597865a749fee2f937eb6fdf67b4R498
27
+ DispatchError: 'DispatchErrorPre6First',
28
+ ...sharedTypes,
29
+ ...(0, types_create_1.mapXcmTypes)('V0')
30
+ }
31
+ },
32
+ {
33
+ minmax: [4, 5],
34
+ types: {
35
+ // As above, see https://github.com/pezkuwichain/pezkuwi-api/issues/5301
36
+ DispatchError: 'DispatchErrorPre6First',
37
+ ...sharedTypes,
38
+ ...(0, types_create_1.mapXcmTypes)('V1')
39
+ }
40
+ },
41
+ {
42
+ // metadata V14
43
+ minmax: [500, 9999],
44
+ types: {
45
+ Weight: 'WeightV1',
46
+ TAssetConversion: 'Option<AssetId>'
47
+ }
48
+ },
49
+ {
50
+ minmax: [10000, undefined],
51
+ types: {
52
+ Weight: 'WeightV1'
53
+ }
54
+ }
55
+ ];
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.versioned = void 0;
4
+ const types_create_1 = require("@pezkuwi/types-create");
5
+ const sharedTypes = {
6
+ DispatchErrorModule: 'DispatchErrorModuleU8',
7
+ TAssetBalance: 'u128',
8
+ ProxyType: {
9
+ _enum: [
10
+ 'Any',
11
+ 'NonTransfer',
12
+ 'CancelProxy',
13
+ 'Assets',
14
+ 'AssetOwner',
15
+ 'AssetManager',
16
+ 'Staking'
17
+ ]
18
+ },
19
+ Weight: 'WeightV1'
20
+ };
21
+ exports.versioned = [
22
+ {
23
+ minmax: [0, 3],
24
+ types: {
25
+ // Enum was modified mid-flight -
26
+ // https://github.com/pezkuwichain/bizinikiwi/pull/10382/files#diff-e4e016b33a82268b6208dc974eea841bad47597865a749fee2f937eb6fdf67b4R498
27
+ DispatchError: 'DispatchErrorPre6First',
28
+ ...sharedTypes,
29
+ ...(0, types_create_1.mapXcmTypes)('V0')
30
+ }
31
+ },
32
+ {
33
+ minmax: [4, 5],
34
+ types: {
35
+ // As above, see https://github.com/pezkuwichain/pezkuwi-api/issues/5301
36
+ DispatchError: 'DispatchErrorPre6First',
37
+ ...sharedTypes,
38
+ ...(0, types_create_1.mapXcmTypes)('V1')
39
+ }
40
+ },
41
+ {
42
+ // metadata V14
43
+ minmax: [500, 1001003],
44
+ types: {
45
+ Weight: 'WeightV1',
46
+ TAssetConversion: 'Option<AssetId>'
47
+ }
48
+ },
49
+ // ref: https://github.com/pezkuwichain/pezkuwi-api/pull/6208
50
+ // The following patches an issue where pezkuwi asset hub block 9686187, can't be decoding using xcm v5
51
+ // mappings.
52
+ {
53
+ minmax: [1002000, undefined],
54
+ types: {
55
+ Weight: 'WeightV1',
56
+ ...(0, types_create_1.mapXcmTypes)('V4')
57
+ }
58
+ }
59
+ // ,
60
+ // {
61
+ // // weight v2 introduction
62
+ // minmax: [9300, undefined],
63
+ // types: {
64
+ // Weight: 'WeightV2'
65
+ // }
66
+ // }
67
+ ];
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.versioned = void 0;
4
+ const types_create_1 = require("@pezkuwi/types-create");
5
+ const sharedTypes = {
6
+ DispatchErrorModule: 'DispatchErrorModuleU8',
7
+ TAssetBalance: 'u128',
8
+ ProxyType: {
9
+ _enum: [
10
+ 'Any',
11
+ 'NonTransfer',
12
+ 'CancelProxy',
13
+ 'Assets',
14
+ 'AssetOwner',
15
+ 'AssetManager',
16
+ 'Staking'
17
+ ]
18
+ },
19
+ Weight: 'WeightV1'
20
+ };
21
+ exports.versioned = [
22
+ {
23
+ minmax: [0, 3],
24
+ types: {
25
+ // Enum was modified mid-flight -
26
+ // https://github.com/pezkuwichain/bizinikiwi/pull/10382/files#diff-e4e016b33a82268b6208dc974eea841bad47597865a749fee2f937eb6fdf67b4R498
27
+ DispatchError: 'DispatchErrorPre6First',
28
+ ...sharedTypes,
29
+ ...(0, types_create_1.mapXcmTypes)('V0')
30
+ }
31
+ },
32
+ {
33
+ minmax: [4, 5],
34
+ types: {
35
+ // As above, see https://github.com/pezkuwichain/pezkuwi-api/issues/5301
36
+ DispatchError: 'DispatchErrorPre6First',
37
+ ...sharedTypes,
38
+ ...(0, types_create_1.mapXcmTypes)('V1')
39
+ }
40
+ },
41
+ {
42
+ // metadata V14
43
+ minmax: [500, 9434],
44
+ types: {
45
+ Weight: 'WeightV1',
46
+ TAssetConversion: 'Option<AssetId>'
47
+ }
48
+ },
49
+ {
50
+ minmax: [9435, undefined],
51
+ types: {
52
+ Weight: 'WeightV1'
53
+ }
54
+ }
55
+ ];
@@ -0,0 +1,118 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.versioned = void 0;
4
+ const types_create_1 = require("@pezkuwi/types-create");
5
+ const sharedTypes = {
6
+ // 16 validators
7
+ CompactAssignments: 'CompactAssignmentsWith16',
8
+ DispatchErrorModule: 'DispatchErrorModuleU8',
9
+ RawSolution: 'RawSolutionWith16',
10
+ // general
11
+ Keys: 'SessionKeys6',
12
+ ProxyType: {
13
+ _enum: ['Any', 'NonTransfer', 'Staking', 'SudoBalances', 'IdentityJudgement', 'CancelProxy']
14
+ },
15
+ Weight: 'WeightV1'
16
+ };
17
+ const addrAccountIdTypes = {
18
+ AccountInfo: 'AccountInfoWithRefCount',
19
+ Address: 'AccountId',
20
+ CompactAssignments: 'CompactAssignmentsWith16',
21
+ DispatchErrorModule: 'DispatchErrorModuleU8',
22
+ LookupSource: 'AccountId',
23
+ Keys: 'SessionKeys5',
24
+ RawSolution: 'RawSolutionWith16',
25
+ ValidatorPrefs: 'ValidatorPrefsWithCommission'
26
+ };
27
+ exports.versioned = [
28
+ {
29
+ minmax: [1, 2],
30
+ types: {
31
+ ...sharedTypes,
32
+ ...addrAccountIdTypes,
33
+ CompactAssignments: 'CompactAssignmentsTo257',
34
+ DispatchInfo: 'DispatchInfoTo244',
35
+ Heartbeat: 'HeartbeatTo244',
36
+ Multiplier: 'Fixed64',
37
+ OpenTip: 'OpenTipTo225',
38
+ RefCount: 'RefCountTo259',
39
+ Weight: 'u32'
40
+ }
41
+ },
42
+ {
43
+ minmax: [3, 22],
44
+ types: {
45
+ ...sharedTypes,
46
+ ...addrAccountIdTypes,
47
+ CompactAssignments: 'CompactAssignmentsTo257',
48
+ DispatchInfo: 'DispatchInfoTo244',
49
+ Heartbeat: 'HeartbeatTo244',
50
+ OpenTip: 'OpenTipTo225',
51
+ RefCount: 'RefCountTo259'
52
+ }
53
+ },
54
+ {
55
+ minmax: [23, 42],
56
+ types: {
57
+ ...sharedTypes,
58
+ ...addrAccountIdTypes,
59
+ CompactAssignments: 'CompactAssignmentsTo257',
60
+ DispatchInfo: 'DispatchInfoTo244',
61
+ Heartbeat: 'HeartbeatTo244',
62
+ RefCount: 'RefCountTo259'
63
+ }
64
+ },
65
+ {
66
+ minmax: [43, 44],
67
+ types: {
68
+ ...sharedTypes,
69
+ ...addrAccountIdTypes,
70
+ DispatchInfo: 'DispatchInfoTo244',
71
+ Heartbeat: 'HeartbeatTo244',
72
+ RefCount: 'RefCountTo259'
73
+ }
74
+ },
75
+ {
76
+ minmax: [45, 47],
77
+ types: {
78
+ ...sharedTypes,
79
+ ...addrAccountIdTypes
80
+ }
81
+ },
82
+ {
83
+ minmax: [48, 49],
84
+ types: {
85
+ ...sharedTypes,
86
+ AccountInfo: 'AccountInfoWithDualRefCount'
87
+ }
88
+ },
89
+ {
90
+ minmax: [50, 9099],
91
+ types: {
92
+ ...sharedTypes,
93
+ ...(0, types_create_1.mapXcmTypes)('V0')
94
+ }
95
+ },
96
+ {
97
+ minmax: [9100, 9105],
98
+ types: {
99
+ ...sharedTypes,
100
+ ...(0, types_create_1.mapXcmTypes)('V1')
101
+ }
102
+ },
103
+ {
104
+ // metadata v14
105
+ minmax: [9106, undefined],
106
+ types: {
107
+ Weight: 'WeightV1'
108
+ }
109
+ }
110
+ // ,
111
+ // {
112
+ // // weight v2 introduction
113
+ // minmax: [9300, undefined],
114
+ // types: {
115
+ // Weight: 'WeightV2'
116
+ // }
117
+ // }
118
+ ];