zkpyc-stdlib 0.1.0-dev

Standard library for the ZKPyC compiler.
Documentation
1
2
3
4
5
from zkpyc.types import Array # zk_ignore
from zkpyc.stdlib.EMBED import int_to_bits

def to_bits(a: int) -> Array[bool, 32]:
    return int_to_bits(a)