starknet 11.0.0-beta.10 → 11.0.0-beta.12
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 +20 -0
- package/dist/index.d.ts +854 -2
- package/dist/index.global.js +1003 -30
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +1010 -30
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1003 -30
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
# [11.0.0-beta.12](https://github.com/starknet-io/starknet.js/compare/v11.0.0-beta.11...v11.0.0-beta.12) (2026-09-02)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **cairoDataTypes:** add the composite Cairo type classes and their strategy ([58d1ae7](https://github.com/starknet-io/starknet.js/commit/58d1ae716443d1db96589eb6cbb35f2ae7784159)), closes [#1484](https://github.com/starknet-io/starknet.js/issues/1484) [#1688](https://github.com/starknet-io/starknet.js/issues/1688) [#1484](https://github.com/starknet-io/starknet.js/issues/1484)
|
|
6
|
+
|
|
7
|
+
# [11.0.0-beta.11](https://github.com/starknet-io/starknet.js/compare/v11.0.0-beta.10...v11.0.0-beta.11) (2026-09-01)
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
- **cairoDataTypes:** add CairoBool, CairoEthAddress and CairoSecp256k1Point ([332dd1e](https://github.com/starknet-io/starknet.js/commit/332dd1e2fbf9db756343768327788f9114a897b1))
|
|
12
|
+
|
|
13
|
+
### BREAKING CHANGES
|
|
14
|
+
|
|
15
|
+
- **cairoDataTypes:** three inputs that used to reach the calldata are now refused.
|
|
16
|
+
A core::bool argument that is neither a boolean nor 0/1 throws instead of being
|
|
17
|
+
serialized as a felt. An EthAddress built from text throws instead of being
|
|
18
|
+
encoded as its UTF-8 bytes. A Secp256k1Point wider than 512 bits throws instead
|
|
19
|
+
of emitting four corrupted felts.
|
|
20
|
+
|
|
1
21
|
# [11.0.0-beta.10](https://github.com/starknet-io/starknet.js/compare/v11.0.0-beta.9...v11.0.0-beta.10) (2026-09-01)
|
|
2
22
|
|
|
3
23
|
### Bug Fixes
|