aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/notifications.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/scripts/lib/notifications.js')
-rw-r--r--app/scripts/lib/notifications.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/scripts/lib/notifications.js b/app/scripts/lib/notifications.js
index 2b7cbfe66..0b55417b2 100644
--- a/app/scripts/lib/notifications.js
+++ b/app/scripts/lib/notifications.js
@@ -3,6 +3,7 @@ const uiUtils = require('../../../ui/app/util')
var notificationHandlers = {}
module.exports = {
+ createUnlockRequestNotification: createUnlockRequestNotification,
createTxNotification: createTxNotification,
createMsgNotification: createMsgNotification,
}
@@ -24,6 +25,19 @@ chrome.notifications.onClosed.addListener(function(notificationId){
})
// creation helper
+function createUnlockRequestNotification(opts){
+ var message = 'An Ethereum app has requested a signature. Please unlock your account.'
+
+ var id = createId()
+ chrome.notifications.create(id, {
+ type: 'basic',
+ iconUrl: '/images/icon-128.png',
+ title: opts.title,
+ message: message,
+ })
+
+}
+
function createTxNotification(opts){
var message = [
'to: '+uiUtils.addressSummary(opts.txParams.to),