aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pending-tx.js
Commit message (Collapse)AuthorAgeFilesLines
* Lowered minimum gas price to 1 gweiDan Finlay2017-07-201-1/+1
|
* change “ACCEPT” to “SUBMIT”frankiebee2017-06-301-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
|
* Merge branch 'master' into gasupdaterDan Finlay2017-06-131-13/+37
|\
| * Fix bug that prevented publishing contractsDan Finlay2017-06-061-1/+1
| |
| * Merge pull request #1545 from MetaMask/inValidAddressFixkumavis2017-06-061-3/+14
| |\ | | | | | | Dissallow transactions to be sent to 0x000...
| | * 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-061-1/+13
| | |
| * | Move address copying into reusable componentDan Finlay2017-06-051-20/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | "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
|
* Fix bug where submit was enabled when invalid params were filled out.Kevin Serrano2017-05-251-4/+10
|
* Fix test, create new value for precision/scaleKevin Serrano2017-05-241-0/+2
|
* Modify test, replace clone package.Kevin Serrano2017-05-181-7/+4
|
* Fix merge conflicts.Kevin Serrano2017-05-171-38/+55
|\
| * Fix fiat renderingDan Finlay2017-05-171-2/+7
| | | | | | | | | | | | | | | | 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.
| * LintedDan Finlay2017-05-161-3/+3
| |
| * Verify updating gas value updatesDan Finlay2017-05-161-2/+0
| |
| * Got test failing nearly correctlyDan Finlay2017-05-161-1/+12
| |
| * Remove redux dependency from eth-balance and its dependent treeDan Finlay2017-05-131-0/+2
| | | | | | | | For better unit testability of the conf-tx view.
| * Break up pending-tx component for better unit testabilityDan Finlay2017-05-111-38/+39
| |
* | Fix reset button.Kevin Serrano2017-05-171-5/+7
| |
* | Complete transition into BN.Kevin Serrano2017-05-171-13/+14
|/
* Redefine txmeta when submitting.Kevin Serrano2017-05-091-1/+1
|
* 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
* make buy button greenfrankiebee2017-04-241-1/+1
|
* 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.
* 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-241-3/+5
|
* Fix a couple thingsDan Finlay2017-03-241-10/+18
| | | | | | | | 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
|
* Fix some broken refsDan Finlay2017-03-241-2/+2
|
* Combine pending-tx-details component into pending-tx-detailsDan Finlay2017-03-241-6/+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.
* Got basic validations workingDan Finlay2017-03-231-56/+77
|
* Prevent submission of invalid gas parameters.Kevin Serrano2017-03-021-2/+16
|
* Various improvements to gas input.Kevin Serrano2017-03-021-8/+8
|
* Add reset button to reset gas fields.Kevin Serrano2017-03-011-1/+9
|
* LintedDan Finlay2017-02-281-5/+0
|
* Move input boxes into table and into details component.Kevin Serrano2017-02-281-16/+0
|
* Make gasPrice accessible to the UI.Kevin Serrano2017-02-251-2/+1
|
* Broke hex decimal input into its own componentDan Finlay2017-02-181-24/+22
| | | | 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
|
* Fix funny looking errors in conf-txFrankie2016-11-111-1/+1
|
* detect tx error - show warning and fix gasLimitkumavis2016-11-111-0/+9
|
* 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-161-5/+32
|
* Restore button naming consistencyDan Finlay2016-07-081-2/+2
|
* Refined tx confirmation button stylesDan Finlay2016-07-081-7/+19
|
* Implement tx confirmation style refinementsDan Finlay2016-07-081-8/+0
|
* LintedDan Finlay2016-07-071-4/+2
|
* Fleshed out pending tx viewDan Finlay2016-07-071-1/+5
|
* Unify wording for transaction options (#369)Kevin Serrano2016-06-301-3/+3
| | | | | | | | * Unify wording for transaction options. * Modify changelog. * Fix wording and spacing.
* clean - appease the linting machinekumavis2016-06-251-21/+8
|
* svg notif now work for msg signatureskumavis2016-06-251-9/+1
|
* breakout pending-tx-detailskumavis2016-06-251-28/+6
|
* pending-tx pass the identicon pref onkumavis2016-06-241-0/+1
|
* tx-conf add non-interactive mode for notificationkumavis2016-06-241-8/+17
|
* svg notifications - remove unneeded deps and clean codekumavis2016-06-241-5/+5
|
* initial svg notificationskumavis2016-06-231-5/+11
|
* Manually lintedDan Finlay2016-06-221-1/+0
|
* Auto lintedDan Finlay2016-06-221-5/+4
|
* Improve tx UIDan Finlay2016-05-041-0/+7
|
* Add UI for Signing MessagesDan Finlay2016-05-041-0/+71
Calls to `eth.sign` are now transiently persisted in memory, and displayed in a chronological stack with pending transactions (which are still persisted to disk). This allows the user a method to sign/cancel transactions even if they miss the Chrome notification. Improved a lot of the view routing, to avoid cases where routes would show an empty account view, or transition to the accounts list when it shouldn't. Broke the transaction approval view into a couple components so messages and transactions could have their own templates.