Blockchain startups are using nitial oin fferings to raise capital and to gain community support. Community members or investors who want to support the project send Ether/ETH to a given smart contracts address and in return receive custom tokens instantly, or sometime later after the event ends. I C O ICO Let’s take a step back: Just like any other investment most community members do some homework before investing. A number of website sites, bloggers and Vloggers are doing a brilliant job sharing their honest analysis before ICO events. I strongly believe one of the last few analysis steps before investing should be the analysis of the ICO and Token generation Smart Contracts. This will truly give the community confidence in the promises made by project team. is a computer protocol intended to digitally facilitate, verify, or enforce the negotiation or performance of a . allow the performance of credible transactions without third parties.” [ ] “A smart contract contract Smart contracts 1 As mentioned in my previous post about s, I would really like to encourage ICO management teams to release these contracts with source code at-least few hours before the ICO event starts — better to use ENS instead of contract address. Best Practices for ICO From the community point of view in this era of scammers, this will give us enough time to double check that the smart contract is genuine and it is doing what it is supposed to do. I would like to share few tips on how to read the basic information from the smart contracts. . To make it useful for wider audience i will try not to jump into code — at least not in part 1 of the series :). You don’t need to be a coder to do basic smart contract analysis Lets do it! Token Contract Analysis We can easily read some basic information about ERC20 based tokens. “The Ethereum token standard ( ) is used for smart contracts. Developed in 2015, defines a common list of rules that an Ethereum token has to implement. Giving developers the ability to program how new tokens will function within the Ethereum ecosystem” [ ] ERC20 Ethereum ERC20 2 So let’s take BEE token as an example: Open .io website, search and select BEE in top right search bar etherscan or Click this link BEE Token Contract For new tokens you might not be able to search the tokens by symbol but you can search by token address given by ICO management team. Have a quick look at the basic information provided under “Read Smart Contract Tab” Snapshot of BEE token contract via etherscan Compare it with information provided by ICO team. You must have noticed number “ & train of zeros” :). That’s because value supports 18 decimals places. 1 BEE = 1 x 10 to the power 18. 2 . > totalSupply -> 5 You can also check the “Token Holders” tab which will list address of token holders. You might be able to check how many token are already transferred during pre-sales or private sale — assuming token were transferred to them before ICO. You should be able to see this sort of information for most of ERC20 based tokens. ICO Contract Analysis As far as i know there is no standard for ICO smart contracts. ICO management teams members are free to design and choose what short of information they would like to expose via providing Contract pplication inary nterface — ABI. A B I Now lets have a look at our example and analyse the information available BEE ICO Smart Contract Snapshot of BEE ICO contract “Read Contract Tab” Select “Read Contract Information” tab and there you Go!. Most of the information shared is self descriptive. Token address given at number number “17.” — same token address we analysed in previous section. Hard cap at “14.” and Minimum Contribution at number “11.” — this is in ETH. Remember . 1 ETH = 10 to power 18 wei This means minimum contribution was set to 0.1 ETH. Nicely done ICO contracts also let users query for more information using “Query” feature of etherscan. I will let you explore that part :). High five! Now you know how to explore a smart contract and do some basic analysis.