starknet 6.6.6 → 6.8.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 +20 -0
- package/README.md +6 -1
- package/dist/index.d.ts +1581 -2529
- package/dist/index.global.js +3898 -1914
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +247 -355
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +256 -338
- package/dist/index.mjs.map +1 -1
- package/package.json +14 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
# [6.8.0](https://github.com/starknet-io/starknet.js/compare/v6.7.0...v6.8.0) (2024-04-23)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- starkne types 0.7 ([#1087](https://github.com/starknet-io/starknet.js/issues/1087)) ([b038c76](https://github.com/starknet-io/starknet.js/commit/b038c76fe204746f1d1023c2ad3b46c022f6edbd))
|
|
6
|
+
- tslib ([#1068](https://github.com/starknet-io/starknet.js/issues/1068)) ([dd7dc10](https://github.com/starknet-io/starknet.js/commit/dd7dc10c57fc3cc35298c0d584a178666e9cfed1))
|
|
7
|
+
- **utils:** fix block identifier ([#1076](https://github.com/starknet-io/starknet.js/issues/1076)) ([0a3499d](https://github.com/starknet-io/starknet.js/commit/0a3499d49751061ceae1a4d6023b34f402376efc))
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
- add getGasPrice rpc provider method ([#1056](https://github.com/starknet-io/starknet.js/issues/1056)) ([d396275](https://github.com/starknet-io/starknet.js/commit/d396275348aff9c932d2bb7466b2a55f96214e4e))
|
|
12
|
+
- Export function parseCalldataField() ([4d59658](https://github.com/starknet-io/starknet.js/commit/4d596582023f24522c25a1a515ee0246d2eca90a))
|
|
13
|
+
- rpc 0.7.1 ([#1071](https://github.com/starknet-io/starknet.js/issues/1071)) ([11dc600](https://github.com/starknet-io/starknet.js/commit/11dc6003c74b6b6d0408b3f5894b5b6739d4bfba))
|
|
14
|
+
|
|
15
|
+
# [6.7.0](https://github.com/starknet-io/starknet.js/compare/v6.6.6...v6.7.0) (2024-04-03)
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
- readme & trigger release ([5341c42](https://github.com/starknet-io/starknet.js/commit/5341c42da8bf5d2f82e4446a60b5e4fdc9c4e2fe))
|
|
20
|
+
|
|
1
21
|
## [6.6.6](https://github.com/starknet-io/starknet.js/compare/v6.6.5...v6.6.6) (2024-03-25)
|
|
2
22
|
|
|
3
23
|
### 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/).
|
|
@@ -60,6 +63,8 @@ Guides can be found [here](https://www.starknetjs.com/docs/guides/intro) :book:
|
|
|
60
63
|
|
|
61
64
|
If you consider to contribute to this project please read [CONTRIBUTING.md](https://github.com/starknet-io/starknet.js/blob/main/CONTRIBUTING.md) first.
|
|
62
65
|
|
|
66
|
+
You can also join our dedicated channel for [Starknet.js](https://discord.com/channels/793094838509764618/927918707613786162) on the [Starknet Discord](https://discord.com/invite/YgsdxEx3)
|
|
67
|
+
|
|
63
68
|
## ❤️ Special Thanks
|
|
64
69
|
|
|
65
70
|
Special thanks to all the [contributors](https://github.com/starknet-io/starknet.js/graphs/contributors), especially to:
|