From 1e9439bbe6e9045ad4fe52122937008f3284d06f Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Tue, 19 Dec 2017 13:03:11 -0500 Subject: [PATCH] Update README.md --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4323d2995..fe962dc9a 100644 --- a/README.md +++ b/README.md @@ -210,15 +210,14 @@ You can specify for each contract and environment its gas costs and arguments: "args": [ 100 ], - "deploy": false, - "gas": 10000000 + "gas": 800000 } } } } ``` -If you are using multiple contracts, you can pass a reference to another contract as ```$ContractName```, Embark will automatically replace this with the correct address for the contract. +If you are using multiple contracts, you can pass a reference to another contract as ```$ContractName```, Embark will automatically replace this with the correct address for the contract. You can also specify interfaces and choose to not deploy contracts (for e.g in case they are interfaces) ```Json @@ -242,6 +241,9 @@ If you are using multiple contracts, you can pass a reference to another contrac "args": [ "$SimpleStorage" ] + }, + "MyContractInterface": { + "deploy": false } } }