starknet 4.14.0 → 4.15.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 +19 -0
- package/__mocks__/naming_compiled.json +53283 -0
- package/__mocks__/starknetId_compiled.json +44703 -0
- package/__tests__/account.test.ts +64 -3
- package/__tests__/fixtures.ts +3 -1
- package/__tests__/utils/starknetId.test.ts +53 -0
- package/dist/index.d.ts +8 -6
- package/dist/index.global.js +559 -420
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +146 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +146 -8
- package/dist/index.mjs.map +1 -1
- package/index.d.ts +8 -6
- package/index.global.js +559 -420
- package/index.global.js.map +1 -1
- package/index.js +146 -8
- package/index.js.map +1 -1
- package/index.mjs +146 -8
- package/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/account/default.ts +54 -3
- package/src/contract/default.ts +1 -1
- package/src/provider/default.ts +3 -3
- package/src/provider/interface.ts +2 -2
- package/src/provider/rpc.ts +2 -2
- package/src/provider/sequencer.ts +23 -16
- package/src/utils/starknetId.ts +116 -0
- package/www/docs/API/account.md +20 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
# [4.15.0](https://github.com/0xs34n/starknet.js/compare/v4.14.0...v4.15.0) (2022-12-05)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- add deterministic tests ([ff8e06e](https://github.com/0xs34n/starknet.js/commit/ff8e06e5eee8f04349f1f171fc9cfd8f2a12e493))
|
|
6
|
+
- add string function to test ([bf24d7f](https://github.com/0xs34n/starknet.js/commit/bf24d7f3b9c23f2e7eea6427469bd99e03ae5f1c))
|
|
7
|
+
- delete functions from interface ([1cb96a3](https://github.com/0xs34n/starknet.js/commit/1cb96a3d4904434d61d50ea27d6dc17d8e4807d4))
|
|
8
|
+
- docs starknet id ([69b5bcc](https://github.com/0xs34n/starknet.js/commit/69b5bcc8d8e8eb2e22a1402caaf428f1f747ee3a))
|
|
9
|
+
- fix Ivan comments ([7ab252a](https://github.com/0xs34n/starknet.js/commit/7ab252a7adde52403f01e1d68d3a1ada42870dca))
|
|
10
|
+
- revert waitfortransaction to original interface ([bb2a8cd](https://github.com/0xs34n/starknet.js/commit/bb2a8cddc0ca272a3a291668e80c59ff8758e903))
|
|
11
|
+
- test on account ([81f5d71](https://github.com/0xs34n/starknet.js/commit/81f5d71c19a4bf24a6cf7ff9ed39fafb70625e29))
|
|
12
|
+
- waitfortransaction usage ([67c2031](https://github.com/0xs34n/starknet.js/commit/67c2031d637a8b8b4697f29cd592298778404d1b))
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- add starknet.id getters ([855854a](https://github.com/0xs34n/starknet.js/commit/855854a4e17bd43e6a0c79ab68dcd1c8534ef06f))
|
|
17
|
+
- allow usage of chainId to define network, cleanup ([6cffaad](https://github.com/0xs34n/starknet.js/commit/6cffaadcc096efa9f10f759e6e4cb2c91db4cb4a))
|
|
18
|
+
- set testnet2 chain id, cleanup ([16cdfd4](https://github.com/0xs34n/starknet.js/commit/16cdfd46ed4887e3878fa8bdeccaf0c806d92ccb))
|
|
19
|
+
|
|
1
20
|
# [4.14.0](https://github.com/0xs34n/starknet.js/compare/v4.13.2...v4.14.0) (2022-11-29)
|
|
2
21
|
|
|
3
22
|
### Bug Fixes
|