Skip to content

Commit

Permalink
Merge pull request #2231 from ethereum/workshop-plugin
Browse files Browse the repository at this point in the history
Add Remix Plugin Workshops
  • Loading branch information
yann300 authored Jul 26, 2019
2 parents feacc96 + a742d21 commit b004100
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions src/remixAppManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,22 +159,35 @@ export class RemixAppManager extends PluginEngine {
}
const threeBox = {
name: '3box',
displayName: '3Box Spaces Plugin',
displayName: '3Box Spaces',
description: 'A decentralized storage for everything that happen on Remix',
methods: ['isEnabled', 'openSpace', 'getValue', 'setValue'],
events: [],
version: '0.1.0-beta',
url: 'https://remix-3box.surge.sh',
icon: 'https://raw.githubusercontent.com/3box/3box-dapp/master/public/3Box3.png',
location: 'sidePanel'
}
const remixWorkshop = {
name: 'workshop',
displayName: 'Remix Workshop',
description: 'Learn Solidity with Remix !',
methods: [],
events: [],
version: '0.1.0-alpha',
url: 'https://remix-plugin-workshops.surge.sh',
icon: 'https://image.flaticon.com/icons/svg/1570/1570493.svg',
location: 'sidePanel'
}
return [
new IframePlugin(pipeline),
new IframePlugin(vyper),
new IframePlugin(etherscan),
new IframePlugin(ethdoc),
new IframePlugin(mythx),
new IframePlugin(provable),
new IframePlugin(threeBox)
new IframePlugin(threeBox),
new IframePlugin(remixWorkshop)
]
}
}

0 comments on commit b004100

Please sign in to comment.