cake_wallet/README.md

159 lines
5.9 KiB
Markdown
Raw Normal View History

# Cake Wallet for Mobile and Desktop
2020-01-04 19:31:52 +00:00
## Open Source Multi-Currency Wallet
2020-01-04 19:31:52 +00:00
## Links
* Website: https://cakewallet.com
2023-05-15 12:02:29 +00:00
* App Store (iOS / MacOS): https://cakewallet.com/ios
* Google Play: https://cakewallet.com/gp
* F-Droid: https://fdroid.cakelabs.com
* APK: https://github.com/cake-tech/cake_wallet/releases
2023-05-15 12:02:29 +00:00
* Linux: https://github.com/cake-tech/cake_wallet/releases
## Features
### App-Wide Features
* Completely noncustodial. *Your keys, your coins.*
* Built-in exchange for dozens of pairs
2023-05-15 12:02:29 +00:00
* Easily pay cryptocurrency invoices with fixed rate exchanges
* Buy cryptocurrency (BTC/LTC/XMR/ETH) with credit/debit/bank
* Sell cryptocurrency by bank transfer
* Scan QR codes for easy cryptocurrency transfers
* Create several wallets
* Select your own custom nodes/servers
* Address book
* Backup to external location or iCloud
* Send to OpenAlias, Unstoppable Domains, Yats, and FIO Crypto Handles
2023-05-15 12:02:29 +00:00
* Set desired network fee level
* Store local transaction notes
* Extremely simple user experience
2022-05-24 19:22:23 +00:00
* Convenient exchange and sending templates for recurring payments
2023-05-15 12:02:29 +00:00
* Create donation links and invoices in the receive screen
* Robust privacy settings (eg: Tor-only connections)
* Robust security settings (eg: Cake 2FA)
### Monero Specific Features
* The Monero view key is retained on the device for maximum privacy
* Full support for Monero subaddresses and accounts
* Specify restore height for faster syncing
* Specify multiple recipients for batch sending
2023-05-15 12:02:29 +00:00
* Optionally set Monero nodes as trusted for faster syncing
* Specify a proxy for Monero nodes, compatible with Tor and i2p
### Bitcoin Specific Features
* Bitcoin coin control (specify specific outputs to spend)
* Automatically generate new addresses
* Specify multiple recipients for batch sending
### Ethereum Specific Features
* Store ETH and all ERc-20 tokens
* Add custom tokens by contract address
* Enable or disable Etherscan for transaction history
### Litecoin Specific Features
* Litecoin coin control (specify specific outputs to spend)
* Automatically generate new addresses
* Specify multiple recipients for batch sending
### Haven Specific Features
* Send, receive, and store XHV and all xAssets like xUSD, xEUR, xAG, etc.
# Monero.com by Cake Wallet for Android and iOS
## Open Source Monero-Only Wallet
*Exchanging to/from other assets is also supported.*
## Links
* Website: https://monero.com
2023-05-15 12:02:29 +00:00
* App Store (iOS): https://apps.apple.com/app/id1601990386
* Google Play: https://play.google.com/store/apps/details?id=com.monero.app
* F-Droid: https://fdroid.cakelabs.com
* APK: https://github.com/cake-tech/cake_wallet/releases
# Support
We have 24/7 free support. Please contact support@cakewallet.com
2023-05-15 12:02:29 +00:00
We have excellent user guides, which are also open-source and open for contributions: https://guides.cakewallet.com
# Build Instructions
2021-03-18 00:45:39 +00:00
2021-03-21 02:40:22 +00:00
More instructions to follow
2021-03-18 00:45:39 +00:00
For instructions on how to build for Android: please view file `howto-build-android.md`
# Contributing
## Improving translations
Edit the applicable `strings_XX.arb` file in `res/values/` and open a pull request with the changes.
## Current list of language files:
- English
- Spanish
- French
- German
- Italian
2023-02-04 22:59:57 +00:00
- Portuguese
- Dutch
- Polish
- Croatian
- Russian
2023-02-04 22:59:57 +00:00
- Ukrainian
- Hindi
- Japanese
- Chinese
- Korean
2023-01-09 18:31:24 +00:00
- Thai
2023-01-06 15:14:33 +00:00
- Arabic
- Turkish
2023-01-24 01:06:40 +00:00
- Burmese
2023-02-01 18:14:26 +00:00
- Urdu
- Bulgarian
2023-02-04 14:42:41 +00:00
- Czech
- Indonesian
- Hausa
- Yoruba
## Add a new language
1. Create a new `strings_XX.arb` file in `res/values/`, replacing XX with the language's [ISO 639-1 code](https://en.wikipedia.org/wiki/ISO_639-1).
2. Edit the strings in this file, replacing XXX below with the translation for each string.
`"welcome": "Welcome to",` -> `"welcome": "XXX",`
3. For strings where there is a variable, denoted by a $ symbol and braces, such as ${status}, the string in braces should not be translated. For example, when editing line 106:
"time" : "${minutes}m ${seconds}s"
The only parts to be translated, if needed, are the values m and s after the variables.
4. Add the language to `lib/entities/language_service.dart` under both `supportedLocales` and `localeCountryCode`. Use the name of the language in the local language and in English in parentheses after for `supportedLocales`. Use the [ISO 3166-1 alpha-3 code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-3) for `localeCountryCode`. You must choose one country, so choose the country with the most native speakers of this language or is otherwise best associated with this language.
2023-01-12 18:06:40 +00:00
5. Add a relevant flag to `assets/images/flags/XXXX.png`, replacing XXXX with the 3 digit localeCountryCode. The image must be 42x26 pixels with a 3 pixels of transparent margin on all 4 sides. You can resize the flag with [paint.net](https://www.getpaint.net/) to 36x20 pixels, expand the canvas to 42x26 pixels with the flag anchored in the middle, and then manually delete the 3 pixels on each side to make transparent. Or you can use another program like Photoshop.
## Add a new fiat currency
1. Check with [Cake Wallet support](https://guides.cakewallet.com) to see if the desired new fiat currency is available through our fiat API. Not all fiat currencies are.
2. If the currency is associated strongly with a specific issuing country, map the [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) currency code with the applicable [ISO 3166-1 alpha-3 code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-3) in `lib/entities/fiat_currency.dart`. If the currency is used in a whole region or organization, then map with a reasonable interpretation of this (eg: eur countryCode for EUR symbol).
3. Add the raw mapping underneath in `lib/entities/fiat_currency.dart` following the same format as the others.
2023-01-12 17:52:15 +00:00
4. Add a flag of the issuing country or organization to `assets/images/flags/XXXX.png`, replacing XXXX with the ISO 3166-1 alpha-3 code used above (eg: `usa.png`, `eur.png`). Do not add this if the flag with the same name already exists. The image must be 42x26 pixels with a 3 pixels of transparent margin on all 4 sides.
2023-05-15 12:02:29 +00:00
---
Copyright (C) 2018-2023 Cake Labs LLC