aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
Commit message (Collapse)AuthorAgeFilesLines
* LintedDan Finlay2017-05-162-5/+6
|
* Verify updating gas value updatesDan Finlay2017-05-161-2/+0
|
* Got test failing nearly correctlyDan Finlay2017-05-161-1/+12
|
* Skip jazzicons in unit testsDan Finlay2017-05-161-4/+9
|
* Remove redux dependency from eth-balance and its dependent treeDan Finlay2017-05-136-22/+24
| | | | For better unit testability of the conf-tx view.
* Break up pending-tx component for better unit testabilityDan Finlay2017-05-111-38/+39
|
* ens - add mainnet ens supportkumavis2017-05-101-7/+9
|
* Redefine txmeta when submitting.Kevin Serrano2017-05-091-1/+1
|
* Merge branch 'i1381-GasPriceInGwei' of github.com:MetaMask/metamask-plugin ↵Kevin Serrano2017-05-092-7/+15
|\ | | | | | | into i1381-GasPriceInGwei
| * CleanupDan Finlay2017-05-091-2/+2
| |
| * Input gas in gweiDan Finlay2017-05-081-7/+14
| | | | | | | | | | | | | | Also enforces "safe low gas" minimum recommended by this article by eth-gas-station: https://medium.com/@ethgasstation/the-safe-low-gas-price-fb44fdc85b91 Fixes #1381
| * Fix ens iterated element without key errorDan Finlay2017-05-081-0/+1
| |
* | ui - remove web3, use eth-querykumavis2017-05-091-1/+1
|/
* Merge branch 'master' into rinkebyDan Finlay2017-04-284-8/+7
|\
| * Fix linting warningsThomas Huang2017-04-274-8/+7
| |
* | Linting.Kevin Serrano2017-04-261-1/+1
| |
* | Add missing changes. Create unique style for rinkeby icon.Kevin Serrano2017-04-263-3/+9
| |
* | change network name to rinkeby when selectedNickyg2017-04-261-1/+10
| |
* | add rinkeby networkNickyg2017-04-262-1/+7
|/
* fix spellingfrankiebee2017-04-252-4/+4
|
* Css fixesfrankiebee2017-04-242-7/+9
|
* make buy button greenfrankiebee2017-04-241-1/+1
|
* remove updateCoinBaseAmount actionJared Pereira2017-04-241-3/+0
|
* remove updateBuyAddress actionJared Pereira2017-04-242-7/+1
|
* Initial redo attempt of the buy view to look like vladt's desighnfrankiebee2017-04-194-189/+124
|
* Create a custom radio list componentfrankiebee2017-04-191-0/+61
|
* clean - remove unused extension refkumavis2017-04-051-3/+2
|
* add platforms to mascara + move buyEther window open to uikumavis2017-04-052-7/+8
|
* ui - use global.platform for extension interactionkumavis2017-04-013-8/+3
|
* extension - prefer extensionizer modulekumavis2017-03-314-4/+4
|
* Merge branch 'master' into kovan-faucet-instructionsDan Finlay2017-03-291-98/+37
|\
| * Improve UI gas calculation logicDan Finlay2017-03-291-98/+37
| | | | | | | | | | | | | | | | - Now striping hex prefixed gas values, which may have been causing mis-estimation. - Unified calculation logic to be entirely functional. - Greatly simplified how the pending-tx form keeps updated form state. Still needs a commit from @kumavis to ensure the background passes in a txMeta.txParams.gasPrice value.
* | Merge branch 'master' into kovan-faucet-instructionsKevin Serrano2017-03-281-0/+3
|\|
| * Fix edge case where notice does not require scrollbar.Kevin Serrano2017-03-281-0/+3
| |
* | Add link to kovan faucet instructions.Kevin Serrano2017-03-281-2/+9
|/
* Merge branch 'master' into kovan-noticeDan Finlay2017-03-254-434/+538
|\
| * Fix tx selecting bugDan Finlay2017-03-251-0/+1
| |
| * Remove unnecessary logDan Finlay2017-03-251-2/+0
| |
| * Disable accept button when gas limit is too lowDan Finlay2017-03-251-8/+5
| |
| * Make gas calculations on render more consistentDan Finlay2017-03-241-10/+16
| |
| * Fix initial tx fee estimationDan Finlay2017-03-242-4/+5
| |
| * Fix a couple thingsDan Finlay2017-03-242-15/+42
| | | | | | | | | | | | | | | | Sorry apparently the gas fixes weren't in the last commit, but are in this one. As reported in previous commit, fixes a bug where initial estimate is not derived from the network. Also fixes a bug where clicking "reset" does not clear our custom validation warnings.
| * Make reset button clear errorsDan Finlay2017-03-241-0/+1
| |
| * Fix initial gas price estimateDan Finlay2017-03-241-4/+5
| |
| * Prevent default for reset and reject buttonsDan Finlay2017-03-241-1/+2
| |
| * Override browser default validation messageDan Finlay2017-03-241-0/+1
| |
| * Fix some broken refsDan Finlay2017-03-241-2/+2
| |
| * Merge branch 'i1234-HardGasLimits-BrowserForm' of ↵Dan Finlay2017-03-244-2/+18
| |\ | | | | | | | | | github.com:MetaMask/metamask-plugin into i1234-HardGasLimits-BrowserForm
| | * Merge branch 'master' into i1234-HardGasLimits-BrowserFormKevin Serrano2017-03-241-1/+1
| | |\
| | | * Enable etherscan linking on Kovan transaction list items.Kevin Serrano2017-03-231-1/+1
| | | |
| | * | Merge branch 'master' into i1234-HardGasLimits-BrowserFormDan Finlay2017-03-233-1/+17
| | |\|
| * | | Combine pending-tx-details component into pending-tx-detailsDan Finlay2017-03-242-370/+346
| |/ / | | | | | | | | | | | | | | | | | | | | | These were only separated originally so we could make the notification-based TX approval work, which provided its own buttons. This two templates are logically highly coupled, and keeping them working while separate has been difficult at times, and has even required resorting to dubious practices, like using React's `refs` pattern. This combines them into one fairly large component, but I think it's ok, we can still break this up into components, just not the separation that it had previously.
| * | Merge branch 'master' into i1234-HardGasLimits-BrowserFormDan Finlay2017-03-231-36/+56
| |\ \
| * | | Got basic validations workingDan Finlay2017-03-233-94/+179
| | | |
| * | | Some progressDan Finlay2017-03-232-7/+16
| | | |
* | | | Reset disabled state for confirm button after every notice.Kevin Serrano2017-03-231-1/+4
| |_|/ |/| |
* | | Merge branch 'master' into i238-kovanKevin Serrano2017-03-231-0/+1
|\ \ \
| * | | Hide the password in the private key retrieval screen.Kevin Serrano2017-03-231-0/+1
| | |/ | |/|
* | | Add kovan to drop-menu-itemKevin Serrano2017-03-231-1/+4
| | |
* | | Add conditional kovan to current network component.Kevin Serrano2017-03-231-0/+12
|/ /
* / Adjust private key confirmation style and logic.Kevin Serrano2017-03-211-36/+56
|/
* Improve personal_sign styleDan Finlay2017-03-172-11/+23
| | | | textarea was not resizing the way I'd expected, so made it permanently larger, to accomodate larger messages.
* Merge branch 'master' into i1165-predictiveKevin Serrano2017-03-151-2/+2
|\
| * Rename variables to proper currency state variables.Kevin Serrano2017-03-151-2/+2
| |
* | Minor change in removing opts object.Kevin Serrano2017-03-151-4/+1
| |
* | Add comments.Kevin Serrano2017-03-111-0/+5
| |
* | Allow for adding recently used addresses to address book.Kevin Serrano2017-03-101-2/+11
| |
* | Create distinct labels and names for addresses.Kevin Serrano2017-03-101-1/+5
| |
* | Display owned addresses in datalist.Kevin Serrano2017-03-101-0/+10
|/
* Add ENS click to copyDan Finlay2017-03-091-9/+8
| | | | Also bump ethjs-ens version to get proper error for unregistered names.
* Get basic ENS workingDan Finlay2017-03-096-52/+119
|\ | | | | | | & merge master into ENS branch.
| * Remove logDan Finlay2017-03-071-1/+0
| |
| * Render personal_sign messages as utf-8 textDan Finlay2017-03-072-12/+46
| | | | | | | | | | | | | | | | | | | | | | Calls to `personal_sign` are now: - When hex encoded, preserved as hex encoded, but displayed as utf-8 text. - When not hex encoded, decoded as utf-8 text as hex for signing. - The messages proposed for signing are displayed as UTF-8 text. - When the message cannot be rendered as UTF-8 text, it is displayed as hexadecimal. Fixes #1173
| * Prevent submission of invalid gas parameters.Kevin Serrano2017-03-022-3/+26
| |
| * Various improvements to gas input.Kevin Serrano2017-03-023-27/+22
| |
| * Only allow numbers in gas inputsDan Finlay2017-03-021-0/+1
| |
* | Add ens recognition to send form inputDan Finlay2017-03-011-0/+131
|/ | | | | | | | Attempts to lookup `.eth` addresses on ENS. Is currently failing. I've written an isolation example of the problem here: https://github.com/flyswatter/ens-test
* Add reset button to reset gas fields.Kevin Serrano2017-03-012-4/+20
|
* Merge branch 'i765-gaslimits' of github.com:MetaMask/metamask-plugin into ↵Dan Finlay2017-03-011-2/+12
|\ | | | | | | i765-gaslimits
| * Gas and Gaslimit revert to default if set to 0Kevin Serrano2017-03-011-2/+12
| |
* | Add a couple more debug logsDan Finlay2017-03-011-0/+1
|/
* lintsKevin Serrano2017-03-011-3/+0
|
* Remove advanced options for now.Kevin Serrano2017-03-011-15/+4
|
* Merge branch 'i765-gaslimits' of github.com:MetaMask/metamask-plugin into ↵Dan Finlay2017-03-011-0/+2
|\ | | | | | | i765-gaslimits
| * lintKevin Serrano2017-03-011-2/+4
| |
* | LintedDan Finlay2017-03-011-2/+2
| |
* | Merge branch 'i765-gaslimits' of github.com:MetaMask/metamask-plugin into ↵Dan Finlay2017-03-012-4/+17
|\| | | | | | | i765-gaslimits
| * Hide gas options behind an advanced options checkbox.Kevin Serrano2017-03-011-4/+16
| |
| * Merge branch 'i765-gaslimits' of github.com:MetaMask/metamask-plugin into ↵Kevin Serrano2017-03-011-30/+38
| |\ | | | | | | | | | i765-gaslimits
| * | Add margins to align.Kevin Serrano2017-03-011-0/+1
| | |
* | | Remove gasMultiplier txMeta paramDan Finlay2017-03-011-5/+1
| |/ |/| | | | | | | | | This was used by the custom gas slider on the `send` screen, and it was used to modify the gas value before sending it out, breaking our new custom gas field logic. Removed it and the logic that referred to this now-outdated parameter.
* | Fix infinite loop bugDan Finlay2017-03-011-30/+38
|/
* Reorder rows for better table logicDan Finlay2017-02-281-32/+37
|
* Emit updated tx values on accept clickDan Finlay2017-02-281-0/+7
|
* Remove unused functionDan Finlay2017-02-281-5/+0
|
* Got gas live re-estimatingDan Finlay2017-02-282-20/+23
|
* Align input fields for gas.Kevin Serrano2017-02-281-0/+1
|
* Fix merge conflicts.Kevin Serrano2017-02-282-8/+68
|\
| * LintedDan Finlay2017-02-282-12/+6
| |
| * Add non-working gas recalculating logic to tx-details viewDan Finlay2017-02-281-6/+69
| |
* | Further styling to get hex component working. Fix some typos.Kevin Serrano2017-02-283-16/+44
|/
* Merge branch 'i765-gaslimits' of github.com:MetaMask/metamask-plugin into ↵Kevin Serrano2017-02-283-5/+109
|\ | | | | | | i765-gaslimits
| * Merge branch 'master' into i765-gaslimitsDan Finlay2017-02-283-5/+109
| |\
| | * Improve pending tx blue dot styleDan Finlay2017-02-241-5/+1
| | |
| | * Fix cancel msg signing behavior.Dan Finlay2017-02-241-1/+1
| | |
| | * Make personal sign view look niceDan Finlay2017-02-241-5/+16
| | |
| | * Got personal_sign workingDan Finlay2017-02-242-2/+52
| | | | | | | | | | | | Also fixed bug where signing would not close popup.
| | * Add alternate UI for pending personal_sign messagesDan Finlay2017-02-241-9/+0
| | |
| | * Add personal sign actions and templateDan Finlay2017-02-231-0/+56
| | |
* | | Move input boxes into table and into details component.Kevin Serrano2017-02-283-17/+39
|/ /
* | Make gasPrice accessible to the UI.Kevin Serrano2017-02-251-2/+1
| |
* | Merge github.com:MetaMask/metamask-plugin into i765-gaslimitsKevin Serrano2017-02-241-2/+11
|\|
| * Notices must be scrolled down to proceed from.Kevin Serrano2017-02-211-0/+9
| |
| * Fix typo.Kevin Serrano2017-02-211-2/+2
| |
* | Broke hex decimal input into its own componentDan Finlay2017-02-182-24/+71
| | | | | | | | Also added a new state to try to make UI dev mode work again, but it has other issues, like #1128, that need to be addressed before UI dev mode can be used again.
* | Change state to props, add modifiable fields.Kevin Serrano2017-02-181-9/+33
|/
* Merge branch 'master' into i1089-networkfrontKevin Serrano2017-02-161-0/+9
|\
| * Revert old style message sighingFrankie2017-02-101-0/+9
| |
* | Change networks from lock screen.Kevin Serrano2017-02-161-1/+1
|/
* Merge branch 'dev' into messageManagerCleanUpFrankie2017-02-025-5/+2
|\
| * rename selectedAccount to selectedAddresskumavis2017-01-315-5/+2
| |
* | Clean up message manger includes:Frankie2017-01-293-10/+3
|/ | | | | | | | | Provider egine bump Remove presence of message manger in keyring controller Change the status wording fom conf to approved make Message manager a class fix messages not being apart of the badge re write message manger to better reflect controller pattern
* Merge branch 'dev' into i715-AddJsonImportDan Finlay2017-01-191-1/+1
|\
| * Merge branch 'master' into Version-3.1.0Dan Finlay2017-01-191-1/+1
| |\
| | * Merge branch 'master' into fixSignedVsSubmittedFrankie2017-01-192-6/+5
| | |\
| | * | Fix the dissplay for submitted transactions and the listner wating to hear ↵Frankie2017-01-191-1/+1
| | | | | | | | | | | | | | | | when tx's were included in a block
* | | | Add ability to import v3 JSON walletsDan Finlay2017-01-191-1/+7
|/ / / | | | | | | | | | | | | | | | | | | | | | There is now a menu item labeled "JSON File" for importing, and it can digest either: - v1 MyEtherWallet JSON files - v3 Account files (used by Geth, Mist, and MyEtherWallet). Fixes #715
* | | Merge branch 'i328-MultiVault-v1' into i715-AddImportMenuDan Finlay2017-01-182-36/+81
|\ \ \ | |_|/ |/| |
| * | LintedDan Finlay2016-11-051-5/+4
| | |
| * | Convert buy subview to new tab bar componentDan Finlay2016-11-051-36/+47
| | |
| * | Scaffold new account viewDan Finlay2016-11-051-0/+35
| | |
* | | Merge branch 'master' into devDan Finlay2017-01-172-6/+5
|\ \ \ | |_|/ |/| |
| * | update coinbase info and viewFrankie2017-01-111-4/+4
| | |
| * | remove network Id 2 from explorer link and Add network Id 3Frances Pangilinan2016-12-211-2/+1
| | |
* | | Clean up codeFrankie2017-01-142-30/+35
| | |
* | | Fix sorting and instances where something could be undefinedFrankie2017-01-121-2/+2
| | |
* | | Fix wording and icon of failed txsFrankie2017-01-121-0/+6
| | |
* | | Take some of the tx Logic out of the UI and create a visble state for ↵Frankie2017-01-124-22/+35
| | | | | | | | | | | | pending and unaproved transactions
* | | Linting.Kevin Serrano2017-01-051-1/+0
| | |
* | | Make network somewhat more modular, add new network indicator.Kevin Serrano2017-01-051-5/+2
| | |
* | | Merge remote-tracking branch 'origin/kumavis-readme-gource' into RevertTxManagerDan Finlay2017-01-031-2/+2
|\ \ \
| * \ \ Merge branch 'dev' into TxManagerFrankie2016-12-241-0/+110
| |\ \ \
| * \ \ \ Merge branch 'dev' into TxManagerFrankie2016-12-222-15/+0
| |\ \ \ \
| * | | | | First pass at revision requestsFrances Pangilinan2016-12-221-2/+2
| | | | | |
* | | | | | Fix rendering of loose accountsDan Finlay2016-12-241-1/+3
| |_|/ / / |/| | | |
* | | | | LintedDan Finlay2016-12-211-0/+110
| |/ / / |/| | |
* | | | Merged master into devDan Finlay2016-12-202-15/+0
|\ \ \ \ | | |/ / | |/| |
| * | | Remove morden testnet providerDan Finlay2016-12-162-15/+0
| | | | | | | | | | | | | | | | Instances configured to point at Morden will now point at Ropsten.
* | | | Revert "Interface enhancements"Dan Finlay2016-12-174-12/+35
| | | |
* | | | Better account details viewLuis Iván Cuende2016-12-153-4/+6
| | | |
* | | | Better editable labelLuis Iván Cuende2016-12-152-32/+7
| |/ / |/| |
* | | Fix tx adding codeDan Finlay2016-11-301-25/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | Broken in this commit: https://github.com/MetaMask/metamask-plugin/commit/bc39cd7b894ddf0f3724d4af3cfc30c2638e0939 Synchronous methods were added to an `async.waterfall` array. This commit also removes the delegate call checking, since we concluded it was misinformed.
* | | Merge branch 'master' into devDan Finlay2016-11-241-3/+3
|\| |
| * | Ropsten has sole access to the faucet.Kevin Serrano2016-11-231-3/+3
| | |
| * | Add to changelog.Kevin Serrano2016-11-231-1/+1
| | |
* | | Merge branch 'dev' into dev-cleanupKevin Serrano2016-11-231-2/+2
|\ \ \
| * | | Make ropsten faucet button point at the correct url.Kevin Serrano2016-11-231-2/+2
| | | |
* | | | change all instances of selectedAddress to selectedAccount.Kevin Serrano2016-11-222-2/+2
|/ / /
* | | Merge branch 'dev' into i831-AddRopsten-DevDan Finlay2016-11-229-27/+32
|\ \ \ | |/ / |/| |
| * | Fix lint rules for ternary operator placement.Kevin Serrano2016-11-121-18/+18
| | |
| * | Linting to the max.Kevin Serrano2016-11-129-38/+27
| | |
| * | Merge branch 'master' into i328-MultiVaultkumavis2016-11-111-1/+1
| |\ \
| * \ \ Merge branch 'master' into i328-MultiVaultkumavis2016-11-111-0/+9
| |\ \ \
| * \ \ \ Merge branch 'master' into i328-MultiVaultFrankie2016-11-112-3/+3
| |\ \ \ \ | | |_|_|/ | |/| | |
| * | | | Make identicon tolerant of changing stateDan Finlay2016-11-021-0/+17
| | | | |
| * | | | Make case condition more consistent. Remove extra action. Fix incorrect ↵Kevin Serrano2016-10-311-1/+2
| | | | | | | | | | | | | | | | | | | | display of network.
| * | | | Merge branch 'i328-MultiVault' of github.com:MetaMask/metamask-plugin into ↵Kevin Serrano2016-10-291-7/+6
| |\ \ \ \ | | | | | | | | | | | | | | | | | | i328-MultiVault
| | * | | | Fix identicon renderingDan Finlay2016-10-281-7/+6
| | | | | |
* | | | | | Begin adding Ropsten supportDan Finlay2016-11-222-1/+20
| |_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ropsten links will still not work until Etherscan publishes their ropsten link format. At that time we will need to update ui/lib/account-link.js Otherwise, fixes #831
* | | | | Fix funny looking errors in conf-txFrankie2016-11-111-1/+1
| |_|_|/ |/| | |
* | | | detect tx error - show warning and fix gasLimitkumavis2016-11-111-0/+9
| |_|/ |/| |
* | | Unify warning functions.Kevin G. Serrano2016-11-082-3/+3
|/ /
* / Fix provider menu selection indicationDan Finlay2016-10-261-1/+1
|/
* Create callback and Clean-up detailsFrankie2016-10-141-3/+3
|
* Specify base 10 in bignumberFrankie2016-10-141-1/+1
|
* Fix gasPrice rangeFrankie2016-10-142-14/+9
|
* Merge branch 'master' into i#495CustomGasFieldFrankie2016-10-111-3/+6
|\
| * Removed hex prefix from private key exportDan Finlay2016-10-051-3/+6
| | | | | | | | | | | | For compatibility with Jaxx, MEW, and Geth. Fixes #687
* | Add custom gas field to send pageFrankie2016-10-112-0/+65
|/
* Space out purchase details on ShapeShift formDan Finlay2016-09-161-4/+3
|
* Merge branch 'master' into i675-LoadingBuyDan Finlay2016-09-161-4/+15
|\
| * Fix CHANGELOG.md and restructure onClick eventsFrankie2016-09-161-17/+12
| |
| * lintingFrankie2016-09-161-21/+22
| |
| * Merge branch 'master' into tx-vizFrankie2016-09-163-8/+30
| |\
| * | add tx-viz link to transaction historyFrankie2016-09-161-12/+27
| | |
* | | Show loading indication when selecting ShapeShiftDan Finlay2016-09-162-0/+50
| |/ |/|
* | Clean up some of the codeFrankie2016-09-161-21/+4
| |
* | css - smaller balance warningkumavis2016-09-161-1/+6
| |
* | confTx - add insufficient balance warning messagekumavis2016-09-161-4/+6
| |
* | confTx - show disabled accept btn + add colorskumavis2016-09-161-32/+28
| |
* | Drop the buy button in the confTx view if account does not have enough ethFrankie2016-09-163-8/+44
|/
* Merge branch 'master' into qrCodeFrankie2016-09-141-26/+11
|\
| * PendingTxDetails - partially remove imagify supportkumavis2016-09-141-26/+11
| |
* | Add qrcode-npm to package.json and swap out Qr Code generator api for ↵Frankie2016-09-131-3/+11
|/ | | | node-module
* Revert "Add new eth-lightwallet salting to vault."Frankie2016-09-131-2/+2
|
* Camelcase dataset key for reactDan Finlay2016-09-111-2/+2
|
* Fix fox logo password followingDan Finlay2016-09-091-2/+1
| | | | | | | | The new lightweight svg logo was not following text quite right. The new `lookAt` method was not using the same logic the module was using internally on mouse movement. I simply used that logic and exposed it via the old (expected) API, and got it behaving the way I like.
* Fix new logo related errorsDan Finlay2016-09-091-3/+6
| | | | | | | | | Fixed logo deallocation related bugs, had to patch the logo repo itself to add a stopAnimating method. Also tuned up the logo to more closely resemble the old behavior. - Overlaps the title text - Points nose at cursor, not just front of eyes - Cursor is more "distant" from fox, to avoid extreme angles on edges.
* Merge branch 'master' into AddNewLogoDan Finlay2016-09-097-160/+97
|\
| * Restore broken variable referenceDan Finlay2016-09-091-0/+1
| |
| * Fix double tooltipDan Finlay2016-09-091-10/+1
| |
| * Merge branch 'master' into ModularFiatBalanceDan Finlay2016-09-072-2/+2
| |\
| * | LintedDan Finlay2016-09-071-23/+22
| | |
| * | Add fiat balances to tx conf viewDan Finlay2016-09-071-6/+5
| | |
| * | Got basic fiat display modularizedDan Finlay2016-09-073-22/+26
| | |
| * | Fix fiat-valueDan Finlay2016-09-071-1/+0
| | |
| * | Nearly finished factoring fiat value into eth-balanceDan Finlay2016-09-076-97/+8
| | |
| * | Continuing fiat balance modularizationDan Finlay2016-09-043-73/+106
| | |
* | | Fix logo usage for metamask-logo v2.0.0Dan Finlay2016-09-091-14/+3
| |/ |/| | | | | | | | | | | | | | | - No longer need to check for webGL compliance (svg rendered!) - logo.canvas has been replaced with logo.container, since svg doesn't render to canvas but to an element. Otherwise, worked with very little effort!! Fixes #624
* | Fix capitalization.Kevin Serrano2016-09-071-1/+1
| |
* | Fix typos and refine wording.Kevin Serrano2016-09-071-1/+1
|/
* Fix spelling errorDan Finlay2016-08-271-1/+1
|
* Persist shapeshift form input valuesDan Finlay2016-08-261-3/+12
|
* LintedDan Finlay2016-08-251-1/+0
|
* Improve msg signing paddingDan Finlay2016-08-251-5/+3
|
* Merge branch 'master' into fox-subKevin Serrano2016-08-244-11/+65
|\
| * More lintingDan Finlay2016-08-232-4/+1
| |
| * LintedDan Finlay2016-08-233-7/+3
| |
| * Removed view more button, added account info button.Dan Finlay2016-08-234-17/+58
| | | | | | | | | | | | Also: - Also fixed bug that caused React warning when rendering the tx history. - Renamed 'Transactions' to 'History', since it now has more than that.
| * Merge branch 'master' into i390-TransactionLimitDan Finlay2016-08-237-12/+235
| |\
| * \ Merge branch 'master' into i390-TransactionLimitDan Finlay2016-08-191-8/+9
| |\ \
| * | | Change 'View More' to 'Show More'Dan Finlay2016-08-191-1/+1
| | | |
| * | | LintedDan Finlay2016-08-191-1/+1
| | | |
| * | | Added `view more` button to transaction listDan Finlay2016-08-191-7/+26
| | | | | | | | | | | | | | | | Visible at the end of the transaction list, or if no transactions are listed, displayed right after the `No Transactions` message.
* | | | Linting.Kevin Serrano2016-08-241-2/+1
| | | |
* | | | Created option to pass in static file for fallback for logo.Kevin Serrano2016-08-241-3/+5
| | | |
* | | | Merge branch 'master' into fox-subKevin Serrano2016-08-232-5/+8
|\ \ \ \ | | |_|/ | |/| |
| * | | Fix issue where if given a balance that does not need to be parsed will not ↵Frankie2016-08-202-5/+8
| | | | | | | | | | | | | | | | be parsed
* | | | Modify logic for component update.Kevin Serrano2016-08-201-5/+4
| | | |
* | | | Create replacement logo for non-webglKevin Serrano2016-08-201-2/+8
|/ / /
* | | Merge branch 'master' into shapeshiftTxDan Finlay2016-08-191-8/+9
|\ \ \ | | |/ | |/|
| * | Fix rounding issues.Kevin Serrano2016-08-191-8/+9
| |/
* | Remove "+" from shapeshift tx and change wording in CHANGELOGFrankie2016-08-191-21/+7
| |
* | Make ballance teal for shapeshift tx and add to change logFrankie2016-08-192-3/+5
| |
* | Create a ShapeShift tx in tx HistoryFrankie2016-08-192-55/+90
| |
* | Add api Public keyFrankie2016-08-191-0/+2
| |
* | Merge branch 'master' into shapeshiftTxFrankie2016-08-194-2/+152
|\|
| * Added compliance for tests and properly accounts for N/A conversions.Kevin Serrano2016-08-171-1/+1
| |
| * Lint.Kevin Serrano2016-08-171-4/+5
| |
| * Remove logs.Kevin Serrano2016-08-171-3/+0
| |
| * Hide conversions when API fails.Kevin Serrano2016-08-171-29/+42
| |
| * Add fallback to API failure.Kevin Serrano2016-08-171-1/+5
| |
| * linting and ignoring.Kevin Serrano2016-08-172-2/+1
| |
| * Divided eth components for tx and account detail.Kevin Serrano2016-08-172-14/+126
| |
| * Merge master.Kevin Serrano2016-08-166-16/+657
| |\
| | * Add margin to "go to test faucet" button and show more of the address on qr ↵Frankie2016-08-152-1/+8
| | | | | | | | | | | | code page
| * | Fix default value. Add loading indication for async.Kevin Serrano2016-08-101-3/+1
| | |
| * | Get fiat numbers rendering on tooltip. Need to find way to create line breaks.Kevin Serrano2016-08-061-2/+21
| | |
* | | WIP: ShapeShift txFrankie2016-08-194-4/+198
| |/ |/|
* | Remove ethereum classic providerDan Finlay2016-08-152-15/+0
| | | | | | | | Fixes #542