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
95
+
-Expose`maxProofsVerified()` and a `Proof` class directly on ZkPrograms https://github.com/o1-labs/o1js/pull/1933
96
96
97
97
### Changed
98
98
@@ -267,7 +267,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
267
267
268
268
### Deprecated
269
269
270
-
-`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
270
+
-`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
@@ -938,7 +938,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
938
938
### Fixed
939
939
940
940
- 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
941
-
- Previously, you could work around this by calling `fetchAccount()` for every account invovled in a transaction. This is not necessary anymore.
941
+
- Previously, you could work around this by calling `fetchAccount()` for every account involved in a transaction. This is not necessary anymore.
942
942
- 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`
143
143
@@ -147,7 +147,7 @@ This repo uses minimal [oxlint](https://oxc.rs/docs/guide/usage/linter.html) and
147
147
148
148
3. Enable pre-commit hooks
149
149
150
-
- 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`
150
+
- 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`
151
151
152
152
> [!NOTE]
153
153
> 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