solana/docs/src/wallet-guide.md

64 lines
3.0 KiB
Markdown
Raw Normal View History

---
title: Solana Wallet Guide
---
This document describes the different wallet options that are available to users
of Solana who want to be able to send, receive and interact with
SOL tokens on the Solana blockchain.
2020-03-26 18:09:39 -07:00
## What is a Wallet?
2020-03-26 18:09:39 -07:00
A crypto wallet is a device or application that stores a collection of keys and
can be used to send, receive,
and track ownership of cryptocurrencies. Wallets can take many forms.
2020-03-26 18:09:39 -07:00
A wallet might be a directory or file in your computer's file system,
a piece of paper, or a specialized device called a _hardware wallet_.
2020-03-26 18:09:39 -07:00
There are also various smartphone apps and computer programs
that provide a user-friendly way to create and manage wallets.
A _keypair_ is a securely generated _private key_ and its
cryptographically-derived _public key_. A private key and its corresponding
public key are together known as a _keypair_.
2020-03-26 18:09:39 -07:00
A wallet contains a collection of one or more keypairs and provides some means
to interact with them.
The _public key_ (commonly shortened to _pubkey_) is known as the wallet's
_receiving address_ or simply its _address_. The wallet address **may be shared
and displayed freely**. When another party is going to send some amount of
2020-03-26 18:09:39 -07:00
cryptocurrency to a wallet, they need to know the wallet's receiving address.
Depending on a blockchain's implementation, the address can also be used to view
certain information about a wallet, such as viewing the balance,
but has no ability to change anything about the wallet or withdraw any tokens.
The _private key_ is required to digitally sign any transactions to send
2020-03-26 18:09:39 -07:00
cryptocurrencies to another address or to make any changes to the wallet.
The private key **must never be shared**. If someone gains access to the
2020-03-26 18:09:39 -07:00
private key to a wallet, they can withdraw all the tokens it contains.
If the private key for a wallet is lost, any tokens that have been sent
to that wallet's address are **permanently lost**.
Different wallet solutions offer different approaches to keypair security and
interacting with the keypair and sign transactions to use/spend the tokens.
Some are easier to use than others.
Some store and back up private keys more securely.
Solana supports multiple types of wallets so you can choose the right balance
of security and convenience.
**If you want to be able to receive SOL tokens on the Solana blockchain,
you first will need to create a wallet.**
## Supported Wallets
2020-07-27 19:39:42 -07:00
Solana supports several types of wallets in the Solana native
2020-03-26 18:09:39 -07:00
command-line app as well as wallets from third-parties.
For the majority of users, we recommend using one of the
2020-08-26 15:59:45 -07:00
[app wallets](wallet-guide/apps.md) or a browser-based
[web wallet](wallet-guide/web-wallets.md), which will provide a more familiar
user experience rather than needing to learn command line tools.
2020-03-26 18:09:39 -07:00
For advanced users or developers, the [command-line wallets](wallet-guide/cli.md)
2020-03-26 18:09:39 -07:00
may be more appropriate, as new features on the Solana blockchain will always be
supported on the command line first before being integrated into third-party
solutions.