Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | wiring - move to obj-multiplex | kumavis | 2016-04-15 | 1 | -0/+41 |
| | |||||
* | Moved UI into repo with its own dependency stack | Dan Finlay | 2016-04-14 | 1 | -2/+2 |
| | |||||
* | Point rawtestrpc at new testrpc | Dan Finlay | 2016-04-13 | 1 | -1/+1 |
| | |||||
* | Migrate etherscan configs to our new production RPC. | Dan Finlay | 2016-04-13 | 2 | -3/+15 |
| | |||||
* | popup - fix web3 plumbing | kumavis | 2016-04-09 | 1 | -0/+21 |
| | |||||
* | Add ability to export private keys | Dan Finlay | 2016-04-07 | 1 | -0/+9 |
| | |||||
* | Add mayBeFauceting boolean to account object | Dan Finlay | 2016-04-05 | 1 | -0/+17 |
| | | | | | | | | | This boolean is computed from these requirements: - The user is on the testnet rpc - The account is index 0 The UI is responsible for checking the account balancing and indicating if fauceting is indeed pending or not. | ||||
* | Support undefined address selection | Dan Finlay | 2016-04-05 | 1 | -0/+5 |
| | | | | If `setSelectedAddress` is called on the IdStore, the first account is automatically selected. | ||||
* | Merge pull request #84 from MetaMask/revert-83-revert-82-EtherscanProvider | kumavis | 2016-04-02 | 2 | -9/+87 |
|\ | | | | | Etherscan provider | ||||
| * | Revert "Revert "Etherscan provider"" | Dan Finlay | 2016-04-01 | 2 | -9/+87 |
| | | |||||
* | | Call back with wallet restore errors | Dan Finlay | 2016-04-02 | 1 | -1/+5 |
|/ | |||||
* | Revert "Etherscan provider" | Dan Finlay | 2016-04-01 | 2 | -87/+9 |
| | |||||
* | Add custom zeroclient that supports etherscan (still not working) | Dan Finlay | 2016-04-01 | 1 | -0/+65 |
| | | | | The Etherscan Subprovider is not providing some methods we need, such as `eth_getCode`. I'll probably be enhancing it after lunch. | ||||
* | First naive pass at implementing etherscan provider (not working) | Dan Finlay | 2016-04-01 | 1 | -9/+22 |
| | | | | Committing and pushing to get feedback. | ||||
* | Do not cache the seed, retrieve it from the decrypted wallet | Dan Finlay | 2016-04-01 | 2 | -15/+21 |
| | |||||
* | Remove unnecessary abstraction | Dan Finlay | 2016-04-01 | 1 | -5/+1 |
| | |||||
* | Removed logs | Dan Finlay | 2016-03-31 | 1 | -6/+0 |
| | |||||
* | Made configuration migrateable | Dan Finlay | 2016-03-31 | 4 | -79/+185 |
| | | | | | | | | | | | | | | Abstract all configuration data into a singleton called `configManager`, who is responsible for reading and writing to the persisted storage (localStorage, in our case). Uses my new module [pojo-migrator](https://www.npmjs.com/package/pojo-migrator), and wraps it with the `ConfigManager` class, which we can hang any state setting or getting methods we need. By keeping all the persisted state in one place, we can stabilize its outward-facing API, making the interactions increasingly atomic, which will allow us to add features that require restructuring the persisted data in the long term without having to rewrite UI or even `background.js` code. All the restructuring and data-type management is kept in one neat little place. This should make it very easy to add new configuration options like user-configured providers, per-domain vaults, and more! I know this doesn't seem like a big user-facing feature, but we have a big laundry list of features that I think this will really help streamline. | ||||
* | Created etherscan provider (untested) | Dan Finlay | 2016-03-30 | 1 | -0/+62 |
| | |||||
* | Fix signing bug | Dan Finlay | 2016-03-30 | 1 | -2/+2 |
| | |||||
* | Add auto-fauceting | Dan Finlay | 2016-03-30 | 2 | -4/+27 |
| | | | | When first creating a vault, the first account is submitted to our `rawtestrpc` faucet, receiving `1.337` ether within 15-30 seconds. | ||||
* | Remove argument destructuring | Dan Finlay | 2016-03-30 | 1 | -1/+3 |
| | |||||
* | Return updated state after restoring vault | Dan Finlay | 2016-03-29 | 1 | -1/+1 |
| | |||||
* | Remove unused reference | Dan Finlay | 2016-03-26 | 1 | -1/+0 |
| | |||||
* | Cleaned up how we pass hdString to Lightwallet | Dan Finlay | 2016-03-26 | 1 | -4/+11 |
| | |||||
* | Implemented BIP44 compliance test. | Dan Finlay | 2016-03-26 | 1 | -57/+43 |
| | | | | Also added the hdPath that Christian had told me to our calls to the LightWallet, but this does not seem to have made us generate the same accounts as `testrpc` yet. | ||||
* | Convert to bip44 hdTrees | Dan Finlay | 2016-03-26 | 1 | -14/+16 |
| | | | | | | Added initial test just to verify we can recover the accounts we generate in this way. Still need to add compliance test to make sure this interoperates with testrpc's new mnemonic flag. | ||||
* | Gave lock a callback for better loading indication | Dan Finlay | 2016-03-25 | 1 | -2/+3 |
| | |||||
* | Add seed word caching during confirmation screen | Dan Finlay | 2016-03-25 | 1 | -47/+84 |
| | | | | | | | | In order to persist the seed word page until the user clicks the confirmation button, we need to store the seed words in localStorage. To simplify this process I've also reorganized some of the account manager code, broken up one large function into many smaller functions, and created a new class for the IdMgmt object. Again, sorry such a big refactor in one commit, but I really had to break it down to work through it. | ||||
* | stream-provider - addd isConnected method | kumavis | 2016-03-21 | 1 | -0/+4 |
| | |||||
* | add vault recovery | kumavis | 2016-03-16 | 1 | -5/+20 |
| | |||||
* | notifications - add tx confirm+cancel buttons | kumavis | 2016-03-12 | 2 | -0/+51 |
| | |||||
* | plumbing - pipe web3 to the popup.js | kumavis | 2016-03-11 | 1 | -6/+19 |
| | |||||
* | idStore - normalize hex format before signing | kumavis | 2016-03-06 | 1 | -1/+7 |
| | |||||
* | tx sig - it works again | kumavis | 2016-03-03 | 1 | -138/+93 |
| | |||||
* | background - use provider-engine zero client | kumavis | 2016-03-03 | 1 | -61/+0 |
| | |||||
* | web3-provider - add nonce tracker | kumavis | 2016-03-02 | 1 | -0/+5 |
| | |||||
* | Fix issue with raw transaction injected. | Simon de la Rouviere | 2016-02-23 | 1 | -6/+6 |
| | |||||
* | idStore - add createNewVault | kumavis | 2016-02-17 | 1 | -14/+17 |
| | |||||
* | idStore - add isInitialized flag | kumavis | 2016-02-16 | 1 | -0/+1 |
| | |||||
* | idStore - seperate signTx and sendTx | kumavis | 2016-02-13 | 1 | -13/+29 |
| | |||||
* | idStore - cancel tx | kumavis | 2016-02-13 | 1 | -0/+8 |
| | |||||
* | idmgmt - refactor | kumavis | 2016-02-11 | 2 | -318/+263 |
| | |||||
* | idmgmt - emit update on new tx | kumavis | 2016-02-11 | 1 | -6/+6 |
| | |||||
* | context wiring - handle and log errors | kumavis | 2016-02-11 | 1 | -2/+7 |
| | |||||
* | clean - silence logging | kumavis | 2016-02-09 | 1 | -1/+0 |
| | |||||
* | logging - silence rpc response logging | kumavis | 2016-01-31 | 1 | -3/+3 |
| | |||||
* | util - stream-provider - fix batch | kumavis | 2016-01-31 | 1 | -3/+11 |
| | |||||
* | deps - bump metamask-provider | kumavis | 2016-01-28 | 1 | -2/+2 |
| | |||||
* | tx-signing works | kumavis | 2016-01-19 | 2 | -11/+50 |
| | |||||
* | add pending txs but just autosign | kumavis | 2016-01-18 | 1 | -8/+50 |
| | |||||
* | refactor - push data to popup | kumavis | 2016-01-17 | 2 | -43/+33 |
| | |||||
* | wallet sync fix | kumavis | 2016-01-17 | 2 | -8/+33 |
| | |||||
* | breakout idmgmt | kumavis | 2016-01-17 | 2 | -5/+238 |
| | |||||
* | integrate metamask-ui with id mgmt | kumavis | 2016-01-15 | 1 | -11/+12 |
| | |||||
* | migrate to new ui + provider | kumavis | 2016-01-15 | 1 | -108/+41 |
| | |||||
* | testing continues | kumavis | 2015-12-21 | 1 | -9/+19 |
| | |||||
* | migrate to ProviderEngine zero-client | kumavis | 2015-12-19 | 3 | -0/+139 |
| | |||||
* | build overhaul + basic structure | kumavis | 2015-08-02 | 1 | -0/+122 |