aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2018-12-13 11:38:07 +0800
committerJimmy Hu <jimmy.hu@dexon.org>2018-12-13 11:38:07 +0800
commitaa99cfa20f105beebe7813bdac1325931aac0e81 (patch)
treee8d9f5b28164fc0813144ec9a13557127e983763
parent105c429b5e68609771fe2ce85042026bbc725de6 (diff)
downloaddexon-wiki-aa99cfa20f105beebe7813bdac1325931aac0e81.tar
dexon-wiki-aa99cfa20f105beebe7813bdac1325931aac0e81.tar.gz
dexon-wiki-aa99cfa20f105beebe7813bdac1325931aac0e81.tar.bz2
dexon-wiki-aa99cfa20f105beebe7813bdac1325931aac0e81.tar.lz
dexon-wiki-aa99cfa20f105beebe7813bdac1325931aac0e81.tar.xz
dexon-wiki-aa99cfa20f105beebe7813bdac1325931aac0e81.tar.zst
dexon-wiki-aa99cfa20f105beebe7813bdac1325931aac0e81.zip
Updated Dapp Development (markdown)
-rw-r--r--Dapp-Development.md13
1 files changed, 10 insertions, 3 deletions
diff --git a/Dapp-Development.md b/Dapp-Development.md
index 96a3a1e..3f2187e 100644
--- a/Dapp-Development.md
+++ b/Dapp-Development.md
@@ -18,7 +18,7 @@ contract Rand {
This very simple contract demonstrates how to use the `rand` variable. When `update()` is called, the state `value` is assigned to a random value generated by DEXON's on-chain random oracle.
-The most simple way to develop Dapps on DEXON is to use the DEXON version of the Remix IDE: https://remix.dexon.org. You should use this with the [DekuSan](https://chrome.google.com/webstore/detail/dekusan/anlicggbddjeebblaidciapponbpegoj) Web Wallet. To get free testnet token, please check the [faucet](https://dexon.org/faucet).
+The most simple way to develop Dapps on DEXON is to use the DEXON version of the Remix IDE: https://remix.dexon.org. You should use this with the DekuSan Web Wallet([Chrome](https://chrome.google.com/webstore/detail/dekusan/anlicggbddjeebblaidciapponbpegoj)/[Firefox](https://addons.mozilla.org/en-US/firefox/addon/dekusan)). To get free testnet token, please check the [faucet](https://dexon.org/faucet).
If you are developing apps with truffle, you will need to use [dsolidity](https://github.com/dexon-foundation/dsolidity). The nodejs version can also be found [here](https://github.com/dexon-foundation/dsolc-js).
@@ -29,5 +29,12 @@ You can check out our demo DApp [hello-dexon](https://github.com/dexon-foundatio
1. `mkdir hello-dexon && cd hello-dexon`
2. `dexon-truffle unbox dexon-foundation/hello-dexon`
-3. Use `npm run compile` to compile the final byte-code
-4. Deploy onto the DEXON network by `dexon-truffle migrate --network=testnet` \ No newline at end of file
+3. Use `dexon-truffle compile` to compile the final byte-code
+4. Deploy onto the DEXON network by `dexon-truffle migrate --network=testnet`
+
+### Ganache
+
+```
+> npm i -g @dexon-foundation/ganache-cli
+> dexon-ganache
+``` \ No newline at end of file