mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Add address image map to icon factory
Deriving from the new address image map repository I've added here: https://github.com/MetaMask/ethereum-contract-icons With this PR, images for addresses added to that repository will be shown instead of jazzicons in MetaMask.
This commit is contained in:
parent
8f9a230d8d
commit
d8c94fca75
@ -1,6 +1,6 @@
|
|||||||
/*global Web3*/
|
/*global Web3*/
|
||||||
cleanContextForImports()
|
cleanContextForImports()
|
||||||
require('web3/dist/web3.min.js')
|
require('web3')
|
||||||
const LocalMessageDuplexStream = require('post-message-stream')
|
const LocalMessageDuplexStream = require('post-message-stream')
|
||||||
// const PingStream = require('ping-pong-stream/ping')
|
// const PingStream = require('ping-pong-stream/ping')
|
||||||
// const endOfStream = require('end-of-stream')
|
// const endOfStream = require('end-of-stream')
|
||||||
@ -30,7 +30,7 @@ var web3 = new Web3(inpageProvider)
|
|||||||
web3.setProvider = function () {
|
web3.setProvider = function () {
|
||||||
console.log('MetaMask - overrode web3.setProvider')
|
console.log('MetaMask - overrode web3.setProvider')
|
||||||
}
|
}
|
||||||
console.log('MetaMask - injected web3')
|
console.log('MetaMask - injected modified web3')
|
||||||
// export global web3, with usage-detection
|
// export global web3, with usage-detection
|
||||||
setupDappAutoReload(web3, inpageProvider.publicConfigStore)
|
setupDappAutoReload(web3, inpageProvider.publicConfigStore)
|
||||||
|
|
||||||
|
@ -39,6 +39,8 @@ function MetamaskInpageProvider (connectionStream) {
|
|||||||
self.idMap = {}
|
self.idMap = {}
|
||||||
// handle sendAsync requests via asyncProvider
|
// handle sendAsync requests via asyncProvider
|
||||||
self.sendAsync = function (payload, cb) {
|
self.sendAsync = function (payload, cb) {
|
||||||
|
console.trace('sending async ' + payload.method)
|
||||||
|
console.dir(payload)
|
||||||
// rewrite request ids
|
// rewrite request ids
|
||||||
var request = eachJsonMessage(payload, (message) => {
|
var request = eachJsonMessage(payload, (message) => {
|
||||||
var newId = createRandomId()
|
var newId = createRandomId()
|
||||||
|
10
gulpfile.js
10
gulpfile.js
@ -52,6 +52,15 @@ gulp.task('copy:images', copyTask({
|
|||||||
'./dist/opera/images',
|
'./dist/opera/images',
|
||||||
],
|
],
|
||||||
}))
|
}))
|
||||||
|
gulp.task('copy:contractImages', copyTask({
|
||||||
|
source: './node_modules/ethereum-contract-icons/images/',
|
||||||
|
destinations: [
|
||||||
|
'./dist/firefox/images/contract',
|
||||||
|
'./dist/chrome/images/contract',
|
||||||
|
'./dist/edge/images/contract',
|
||||||
|
'./dist/opera/images/contract',
|
||||||
|
],
|
||||||
|
}))
|
||||||
gulp.task('copy:fonts', copyTask({
|
gulp.task('copy:fonts', copyTask({
|
||||||
source: './app/fonts/',
|
source: './app/fonts/',
|
||||||
destinations: [
|
destinations: [
|
||||||
@ -127,6 +136,7 @@ const staticFiles = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
var copyStrings = staticFiles.map(staticFile => `copy:${staticFile}`)
|
var copyStrings = staticFiles.map(staticFile => `copy:${staticFile}`)
|
||||||
|
copyStrings.push('copy:contractImages')
|
||||||
|
|
||||||
if (!disableLiveReload) {
|
if (!disableLiveReload) {
|
||||||
copyStrings.push('copy:reload')
|
copyStrings.push('copy:reload')
|
||||||
|
@ -66,6 +66,7 @@
|
|||||||
"eth-query": "^2.1.1",
|
"eth-query": "^2.1.1",
|
||||||
"eth-sig-util": "^1.1.1",
|
"eth-sig-util": "^1.1.1",
|
||||||
"eth-simple-keyring": "^1.1.1",
|
"eth-simple-keyring": "^1.1.1",
|
||||||
|
"ethereum-contract-icons": "^1.0.0",
|
||||||
"ethereumjs-tx": "^1.3.0",
|
"ethereumjs-tx": "^1.3.0",
|
||||||
"ethereumjs-util": "ethereumjs/ethereumjs-util#ac5d0908536b447083ea422b435da27f26615de9",
|
"ethereumjs-util": "ethereumjs/ethereumjs-util#ac5d0908536b447083ea422b435da27f26615de9",
|
||||||
"ethereumjs-wallet": "^0.6.0",
|
"ethereumjs-wallet": "^0.6.0",
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
var iconFactory
|
var iconFactory
|
||||||
|
const isValidAddress = require('ethereumjs-util').isValidAddress
|
||||||
|
const toChecksumAddress = require('ethereumjs-util').toChecksumAddress
|
||||||
|
const iconMap = require('ethereum-contract-icons')
|
||||||
|
|
||||||
module.exports = function (jazzicon) {
|
module.exports = function (jazzicon) {
|
||||||
if (!iconFactory) {
|
if (!iconFactory) {
|
||||||
@ -12,22 +15,12 @@ function IconFactory (jazzicon) {
|
|||||||
this.cache = {}
|
this.cache = {}
|
||||||
}
|
}
|
||||||
|
|
||||||
IconFactory.prototype.iconForAddress = function (address, diameter, imageify) {
|
IconFactory.prototype.iconForAddress = function (address, diameter) {
|
||||||
if (imageify) {
|
const addr = toChecksumAddress(address)
|
||||||
return this.generateIdenticonImg(address, diameter)
|
if (iconExistsFor(addr)) {
|
||||||
} else {
|
return imageElFor(addr)
|
||||||
return this.generateIdenticonSvg(address, diameter)
|
|
||||||
}
|
}
|
||||||
}
|
return this.generateIdenticonSvg(address, diameter)
|
||||||
|
|
||||||
// returns img dom element
|
|
||||||
IconFactory.prototype.generateIdenticonImg = function (address, diameter) {
|
|
||||||
var identicon = this.generateIdenticonSvg(address, diameter)
|
|
||||||
var identiconSrc = identicon.innerHTML
|
|
||||||
var dataUri = toDataUri(identiconSrc)
|
|
||||||
var img = document.createElement('img')
|
|
||||||
img.src = dataUri
|
|
||||||
return img
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// returns svg dom element
|
// returns svg dom element
|
||||||
@ -49,12 +42,22 @@ IconFactory.prototype.generateNewIdenticon = function (address, diameter) {
|
|||||||
|
|
||||||
// util
|
// util
|
||||||
|
|
||||||
|
function iconExistsFor (address) {
|
||||||
|
return (address in iconMap) && isValidAddress(address)
|
||||||
|
}
|
||||||
|
|
||||||
|
function imageElFor (address) {
|
||||||
|
const fileName = iconMap[address]
|
||||||
|
const path = `images/contract/${fileName}`
|
||||||
|
const img = document.createElement('img')
|
||||||
|
img.src = path
|
||||||
|
img.style.width = '100%'
|
||||||
|
return img
|
||||||
|
}
|
||||||
|
|
||||||
function jsNumberForAddress (address) {
|
function jsNumberForAddress (address) {
|
||||||
var addr = address.slice(2, 10)
|
var addr = address.slice(2, 10)
|
||||||
var seed = parseInt(addr, 16)
|
var seed = parseInt(addr, 16)
|
||||||
return seed
|
return seed
|
||||||
}
|
}
|
||||||
|
|
||||||
function toDataUri (identiconSrc) {
|
|
||||||
return 'data:image/svg+xml;charset=utf-8,' + encodeURIComponent(identiconSrc)
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user