starknet 9.5.0-beta.2 → 10.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 +23 -0
- package/dist/index.d.ts +2367 -2223
- package/dist/index.global.js +2968 -7251
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +1111 -989
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1106 -989
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
# [10.0.0-beta.1](https://github.com/starknet-io/starknet.js/compare/v9.5.0-beta.2...v10.0.0-beta.1) (2026-02-24)
|
|
2
|
+
|
|
3
|
+
- feat!: refactor Account to use composition pattern, plugin system, docs\ \ BREAKING CHANGE: Account no longer extends Provider. Provider methods must now be accessed via account.provider property. \ Changes: - Account uses composition instead of inheritance - Add plugin system to replace ts-mixer - Update all tests to use account.provider.xyz() - Create migration guide and plugin documentation ([31d9458](https://github.com/starknet-io/starknet.js/commit/31d94587676a543c71dbd64b92d0e65d0ee3aa38))
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- node runtime array bufgfer fix ([5b95106](https://github.com/starknet-io/starknet.js/commit/5b95106d60389a5a12e170c9dda93e2a6bc9824b))
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
- remove pako package and replace with native and faster CompressionStream, update TS 5.9 ([75b8226](https://github.com/starknet-io/starknet.js/commit/75b8226ff70fa243d06f7530fb9053d26a9740ad))
|
|
12
|
+
|
|
13
|
+
### BREAKING CHANGES
|
|
14
|
+
|
|
15
|
+
- Account no longer extends Provider. Provider methods must now be accessed via account.provider property.
|
|
16
|
+
\
|
|
17
|
+
Changes:
|
|
18
|
+
|
|
19
|
+
* Account uses composition instead of inheritance
|
|
20
|
+
* Add plugin system to replace ts-mixer
|
|
21
|
+
* Update all tests to use account.provider.xyz()
|
|
22
|
+
* Create migration guide and plugin documentation
|
|
23
|
+
|
|
1
24
|
# [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
25
|
|
|
3
26
|
### Features
|