Update README.md
This commit is contained in:
parent
8a1cc77934
commit
74474f5357
36
README.md
36
README.md
|
@ -140,19 +140,31 @@ If you are using multiple contracts, you can pass a reference to another contrac
|
||||||
|
|
||||||
|
|
||||||
```Yaml
|
```Yaml
|
||||||
# config/contracts.yml
|
# config/contracts.json
|
||||||
development:
|
{
|
||||||
SimpleStorage:
|
|
||||||
args:
|
|
||||||
- 100
|
|
||||||
- $MyStorage
|
|
||||||
MyStorage:
|
|
||||||
args:
|
|
||||||
- "initial string"
|
|
||||||
MyMainContract:
|
|
||||||
args:
|
|
||||||
- $SimpleStorage
|
|
||||||
...
|
...
|
||||||
|
"development": {
|
||||||
|
"contracts": {
|
||||||
|
"SimpleStorage": {
|
||||||
|
"args": [
|
||||||
|
100,
|
||||||
|
$MyStorage
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"MyStorage": {
|
||||||
|
"args": [
|
||||||
|
"initial string"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"MyMainContract": {
|
||||||
|
"args": [
|
||||||
|
$SimpleStorage
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
...
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
You can now deploy many instances of the same contract. e.g
|
You can now deploy many instances of the same contract. e.g
|
||||||
|
|
Loading…
Reference in New Issue