aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
Commit message (Collapse)AuthorAgeFilesLines
* add a `x` close button to gas calc loding screen on conf-txfrankiebee2018-01-181-1/+11
|
* Add network-indicator classname to network loading spinnerThomas2018-01-181-1/+1
|
* Merge pull request #2706 from danjm/MM-fix-buy-cancel-buttonThomas Huang2017-12-151-1/+1
|\ | | | | Fixes the cancel button in the buy screen to take the user home.
| * Fixes the cancel button in the buy screen to take the user home.Dan2017-12-091-1/+1
| |
* | Show watched tokens with no balanceDan Finlay2017-12-131-4/+1
|/
* Add 10% price bump to retry attempts.Dan Finlay2017-12-071-1/+3
| | | | | Turns out geth requires at least a 10% price bump to replace txs: https://github.com/ethereum/go-ethereum/blob/9619a610248e9630968ba1d9be8e214b645c9c55/core/tx_pool.go#L133
* Show retry button on submitted transactions greater than 30 seconds, add ↵Alexander Tseung2017-12-071-1/+7
| | | | hover styling
* Merge branch 'RetryTransaction' of github.com:MetaMask/metamask-plugin into ↵Dan Finlay2017-12-071-4/+4
|\ | | | | | | RetryTransaction
| * Fix styling of Retry butonAlexander Tseung2017-12-071-4/+4
| |
* | Enforce retry tx at minimum gas of previous txDan Finlay2017-12-071-1/+9
|/
* Connect to redux for retryTransactionAlexander Tseung2017-12-071-2/+10
|
* Add button to retry transactionAlexander Tseung2017-12-071-34/+69
|
* Add retry background method and actionDan Finlay2017-12-071-1/+9
|
* Merge pull request #2476 from MetaMask/100MweiMinGasPriceDan Finlay2017-10-262-12/+15
|\ | | | | Reduce minimum gas price to 100 MWEI
| * Add labels to clarify warning.Kevin Serrano2017-10-261-4/+4
| |
| * Account for non-submitted mins and maxKevin Serrano2017-10-261-2/+2
| |
| * Add clarifying comment about wei conversion.Kevin Serrano2017-10-261-0/+1
| |
| * Cut out intermediary wei steps.Kevin Serrano2017-10-261-4/+2
| |
| * Remove unneeded toString conversions.Kevin Serrano2017-10-261-2/+2
| |
| * Move upsize conversions for input warning at front of fn.Kevin Serrano2017-10-261-3/+5
| |
| * Fix mismatched decimal/hex conversion in pending-txKevin Serrano2017-10-261-1/+1
| |
| * Resolve merge conflict.Kevin Serrano2017-10-251-1/+1
| |\
| | * Reduce minimum gas price to 100 MWEIDan Finlay2017-10-251-7/+7
| | | | | | | | | | | | Also now representing gas price in MWEI, because our current bn inputs actually aren't tolerant of minimums less than 1 unit.
| * | Fix for gas price to be lowered.Kevin Serrano2017-10-252-11/+13
| |/
* | Merge pull request #2422 from watilde/fixes-lintKevin Serrano2017-10-254-8/+6
|\ \ | |/ |/| Fixes lint warnings
| * Fix lint warningsDaijiro Wachi2017-10-224-8/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed warnings: ```md app/scripts/controllers/computed-balances.js + 35:27 warning Missing space before function parentheses space-before-function-paren + 41:14 warning 'address' is never reassigned. Use 'const' instead prefer-const + 61:9 warning 'updater' is never reassigned. Use 'const' instead prefer-const + 68:11 warning 'newState' is never reassigned. Use 'const' instead prefer-const app/scripts/controllers/network.js + 104:29 warning Missing space before function parentheses space-before-function-paren app/scripts/lib/createLoggerMiddleware.js + 4:32 warning Missing space before function parentheses space-before-function-paren + 15:2 warning Newline required at end of file but not found eol-last app/scripts/lib/createOriginMiddleware.js + 4:32 warning Missing space before function parentheses space-before-function-paren + 9:2 warning Newline required at end of file but not found eol-last app/scripts/lib/createProviderMiddleware.js + 5:34 warning Missing space before function parentheses space-before-function-paren + 13:2 warning Newline required at end of file but not found eol-last app/scripts/lib/events-proxy.js + 1:50 warning Missing space before function parentheses space-before-function-paren + 31:2 warning Newline required at end of file but not found eol-last app/scripts/lib/nodeify.js + 2:22 warning Missing space before function parentheses space-before-function-paren + 2:24 warning Missing space before opening brace space-before-blocks + 5:18 warning Missing space before function parentheses space-before-function-paren + 5:20 warning Missing space before opening brace space-before-blocks app/scripts/lib/pending-balance-calculator.js + 16:19 warning Missing space before function parentheses space-before-function-paren app/scripts/lib/pending-tx-tracker.js + 85:11 warning '||' should be placed at the end of the line operator-linebreak + 87:11 warning '||' should be placed at the end of the line operator-linebreak + 88:11 warning '||' should be placed at the end of the line operator-linebreak + 90:11 warning '||' should be placed at the end of the line operator-linebreak + 91:11 warning '||' should be placed at the end of the line operator-linebreak app/scripts/lib/port-stream.js + 3:22 warning Missing space before function parentheses space-before-function-paren + 3:24 warning Missing space before opening brace space-before-blocks app/scripts/lib/tx-gas-utils.js + 84:2 warning Newline required at end of file but not found eol-last app/scripts/lib/tx-state-history-helper.js + 12:37 warning Missing space before function parentheses space-before-function-paren + 23:30 warning Missing space before function parentheses space-before-function-paren + 30:23 warning Missing space before function parentheses space-before-function-paren + 35:28 warning Missing space before function parentheses space-before-function-paren + 41:2 warning Newline required at end of file but not found eol-last app/scripts/lib/tx-state-manager.js + 94:13 warning 'value' is never reassigned. Use 'const' instead prefer-const ui/app/reducers.js + 45:7 warning 'state' is never reassigned. Use 'const' instead prefer-const + 53:7 warning 'stateString' is never reassigned. Use 'const' instead prefer-const ui/lib/tx-helper.js + 27:2 warning Newline required at end of file but not found eol-last ui/app/components/account-dropdowns.js + 163:1 warning More than 2 blank lines not allowed no-multiple-empty-lines ui/app/components/menu-droppo.js + 22:7 warning 'style' is never reassigned. Use 'const' instead prefer-const ui/app/components/shapeshift-form.js + 135:11 warning '&&' should be placed at the end of the line operator-linebreak ui/app/components/typed-message-renderer.js + 35:25 warning Missing space before function parentheses space-before-function-paren + 42:2 warning Newline required at end of file but not found eol-last mascara/server/index.js + 11:42 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 12:36 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 13:33 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 14:40 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 20:29 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 21:29 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 26:40 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat ```
* | Merge branch 'firsttimeflow' of ↵tmashuang2017-10-246-0/+16
|\ \ | | | | | | | | | https://github.com/chikeichan/metamask-plugin into firsttimeflow
| * | Fix linterChi Kei Chan2017-10-216-0/+16
| |/
* / Add support for alternative ENS TLDsDan Finlay2017-10-231-1/+1
|/ | | | Fixes #2428
* Move etherscan link logic into moduleDan Finlay2017-10-143-3/+3
|
* Merge pull request #2296 from MetaMask/precision-fixDan Finlay2017-10-101-4/+7
|\ | | | | Fix precision to account for small wei increase.
| * Fix precision to account for small wei increase.Kevin Serrano2017-10-061-4/+7
| |
* | More appropriate stylingSergey Ukustov2017-10-081-1/+2
| |
* | Merge branch 'master' into SignTypedDataDan Finlay2017-10-062-15/+25
|\|
| * Revert to normal balances.Kevin Serrano2017-10-051-3/+3
| |
| * ui - tx history - simplify error+warning display codekumavis2017-10-031-12/+22
| |
* | Respect code styleSergey Ukustov2017-09-301-2/+1
| |
* | Add eth_signTypedData handlerSergey Ukustov2017-09-303-0/+147
|/
* Merge branch 'master' into new-currency-testkumavis2017-09-281-3/+3
|\
| * Merge branch 'master' into AddBalanceControllerDan Finlay2017-09-234-28/+43
| |\
| * \ Merge branch 'master' into AddBalanceControllerDan Finlay2017-09-141-9/+19
| |\ \
| * | | Use computed balance for tx confirmationDan Finlay2017-09-141-3/+3
| | | |
* | | | Account for undefined currencies.Kevin Serrano2017-09-271-1/+2
| | | |
* | | | Comply with current currency API and add additional styling.Kevin Serrano2017-09-191-1/+1
| |_|/ |/| |
* | | Merge branch 'master' into fix-tooltipDan Finlay2017-09-191-25/+40
|\ \ \
| * | | Haha silly me, only when gas is estimated and not explicit.Kevin Serrano2017-09-141-1/+1
| | | |
| * | | Lower warning threshold for high tx fee to account for fluctuating ↵Kevin Serrano2017-09-141-1/+2
| | | | | | | | | | | | | | | | blockGasLimits
| * | | Add warning of higher failure risk since app proposed gasLimit.Kevin Serrano2017-09-141-25/+39
| | |/ | |/|
* / | fixed position of tooltips to avoid overflow.Kevin Serrano2017-09-133-3/+3
|/ /
* | Fix typo.Kevin Serrano2017-09-121-2/+2
| |
* | Add some styling.Kevin Serrano2017-09-121-0/+3
| |
* | Move function as util function.Kevin Serrano2017-09-121-16/+2
| |
* | Basic private key download file functionality.Kevin Serrano2017-09-121-9/+30
|/
* Show reject all only when tx count is > 1Kevin Serrano2017-09-121-2/+3
|
* Merge github.com:MetaMask/metamask-extension into rejectallunapprovedKevin Serrano2017-09-121-3/+8
|\
| * Add cursor on hover on loading. Change some wording.Kevin Serrano2017-09-081-3/+3
| |
| * Add caret to indicate network is dropdown.Kevin Serrano2017-09-081-0/+5
| |
* | Convert icon to button.Kevin Serrano2017-09-081-0/+11
| |
* | Fold submit and buy ether into one button slotKevin Serrano2017-09-081-15/+9
|/
* Place object property retrieval inside try-catchKevin Serrano2017-09-081-2/+3
|
* Change expected type to array.Kevin Serrano2017-09-081-1/+1
|
* Merge branch 'master' into readd-looseKevin Serrano2017-09-061-2/+13
|\
| * Make eth_sign deprecation warning more usefulDan Finlay2017-09-061-2/+13
| | | | | | | | Link to descriptive article that demonstrates the new preferred method.
* | Resolve merge conflict from masterKevin Serrano2017-09-065-40/+36
|\|
| * Multiple tokens shows the amount when greater than 1Thomas Huang2017-08-301-1/+1
| |
| * Remove eth-tx-viz link from tx history iconsDan Finlay2017-08-241-10/+1
| |
| * Fix eth sign formattingDan Finlay2017-08-182-2/+5
| |
| * Fallback to ethplorer linkDan Finlay2017-08-171-1/+18
| |
| * Remove dead codeDan Finlay2017-08-171-14/+0
| |
| * Remove default tokensDan Finlay2017-08-171-11/+1
| |
| * Cleanup stray logs and lintsdtsui2017-08-111-5/+1
| |
| * Fix text overflow for dropdown components flagged by @frankiebeesdtsui2017-08-111-1/+14
| |
* | Readd loose label onto accounts.Kevin Serrano2017-08-102-2/+20
|/
* ui - buy eth - formatting and moved network names to configkumavis2017-08-101-23/+19
|
* lint fixkumavis2017-08-091-1/+1
|
* ui - buy eth - add dharma beta to kovankumavis2017-08-091-12/+22
|
* ui - buy button view - refactorkumavis2017-08-091-46/+104
|
* Merge branch 'master' into greenkeeper/initialkumavis2017-08-093-73/+92
|\
| * Merge pull request #1877 from MetaMask/hotfix/mobile-buy-layoutkumavis2017-08-092-70/+80
| |\ | | | | | | Improve layout for legacy buy screen
| | * Fix layout issues flagged by @tmashuangsdtsui2017-08-091-69/+79
| | |
| | * Make buy ui more central to the screensdtsui2017-08-091-1/+1
| | |
| * | Merge branch 'master' into transactionControllerRefractorfrankiebee2017-08-0814-156/+592
| |\|
| * | fixed: showing tx-s as errors vs. warningfrankiebee2017-08-051-3/+12
| | |
* | | Merge branch 'master' of github.com:MetaMask/metamask-extension into ↵kumavis2017-08-0814-156/+592
|\ \ \ | | |/ | |/| | | | greenkeeper/initial
| * | Lint menu-dropposdtsui2017-08-051-31/+24
| | |
| * | Bring menu-droppo component into project, remove as a dependencysdtsui2017-08-052-1/+138
| | |
| * | Re-enable css transitions for dropdowns in header, needs menu-droppo library ↵sdtsui2017-08-052-1/+4
| | | | | | | | | | | | update
| * | ui - dropdown - use Object.assign syntax to appease coverage parserkumavis2017-08-041-3/+2
| | |
| * | Adjust padding of accountSwitcher dropdownsdtsui2017-08-041-4/+7
| | |
| * | Adjust top and bottom padding of accountSwitchersdtsui2017-08-041-2/+9
| | |
| * | Lint ui/appsdtsui2017-08-042-4/+4
| | |
| * | Allow new accounts selector to handle clickssdtsui2017-08-041-2/+2
| | |
| * | Increase size of accountSelection dropdownsdtsui2017-08-041-8/+22
| | |
| * | Increase size of settings dropdown and account settings dropdownsdtsui2017-08-042-2/+2
| | |
| * | Increase size of network dropdownsdtsui2017-08-041-1/+2
| | |
| * | Add note with previous fa-angle-down for future refactorsdtsui2017-08-041-0/+2
| | |
| * | Position account switcher icon back in app headersdtsui2017-08-041-2/+6
| | |
| * | Disable account selection dropdown from account detailssdtsui2017-08-041-5/+15
| | |
| * | Fix wonky widths for notices.Kevin Serrano2017-08-041-1/+5
| | |
| * | Add maximum width for private key revealKevin Serrano2017-08-041-1/+1
| | |
| * | Add QR functionalityKevin Serrano2017-08-041-0/+13
| | |
| * | lint fixkumavis2017-08-021-2/+2
| | |
| * | Fix dropdown toggle behavior - account dropdownssdtsui2017-07-291-2/+16
| | |
| * | Correct token pluralization for one tokenDan Finlay2017-07-281-1/+3
| | |
| * | Set min gas price to 1 gweiDan Finlay2017-07-281-1/+1
| | |
| * | Ensure loading indication is full screenDan Finlay2017-07-281-0/+1
| | |
| * | Fix loading indication placementDan Finlay2017-07-281-1/+1
| | |
| * | Remove object spread syntaxDan Finlay2017-07-271-7/+9
| | |
| * | Set initial scale for mobile.Dan Finlay2017-07-271-1/+3
| | |
| * | Re-center network dropdownsdtsui2017-07-271-1/+2
| | |
| * | Make account selection dropdown menu scrollable when too large for viewsdtsui2017-07-271-0/+2
| | |
| * | Remove Account Settings item from optionsMenu, unnecessarysdtsui2017-07-271-8/+0
| | |
| * | Lots of flex rearrangement on account detail viewDan Finlay2017-07-265-52/+58
| | | | | | | | | | | | Includes removal of ReactCssTransitionGroup for a simpler UI refactor.
| * | Replace ui with responsive-uiDan Finlay2017-07-257-104/+329
| | |
| * | Merge branch 'master' into NewUIDan Finlay2017-07-211-1/+1
| |\|
| | * Lowered minimum gas price to 1 gweiDan Finlay2017-07-201-1/+1
| | |
| * | Move responsive ui into its own folder for easier mergesDan Finlay2017-07-2140-0/+4069
| | |
| * | Make folder for responsive UIDan Finlay2017-07-0440-4072/+0
| | |
* | | Merge branch 'master' of github.com:MetaMask/metamask-extension into ↵kumavis2017-08-041-1/+1
| | | | | | | | | | | | greenkeeper/initial
* | | lint fixeskumavis2017-08-042-2/+2
| |/ |/|
* | Reenable Default Token ListDan Finlay2017-07-061-2/+0
|/ | | | Looks pretty clear to me now that the heavy traffic spike was not this feature, but was the EOS crowdsale. Now that we've mitigated their traffic spike, I think we can safely re-introduce this feature.
* Add menu carrat next to network searching indicatorDan Finlay2017-07-041-7/+16
|
* Merge branch 'master' into NoPopularTOkensThomas Huang2017-07-011-0/+2
|\
| * Remove send buttonDan Finlay2017-07-011-0/+2
| | | | | | | | Some token precisions are not respected by TokenFactory, so it's not sufficient for a default send form. Removing for now.
* | Stop loading popular tokens by defaultDan Finlay2017-07-011-1/+3
|/ | | | Improves performance when loading the token tab.
* Merge pull request #1700 from MetaMask/StyleImprovementsKevin Serrano2017-06-301-0/+1
|\ | | | | Add padding to token messages
| * Add padding to token messagesDan Finlay2017-06-291-0/+1
| |
* | change “ACCEPT” to “SUBMIT”frankiebee2017-06-301-1/+1
|/
* Merge pull request #1634 from MetaMask/i784-SendTokenButtonThomas Huang2017-06-291-7/+29
|\ | | | | Add send token button (link to TokenFactory)
| * Merge branch 'i1616-AddTokenAdding' into i784-SendTokenButtonDan Finlay2017-06-281-1/+3
| |\
| * \ Merge branch 'i1616-AddTokenAdding' into i784-SendTokenButtonDan Finlay2017-06-241-7/+4
| |\ \
| * \ \ Merge branch 'master' into i784-SendTokenButtonDan Finlay2017-06-231-4/+18
| |\ \ \
| * | | | Fix propagationDan Finlay2017-06-201-1/+1
| | | | |
| * | | | Add send button to TokenFactoryDan Finlay2017-06-201-7/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A simple solution to a temporary token send screen: Linking to EtherScan. Will hold us over until we make our own token send view.
* | | | | Merge pull request #1620 from MetaMask/i1616-AddTokenAddingThomas Huang2017-06-292-32/+78
|\ \ \ \ \ | | |_|_|/ | |/| | | Add ability to add tokens to token list
| * | | | Support other network linksDan Finlay2017-06-281-1/+3
| | |_|/ | |/| |
| * | | Merge branch 'master' into i1616-AddTokenAddingDan Finlay2017-06-231-4/+18
| |\ \ \ | | | |/ | | |/|
| * | | Reduce token list clutter by only showing held tokensDan Finlay2017-06-201-7/+4
| | |/ | |/| | | | | | | We could change this when we allow hiding/removing tokens, but for now, this is a simple and pleasant solution.
| * | Add ability to add tokens to token listDan Finlay2017-06-161-10/+30
| | | | | | | | | | | | Fiex #1616
| * | Merge branch 'AddTokenList' into AddingTokensDan Finlay2017-06-161-15/+7
| |\ \
| * | | Create add token button and template viewDan Finlay2017-06-151-22/+49
| | | |
* | | | Merge pull request #1675 from MetaMask/warning-fixesDan Finlay2017-06-281-1/+1
|\ \ \ \ | | | | | | | | | | React Warning Fixes
| * | | | Fix react warning for keys on ens address bookKevin Serrano2017-06-271-1/+1
| | |_|/ | |/| |
* | | | Change disabling button as state property.Kevin Serrano2017-06-271-5/+4
| | | |
* | | | Prevent users from accidentally submitting two transactions by disabling button.Kevin Serrano2017-06-271-0/+3
|/ / /
* | / Add better event lifecycle management to token list.Dan Finlay2017-06-201-4/+18
| |/ |/| | | | | | | Token list now renders errors when a token lookup fails. Also now cleans up event listeners when re-initializing the token list.
* | Merge remote-tracking branch 'origin/master' into AddTokenListDan Finlay2017-06-161-15/+7
|\ \ | |/ |/|
| * Merge pull request #1600 from MetaMask/i1554-ensSymFixKevin Serrano2017-06-141-15/+7
| |\ | | | | | | ENS symbol renders on proper networks
| | * Cleanup zero addresses.Kevin Serrano2017-06-141-5/+6
| | |
| | * Fix check icon appearing in inappropriate situations.Kevin Serrano2017-06-131-13/+4
| | |
* | | Multiple loading style improvementsDan Finlay2017-06-151-1/+4
| | | | | | | | | | | | | | | | | | | | | - When seeking network, show a full screen loading indication + message. - Network menu is still accessible "over" this indication. - Top Menu-Droppo components now slide *under* the menu bar like they should. - Loading indication opacity increased to increase message legibility.
* | | Remove excessive logDan Finlay2017-06-151-1/+0
| | |
* | | Add no tokens messageDan Finlay2017-06-151-9/+13
| | |
* | | Vertically center loading indicationDan Finlay2017-06-151-2/+10
| | |
* | | Refresh token balance on network changeDan Finlay2017-06-151-5/+22
| | |
* | | Persist selected account tabDan Finlay2017-06-151-2/+13
| | | | | | | | | | | | Also improve error handling with token balances.
* | | Auto populate token list with popular token balancesDan Finlay2017-06-144-19/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | Half implements #175 Things to do: - Add ability to add tokens to the list. - Persist the token tab selection (so it is an implicit preference) - Check what's up with the token-tracker polling, it seems like it is not waiting the interval.
* | | Merge branch 'master' into AddTokenListDan Finlay2017-06-1321-311/+646
|\| |
| * | only prefix ethereum addressfrankiebee2017-06-131-5/+6
| | |
| * | prefix the address with "ethereum:"frankiebee2017-06-131-2/+1
| |/
| * Merge pull request #1574 from MetaMask/internfixDan Finlay2017-06-131-1/+1
| |\ | | | | | | Wording fix for notice button
| | * Modify wording to new accept.Kevin Serrano2017-06-101-1/+1
| | |
| | * Merge branch 'master' of github.com:nihar97/metamask-plugin into internfixKevin Serrano2017-06-091-1/+1
| | |\
| | | * continue button changed to agreeNihar2017-05-171-1/+1
| | | |
| * | | Merge branch 'master' into gasupdaterDan Finlay2017-06-133-13/+87
| |\| |
| | * | Fix bug that prevented publishing contractsDan Finlay2017-06-061-1/+1
| | | |
| | * | Merge pull request #1545 from MetaMask/inValidAddressFixkumavis2017-06-062-3/+18
| | |\ \ | | | | | | | | | | Dissallow transactions to be sent to 0x000...
| | | * | Fix for quick switch on ENS namesfrankiebee2017-06-061-0/+2
| | | | |
| | | * | set the ensResolution to an invalid address if an error ocurs durring look upfrankiebee2017-06-061-0/+1
| | | | |
| | | * | Fix linting errorfrankiebee2017-06-061-1/+0
| | | | |
| | | * | move address check to util.isValidAddressfrankiebee2017-06-061-2/+2
| | | | |
| | | * | Fix punctuationfrankiebee2017-06-061-1/+1
| | | | |
| | | * | Dissallow transactions to be sent to 0x0000000000000000000000000000000000000000frankiebee2017-06-062-1/+14
| | | | |
| | * | | Remove dead style codeDan Finlay2017-06-051-3/+0
| | | | |
| | * | | Move address copying into reusable componentDan Finlay2017-06-052-20/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | "copyable" component allows any elements to be wrapped to include: - a tool tip that changes/debounces its label when clicked. - a customizable copyable value. Fixes #1539
| | * | | Add copy links to mini tx panelsDan Finlay2017-06-051-10/+38
| | |/ /
| * / / Update gasblocklimit params with every block.Kevin Serrano2017-06-031-2/+9
| |/ /
| * | Add max gas limit to UIKevin Serrano2017-05-251-0/+2
| | |
| * | Minor cleanup of lintKevin Serrano2017-05-251-1/+0
| | |
| * | Minor cleanupKevin Serrano2017-05-251-2/+2
| | |
| * | Fix bug where submit was enabled when invalid params were filled out.Kevin Serrano2017-05-252-5/+11
| | |
| * | Cleanup code.Kevin Serrano2017-05-251-7/+15
| | |
| * | Fix test, create new value for precision/scaleKevin Serrano2017-05-242-3/+5
| | |
| * | Merge branch 'master' into i1412-decimalizethegasKevin Serrano2017-05-243-6/+31
| |\ \
| | * | Tolerate nonces of any formatDan Finlay2017-05-231-2/+2
| | | |
| | * | Render txs with no nonceDan Finlay2017-05-231-1/+1
| | | |
| | * | LintDan Finlay2017-05-222-6/+3
| | | |
| | * | Label the pending tx icon with a tooltipDan Finlay2017-05-221-5/+12
| | | |
| | * | Add transaction number (nonce) to tx listDan Finlay2017-05-221-0/+21
| | | |
| | * | Fix decimal toleranceDan Finlay2017-05-181-1/+1
| | | |
| | * | Fix bug where decimals in gas inputs gave strange resultsDan Finlay2017-05-181-1/+1
| | |/
| * | Increase accuracy of our rounding schemes.Kevin Serrano2017-05-241-3/+26
| | |
| * | Modify test, replace clone package.Kevin Serrano2017-05-181-7/+4
| | |
| * | Fix merge conflicts.Kevin Serrano2017-05-1710-76/+100
| |\|
| | * Fix fiat renderingDan Finlay2017-05-175-14/+20
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #1439. When reorganizing fiat-value component to not use global state, had missed its necessary `currentCurrency` parameter. This now passes it in wherever it's used.
| | * Merge pull request #1430 from MetaMask/i1407-FixNonEditingTxFormkumavis2017-05-168-66/+84
| | |\ | | | | | | | | Add test around conf-tx view's gas editing.
| | | * 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
| | | |
| | * | Remove all traces of testnetThomas Huang2017-05-162-2/+2
| | | |
| | * | Change default network to rinkebyThomas Huang2017-05-162-5/+5
| | |/
| * | Fix reset button.Kevin Serrano2017-05-172-8/+10
| | |
| * | Complete transition into BN.Kevin Serrano2017-05-172-13/+157
| |/
| * 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
| |
* | Add placeholder etherscan token iconsDan Finlay2017-04-252-2/+10
| |
* | Get token list looking okDan Finlay2017-04-224-10/+120
| |
* | Add functional but ugly and hard-coded token listDan Finlay2017-04-214-13/+73
|/
* 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
| |