├── LICENSE └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | BSD 3-Clause License 2 | 3 | Copyright (c) 2021, Ethereum Boilerplates 4 | All rights reserved. 5 | 6 | Redistribution and use in source and binary forms, with or without 7 | modification, are permitted provided that the following conditions are met: 8 | 9 | 1. Redistributions of source code must retain the above copyright notice, this 10 | list of conditions and the following disclaimer. 11 | 12 | 2. Redistributions in binary form must reproduce the above copyright notice, 13 | this list of conditions and the following disclaimer in the documentation 14 | and/or other materials provided with the distribution. 15 | 16 | 3. Neither the name of the copyright holder nor the names of its 17 | contributors may be used to endorse or promote products derived from 18 | this software without specific prior written permission. 19 | 20 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 23 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 24 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 26 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 27 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 28 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 29 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | ## Audience 3 | This is an ebook for web2 developers that want to learn web3 as soon as possible. 4 | 5 | This book assumes that the web2 developer reading this book is already a bit interested in crypto and web3 but hasn't yet taken the step into web3. 6 | 7 | This book needs to motivate the web2 developer to start their web3 journey by showing the opportunities and growth potential of web3. We need to explain that the developers of any kind now can program money if they learn the skills we are going to teach them. 8 | 9 | This book assumes that the reader has basic web development knowledge and is familiar with frameworks like React. 10 | 11 | This book shouldn't be more than 20 pages long - it should have nice graphics. 12 | 13 | ## Outline 14 | 15 | 1. Excite the reader by telling them what they will achieve by reading this book - "At the end of this book you will be able to run your own wallet, DEX and have first dapps deployed...." 16 | 2. Explanation of web1, web2, web3 17 | 3. Opportunities of web3 18 | 4. Explain that a lot of web2 skills can be reused in web3 - React, Mobile etc and motivate the developers by showing them that the tools they know already can be used in web3. 19 | 5. We need to show that by using correct tools like Moralis the web3 development experience is very similar to web2. 20 | 6. Explain what metamask is - VIDEO 21 | 7. Show `ethereum-boilerplate` 22 | 8. Explain how you can easily build web3 dapps using the hooks and components of the boilerplate 23 | 9. Explain that we help everyone 24/7 in Discord and Forum (link exact thread where boilerplate is discussed) 24 | 10. Explain what more Moralis can do - NFT Marketplace, Wallet, etc - Link to YouTube 25 | --------------------------------------------------------------------------------