From 32556eaa667497cc432224f5d365bf0c57e201ab Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Mon, 15 Dec 2025 08:35:23 -0800 Subject: [PATCH] Fix documentation. --- src/lib/crypto/secp256k1.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/crypto/secp256k1.ts b/src/lib/crypto/secp256k1.ts index 73ea0ea..1bb198d 100644 --- a/src/lib/crypto/secp256k1.ts +++ b/src/lib/crypto/secp256k1.ts @@ -30,7 +30,7 @@ type AffinePoint = { export class Secp256k1 { /** * Curve params. secp256k1 is short weierstrass / koblitz curve. Equation is y² == x³ + ax + b. - * * P = `2n**256n-2n**32n-2n**977n` // field over which calculations are done + * * P = `2n**256n - 2n**32n - 977n` // field over which calculations are done * * N = `2n**256n - 0x14551231950b75fc4402da1732fc9bebfn` // group order, amount of curve points * * h = `1n` // cofactor * * a = `0n` // equation param -- 2.47.3