Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/umbracle/greenhouse

Integrated Solidity development platform
https://github.com/umbracle/greenhouse

dapps debugging solidity

Last synced: 4 days ago
JSON representation

Integrated Solidity development platform

Awesome Lists containing this project

README

        

# Greenhouse

Integrated solidity environment.

## Tutorial

Start an empty folder and initialize it:

```
$ mkdir greenhouse-example
$ cd greenhouse-example
$ greenhouse init
Config file created
```

Create a simple smart contract:

```
$ mkdir contracts
$ cat <> contracts/Simple.sol
pragma solidity >=0.8.0;

contract Simple {
}
EOT
```

Build the smart contract:

```
$ greenhouse build
```