Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
MegaRedHand committed Apr 14, 2023
1 parent a4db0c6 commit 3dcbf0f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

#### Upcoming Changes

* Add missing hints on cairo_secp lib [#994]:

`BuiltinHintProcessor` now supports the following hints:
```python
from starkware.cairo.common.cairo_secp.secp_utils import pack
from starkware.python.math_utils import div_mod, safe_div

a = pack(ids.a, PRIME)
b = pack(ids.b, PRIME)
value = res = div_mod(a, b, N)
```

```python
value = k_plus_one = safe_div(res * b - a, N) + 1
```

* Add missing hint on cairo_secp lib [#992]:

`BuiltinHintProcessor` now supports the following hint:
Expand Down

0 comments on commit 3dcbf0f

Please sign in to comment.