Wallet
Bitpay Wallet (formerly Copay) is a secure Bitcoin and other crypto currencies wallet platform for both desktop and mobile devices.
Install / Use
/learn @bitpay/WalletREADME
<img src="https://github.com/bitpay/wallet/blob/master/resources/bitpay/windows/icon/Wide310x150Logo.scale-100.png" alt="Bitpay Wallet">This repository and wallet versions <=12 are no longer actively being maintained. Check out the new BitPay wallet at https://github.com/bitpay/bitpay-app.
PLEASE NOTE WE HAVE DETECTED SOME FAKE COPAY WALLETS ON THE GOOGLE PLAY STORE FOR ANDROID, PLEASE BE SURE TO INSTALL "BITPAY WALLET" ONLY FROM THE APP STORES. APP's DEVELOPER SHOULD BE "BITPAY INC" ONLY
Bitpay Wallet (formerly Copay) is a Bitcoin, Bitcoin Cash, Ethereum and ERC20 wallet platform for both desktop and mobile devices. Bitpay Wallet uses Bitcore Wallet Service (BWS) for peer synchronization and network interfacing.
Binary versions of Bitpay Wallet are available for download at: https://bitpay.com/wallet/
This project was created by BitPay Inc, and it is maintained by BitPay and hundreds of contributors.
Main Features
- Bitcoin, Ethereum, Bitcoin Cash and XRP support
- Multiple wallet creation (BTC, BCH and ETH) and management in-app
- Intuitive, multisignature capabilities for personal or shared wallets
- Easy spending proposal flow for shared wallets and group payments
- BIP32 Hierarchical deterministic (HD) address generation and wallet backups
- Device-based security: all private keys are stored locally, not in the cloud
- Support testnet wallets for all supported coins.
- Synchronous access across all major mobile and desktop platforms
- Payment protocol (BIP70-BIP73) support: easily-identifiable payment requests and verifiable bitcoin payments
- Support for over 150 currency pricing options and unit denomination in BTC
- Mnemonic (BIP39) support for wallet backups
- Paper wallet sweep support (BIP38)
- Email for payments, transfers, confirmations, etc.
- Push notifications (only available for ios and android versions)
- Customizable wallet naming and background colors
- Multiple languages supported
See more details and download links at https://bitpay.com/wallet
Coin specific features
Bitcoin
- Segwit and native segwit addresses (BECH32) for sending and receiving
- CPFP (Child pays for parent) transaction acceleration (available after 4 hours of unconfirmed TXs).
- Transaction fee adjustment using 4 preset levels (using bitcoin-core estimations) OR custom fee-rate setting.
Bitcoin Cash
- Schnorr signature support
Ethereum
- Wallet connect
- Multisig wallet (using gnosis multisig contract)
- mainnet contract address: 0x6e95C8E8557AbC08b46F3c347bA06F8dC012763f
- kovan testnet contract address: 0x2C992817e0152A65937527B774c7A99a84603045
- Gas price adjustment using 4 preset levels (using custom estimation algoritm) OR custom gas price setting.
Testing in a Browser
Note: This method should only be used for development purposes. When running Bitpay Wallet in a normal browser environment, browser extensions and other malicious code might have access to internal data and private keys. For production use, see the latest official releases.
Clone the repo and open the directory:
git clone https://github.com/bitpay/wallet.git
cd wallet
Ensure you have Node installed, then install and start Wallet:
npm install
npm run apply:bitpay
npm run start
Visit localhost:8100 to view the app.
Unit & E2E Tests (Karma & Protractor)
To run the tests, run:
npm run test
Testing on Real Devices
It's recommended that all final testing be done on a real device – both to assess performance and to enable features that are unavailable to the emulator (e.g. a device camera).
Android
Follow the Cordova Android Platform Guide to set up your development environment.
When your development environment is ready, run the start:android package script.
npm run apply:bitpay
npm run prepare:bitpay
npm run start:android
iOS
Follow the Cordova iOS Platform Guide to set up your development environment.
When your development environment is ready, run the start:ios package script.
npm run apply:bitpay
npm run prepare:bitpay
npm run start:ios
Desktop (Linux, macOS, and Windows)
The desktop version of Bitpay Wallet currently uses Electron. To get started, first install Electron on your system from the Electron website.
When Electron is installed, run the start:desktop package script.
npm run apply:wallet
npm run start:desktop
Build Bitpay Wallet App Bundles
Before building the release version for a platform, run the clean-all command to delete any untracked files in your current working directory. (Be sure to stash any uncommitted changes you've made.) This guarantees consistency across builds for the current state of this repository.
The final commands build the production version of the app, and bundle it with the release version of the platform being built.
Android
npm run clean-all
npm install
npm run apply:bitpay
npm run prepare:bitpay
npm run final:android
iOS
npm run clean-all
npm install
npm run apply:bitpay
npm run prepare:bitpay
npm run final:ios
Desktop (Linux, macOS, and Windows)
npm run clean-all
npm install
npm run apply:bitpay
npm run final:desktop
Desktop Data Path
Per-user application data directory for BitPay distribution.
"~/Library/Containers/com.bitpay.wallet.desktop/Data/.bitpay"
Configuration
Enable External Services
To enable external services, set the BITPAY_EXTERNAL_SERVICES_CONFIG_LOCATION environment variable to the location of your configuration before running the apply task.
BITPAY_EXTERNAL_SERVICES_CONFIG_LOCATION="~/.bitpay/externalServices.json" npm run apply:bitpay
About Bitpay Wallet
General
Bitpay Wallet (formerly Copay) implements a multisig wallet using p2sh addresses. It supports multiple wallets, each with its own configuration, such as 3-of-5 (3 required signatures from 5 participant peers) or 2-of-3. To create a multisig wallet shared between multiple participants, Bitpay Wallet requires the extended public keys of all the wallet participants. Those public keys are then incorporated into the wallet configuration and combined to generate a payment address where funds can be sent into the wallet. Conversely, each participant manages their own private key and that private key is never transmitted anywhere.
To unlock a payment and spend the wallet's funds, a quorum of participant signatures must be collected and assembled in the transaction. The funds cannot be spent without at least the minimum number of signatures required by the wallet configuration (2-of-3, 3-of-5, 6-of-6, etc.). Once a transaction proposal is created, the proposal is distributed among the wallet participants for each to sign the transaction locally. Finally, when the transaction is signed, the last signing participant will broadcast the transaction to the Bitcoin network.
Bitpay Wallet also implements BIP32 to generate new addresses for peers. The public key that each participant contributes to the wallet is a BIP32 extended public key. As additional public keys are needed for wallet operations (to produce new addresses to receive payments into the wallet, for example) new public keys can be derived from the participants' original extended public keys. Once again, it's important to stress that each participant keeps their own private keys locally - private keys are not shared - and are used to sign transaction proposals to make payments from the shared wallet.
For more information regarding how addresses are generated using this procedure, see: Structure for Deterministic P2SH Multisignature Wallets.
Bitpay Wallet Backups and Recovery
Since v1.2 Bitpay Wallet uses BIP39 mnemonics for backing up wallets. The BIP44 standard is used for wallet address derivation. Multisig wallets use P2SH addresses, while non-multisig wallets use P2PKH.
Information about backup and recovery procedures is available at: https://github.com/bitpay/wallet/blob/master/backupRecovery.md
Previous versions of Bitpay Wallet used files as backups. See the following section.
It is possible to recover funds from a Bitpay Wallet Wallet without using Bitpay Wallet or the Wallet Service, check the Copay Recovery Tool.
Wallet Export Format
Bitpay Wallet encrypts the backup with the Stanford JS Crypto Library. To extract the private key of your wallet you can go to settings, choose your wallet, click in "more options", then "wallet information", scroll to the bottom and click in "Extended Private Key". That information is enough to sign any transaction from your wallet, so be careful when handling it!
The backup also contains the key publicKeyRing that holds the extended public keys of the Copayers.
Depending on the key derivationStrategy, addresses are derived using
BIP44 or [BIP45](https://github.com/bitcoin/bips/blob
Related Skills
node-connect
335.8kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
82.7kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
335.8kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
82.7kCommit, push, and open a PR

