fix contracts config example in README and Documentation
This commit is contained in:
parent
3a50dbdfdd
commit
cd645ab2d6
|
@ -42,7 +42,7 @@ Table of Contents
|
||||||
* [Dashboard](#dashboard)
|
* [Dashboard](#dashboard)
|
||||||
* [Creating a new DApp](#creating-a-new-dapp)
|
* [Creating a new DApp](#creating-a-new-dapp)
|
||||||
* [Libraries and APIs available](#libraries-and-languages-available)
|
* [Libraries and APIs available](#libraries-and-languages-available)
|
||||||
* [Using and Configuring Contracts](#dapp-structure)
|
* [Using and Configuring Contracts](#using-contracts)
|
||||||
* [EmbarkJS](#embarkjs)
|
* [EmbarkJS](#embarkjs)
|
||||||
* [EmbarkJS - Storage (IPFS)](#embarkjs---storage)
|
* [EmbarkJS - Storage (IPFS)](#embarkjs---storage)
|
||||||
* [EmbarkJS - Communication (Whisper/Orbit)](#embarkjs---communication)
|
* [EmbarkJS - Communication (Whisper/Orbit)](#embarkjs---communication)
|
||||||
|
@ -227,7 +227,7 @@ If you are using multiple contracts, you can pass a reference to another contrac
|
||||||
"SimpleStorage": {
|
"SimpleStorage": {
|
||||||
"args": [
|
"args": [
|
||||||
100,
|
100,
|
||||||
$MyStorage
|
"$MyStorage"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"MyStorage": {
|
"MyStorage": {
|
||||||
|
@ -237,7 +237,7 @@ If you are using multiple contracts, you can pass a reference to another contrac
|
||||||
},
|
},
|
||||||
"MyMainContract": {
|
"MyMainContract": {
|
||||||
"args": [
|
"args": [
|
||||||
$SimpleStorage
|
"$SimpleStorage"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -64,7 +64,7 @@ with the correct address for the contract.
|
||||||
"SimpleStorage": {
|
"SimpleStorage": {
|
||||||
"args": [
|
"args": [
|
||||||
100,
|
100,
|
||||||
$MyStorage
|
"$MyStorage"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"MyStorage": {
|
"MyStorage": {
|
||||||
|
@ -74,7 +74,7 @@ with the correct address for the contract.
|
||||||
},
|
},
|
||||||
"MyMainContract": {
|
"MyMainContract": {
|
||||||
"args": [
|
"args": [
|
||||||
$SimpleStorage
|
"$SimpleStorage"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue