update configs

This commit is contained in:
Andrea Franz 2019-10-24 12:13:46 +02:00
parent 5d323149d4
commit c6d409f40c
No known key found for this signature in database
GPG Key ID: 4F0D2F2D9DE7F29D
1 changed files with 5 additions and 1 deletions

View File

@ -39,7 +39,6 @@ module.exports = {
// Automatically call `ethereum.enable` if true.
// If false, the following code must run before sending any transaction: `await EmbarkJS.enableEthereum();`
// Default value is true.
// dappAutoEnable: true,
dappAutoEnable: false,
gas: "auto",
@ -52,6 +51,11 @@ module.exports = {
// contracts section.
strategy: 'explicit',
// minimalContractSize, when set to true, tells Embark to generate contract files without the heavy bytecodes
// Using filteredFields lets you customize which field you want to filter out of the contract file (requires minimalContractSize: true)
// minimalContractSize: false,
// filteredFields: [],
contracts: {
KeycardWalletFactory: {}
}