aboutsummaryrefslogtreecommitdiffstats
path: root/docs/frequently-asked-questions.rst
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2016-05-20 18:52:32 +0800
committerchriseth <c@ethdev.com>2016-05-20 22:51:26 +0800
commitfad2d4ac017f21d4d2dfe4a2b8c905cd38c61073 (patch)
treeadea5b0886fc1ac1d3af0e4be18b7ed7e39a1335 /docs/frequently-asked-questions.rst
parente3c54185434e16591e15e94b9f0cbef49c83137c (diff)
downloaddexon-solidity-fad2d4ac017f21d4d2dfe4a2b8c905cd38c61073.tar
dexon-solidity-fad2d4ac017f21d4d2dfe4a2b8c905cd38c61073.tar.gz
dexon-solidity-fad2d4ac017f21d4d2dfe4a2b8c905cd38c61073.tar.bz2
dexon-solidity-fad2d4ac017f21d4d2dfe4a2b8c905cd38c61073.tar.lz
dexon-solidity-fad2d4ac017f21d4d2dfe4a2b8c905cd38c61073.tar.xz
dexon-solidity-fad2d4ac017f21d4d2dfe4a2b8c905cd38c61073.tar.zst
dexon-solidity-fad2d4ac017f21d4d2dfe4a2b8c905cd38c61073.zip
Update links to browser-solidity.
Diffstat (limited to 'docs/frequently-asked-questions.rst')
-rw-r--r--docs/frequently-asked-questions.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/frequently-asked-questions.rst b/docs/frequently-asked-questions.rst
index a081fc16..e42ca1c5 100644
--- a/docs/frequently-asked-questions.rst
+++ b/docs/frequently-asked-questions.rst
@@ -30,7 +30,7 @@ there should be a `test contract <https://github.com/ethereum/solidity/blob/deve
How do I compile contracts?
=============================
-Probably the fastest way is the `online compiler <https://chriseth.github.io/browser-solidity/>`_.
+Probably the fastest way is the `online compiler <https://ethereum.github.io/browser-solidity/>`_.
You can also use the `solc` binary which comes with cpp-ethereum to compile
contracts or an emerging option is to use Mix, the IDE.
@@ -96,7 +96,7 @@ creator. Save it. Then `selfdestruct(creator);` to kill and return funds.
Note that if you `import "mortal"` at the top of your contracts and declare
`contract SomeContract is mortal { ...` and compile with a compiler that already
-has it (which includes `browser-solidity <https://chriseth.github.io/browser-solidity/>`_), then
+has it (which includes `browser-solidity <https://ethereum.github.io/browser-solidity/>`_), then
`kill()` is taken care of for you. Once a contract is "mortal", then you can
`contractname.kill.sendTransaction({from:eth.coinbase})`, just the same as my
examples.