Skip to content

Commit

Permalink
Add ethpm to remix app manager
Browse files Browse the repository at this point in the history
  • Loading branch information
njgheorghita committed Sep 16, 2019
1 parent 6d7b275 commit a4e9364
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/remixAppManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand All @@ -251,6 +265,7 @@ export class RemixAppManager extends PluginEngine {
new IframePlugin(oneClickDapp),
new IframePlugin(gasProfiler),
new IframePlugin(flattener)
new IframePlugin(ethpm)
]
}
}

0 comments on commit a4e9364

Please sign in to comment.