Superblocks Lab for DApp development
Superblocks Lab
:warning: This repo is deprecated :warning:
Superblocks Lab has been deprecated in favour of Ethereum Studio. See you over there!Superblocks Lab is an integrated development environment (IDE) to learn, build and deploy decentralized apps (DApps) for Ethereum_. It's a full browser experience which requires no installations to run.
Superblocks Lab has a built in Solidity compiler and Ethereum Virtual Machine. It also works with local and public networks.
To try it out, go to lab.superblocks.com.
Features
- In-browser Blockchain
- Code Autocompletion
- Bootstrap your App
- Live code your WebApp
- Deploy to Networks
- Run with custom node
- Built-in wallets
- Export your full DApp
- Metamask Integration
- Powered by Monaco Editor
Quick start
Below is described how to get the Superblocks Lab PreactJS project setup and running locally.Install node modules
Useyarn Yarn.
yarn install
Run in development mode
yarn start
Browse to http://localhost:3000. Note that if you use any other hostname/IP than localhost, then instead run update 'ORIGIN' value in 'env.development', this is important so that the iframes can communicate with the main window.
Make a production build
yarn build
The dist files will be inside ./dist. Note that the this command uses production version of ".env" file, so in order to test it locally please create a ".env.local" with proper ORIGIN variable value prior to build.
Bumping version
Set the new version both inapp.js and in manifest.json.
Run this script to fix that for you:
./bump_version "1.1.0"
Consider double-checking and updating the CHANGELOG to reflect the changes. Tag the new version.