Ethereum, tokens & smart contracts.
Previous notes in case you are just joining us:Part 1. Setting up.
Part 2. Web3.js/node.
Part 3. Solidity.
Part 4. Smart Contracts.
Part 5. Smarter Contracts.
Part 6. Tokens & Inheritance.
Part 7. ERC20 Token Standard.
Part 8. Crowdfunding and ICOs.
Part 9. Dapps & MetaMask.
In this quasi finale note, I’d like to check and cover a few related tools ( Remix, Truffle & TestRPC) I left these for last but not least since I believe it is better to have some basic knowledge about contracts, tokens, Dapps & compiling before using them, they can also be viewed as helpful tooling for becoming more productive writing smart contracts.
REMIX
- Site : https://remix.ethereum.org/
- Docs : https://remix.readthedocs.io/en/latest/
- GitHub : https://github.com/ethereum/remix
Remix is a debugger, compiler & IDE for smart contracts, it is very accesible since you can start working with the online version immediately and a provider ( like metaMask ).
Note: Why not start with remix ? A lot of tutorials (including Ethereums ) recommend Remix as a starting point and that might work for some,I found it very…