Unverified Commit 3da16d2f authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #2337 from ethpm/ethpm

Add ethpm to remix app manager
parents 6d7b2759 e8b4c833
......@@ -237,6 +237,20 @@ export class RemixAppManager extends PluginEngine {
icon: 'https://remix-flattener.netlify.com/logo.svg',
location: 'sidePanel'
}
const ethpm = {
name: 'ethPM',
displayName: 'ethPM',
events: [],
methods: [],
notifications: {
solidity: ['compilationFinished']
},
url: 'https://ethpm.surge.sh',
description: 'Generate and import ethPM packages.',
documentation: 'https://docs.ethpm.com/ethpm-developer-guide/ethpm-and-remix-ide',
icon: 'https://ethpm.surge.sh/ethpmlogo.png',
location: 'mainPanel'
}
return [
new IframePlugin(pipeline),
new IframePlugin(vyper),
......@@ -250,7 +264,8 @@ export class RemixAppManager extends PluginEngine {
new IframePlugin(libraTools),
new IframePlugin(oneClickDapp),
new IframePlugin(gasProfiler),
new IframePlugin(flattener)
new IframePlugin(flattener),
new IframePlugin(ethpm)
]
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment