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
The nullifier secret key (`nsk_m` / `nsk_app`) has been renamed to nullifier hiding key (`nhk_m` / `nhk_app`). This is a protocol-breaking change: the domain separator string changes from `"az_nsk_m"` to `"az_nhk_m"`, producing a different constant value.
35
+
36
+
**Noir changes:**
37
+
```diff
38
+
- context.request_nsk_app(npk_m_hash)
39
+
+ context.request_nhk_app(npk_m_hash)
40
+
41
+
- get_nsk_app(npk_m_hash)
42
+
+ get_nhk_app(npk_m_hash)
43
+
```
44
+
45
+
**TypeScript changes:**
46
+
```diff
47
+
- import { computeAppNullifierSecretKey, deriveMasterNullifierSecretKey } from '@aztec/stdlib/keys';
48
+
+ import { computeAppNullifierHidingKey, deriveMasterNullifierHidingKey } from '@aztec/stdlib/keys';
0 commit comments