starknet 9.4.1-beta.1 → 9.5.0-beta.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 +25 -0
- package/dist/index.d.ts +317 -108
- package/dist/index.global.js +174 -47
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +130 -36
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +127 -36
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
# [9.5.0-beta.2](https://github.com/starknet-io/starknet.js/compare/v9.5.0-beta.1...v9.5.0-beta.2) (2026-02-17)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- proof & proof facts ([3b157ee](https://github.com/starknet-io/starknet.js/commit/3b157ee7e5a2d10bbfd78969d61f5136d9d89ec4))
|
|
6
|
+
- update account class execute with proofFacts and simulate with initial reads ([c42b787](https://github.com/starknet-io/starknet.js/commit/c42b7876edf254e9f843bdcb496ebe171d01308d))
|
|
7
|
+
|
|
8
|
+
# [9.5.0-beta.1](https://github.com/starknet-io/starknet.js/compare/v9.4.1-beta.1...v9.5.0-beta.1) (2026-02-16)
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
- updated rest of the outdated packages ([37ee66d](https://github.com/starknet-io/starknet.js/commit/37ee66d03983520472da47203beb95c922aaeae2))
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- getSimulateTransaction response breaking change now using new response schema ([8b3a117](https://github.com/starknet-io/starknet.js/commit/8b3a117ec5ba5fa1a6096ba002c4d1e1accc87fa))
|
|
17
|
+
- include optional flags in provider, channel and ws ([1ba87ad](https://github.com/starknet-io/starknet.js/commit/1ba87adf46d62b49aa27cc9e425d8e0eff8d1793))
|
|
18
|
+
- replace types-010 with types-0101 ([e7060e9](https://github.com/starknet-io/starknet.js/commit/e7060e98bc0fd87c0fcc6bae9ec279771310d34b))
|
|
19
|
+
|
|
1
20
|
## [9.4.1-beta.1](https://github.com/starknet-io/starknet.js/compare/v9.4.0...v9.4.1-beta.1) (2026-02-16)
|
|
2
21
|
|
|
3
22
|
### Bug Fixes
|
|
@@ -26,6 +45,12 @@
|
|
|
26
45
|
|
|
27
46
|
- contractLoader ([e4e837e](https://github.com/starknet-io/starknet.js/commit/e4e837e3393d6fb5db1eb20e699bde80efee57c4))
|
|
28
47
|
|
|
48
|
+
## [9.3.1-beta.1](https://github.com/starknet-io/starknet.js/compare/v9.3.0...v9.3.1-beta.1) (2026-02-05)
|
|
49
|
+
|
|
50
|
+
### Bug Fixes
|
|
51
|
+
|
|
52
|
+
- semantic version, audit fix, ci permissions ([3c5dea3](https://github.com/starknet-io/starknet.js/commit/3c5dea301733c85cbd5a2785358e92f808874902))
|
|
53
|
+
|
|
29
54
|
# [9.3.0](https://github.com/starknet-io/starknet.js/compare/v9.2.2...v9.3.0) (2025-12-19)
|
|
30
55
|
|
|
31
56
|
### Features
|