embark/packages/plugins/solc
EmbarkBot 7287eda651 chore(prerelease): 5.3.0-nightly.6 2020-03-07 00:14:47 +00:00
..
src fix: ensure that packages properly specify their dependencies 2020-02-25 14:52:10 -06:00
.npmrc move embarkjs packages & remove embark- prefix from some folders (#1879) 2019-09-06 18:26:08 -04:00
CHANGELOG.md chore(prerelease): 5.3.0-nightly.6 2020-03-07 00:14:47 +00:00
README.md chore: update site urls 2020-01-28 12:07:17 -05:00
index.js fix: ensure that packages properly specify their dependencies 2020-02-25 14:52:10 -06:00
package.json chore(prerelease): 5.3.0-nightly.6 2020-03-07 00:14:47 +00:00
tsconfig.json build: implement collective typecheck 2019-12-13 13:59:47 -05:00

README.md

embark-solc

Solc plugin for Embark

Compiles contracts using solc in an Embark DApp.

Installation

In your embark dapp directory:

npm install embark-solc --save

Then add embark-solc to the plugins section in embark.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 4.0.0 or higher
  • Solc installed and available globally on your machine (h)

Visit framework.embarklabs.io to get started with Embark.