You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- Reference any GitHub issues resolved by this PR -->
Closes #
## Introduced changes
<!-- A brief description of the changes -->
- Add info about blake hash support and delete previous message
## Checklist
<!-- Make sure all of these are complete -->
- [ ] Linked relevant issue
- [x] Updated relevant documentation
- [ ] Added relevant tests
- [ ] Performed self-review of the code
- [ ] Added changes to `CHANGELOG.md`
---------
Co-authored-by: Artur Michałek <[email protected]>
Starting from Starknet version 0.14.1, the network switched from Poseidon hash to Blake hash for compiled class hashes.
4
+
5
+
Starknet Foundry version 0.53.0 and later includes support for Blake hash, ensuring compatibility with the new Starknet version.
6
+
7
+
## Common Issue: Mismatch Compiled Class Hash
8
+
9
+
If you encounter a `Mismatch compiled class hash` error, it likely means you're using an older version of Starknet Foundry that doesn't support Blake hash.
10
+
11
+
**Solution**: Upgrade to Starknet Foundry version 0.53.0 or later:
12
+
13
+
```shell
14
+
asdf install starknet-foundry latest
15
+
```
16
+
17
+
```shell
18
+
asdf set --home starknet-foundry latest
19
+
```
20
+
21
+
This will update your installation to the latest version with Blake hash support.
22
+
23
+
> 📝 **Note**
24
+
>
25
+
> For more detailed installation instructions, see the [Installation](../getting-started/installation.md) guide.
0 commit comments