Skip to content

Commit 805c34f

Browse files
committed
Update changelog
1 parent 59963c0 commit 805c34f

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -428,6 +428,20 @@
428428
ids.flag = 1 if k > 0 else 0
429429
```
430430

431+
* Add missing hint on cairo_secp lib [#1057](https://github.com/lambdaclass/cairo-rs/pull/1057):
432+
433+
`BuiltinHintProcessor` now supports the following hint:
434+
435+
```python
436+
from starkware.cairo.common.cairo_secp.secp_utils import pack
437+
from starkware.python.math_utils import ec_double_slope
438+
439+
# Compute the slope.
440+
x = pack(ids.point.x, PRIME)
441+
y = pack(ids.point.y, PRIME)
442+
value = slope = ec_double_slope(point=(x, y), alpha=ALPHA, p=SECP_P)
443+
```
444+
431445
* Add missing hint on uint256_improvements lib [#1025](https://github.com/lambdaclass/cairo-rs/pull/1025):
432446

433447
`BuiltinHintProcessor` now supports the following hint:

0 commit comments

Comments
 (0)