aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pending-msg.js
Commit message (Collapse)AuthorAgeFilesLines
* Removes t from props via metamask-connect and instead places it on context ↵Dan2018-03-291-6/+12
| | | | via a provider.
* i18n redux solution doesn't require importing t() and passing state to each ↵Dan2018-03-221-7/+7
| | | | t() call; t is just available on props.
* Handle i18n with redux.Dan2018-03-161-6/+6
|
* get t imported in all files currently using i18nNick Doiron2018-01-251-0/+1
|
* first steps to i18nNick Doiron2018-01-231-9/+5
|
* Make eth_sign deprecation warning more usefulDan Finlay2017-09-061-2/+13
| | | | Link to descriptive article that demonstrates the new preferred method.
* Fix eth sign formattingDan Finlay2017-08-181-1/+4
|
* Revert old style message sighingFrankie2017-02-101-0/+9
|
* clean - appease the linting machinekumavis2016-06-251-6/+1
|
* svg notif now work for msg signatureskumavis2016-06-251-24/+8
|
* Manually lintedDan Finlay2016-06-221-3/+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/+65
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.