starknet 6.6.0 → 6.7.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 +4 -1
- package/dist/index.d.ts +1879 -3593
- package/dist/index.global.js +4165 -1843
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +544 -159
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +529 -142
- package/dist/index.mjs.map +1 -1
- package/package.json +13 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# [6.7.0](https://github.com/starknet-io/starknet.js/compare/v6.6.6...v6.7.0) (2024-04-03)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- readme & trigger release ([5341c42](https://github.com/starknet-io/starknet.js/commit/5341c42da8bf5d2f82e4446a60b5e4fdc9c4e2fe))
|
|
6
|
+
|
|
7
|
+
## [6.6.6](https://github.com/starknet-io/starknet.js/compare/v6.6.5...v6.6.6) (2024-03-25)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- next version ([#1024](https://github.com/starknet-io/starknet.js/issues/1024)) ([07d4a26](https://github.com/starknet-io/starknet.js/commit/07d4a26c8b93413fcf1b8b54549e11555df86ca9))
|
|
12
|
+
|
|
1
13
|
# [6.6.0](https://github.com/starknet-io/starknet.js/compare/v6.5.0...v6.6.0) (2024-03-19)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -42,8 +42,11 @@ Install starknet with `npm`
|
|
|
42
42
|
# latest official release (main branch)
|
|
43
43
|
$ npm install starknet
|
|
44
44
|
|
|
45
|
-
# or for latest pre-release version (develop branch)
|
|
45
|
+
# or for latest pre-release version (develop branch)
|
|
46
46
|
$ npm install starknet@next
|
|
47
|
+
|
|
48
|
+
# or for latest beta release version (beta branch)
|
|
49
|
+
$ npm install starknet@beta
|
|
47
50
|
```
|
|
48
51
|
|
|
49
52
|
Import `starknet` and use the [API](https://www.starknetjs.com/docs/API/).
|