Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/umbracle/greenhouse
- Owner: umbracle
- License: mpl-2.0
- Created: 2022-01-17T22:17:58.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-25T21:58:36.000Z (over 2 years ago)
- Last Synced: 2024-06-20T06:29:33.958Z (5 months ago)
- Topics: dapps, debugging, solidity
- Language: Go
- Homepage:
- Size: 17.1 MB
- Stars: 5
- Watchers: 1
- Forks: 2
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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
```