From 8b0e210b294945cfb91c409e849177914fe8f151 Mon Sep 17 00:00:00 2001 From: jetstream0 <49297268+jetstream0@users.noreply.github.com> Date: Thu, 3 Aug 2023 12:49:40 -0700 Subject: [PATCH] specify endianess of wallet index --- docs/glossary.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/glossary.md b/docs/glossary.md index 53eff142d..1f2f2b2d0 100644 --- a/docs/glossary.md +++ b/docs/glossary.md @@ -144,7 +144,7 @@ Each node configured with a [Representative](#representative) votes on every blo The amount of weight delegated to a [Representative](#representative). #### wallet -A wallet is an organizational object in a nano\_node that holds a single seed from which multiple accounts are deterministically derived via a 32-bit unsigned integer index starting at 0. Private keys are derived from the seed and index as follows: (`||` means concatenation; `blake2b` is a [highly optimized cryptographic hash function](/protocol-design/signing-hashing-and-key-derivation/#hashing-algorithm-blake2)) +A wallet is an organizational object in a nano\_node that holds a single seed from which multiple accounts are deterministically derived via a 32-bit unsigned integer (in big endian format) index starting at 0. Private keys are derived from the seed and index as follows: (`||` means concatenation; `blake2b` is a [highly optimized cryptographic hash function](/protocol-design/signing-hashing-and-key-derivation/#hashing-algorithm-blake2)) $$ k_{private} = blake2b(\text{seed} || \text{index})