2021-11-17
3461
#blockchain
Chidume Nnamdi
77508
Nov 17, 2021 ⋅ 12 min read

How to create and deploy an ERC-20 token on the Ethereum blockchain

Chidume Nnamdi I'm a software engineer with over six years of experience. I've worked with different stacks, including WAMP, MERN, and MEAN. My language of choice is JavaScript; frameworks are Angular and Node.js.

Recent posts:

A Guide To Deno.cron

A guide to Deno.cron

This guide explores how to use the cron package in Deno, `Deno.cron`, to handle scheduling tasks with specific commands.

Rosario De Chiara
Apr 29, 2024 ⋅ 5 min read
Comparing Mutative Vs Immer Vs Reducers For Data Handling In React

Comparing React state tools: Mutative vs. Immer vs. reducers

Mutative processes data with better performance than both Immer and native reducers. Let’s compare these data handling options in React.

Rashedul Alam
Apr 26, 2024 ⋅ 7 min read
Radix Ui Adoption Guide Overview Examples And Alternatives

Radix UI adoption guide: Overview, examples, and alternatives

Radix UI is quickly rising in popularity and has become an excellent go-to solution for building modern design systems and websites.

Nefe Emadamerho-Atori
Apr 25, 2024 ⋅ 11 min read
Understanding The Css Revert Layer Keyword, Part Of Css Cascade Layers

Understanding the CSS revert-layer keyword

In this article, we’ll explore CSS cascade layers — and, specifically, the revert-layer keyword — to help you refine your styling strategy.

Chimezie Innocent
Apr 24, 2024 ⋅ 6 min read
View all posts

9 Replies to "How to create and deploy an ERC-20 token on the Ethereum blockchain"

    1. Just ignore the slashes – like this:

      allowed[msg.sender][delegate] = numTokens;

      I did so and contract was compiled and deployed ok.

    2. Change this “allowed\[msg.sender\][delegate] = numTokens;” to “allowed[msg.sender][delegate] = numTokens;” . I don’t know how the slashes showed up 😁😁😁

Leave a Reply