mirror of
https://github.com/monero-project/monero-docs.git
synced 2025-01-09 04:19:40 +00:00
Favor subaddress over standard address and integrated address
This commit is contained in:
parent
391639c70b
commit
d33eae01ce
3 changed files with 24 additions and 9 deletions
|
@ -6,18 +6,27 @@ An address can be generated offline and for free. It boils down to generating a
|
||||||
|
|
||||||
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.
|
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:
|
There are a few **types of public addresses** in Monero:
|
||||||
|
|
||||||
* Standard address - the basic type of the address, also refered to as raw address
|
* Standard address - basic type of an address, also refered to as raw address
|
||||||
* Integrated address - embeds payment ID so you can learn for what you are being paid
|
* Subaddress - what you should be using by default
|
||||||
* Subaddress - slightly enhances privacy and allows for organizing your funds in subaccounts within a single wallet
|
* Integrated address - relevant for exchanges, merchants, and other businesses accepting Monero in a fully automated way
|
||||||
|
|
||||||
## Standard address
|
## Standard address
|
||||||
|
|
||||||
The raw address is useful for things like donations (where you don't care who donated)
|
Historicaly, raw address was the only available option. For that reason it is the most widely adopted and supported address type.
|
||||||
or exchange withdrawals (where you know the payer out of band). Its strength is simplicity.
|
|
||||||
|
|
||||||
Monero standard address is composed of two public keys:
|
Its strength is simplicity. However, these days users should prefer receiving to subaddresses instead.
|
||||||
|
|
||||||
|
Technically, raw address is also a basis for creating subaddresses and integrated addresses.
|
||||||
|
|
||||||
|
Raw address is **still useful for**:
|
||||||
|
|
||||||
|
* accepting block reward in a solo-mining scenario as other addresses are not supported
|
||||||
|
* accepting from senders who batch payouts (like mining pools); in this scenario the sender is paying multiple parties using a single transaction; such transaction has multiple outputs; subaddresses do not work in this scenario
|
||||||
|
* accepting from senders who use legacy wallets (can't send to subaddress)
|
||||||
|
|
||||||
|
Monero raw address is composed of two public keys:
|
||||||
|
|
||||||
* public spend key
|
* public spend key
|
||||||
* public view key
|
* public view key
|
||||||
|
|
|
@ -1,6 +1,12 @@
|
||||||
# Subaddress
|
# Subaddress
|
||||||
|
|
||||||
Subaddresses serve two purposes described below.
|
Subaddress is what you should be using by default to receive Monero.
|
||||||
|
|
||||||
|
## Learn for what you are being paid
|
||||||
|
|
||||||
|
By providing a unique subaddress for each anticipated payment you will know for what you are being paid.
|
||||||
|
|
||||||
|
This use case overlaps with integrated addresses. Subaddresses are generally prefered for reasons outlined below.
|
||||||
|
|
||||||
## Prevent payer from linking your payouts together
|
## Prevent payer from linking your payouts together
|
||||||
|
|
||||||
|
|
|
@ -22,8 +22,8 @@ nav:
|
||||||
- Base58: 'cryptography/base58.md'
|
- Base58: 'cryptography/base58.md'
|
||||||
- Address:
|
- Address:
|
||||||
- Standard: 'public-address/standard-address.md'
|
- Standard: 'public-address/standard-address.md'
|
||||||
- Integrated: 'public-address/integrated-address.md'
|
|
||||||
- Subaddress: 'public-address/subaddress.md'
|
- Subaddress: 'public-address/subaddress.md'
|
||||||
|
- Integrated: 'public-address/integrated-address.md'
|
||||||
- Multisignature: 'multisignature.md'
|
- Multisignature: 'multisignature.md'
|
||||||
- Mainnet, Stagenet, Testnet: 'networks.md'
|
- Mainnet, Stagenet, Testnet: 'networks.md'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue