Plugin to make Embark use the command line solidity compiler (much faster)
Go to file
Richard Ramos d07d5d4b4b v number 2018-07-24 13:58:16 -04:00
lib Added duplicated contract warning 2018-07-24 13:37:59 -04:00
.gitignore Initial version of solc plugin 2018-05-26 12:31:46 -04:00
README.md Update README.md 2018-07-24 10:12:36 -04:00
index.js Can specify "outputBinary" config to gen a .bin file of contract 2018-07-24 10:12:36 -04:00
package.json v number 2018-07-24 13:58:16 -04:00

README.md

Embark-Solc

Plugin for 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:

  "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 3.0.0 or higher
  • Solc installed and available globally on your machine