[][src]Static secp256kfun::G

pub static G: &'static Point<BasePoint, Public, NonZero>

The main basepoint for secp256k1 as specified in SEC 2: Recommended Elliptic Curve Domain Parameters and used in Bitcoin.

At the moment, G is the only BasePoint in the library.

use secp256kfun::G;
assert_eq!(
    format!("{}", G),
    "0279be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798"
);