starknet 10.1.0 → 10.3.0
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 +12 -0
- package/README.md +2 -2
- package/dist/index.d.ts +293 -212
- package/dist/index.global.js +154 -31
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +156 -33
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +156 -33
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# [10.3.0](https://github.com/starknet-io/starknet.js/compare/v10.2.0...v10.3.0) (2026-06-10)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- creation of getSignedTransaction and invokeSignedTx ([3b85dfc](https://github.com/starknet-io/starknet.js/commit/3b85dfc319c9ebc284a60d4062d5397932331fe6))
|
|
6
|
+
|
|
7
|
+
# [10.2.0](https://github.com/starknet-io/starknet.js/compare/v10.1.0...v10.2.0) (2026-06-10)
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
- in class CairoByteArray hash added. Solve a code cycling ([1ab4c06](https://github.com/starknet-io/starknet.js/commit/1ab4c06884f1decf0317010c4ae97e8ec40d9fd4))
|
|
12
|
+
|
|
1
13
|
# [10.1.0](https://github.com/starknet-io/starknet.js/compare/v10.0.4...v10.1.0) (2026-06-09)
|
|
2
14
|
|
|
3
15
|
### Features
|
package/README.md
CHANGED
|
@@ -50,11 +50,11 @@ $ npm install starknet@next
|
|
|
50
50
|
$ npm install starknet@beta
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
-
Import `starknet` and use the [API](https://
|
|
53
|
+
Import `starknet` and use the [API](https://starknet-io.github.io/starknet.js/docs/API/).
|
|
54
54
|
|
|
55
55
|
## 🌐 Documentation
|
|
56
56
|
|
|
57
|
-
How to [Guides](https://
|
|
57
|
+
How to [Guides](https://starknet-io.github.io/starknet.js/docs/guides/intro) :book: & [API](https://starknet-io.github.io/starknet.js/docs/API/) 💻
|
|
58
58
|
|
|
59
59
|
Play with [Code Examples](https://github.com/PhilippeR26/starknet.js-workshop-typescript) :video_game:
|
|
60
60
|
|