mirror of
https://github.com/embarklabs/embark.git
synced 2025-02-18 00:27:17 +00:00
Add blockchain config to simple template, and supporting files (ie passwords, genesis) that aid in examples set forth in the blockchain config.
26 lines
428 B
JSON
26 lines
428 B
JSON
{
|
|
"contracts": [
|
|
"contracts/**"
|
|
],
|
|
"app": {},
|
|
"buildDir": "build/",
|
|
"config": {
|
|
"contracts": "config/contracts.js",
|
|
"blockchain": "config/blockchain.js",
|
|
"storage": false,
|
|
"communication": false,
|
|
"webserver": false
|
|
},
|
|
"versions": {
|
|
"solc": "0.6.1"
|
|
},
|
|
"plugins": {
|
|
"embark-geth": {}
|
|
},
|
|
"options": {
|
|
"solc": {
|
|
"optimize": true,
|
|
"optimize-runs": 200
|
|
}
|
|
}
|
|
} |