Expand description
Module containing a contract’s types and functions.
library BN254 {
type BaseField is uint256;
struct G1Point { BaseField x; BaseField y; }
struct G2Point { BaseField x0; BaseField x1; BaseField y0; BaseField y1; }
}
Structs§
- BN254
Instance - A
BN254
instance. - Base
Field - G1Point
- G2Point