aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add completed tx hash to persisted tx logDan Finlay2016-04-201-0/+4
|
* Fix config manager methodDan Finlay2016-04-201-1/+1
|
* Add extra tx methods to configManagerDan Finlay2016-04-202-3/+61
|
* Improve some UI formattingDan Finlay2016-04-202-13/+33
|
* Move transaction list after account panelDan Finlay2016-04-201-12/+1
|
* Moved transaction-list into its own componentDan Finlay2016-04-202-8/+55
|
* Merge branch 'master' into TransactionListDan Finlay2016-04-2019-55/+178
|\
| * Merge branch 'master' of github.com:MetaMask/metamask-pluginDan Finlay2016-04-191-2/+1
| |\
| | * Merge pull request #118 from MetaMask/AddPersistentTransactionLogDan Finlay2016-04-196-9/+143
| | |\ | | | | | | | | Persist transactions to config-manager
| | * \ Merge pull request #117 from MetaMask/i33kumavis2016-04-191-2/+1
| | |\ \ | | | | | | | | | | reject unknown tx 'from' address via provider-engine
| | | * | deps - bump provider-engine to 7.4.0kumavis2016-04-191-1/+1
| | | | |
| | | * | deps - remove unused faux-jaxkumavis2016-04-191-1/+0
| | | | |
| * | | | Merge branch 'AddPersistentTransactionLog'Dan Finlay2016-04-196-9/+144
| |\ \ \ \ | | |/ / / | |/| | |
| | * | | Bump changelogDan Finlay2016-04-191-0/+1
| | | |/ | | |/|
| | * | Fix displayed RPC addressDan Finlay2016-04-191-2/+1
| | | | | | | | | | | | | | | | Fixes #119
| | * | Bump changelogDan Finlay2016-04-191-0/+3
| | | |
| | * | Emit transaction list to UIDan Finlay2016-04-191-0/+1
| | | |
| | * | Fix method of emitting unconfirmedTxs to UIDan Finlay2016-04-192-1/+1
| | | |
| | * | Persist transactions to config-managerDan Finlay2016-04-194-7/+138
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Transactions are now stored, and are never deleted, they only have their status updated. We can add deleting later if we'd like. I've hacked on emitting the new unconfirmedTx key to the UI in the format it received before, I want Aaron's opinion on where I should actually do that.
| * | | Merge pull request #115 from MetaMask/UnifyTestSuitesDan Finlay2016-04-1912-43/+31
| |\| | | | | | | | | | Unify test suites
| | * | Unify test suitesDan Finlay2016-04-1911-37/+18
| | | |
| | * | Fix plugin testsDan Finlay2016-04-193-6/+13
| | |/
| * | Merge pull request #116 from MetaMask/i30kumavis2016-04-191-1/+2
| |\ \ | | |/ | |/| contentscript - append inpage as first child
| | * contentscript - append inpage as first childkumavis2016-04-191-1/+2
| |/
* / Prototype Transaction Details in account-detail.jsJohn Whitton2016-04-201-0/+17
|/ | | | Rough prototype with hyperlink
* Merge pull request #113 from MetaMask/i53kumavis2016-04-167-77/+263
|\ | | | | publicConfigStore for sync provider and selected address
| * inpage - use publicConfigStore for selectedAccount and sync providerkumavis2016-04-163-35/+94
| |
| * wiring - trusted-untrusted features + remote-storekumavis2016-04-166-51/+178
| |
* | Bump version to 1.5.1Dan Finlay2016-04-162-1/+3
| |
* | Merge pull request #112 from MetaMask/AddLeadingZeroDan Finlay2016-04-163-2/+4
|\ \ | | | | | | ui - formatBalance bug
| * | Add leading zero to account balancesDan Finlay2016-04-163-2/+4
|/ /
* | Merge pull request #106 from MetaMask/AddTravisCIDan Finlay2016-04-163-11/+22
|\ \ | | | | | | Add rudimentary travis.yml
| * | Run all UI testsDan Finlay2016-04-151-8/+5
| | |
| * | Add build badgeDan Finlay2016-04-151-1/+1
| | |
| * | Limit test suite to UI for nowDan Finlay2016-04-151-1/+2
| | |
| * | Merge branch 'master' into AddTravisCIDan Finlay2016-04-154-77/+26
| |\ \
| * | | Remove extraneous build targetDan Finlay2016-04-151-1/+0
| | | |
| * | | Add travis compiler addonsDan Finlay2016-04-151-0/+6
| | | |
| * | | Add c++ compiler for travis and node 4+Dan Finlay2016-04-151-0/+2
| | | | | | | | | | | | | | | | https://docs.travis-ci.com/user/languages/javascript-with-nodejs#Node.js-v4-(or-io.js-v3)-compiler-requirements
| * | | Bump ethereumjs-utils versionDan Finlay2016-04-151-1/+1
| | | |
| * | | Add rudimentary travis.ymlDan Finlay2016-04-141-0/+6
| | | |
* | | | Merge pull request #111 from MetaMask/i53kumavis2016-04-155-38/+65
|\ \ \ \ | |_|/ / |/| | / | | |/ | |/| inpage sync RPC
| * | wiring - move to obj-multiplexkumavis2016-04-153-24/+50
| | |
| * | ui - util - fixes#110 formatBalancekumavis2016-04-151-2/+2
| | |
| * | inpage - defaultAccount - fix bugkumavis2016-04-151-12/+13
|/ /
* | Merge pull request #109 from MetaMask/FixEthResolutionDan Finlay2016-04-153-4/+22
|\ \ | | | | | | Fix eth resolution
| * | Bump changelogDan Finlay2016-04-151-0/+1
| | |
| * | Fix eth resolutionDan Finlay2016-04-152-4/+21
| |/ | | | | | | | | | | | | | | utils.formatBalance was returning rounded ether, was not useful for displaying account balances. Now returns four decimal points, and is easily configurable for more, with passing tests. Spoiler alert: Don't you dare divide bignumber wei. Bignumber does not have decimals. Keep it as wei, format it as ether.
* | Merge pull request #108 from MetaMask/i32kumavis2016-04-151-73/+4
|\ \ | |/ |/| set defaultAccount on web3
| * web3 - set defaultAccountkumavis2016-04-151-3/+4
| |
| * clean - inpage remove unused xhr mitm codekumavis2016-04-151-70/+0
|/
* Remove private throughput graphDan Finlay2016-04-141-2/+0
|
* Merge pull request #105 from MetaMask/MergeWithUIDan Finlay2016-04-1456-14/+4367
|\ | | | | Merge metamask-ui into metamask plugin
| * Add waffle metrics to the README for funDan Finlay2016-04-141-0/+2
| |
| * Remove metamask-ui dependencyDan Finlay2016-04-141-1/+0
| |
| * Add merge to changelogDan Finlay2016-04-141-0/+1
| |
| * Move UI deps into main plugin package.jsonDan Finlay2016-04-144-76/+58
| | | | | | | | | | Also move UI test scripts into main plugin Also move testing explanation to main plugin README.
| * Moved UI into repo with its own dependency stackDan Finlay2016-04-1455-9/+4378
|/
* Corrected changelog noteDan Finlay2016-04-141-1/+2
|
* Merge branch 'master' of github.com:MetaMask/metamask-pluginDan Finlay2016-04-147-6/+45
|\
| * Merge pull request #104 from MetaMask/TargetEtherscanAtOurRpcDan Finlay2016-04-137-6/+45
| |\ | | | | | | Re-target production RPC endpoint
| | * Point rawtestrpc at new testrpcDan Finlay2016-04-132-3/+3
| | |
| | * Migrate etherscan configs to our new production RPC.Dan Finlay2016-04-133-4/+15
| | |
| | * Migrate etherscan providers to our RPCDan Finlay2016-04-133-0/+28
| | |
* | | Bump manifest to 1.5.0Dan Finlay2016-04-141-1/+1
| | |
* | | Bump changelog for 1.5.0Dan Finlay2016-04-141-0/+2
|/ /
* / Bump changelogDan Finlay2016-04-131-0/+1
|/
* Bump changelogDan Finlay2016-04-131-0/+1
|
* Add sending funds to changelogDan Finlay2016-04-131-0/+3
|
* Bump version and changelogDan Finlay2016-04-092-1/+5
|
* popup - fix web3 plumbingkumavis2016-04-093-17/+31
|
* Merge pull request #92 from MetaMask/ExportKeyDan Finlay2016-04-073-0/+13
|\ | | | | Add ability to export private keys
| * Add ability to export private keysDan Finlay2016-04-073-0/+13
|/
* Updated changelog for current masterDan Finlay2016-04-061-0/+4
|
* Updated changelogDan Finlay2016-04-061-0/+14
|
* Bump version1.3.2Dan Finlay2016-04-051-1/+1
|
* Merge pull request #90 from MetaMask/IndicateFaucetingDan Finlay2016-04-051-0/+17
|\ | | | | Add mayBeFauceting boolean to account object
| * Add mayBeFauceting boolean to account objectDan Finlay2016-04-051-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.
* Merge pull request #89 from MetaMask/SupportUndefinedAddressSelectionDan Finlay2016-04-052-1/+6
|\ | | | | Support undefined address selection
| * Support undefined address selectionDan Finlay2016-04-051-0/+5
| | | | | | | | If `setSelectedAddress` is called on the IdStore, the first account is automatically selected.
| * Bump versionDan Finlay2016-04-041-1/+1
|/
* Merge pull request #87 from SilentCicero/masterDan Finlay2016-04-041-0/+1
|\ | | | | Add Chrome "file://" protocol to MetaMask manifest
| * Add Chrome "file://" protocol to MetaMask manifestNick Dodson2016-04-041-0/+1
|/
* Merge pull request #84 from MetaMask/revert-83-revert-82-EtherscanProviderkumavis2016-04-025-17/+105
|\ | | | | Etherscan provider
| * Revert "Revert "Etherscan provider""Dan Finlay2016-04-015-17/+105
| |
* | Merge pull request #86 from MetaMask/CallbackRestoreErrorsDan Finlay2016-04-021-1/+5
|\ \ | |/ |/| Call back with wallet restore errors
| * Call back with wallet restore errorsDan Finlay2016-04-021-1/+5
|/
* Merge pull request #83 from MetaMask/revert-82-EtherscanProviderDan Finlay2016-04-015-105/+17
|\ | | | | Revert "Etherscan provider"
| * Revert "Etherscan provider"Dan Finlay2016-04-015-105/+17
|/
* Merge pull request #82 from MetaMask/EtherscanProviderDan Finlay2016-04-015-17/+105
|\ | | | | Etherscan provider
| * Got etherscan working, bump versionDan Finlay2016-04-012-2/+2
| | | | | | | | | | | | | | | | New version of provider-engine includes etherscan-subprovider features required to let Metamask use it. Hard coded the new version of `web3-provider-engine` even though it is not live on `npm` yet, because it is a dependency of this branch. I'll deploy to the Chrome store but not merge on Github until that provider-engine is published, because it could break others' dev environments.
| * Add custom zeroclient that supports etherscan (still not working)Dan Finlay2016-04-012-11/+68
| | | | | | | | 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 Finlay2016-04-013-14/+45
|/ | | | Committing and pushing to get feedback.
* Merge pull request #81 from MetaMask/MigratableConfigDan Finlay2016-04-019-48/+270
|\ | | | | Migratable config
| * Do not cache the seed, retrieve it from the decrypted walletDan Finlay2016-04-012-15/+21
| |
| * Remove unnecessary abstractionDan Finlay2016-04-011-5/+1
| |
| * Removed logsDan Finlay2016-03-311-6/+0
| |
| * Bump versionDan Finlay2016-03-311-1/+1
| |
| * Made configuration migrateableDan Finlay2016-03-318-103/+266
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 Finlay2016-03-302-1/+64
|/
* Merge pull request #78 from MetaMask/AutoFaucetDan Finlay2016-03-303-7/+30
|\ | | | | Add auto-fauceting
| * Fix signing bugDan Finlay2016-03-301-2/+2
| |
| * Add auto-faucetingDan Finlay2016-03-303-5/+28
|/ | | | When first creating a vault, the first account is submitted to our `rawtestrpc` faucet, receiving `1.337` ether within 15-30 seconds.
* Remove argument destructuringDan Finlay2016-03-302-2/+4
|
* Bump version to 1.1.1Dan Finlay2016-03-291-1/+1
|
* Merge pull request #76 from MetaMask/ReturnStateToRestoreDan Finlay2016-03-292-2/+2
|\ | | | | Return updated state after restoring vault
| * Version bumpDan Finlay2016-03-291-1/+1
| |
| * Return updated state after restoring vaultDan Finlay2016-03-291-1/+1
|/
* Merge pull request #73 from MetaMask/Bip44Dan Finlay2016-03-268-108/+156
|\ | | | | Bip44-compliant HD Tree Generation
| * Remove unused referenceDan Finlay2016-03-261-1/+0
| |
| * Removed unused dependencyDan Finlay2016-03-261-1/+0
| |
| * Bumped versionDan Finlay2016-03-261-1/+1
| |
| * Remove broken npm scriptDan Finlay2016-03-261-2/+1
| |
| * Correct the bip44 test accountDan Finlay2016-03-261-5/+5
| |
| * Cleaned up how we pass hdString to LightwalletDan Finlay2016-03-261-4/+11
| |
| * Implemented BIP44 compliance test.Dan Finlay2016-03-264-63/+84
| | | | | | | | 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 hdTreesDan Finlay2016-03-263-24/+70
| | | | | | | | | | | | 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.
| * Added basic es6 mocha test suiteDan Finlay2016-03-255-41/+18
|/
* Merge pull request #69 from MetaMask/ImproveVaultManagementDan Finlay2016-03-254-51/+91
|\ | | | | Improve vault management
| * Bump versionDan Finlay2016-03-251-1/+1
| |
| * Gave lock a callback for better loading indicationDan Finlay2016-03-251-2/+3
| |
| * Add seed word caching during confirmation screenDan Finlay2016-03-253-49/+88
|/ | | | | | | | 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.
* Added changelog and deploy docsDan Finlay2016-03-232-0/+14
|
* Version 0.14.0Dan Finlay2016-03-231-1/+1
|
* stream-provider - addd isConnected methodkumavis2016-03-211-0/+4
|
* 0.13.0kumavis2016-03-161-1/+1
|
* add vault recoverykumavis2016-03-162-5/+21
|
* Merge pull request #64 from MetaMask/readme_gulp_gruntDan Finlay2016-03-141-4/+2
|\ | | | | grunt to gulp readme changes
| * grunt to gulp readme changesSimon de la Rouviere2016-03-141-4/+2
|/
* Merge pull request #59 from MetaMask/notifDan Finlay2016-03-125-7/+101
|\ | | | | notifications - add tx confirm+cancel buttons
| * notifications - add tx confirm+cancel buttonskumavis2016-03-125-7/+101
|/
* build - use gulp, remove gruntkumavis2016-03-124-327/+8
|
* unsig tx - show notification on new txkumavis2016-03-112-2/+17
|
* plumbing - fix rpc feedback loop bugkumavis2016-03-112-9/+9
|
* popup.js - set web3 on globalkumavis2016-03-111-0/+2
|
* plumbing - pipe web3 to the popup.jskumavis2016-03-114-22/+106
|
* Bumped version for info page deployDan Finlay2016-03-101-2/+2
|
* deps - bump metamask-uikumavis2016-03-091-1/+1
|
* config - add config starting with rpc endpointkumavis2016-03-091-4/+31
|
* deps - bump ui and provider-enginekumavis2016-03-092-4/+4
|
* inpage - web3 class injectionkumavis2016-03-061-0/+5
|
* idStore - normalize hex format before signingkumavis2016-03-061-1/+7
|
* Added gulp cli documentationDan Finlay2016-03-041-0/+12
|
* deps - add gulp depskumavis2016-03-031-2/+9
|
* build - add gulp build processkumavis2016-03-034-21/+1355
|
* tx sig - it works againkumavis2016-03-032-141/+95
|
* background - use provider-engine zero clientkumavis2016-03-032-63/+8
|
* Merge pull request #9 from MetaMask/AddLockImageskumavis2016-03-032-0/+0
|\ | | | | Add lock images to static repo.
| * Add lock images to static repo.Dan Finlay2016-03-032-0/+0
|/ | | | | | | Having the ui in one project but the static resources in this one is a good sign that either: - We should have the UI in this project. - We should find a way to keep the static resources in the UI repo.
* Merge pull request #8 from MetaMask/WatchUIkumavis2016-03-032-2/+18
|\ | | | | Watch metamask-ui for changes during grunt dev
| * Add grunt watch to web3-provider-engineDan Finlay2016-03-032-4/+6
| |
| * Watch metamask-ui for changes during grunt devDan Finlay2016-03-032-2/+16
|/
* web3-provider - add nonce trackerkumavis2016-03-022-2/+7
|
* Merge pull request #7 from MetaMask/rawtx_fixkumavis2016-02-231-6/+6
|\ | | | | Fix issue with raw transaction injection.
| * Fix issue with raw transaction injected.Simon de la Rouviere2016-02-231-6/+6
|/
* deps - bump provider enginekumavis2016-02-181-1/+1
|
* idStore - add createNewVaultkumavis2016-02-172-14/+18
|
* deps - bump metamask-uikumavis2016-02-171-1/+1
|
* manifest - rm unused permissionskumavis2016-02-171-2/+0
|
* logs - silence logkumavis2016-02-161-1/+0
|
* idStore - add isInitialized flagkumavis2016-02-161-0/+1
|
* internal rpc - add isMetamaskInternal flagkumavis2016-02-161-1/+1
|
* deps - bump metamask-ui to 1.1.0kumavis2016-02-161-1/+1
|
* disable localhost interceptionkumavis2016-02-161-63/+63
|
* logging - add localhost interception messagekumavis2016-02-161-2/+5
|
* Merge pull request #5 from MetaMask/xtend_addkumavis2016-02-161-1/+2
|\ | | | | Added xtend to package.json
| * Added xtend to package.jsonSimon de la Rouviere2016-02-151-1/+2
|/
* intercept xhrs for localhost:8545kumavis2016-02-153-11/+94
|
* dev - copy manifest on changekumavis2016-02-131-0/+4
|
* popup - add current domain trackingkumavis2016-02-132-22/+49
|
* idStore - seperate signTx and sendTxkumavis2016-02-132-13/+30
|
* idStore - cancel txkumavis2016-02-132-0/+9
|
* 0.11.0kumavis2016-02-111-1/+1
|
* deps - update depskumavis2016-02-111-1/+2
|
* idmgmt - refactorkumavis2016-02-114-382/+332
|
* deps - add readable-stream + bump provider-enginekumavis2016-02-111-1/+2
|
* 0.10.0kumavis2016-02-111-1/+1
|
* deps - bumpkumavis2016-02-111-2/+2
|
* idmgmt - emit update on new txkumavis2016-02-111-6/+6
|
* context wiring - handle and log errorskumavis2016-02-114-4/+20
|
* sync - slow account polling to 4skumavis2016-02-091-1/+1
|
* clean - silence loggingkumavis2016-02-092-2/+1
|
* meta - readme - improve instructionskumavis2016-02-091-1/+6
|
* meta - readme - add grunt-cli to instructionskumavis2016-02-091-1/+2
|
* deps - add metamas-ui, bump provider-enginekumavis2016-02-091-1/+3
|
* 0.9.0kumavis2016-02-091-1/+1
|
* 0.7.0kumavis2016-01-311-1/+1
|
* rpc - sync - add support for sync eth_accounts + eth_coinbasekumavis2016-01-311-9/+46
|
* 0.6.0kumavis2016-01-311-1/+1
|
* rpc - sync - add warning for unsupported eth_accountskumavis2016-01-311-1/+14
|
* logging - silence rpc response loggingkumavis2016-01-311-3/+3
|
* add basic sync supportkumavis2016-01-311-2/+8
|
* util - stream-provider - fix batchkumavis2016-01-311-3/+11
|
* deps - bump metamask-providerkumavis2016-01-283-4/+4
|
* 0.4.0kumavis2016-01-271-1/+1
|
* 0.3.0kumavis2016-01-211-1/+1
|
* deps - but provider-enginekumavis2016-01-211-1/+1
|
* 0.2.0kumavis2016-01-191-1/+1
|
* tx-signing workskumavis2016-01-193-22/+60
|
* cleankumavis2016-01-181-49/+0
|
* add pending txs but just autosignkumavis2016-01-182-10/+52
|
* refactor - push data to popupkumavis2016-01-175-47/+74
|
* wallet sync fixkumavis2016-01-172-8/+33
|
* breakout idmgmtkumavis2016-01-173-226/+251
|
* integrate metamask-ui with id mgmtkumavis2016-01-155-28/+199
|
* migrate to new ui + providerkumavis2016-01-158-157/+115
|
* start of extension popup windowkumavis2015-12-235-6/+58
|
* clean - remove debuggerkumavis2015-12-231-1/+1
|
* rpc - move to main chainkumavis2015-12-211-1/+3
|
* deps - bump provider enginekumavis2015-12-211-1/+1
|
* Add plugin adding docDan Finlay2015-12-211-0/+9
|
* deps - bump provider-enginekumavis2015-12-211-1/+1
|
* Add simple dev readmeDan Finlay2015-12-211-0/+8
|
* testing continueskumavis2015-12-214-13/+23
|
* migrate to ProviderEngine zero-clientkumavis2015-12-197-182/+296
|
* deps - bump blockapps-web3kumavis2015-10-131-1/+1
|
* major - migrate to blockapps-web3kumavis2015-10-102-5/+45
|
* load from storage on start and export unsignedTxs on remote connectkumavis2015-08-024-19/+49
|
* store unconfirmedTxs in chrome sync storagekumavis2015-08-023-36/+88
|
* remove unused fileskumavis2015-08-022-6/+0
|
* update icon assetskumavis2015-08-024-0/+0
|
* builds smoothly + forwards txs to extensionkumavis2015-08-027-189/+136
|
* build overhaul + basic structurekumavis2015-08-0210-102/+127
|
* meta - gitignorekumavis2015-08-021-0/+2
|
* metamask provider skeletonkumavis2015-08-0112-14/+162
|
* init commitkumavis2015-08-0124-0/+598