aboutsummaryrefslogtreecommitdiffstats
path: root/ui/lib/tx-helper.js
Commit message (Collapse)AuthorAgeFilesLines
* Restore sort order fixDan Finlay2017-07-251-1/+4
|
* Replace ui with responsive-uiDan Finlay2017-07-251-5/+1
|
* Fix transaction confirmation orderingDan Finlay2017-07-181-1/+5
| | | | | | Newest tx or message will now always appear last, and a new tx proposed after the user has a confirmation box open will never change the confirmation to a different tx proposed. Fixes #1637
* Filter txs by txMeta network value in account detailkumavis2017-03-291-2/+2
|
* Detect tx network from txMetaDan Finlay2017-03-291-1/+1
|
* Got personal_sign workingDan Finlay2017-02-241-0/+1
| | | | Also fixed bug where signing would not close popup.
* Add personal sign actions and templateDan Finlay2017-02-231-5/+8
|
* Fix UI Dev Mode for Tx ApprovalDan Finlay2017-02-211-0/+5
| | | | | | | | | | The state object had been changed, but our mock states for tx approval were using the old keys. Rather than try to muck about and figure out each and every change, I've re-generated a UI dev state for tx approval, which should help @zanibas on his current project. We can continue adding new dev states as needed from here. If anyone catches a state that doesn't render correctly, it's worth checking if a new snapshot doesn't solve things. Debugged by adding new debugging loggers, and I've left them in place for easier future debugging.
* Clean up message manger includes:Frankie2017-01-291-3/+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
* Add network checks for unconfirmed TxsFrankie2016-09-091-2/+2
|
* Auto lintedDan Finlay2016-06-221-1/+1
|
* Add UI for Signing MessagesDan Finlay2016-05-041-0/+8
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.