From dcfe6c5610f9482e0c62a957af2f3821943d134d Mon Sep 17 00:00:00 2001 From: Abhimanyu Singh Gaur <12651351+abhimanyusinghgaur@users.noreply.github.com> Date: Mon, 26 Jul 2021 12:49:56 +0530 Subject: [PATCH] Update accounts.md (#9767) The digital key schemes table wasn't rendering correctly. This fix corrects the rendering. Co-authored-by: Marko --- docs/basics/accounts.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/docs/basics/accounts.md b/docs/basics/accounts.md index b8bcb76aef..d57f80955c 100644 --- a/docs/basics/accounts.md +++ b/docs/basics/accounts.md @@ -70,12 +70,11 @@ The Cosmos SDK supports the following digital key schemes for creating digital s - `secp256r1`, as implemented in the [SDK's `crypto/keys/secp256r1` package](https://github.com/cosmos/cosmos-sdk/blob/master/crypto/keys/secp256r1/pubkey.go), - `tm-ed25519`, as implemented in the [SDK `crypto/keys/ed25519` package](https://github.com/cosmos/cosmos-sdk/blob/v0.42.1/crypto/keys/ed25519/ed25519.go). This scheme is supported only for the consensus validation. -| | Address length | Public key length | Used for transaction | Used for consensus | -| | in bytes | in bytes | authentication | (tendermint) | -|--------------+----------------+-------------------+----------------------+--------------------| -| `secp256k1` | 20 | 33 | yes | no | -| `secp256r1` | 32 | 33 | yes | no | -| `tm-ed25519` | -- not used -- | 32 | no | yes | +| | Address length in bytes | Public key length in bytes | Used for transaction authentication | Used for consensus (tendermint) | +|:------------:|:-----------------------:|:--------------------------:|:-----------------------------------:|:-------------------------------:| +| `secp256k1` | 20 | 33 | yes | no | +| `secp256r1` | 32 | 33 | yes | no | +| `tm-ed25519` | -- not used -- | 32 | no | yes | ## Addresses