Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add create new account routes, fix conflicts from uat updates | Alexander Tseung | 2018-02-01 | 1 | -80/+0 |
| | |||||
* | Merge branch 'uat' of https://github.com/MetaMask/metamask-extension into cb-254 | Alexander Tseung | 2018-01-30 | 1 | -29/+5 |
|\ | |||||
| * | New add account page with create and import options. | Dan | 2018-01-13 | 3 | -77/+58 |
| | | |||||
* | | Add react-router to allow use of the browser back button | Alexander Tseung | 2017-12-15 | 3 | -201/+0 |
|/ | |||||
* | Merge branch 'master' into merge-master | Chi Kei Chan | 2017-11-16 | 1 | -0/+1 |
|\ | |||||
| * | Remove warning message when show import page | Daijiro Wachi | 2017-10-31 | 1 | -0/+1 |
| | | | | | | | | Fixes: https://github.com/MetaMask/metamask-extension/issues/1192 | ||||
* | | Clear import error state on logout. | Dan | 2017-10-27 | 1 | -0/+4 |
| | | |||||
* | | Update Import Account Help Link | Chi Kei Chan | 2017-10-25 | 1 | -1/+1 |
| | | |||||
* | | New Account modal | Chi Kei Chan | 2017-10-18 | 1 | -0/+1 |
| | | |||||
* | | Fix SELECT TYPE dropdown changing sizes based on error message (#2359) | Alexander Tseung | 2017-10-14 | 1 | -2/+4 |
| | | |||||
* | | Move responsive ui into its own folder for easier merges | Dan Finlay | 2017-07-21 | 4 | -0/+297 |
| | | |||||
* | | Make folder for responsive UI | Dan Finlay | 2017-07-04 | 4 | -297/+0 |
|/ | |||||
* | Add Back Button for Import Screen | Thomas Huang | 2017-06-28 | 1 | -0/+9 |
| | |||||
* | Add a new warning for file import JSON | Kevin Serrano | 2017-06-15 | 1 | -0/+3 |
| | |||||
* | Fix linting warnings | Thomas Huang | 2017-04-27 | 1 | -1/+1 |
| | |||||
* | Fix styling of error message. | Kevin Serrano | 2017-03-23 | 2 | -4/+2 |
| | |||||
* | Implement naieve JSON file importing | Dan Finlay | 2017-01-19 | 2 | -5/+76 |
| | | | | Doesn't work on any JSON file I have, it's a very naieve strategy provided by ethereumjs-wallet. Will need to raise its sophistication before deploying to production. | ||||
* | Added new modular private key import system | Dan Finlay | 2017-01-19 | 1 | -2/+1 |
| | | | | | | | | | | | | | | Now any strategy for importing a private key that can be described as a pure function can be very easily turned into a MetaMask import strategy. I've created a generic and reusable UI action called `importNewAccount(strategy, args)`. The `strategy` is a unique identifier defined in `app/scripts/account-import-strategies`, and the `args` will be passed to the member of the `strategies` array whose key matches the strategy string. Strategies return private key hex strings, and are used by the metamask-controller to create a new keyring, and select that new account, before calling back. This also implements @frankiebee's idea of showing the imported account when it's been imported (my oversight!). This commit only moves us to this architecture, keeping feature parity for private key import, but has some untested code for importing geth-style JSON files as well! | ||||
* | Allow importing of private key strings | Dan Finlay | 2017-01-18 | 2 | -6/+84 |
| | | | | | | | | Fixes #1021 A top-right menu item now allows `Account Import`. It has a menu (with one item for now) that allows importing a private key string. Errors are displayed, and a success navigates the user to their account list, where the imported account is labeled `LOOSE`. | ||||
* | Develop import subviews | Dan Finlay | 2016-11-05 | 3 | -15/+84 |
| | |||||
* | Add import account placeholder template | Dan Finlay | 2016-11-05 | 1 | -0/+70 |