Plugin to make Embark use the command line solidity compiler (much faster)
Go to file
emizzle c47d087e1d fix(@embark-solc): Fix unknown key “path” error
Compilation error `Unknown key “path”` was present when using Solidity 0.5.x. This PR removes the path property from the compilation sources as it is not needed.
2019-04-08 14:11:03 -04:00
lib fix(@embark-solc): Fix unknown key “path” error 2019-04-08 14:11:03 -04:00
.eslintrc.json chore(embark-solc): add eslintrc and fix linting errors 2018-11-07 14:48:52 -05:00
.gitignore chore(embark-solc): add eslintrc and fix linting errors 2018-11-07 14:48:52 -05:00
README.md chore(readme): improve readme 2019-04-08 14:00:42 -04:00
index.js fix(@embark-solc): Fix unknown key “path” error 2019-04-08 14:11:03 -04:00
package-lock.json fix: fix race condition by using the new compiler api 2019-04-08 14:00:42 -04:00
package.json fix: fix race condition by using the new compiler api 2019-04-08 14:00:42 -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 (h)