Plugin to make Embark use the command line solidity compiler (much faster)
Go to file
dependabot[bot] f702d16e71
chore(deps): bump ajv from 6.10.0 to 6.12.6
Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.10.0 to 6.12.6.
- [Release notes](https://github.com/ajv-validator/ajv/releases)
- [Commits](https://github.com/ajv-validator/ajv/compare/v6.10.0...v6.12.6)

---
updated-dependencies:
- dependency-name: ajv
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-02-11 19:16:37 +00:00
lib fix: add more information in debug about errors 2019-06-28 09:32:47 -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 Update version in readme 2019-04-08 14:24:14 -04:00
index.js fix(@embark-solc): Fix unknown key “path” error 2019-04-08 14:11:03 -04:00
package-lock.json chore(deps): bump ajv from 6.10.0 to 6.12.6 2022-02-11 19:16:37 +00:00
package.json 4.0.4 2019-06-28 13:39:59 -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 4.0.0 or higher
  • Solc installed and available globally on your machine (h)