mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-15 08:14:29 +00:00
1225cb14e8
When making use of the `useBuiltIns: 'usage'` option for @babel/preset-env (which is the case for all transpiled packages in Embark's monorepo) a package needs to have both @babel/runtime-corejs3 and core-js@3 specified as dependencies.
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 isfalse
.
Requirements
Visit embark.status.im to get started with Embark.