Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/embarklabs/embark-solc
Plugin to make Embark use the command line solidity compiler (much faster)
https://github.com/embarklabs/embark-solc
embark ethereum solc solidity
Last synced: 7 days ago
JSON representation
Plugin to make Embark use the command line solidity compiler (much faster)
- Host: GitHub
- URL: https://github.com/embarklabs/embark-solc
- Owner: embarklabs
- Created: 2018-05-26T16:19:20.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-04-28T19:47:20.000Z (over 2 years ago)
- Last Synced: 2023-09-15T11:14:40.076Z (about 1 year ago)
- Topics: embark, ethereum, solc, solidity
- Language: JavaScript
- Homepage:
- Size: 113 KB
- Stars: 1
- Watchers: 6
- Forks: 3
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Embark-Solc
======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": {
"embark-solc": {
"outputBinary": false
}
}
```- `outputBinary` can be specified to generate a .bin file that contains the binary of the contracts in hex. Default value is `false`.
## Requirements
- [Embark](https://www.npmjs.com/package/embark) 4.0.0 or higher
- [Solc](https://github.com/ethereum/solidity/releases) installed and available globally on your machine (h)