ethbox icon indicating copy to clipboard operation
ethbox copied to clipboard

Launch an Ethereum sandbox from the command line

#EthBox

Launch a Ethereum development sandbox in 10 seconds

EthBox in action

npm install -g ethbox
ethbox -s path/to/solidity/contracts/

To create a contract

web3.eth.contract(contracts.MyContract.abi).new({ data: contracts.MyContract.abi }), (err, myContract) => {})