use crate::algebra::curve::*;
use crate::algebra::field::*;
pub const CURVE_ORDER: MontFelt =
MontFelt::from_hex("800000000000010FFFFFFFFFFFFFFFFB781126DCAE7B2321E66A241ADC64D2F");
pub const CURVE_A: MontFelt = MontFelt::ONE;
pub const CURVE_B: MontFelt =
MontFelt::from_hex("6F21413EFBE40DE150E596D72F7A8C5609AD26C15C915C1F4CDFCB99CEE9E89");
pub const CURVE_G: ProjectivePoint = ProjectivePoint::from_hex(
"1EF15C18599971B7BECED415A40F0C7DEACFD9B0D1819E03D723D8BC943CFCA",
"5668060AA49730B7BE4801DF46EC62DE53ECD11ABE43A32873000C36E8DC1F",
);