pub struct EthereumAddress(/* private fields */);Expand description
Unsized value for the ethereumAddress property.
An ethereumAddress property is used to specify the Ethereum address (as per
the Ethereum Yellow Paper: ETHEREUM: A SECURE DECENTRALISED GENERALISED
TRANSACTION LEDGER) composed of the prefix “0x”, a common identifier for
hexadecimal, concatenated with the rightmost 20 bytes of the Keccak-256
hash (big endian) of the ECDSA public key (the curve used is the so-called
secp256k1).
In hexadecimal, 2 digits represent a byte, meaning addresses contain 40 hexadecimal digits. The Ethereum address should also contain a checksum as per EIP-55.