Smart Contracts How to Create a Burnable Token with Solidity and OpenZeppelin Library In a previous tutorial, we created and created a capped a timebound crowdsale. Now, we review how to create a “burnable token”. Making a burnable token is accomplished by sending tokens to an address…
Ethereum How To Create A Basic Time-Sensitive Crowdsale Token With OpenZeppelin Library Recap: In the last tutorial series, we created a capped crowdsale using OpenZeppelin library, limiting an investor’s maximum and minimum investment. In this tutorial, we will extend that concept and…
Ethereum How To Build A Simple Capped Crowdsale Token Using OpenZeppelin Library — Part 2 In Part 1, we built a capped ExampleToken. In this article, we will dive into crowdsale contract ExampleTokenCrowdsale and understand its inner workings. This contract also defines a constructor…
Ethereum How To Build A Simple Capped Crowdsale Token Using OpenZeppelin Library — Part 1 Today, we are going to build a capped crowdsale with a mintable token using open-zeppelin library. (If you are a complete beginner, you should check out the previous tutorial on how to set up a…