monero-docs/docs/public-address/Standard-Address.md
Piotr Włodarek 0b337cea56 WiP
2017-12-26 00:32:31 +01:00

2.7 KiB

Address

Monero public address is what you publish to get paid.

An address can be generated offline and for free. It boils down to generating a large random number representing your private spending key.

Publishing your Monero address does not endanger your privacy. That's because in Monero transactions go to stealth addresses which are decoupled from your public address.

There are a few types of public addresses in Monero:

  • Standard address - the basic type of the address, also refered to as raw address
  • Integrated address - embeds payment ID so you can learn for what you are being paid
  • Subaddress - slightly enhances privacy and allows for organizing your funds in subaccounts within a single wallet

Standard address

The raw address is useful for things like donations (where you don't care who donated) or exchange withdrawals (where you know the payer out of band). Its strength is simplicity.

Monero standard address is composed of two public keys:

  • public spend key
  • public view key

It also contains a checksum and a "network byte" which actually identifies both the network and the address type.

Data structure (src):

Index Size in bytes Description
0 1 identifies the network and address type; 18 - main chain; 53 - test chain
1 32 public spend key
33 32 public view key
65 4 checksum (Keccak-f[1600] hash of the previous 65 bytes, trimmed to first 4 bytes)

It totals to 69 bytes. The bytes are then encoded (src) in Monero specific Base58 format, resulting in a 95 chars long string. Example standard address:

4AdUndXHHZ6cfufTMvppY6JwXNouMBzSkbLYfpAV5Usx3skxNgYeYTRj5UzqtReoS44qo9mtmXCqY45DJ852K5Jv2684Rge

Reference