starknet 4.7.0 → 4.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 CHANGED
@@ -1,3 +1,22 @@
1
+ # [4.8.0](https://github.com/0xs34n/starknet.js/compare/v4.7.0...v4.8.0) (2022-10-05)
2
+
3
+ ### Bug Fixes
4
+
5
+ - adapted transactionTrace response ([58c21c0](https://github.com/0xs34n/starknet.js/commit/58c21c0a3c647eae781d57024c3193aa6c98b20b))
6
+ - estimate fee BigInt test ([0489bed](https://github.com/0xs34n/starknet.js/commit/0489bed7ea16790708878d7714df554b84d02153))
7
+ - fixed and one-lined hash sort and added additional test case ([023c7c7](https://github.com/0xs34n/starknet.js/commit/023c7c7c543c0e4382bf3e109140206f7c7cba57))
8
+ - fixed hash arg sorting in merkle tree generation ([ccbfecf](https://github.com/0xs34n/starknet.js/commit/ccbfecfa63aa5037455405d929aea6322590d6ac))
9
+ - is sequencer goerli fix ([2d43d1b](https://github.com/0xs34n/starknet.js/commit/2d43d1b666ccbcaf3a9fda92ebfbb7db3b96f8c1))
10
+ - issue 296 ([bfc1f70](https://github.com/0xs34n/starknet.js/commit/bfc1f7051f8949b4c4d89ee379430e4404c9a2f5))
11
+ - remove linter fix ([272e2ec](https://github.com/0xs34n/starknet.js/commit/272e2ecbe254758bc6d841e16d426446914e18e9))
12
+ - remove optional l1_origin_message from test ([01050e3](https://github.com/0xs34n/starknet.js/commit/01050e333a6d96e3b439bdb3398a634ee18137af))
13
+ - remove status_data as it is optional response parameter ([9bb0a3e](https://github.com/0xs34n/starknet.js/commit/9bb0a3e0afb610817a12c036e3f117a385f4a1d6))
14
+ - sequencer getBlock response ([165bce7](https://github.com/0xs34n/starknet.js/commit/165bce743467cd9de36559c3cb232fccc32064be))
15
+
16
+ ### Features
17
+
18
+ - sequencer estimateMessageFee ([f1ffda7](https://github.com/0xs34n/starknet.js/commit/f1ffda7e79e9bfda7f041abc3fd8c5b4ac9f1a66))
19
+
1
20
  # [4.7.0](https://github.com/0xs34n/starknet.js/compare/v4.6.0...v4.7.0) (2022-09-22)
2
21
 
3
22
  ### Bug Fixes
package/CONTRIBUTING.md CHANGED
@@ -19,7 +19,7 @@ ALways start from `develop` branch and merge back to `develop` branch.
19
19
  To build you changes run:
20
20
 
21
21
  ```bash
22
- npm build
22
+ npm run build
23
23
  ```
24
24
 
25
25
  Run linters and tests:
@@ -31,7 +31,7 @@ npm test
31
31
  Or run tests in watch mode:
32
32
 
33
33
  ```bash
34
- npm run test --watch
34
+ npm test --watch
35
35
  ```
36
36
 
37
37
  **Don’t forget to add tests and update documentation for your changes.**