Browse Source

docs/spec: update address spec to sha2 for ed25519

pull/1843/head
Ethan Buchman 6 years ago
parent
commit
da4632c651
1 changed files with 3 additions and 4 deletions
  1. +3
    -4
      docs/spec/blockchain/encoding.md

+ 3
- 4
docs/spec/blockchain/encoding.md View File

@ -84,14 +84,13 @@ Addresses for each public key types are computed as follows:
#### Ed25519
RIPEMD160 hash of the Amino encoded public key:
First 20-bytes of the SHA256 hash of the raw 32-byte public key:
```
address = RIPEMD160(AMINO(pubkey))
address = SHA256(pubkey)[:20]
```
NOTE: this will soon change to the truncated 20-bytes of the SHA256 of the raw
public key
NOTE: before v0.22.0, this was the RIPEMD160 of the Amino encoded public key.
#### Secp256k1


Loading…
Cancel
Save