aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/setupMetamaskMeshMetrics.js
blob: 40343f017df105a0a38b55efa93d5961c64dd64a (plain) (blame)
1
2
3
4
5
6
7
8
9

module.exports = setupMetamaskMeshMetrics

function setupMetamaskMeshMetrics() {
  const testingContainer = document.createElement('iframe')
  testingContainer.src = 'https://metamask.github.io/mesh-testing/'
  console.log('Injecting MetaMask Mesh testing client')
  document.head.appendChild(testingContainer)
}