From e8b4c833ec2ae97c6ed8e6512733470c94e29f47 Mon Sep 17 00:00:00 2001 From: Nick Gheorghita Date: Mon, 16 Sep 2019 14:35:12 -0400 Subject: [PATCH] Add ethpm to remix app manager --- src/remixAppManager.js | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/remixAppManager.js b/src/remixAppManager.js index 312e6a41c1..c2f7d5f7a9 100644 --- a/src/remixAppManager.js +++ b/src/remixAppManager.js @@ -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) ] } }