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
-Expore`maxProofsVerified()` and a `Proof` class directly on ZkPrograms https://github.com/o1-labs/o1js/pull/1933
105
+
-Expose`maxProofsVerified()` and a `Proof` class directly on ZkPrograms https://github.com/o1-labs/o1js/pull/1933
106
106
107
107
### Changed
108
108
@@ -277,7 +277,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
277
277
278
278
### Deprecated
279
279
280
-
-`MerkleMap.computeRootAndKey()` deprecated in favor of `MerkleMap.computeRootAndKeyV2()` due to a potential issue of computing hash collisions in key indicieshttps://github.com/o1-labs/o1js/pull/1694
280
+
-`MerkleMap.computeRootAndKey()` deprecated in favor of `MerkleMap.computeRootAndKeyV2()` due to a potential issue of computing hash collisions in key indiceshttps://github.com/o1-labs/o1js/pull/1694
@@ -948,7 +948,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
948
948
### Fixed
949
949
950
950
- Failing `Mina.transaction` on Berkeley because of unsatisfied constraints caused by dummy data before we fetched account state https://github.com/o1-labs/o1js/pull/807
951
-
- Previously, you could work around this by calling `fetchAccount()` for every account invovled in a transaction. This is not necessary anymore.
951
+
- Previously, you could work around this by calling `fetchAccount()` for every account involved in a transaction. This is not necessary anymore.
952
952
- Update the zkApp verification key from within one of its own methods, via proof https://github.com/o1-labs/o1js/pull/812
- and `git diff --cached --name-only --diff-filter=d | grep -E '\.(ts|js)$' | xargs npm run lint:fix`
166
166
@@ -170,7 +170,7 @@ This repo uses minimal [oxlint](https://oxc.rs/docs/guide/usage/linter.html) and
170
170
171
171
3. Enable pre-commit hooks
172
172
173
-
- There is an opt-in pre-commit hook avaibale that will attempt to fix styling for all diffed files. Enable it by running `git config husky.optin true`
173
+
- There is an opt-in pre-commit hook available that will attempt to fix styling for all diffed files. Enable it by running `git config husky.optin true`
174
174
175
175
> [!NOTE]
176
176
> You can opt-out of linting in a PR by tagging it with skip-lint, in case the linting script is legitimately blocking an important PR
Copy file name to clipboardExpand all lines: README-nix.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,7 +99,7 @@ npm run build:update-bindings
99
99
```
100
100
101
101
If you need to update the underlying `mina` code, you can also do so with Nix,
102
-
but from the corresopnding subdirectory. In particular, you should build Mina
102
+
but from the corresponding subdirectory. In particular, you should build Mina
103
103
from the o1js subdirectory from a Nix shell. That means,
104
104
105
105
```console
@@ -118,14 +118,14 @@ Nix has a garbage collector that **is not used by default** after every run. Ins
118
118
119
119
Instead, you can try to run `nix-env --delete-generations old` or any other time bound like `7d`. This will not have any effect on MacOS though. Alternatively, the [direnv](https://github.com/direnv/direnv) / [nix-direnv](https://github.com/nix-community/nix-direnv) tool can create garbage collector roots that won't be collected for removal. It just keeps one gc-root to the latest build of the dev shell so that `nix-store --gc` only removes older generations.
120
120
121
-
On top of that, adding `auto-optimise-store = true` to `/etc/nix/nix.conf` and running `nix-store --optimize` shoud help with disk usage, as it replaces duplicated files with symlinks.
121
+
On top of that, adding `auto-optimise-store = true` to `/etc/nix/nix.conf` and running `nix-store --optimize` should help with disk usage, as it replaces duplicated files with symlinks.
122
122
123
123
### Runtime optimization
124
124
125
125
Other configurations are worth adding into your `/etc/nix/nix.conf`:
0 commit comments