starknet 5.19.4 → 5.19.5
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 +6 -0
- package/dist/index.global.js +1 -1
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [5.19.5](https://github.com/0xs34n/starknet.js/compare/v5.19.4...v5.19.5) (2023-08-29)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- status case ([5ba7983](https://github.com/0xs34n/starknet.js/commit/5ba798309d2c8567840b8f6a6031ec0e6b582d53))
|
|
6
|
+
|
|
1
7
|
## [5.19.4](https://github.com/0xs34n/starknet.js/compare/v5.19.3...v5.19.4) (2023-08-29)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
package/dist/index.global.js
CHANGED
|
@@ -778,7 +778,7 @@ var starknet = (() => {
|
|
|
778
778
|
function utf8ToArray(str) {
|
|
779
779
|
return new TextEncoder().encode(str);
|
|
780
780
|
}
|
|
781
|
-
var pascalToSnake = (text) =>
|
|
781
|
+
var pascalToSnake = (text) => /[a-z]/.test(text) ? text.split(/(?=[A-Z])/).join("_").toUpperCase() : text;
|
|
782
782
|
|
|
783
783
|
// src/constants.ts
|
|
784
784
|
var HEX_STR_TRANSACTION_VERSION_1 = "0x1";
|