aboutsummaryrefslogtreecommitdiffstats
path: root/Dapp-Development.md
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-11-21 18:50:13 +0800
committerWei-Ning Huang <w@dexon.org>2018-11-21 18:50:13 +0800
commitcd4222e1ca1d48a5a6c204d460b1272151a79c18 (patch)
treebc24539fe40d6c1c72d2916a83f8767581539376 /Dapp-Development.md
parent7168c81ecabbbace49080507e806a43a5bf5f966 (diff)
downloaddexon-wiki-cd4222e1ca1d48a5a6c204d460b1272151a79c18.tar
dexon-wiki-cd4222e1ca1d48a5a6c204d460b1272151a79c18.tar.gz
dexon-wiki-cd4222e1ca1d48a5a6c204d460b1272151a79c18.tar.bz2
dexon-wiki-cd4222e1ca1d48a5a6c204d460b1272151a79c18.tar.lz
dexon-wiki-cd4222e1ca1d48a5a6c204d460b1272151a79c18.tar.xz
dexon-wiki-cd4222e1ca1d48a5a6c204d460b1272151a79c18.tar.zst
dexon-wiki-cd4222e1ca1d48a5a6c204d460b1272151a79c18.zip
Updated Dapp Development (markdown)
Diffstat (limited to 'Dapp-Development.md')
-rw-r--r--Dapp-Development.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/Dapp-Development.md b/Dapp-Development.md
index 0d202d9..3bcded4 100644
--- a/Dapp-Development.md
+++ b/Dapp-Development.md
@@ -16,9 +16,11 @@ contract Rand {
}
```
-This very simple contract demonastrate 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.
+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.
-To compile the contract, 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).
+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.
+
+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).
An on-going plan is to allow truffle to support `dsolc-js`. For now, you can simply unbox [hello-dexon](https://github.com/dexon-foundation/hello-dexon).