generatorSecp256k1 property

ProjectiveECCPoint generatorSecp256k1
final

Define the generator point for Secp256k1

Implementation

static final generatorSecp256k1 = ProjectiveECCPoint(
  curve: curveSecp256k1,
  x: BigInt.parse(
    "79BE667EF9DCBBAC55A06295CE870B07029BFCDB2DCE28D959F2815B16F81798",
    radix: 16,
  ),
  y: BigInt.parse(
    "483ADA7726A3C4655DA4FBFC0E1108A8FD17B448A68554199C47D08FFB10D4B8",
    radix: 16,
  ),
  z: BigInt.one,
  order: BigInt.parse(
    "115792089237316195423570985008687907852837564279074904382605163141518161494337",
  ),
  generator: true,
);