@polymeshassociation/polymesh-sdk 23.0.1 → 23.0.2
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/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [23.0.
|
|
1
|
+
## [23.0.2](https://github.com/PolymeshAssociation/polymesh-sdk/compare/v23.0.1...v23.0.2) (2023-12-12)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
* 🐛
|
|
6
|
+
* 🐛 warning when connecting to 6.1 chains ([2c3d62a](https://github.com/PolymeshAssociation/polymesh-sdk/commit/2c3d62a7c2b7cc334962371e8b79c81a65506858))
|
|
Binary file
|
package/package.json
CHANGED
package/utils/constants.d.ts
CHANGED
|
@@ -37,12 +37,12 @@ export declare const ROOT_TYPES: Record<string, TransactionArgumentType.Did | Tr
|
|
|
37
37
|
/**
|
|
38
38
|
* The Polymesh RPC node version range that is compatible with this version of the SDK
|
|
39
39
|
*/
|
|
40
|
-
export declare const SUPPORTED_NODE_VERSION_RANGE = "
|
|
40
|
+
export declare const SUPPORTED_NODE_VERSION_RANGE = "6.0 || 6.1";
|
|
41
41
|
export declare const SUPPORTED_NODE_SEMVER: string;
|
|
42
42
|
/**
|
|
43
43
|
* The Polymesh chain spec version range that is compatible with this version of the SDK
|
|
44
44
|
*/
|
|
45
|
-
export declare const SUPPORTED_SPEC_VERSION_RANGE = "
|
|
45
|
+
export declare const SUPPORTED_SPEC_VERSION_RANGE = "6.0 || 6.1";
|
|
46
46
|
export declare const SUPPORTED_SPEC_SEMVER: string;
|
|
47
47
|
export declare const SYSTEM_VERSION_RPC_CALL: {
|
|
48
48
|
jsonrpc: string;
|
package/utils/constants.js
CHANGED
|
@@ -84,13 +84,13 @@ exports.ROOT_TYPES = rootTypes;
|
|
|
84
84
|
/**
|
|
85
85
|
* The Polymesh RPC node version range that is compatible with this version of the SDK
|
|
86
86
|
*/
|
|
87
|
-
exports.SUPPORTED_NODE_VERSION_RANGE = '
|
|
87
|
+
exports.SUPPORTED_NODE_VERSION_RANGE = '6.0 || 6.1';
|
|
88
88
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
89
89
|
exports.SUPPORTED_NODE_SEMVER = (0, semver_1.coerce)(exports.SUPPORTED_NODE_VERSION_RANGE).version;
|
|
90
90
|
/**
|
|
91
91
|
* The Polymesh chain spec version range that is compatible with this version of the SDK
|
|
92
92
|
*/
|
|
93
|
-
exports.SUPPORTED_SPEC_VERSION_RANGE = '
|
|
93
|
+
exports.SUPPORTED_SPEC_VERSION_RANGE = '6.0 || 6.1';
|
|
94
94
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
95
95
|
exports.SUPPORTED_SPEC_SEMVER = (0, semver_1.coerce)(exports.SUPPORTED_SPEC_VERSION_RANGE).version;
|
|
96
96
|
exports.SYSTEM_VERSION_RPC_CALL = {
|
|
Binary file
|