├── .gitmodules ├── LICENSE └── README.md /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "MEWconnect-landing-page"] 2 | path = MEWconnect-landing-page 3 | url = git@github.com:MyEtherWallet/MEWconnect-landing-page.git 4 | [submodule "MEWconnect-iOS"] 5 | path = MEWconnect-iOS 6 | url = git@github.com:MyEtherWallet/MEWconnect-iOS.git 7 | [submodule "MEWconnect-web-client"] 8 | path = MEWconnect-web-client 9 | url = git@github.com:MyEtherWallet/MEWconnect-web-client.git 10 | [submodule "MEWconnect-hanshake-server"] 11 | path = MEWconnect-hanshake-server 12 | url = git@github.com:MyEtherWallet/MEWconnect-hanshake-server.git 13 | [submodule "MEWconnect-dev-site"] 14 | path = MEWconnect-dev-site 15 | url = git@github.com:kvhnuke/etherwallet.git 16 | branch = beta/mewconnect 17 | [submodule "MEWconnect-Android"] 18 | path = MEWconnect-Android 19 | url = git@github.com:MyEtherWallet/MEWconnect-Android.git 20 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 MyEtherWallet 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | !["MEWconnect Logo](https://raw.githubusercontent.com/MyEtherWallet/MEWconnect-landing-page/da0132f38be38280315550120afbc056a6d2a363/src/assets/images/logo.svg?sanitize=true "MyEtherWallet") 2 | 3 | 4 | Finally, a ‘hardware wallet’ without all the hardware. -*#teamMEW* 5 | 6 | !["MEWconnect App](https://raw.githubusercontent.com/MyEtherWallet/MEWconnect-landing-page/da0132f38be38280315550120afbc056a6d2a363/src/assets/images/app.png "MyEtherWallet") 7 | 8 | ## Philosophy 9 | - **Hardware wallet-style security features**: MEWconnect stores your private keys safely in a local, isolated, and secure vault on your device to protect your account like the ELEVENTEEN GOOGILLION dollars it will one day be worth (probably). 10 | - **Two step verification to protect your every transaction**: Everyone should be able to create a wallet and send Ether & Tokens without additional cost. 11 | - **Phishers will have to phish somewhere else**: No one can obtain your private key. MEWconnect is official MyEtherWallet software. 12 | - **No centralized servers**:No databases. MEWconnect and MyEtherWallet talk via P2P communication. 13 | - **No data collection**: MyEtherWallet can’t collect your personal data even if we wanted to. 14 | - **Open source**: Transparent, free, and open source. We serve the community. Also, all our software is independently audited by the community. 15 | 16 | ## MEWconnect Around the Web 17 | 18 | - [mewconnect.myetherwallet.com](https://mewconnect.myetherwallet.com/) 19 | - [TechCrunch](https://techcrunch.com/2018/07/23/mew-connect-app-secure-login/) 20 | - [EthNews](https://www.ethnews.com/myetherwallet-reveals-mew-connect-ios-app-beta) 21 | - [CoinInsider](https://www.coininsider.com/myetherwallet-mewconnect-beta/) 22 | - MEW ETH Donation Address: 0xDECAF9CD2367cdbb726E904cD6397eDFcAe6068D (mewtopia.eth) 23 | - MEW BTC Donation Address: 1DECAF2uSpFTP4L1fAHR8GCLrPqdwdLse9 24 | 25 | ## Bug / Feature Request 26 | If you find a bug, or want a new feature added, please submit it on the [Github Issues](https://github.com/MyEtherWallet/MEWconnect/issues) --------------------------------------------------------------------------------