1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 18:41:38 +01:00
metamask-extension/mascara/example/app.js

39 lines
1.3 KiB
JavaScript
Raw Normal View History

2017-09-19 04:08:02 +02:00
const EthQuery = require('ethjs-query')
window.addEventListener('load', loadProvider)
window.addEventListener('message', console.warn)
2016-08-26 20:08:23 +02:00
2018-07-03 00:49:33 +02:00
async function loadProvider () {
2017-09-19 04:08:02 +02:00
const ethereumProvider = window.metamask.createDefaultProvider({ host: 'http://localhost:9001' })
const ethQuery = new EthQuery(ethereumProvider)
const accounts = await ethQuery.accounts()
window.METAMASK_ACCOUNT = accounts[0] || 'locked'
logToDom(accounts.length ? accounts[0] : 'LOCKED or undefined', 'account')
setupButtons(ethQuery)
2016-08-26 20:08:23 +02:00
}
2018-07-03 00:49:33 +02:00
function logToDom (message, context) {
document.getElementById(context).innerText = message
console.log(message)
}
2017-09-19 04:08:02 +02:00
function setupButtons (ethQuery) {
const accountButton = document.getElementById('action-button-1')
accountButton.addEventListener('click', async () => {
2017-09-19 04:08:02 +02:00
const accounts = await ethQuery.accounts()
window.METAMASK_ACCOUNT = accounts[0] || 'locked'
logToDom(accounts.length ? accounts[0] : 'LOCKED or undefined', 'account')
})
const txButton = document.getElementById('action-button-2')
txButton.addEventListener('click', async () => {
if (!window.METAMASK_ACCOUNT || window.METAMASK_ACCOUNT === 'locked') return
const txHash = await ethQuery.sendTransaction({
from: window.METAMASK_ACCOUNT,
to: window.METAMASK_ACCOUNT,
data: '',
})
logToDom(txHash, 'cb-value')
2017-09-19 04:08:02 +02:00
})
2018-07-03 00:49:33 +02:00
}