embark-solc/README.md

30 lines
599 B
Markdown
Raw Normal View History

2018-06-15 16:37:20 -04:00
Embark-Solc
2018-05-26 12:31:46 -04:00
======
Plugin for [Embark](https://github.com/embark-framework/embark) to compile contracts using solc
Installation
======
In your embark dapp directory:
```npm install embark-solc --save```
then add embark-solc to the plugins section in ```embark.json```:
```Json
"plugins": {
2018-07-23 12:40:54 -04:00
"embark-solc": {
"outputBinary": false
}
2018-05-26 12:31:46 -04:00
}
```
2018-07-23 12:40:54 -04:00
- `outputBinary` can be specified to generate a .bin file that contains the binary of the contracts in hex. Default value is `false`.
2018-05-26 12:31:46 -04:00
Requirements
======
- Embark 3.0.0 or higher
- Solc installed and available globally on your machine