starknet 6.23.0 → 7.0.0-beta.1
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 +14 -0
- package/README.md +3 -0
- package/dist/index.d.ts +1593 -2622
- package/dist/index.global.js +797 -539
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +560 -500
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +555 -507
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [7.0.0-beta.1](https://github.com/starknet-io/starknet.js/compare/v6.24.0-beta.1...v7.0.0-beta.1) (2025-03-04)
|
|
2
|
+
|
|
3
|
+
- Implement RPC 0.8 and V3 transactions ([#1328](https://github.com/starknet-io/starknet.js/issues/1328)) ([316ae27](https://github.com/starknet-io/starknet.js/commit/316ae2789376368dcffe653ce4817eebf0a63d97))
|
|
4
|
+
|
|
5
|
+
### BREAKING CHANGES
|
|
6
|
+
|
|
7
|
+
- Library defaults to RPC 0.8 with the corresponding API changes, dropped RPC 0.6 support
|
|
8
|
+
|
|
9
|
+
## [6.23.1](https://github.com/starknet-io/starknet.js/compare/v6.23.0...v6.23.1) (2025-02-05)
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
- conf. TxV in Account, conf. string auto. all methods, fix unbdef… ([#1311](https://github.com/starknet-io/starknet.js/issues/1311)) ([1d91ec0](https://github.com/starknet-io/starknet.js/commit/1d91ec00c9b3f5c47dfc77946c7250b7022728a6))
|
|
14
|
+
|
|
1
15
|
# [6.23.0](https://github.com/starknet-io/starknet.js/compare/v6.22.0...v6.23.0) (2025-01-29)
|
|
2
16
|
|
|
3
17
|
### Features
|
package/README.md
CHANGED
|
@@ -32,6 +32,9 @@
|
|
|
32
32
|
<a href="https://twitter.com/starknetjs">
|
|
33
33
|
<img src="https://img.shields.io/badge/follow_us-Twitter-blue">
|
|
34
34
|
</a>
|
|
35
|
+
<a href="https://www.drips.network/app/projects/github/starknet-io/starknet.js" target="_blank">
|
|
36
|
+
<img src="https://www.drips.network/api/embed/project/https%3A%2F%2Fgithub.com%2Fstarknet-io%2Fstarknet.js/support.png?background=light&style=github&text=project&stat=none" alt="Support starknet.js on drips.network" height="20">
|
|
37
|
+
</a>
|
|
35
38
|
</p>
|
|
36
39
|
|
|
37
40
|
## Installation
|