From 1b44bb068b6f2d6ec5726c56afb53279ae82cfe1 Mon Sep 17 00:00:00 2001 From: Chris Clark Date: Tue, 6 Oct 2015 16:35:05 -0700 Subject: [PATCH] Improve explanation of key format in README --- packages/ripple-keypairs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ripple-keypairs/README.md b/packages/ripple-keypairs/README.md index 6e2d1b2c..88bfe1f8 100644 --- a/packages/ripple-keypairs/README.md +++ b/packages/ripple-keypairs/README.md @@ -14,7 +14,7 @@ Generate a seed that can be used to generate keypairs. Entropy can be provided a ``` deriveKeypair(seed: string) -> {privateKey: string, publicKey: string} ``` -Derive a public and private key from a seed. The keys are represented as hexadecimal strings. A single metadata byte is prepended so the keys are 33 bytes long. +Derive a public and private key from a seed. The keys are represented as 33-byte hexadecimal strings. ``` sign(message: string, privateKey: string) -> string