embark/packages/plugins/solc
Michael Bradley, Jr 6dbdf63aeb chore(release): 6.0.0 2020-04-27 16:04:43 -05:00
..
src fix(plugins/solc): don't read pluginConfig from plugin.config 2020-04-02 10:55:58 +02:00
test test(plugins/solc): add tests for plugins/solc 2020-03-25 15:05:02 +01:00
.npmrc
CHANGELOG.md chore(release): 6.0.0 2020-04-27 16:04:43 -05: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(release): 6.0.0 2020-04-27 16:04:43 -05:00
tsconfig.json test(plugins/solc): add tests for plugins/solc 2020-03-25 15:05:02 +01: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.