create account

How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified) by maxnachamkin

View this thread on: hive.blogpeakd.comecency.com
· @maxnachamkin · (edited)
$2.55
How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)
![create_token_tutorial.jpg](https://steemitimages.com/DQmXf4sX4d9HAPaDD2zseh57tJ18rRMMVk4nA799PYRwodU/create_token_tutorial.jpg)

As part of my own education process, I wanted to create my own Ethereum token that would be viable to sell on an exchange. ICOs are all the rage these days, and I see them as a valuable avenue to raising funds for important projects in the world.

Thus [The Most Private Coin Ever](https://www.themostprivatecoinever.com) was born. 

Since I’ve launched the coin, I’ve gotten a lot of messages from people asking me how they can do the same. They’ve wanted to create their own token for fun, to learn, or for a business that they’re starting…

…but they don’t know where to start.

The challenge with programming in Ethereum is that their aren’t a *ton* of resources out there for how to do things. It’s still pretty new, with limited documentation and Stack Overflow responses.

And so in this tutorial, I’m going to make it simple. 

I’m going to show you how to create your own Ethereum Token in as little as one hour, so you can use it for your own projects.

This token will be a standard ERC20 token, meaning you’ll set a fixed amount to be created and won’t have any fancy rules. I'll also show you how to get it verified so that it's uber legit.

Let’s get started.

## Step 1: Decide what you want your token to be

In order to create an ERC20 token, you need the following:

* The Token’s Name
* The Token’s Symbol
* The Token’s Decimal Places
* The Number of Tokens in Circulation

For [The Most Private Coin Ever](https://www.themostprivatecoinever.com) , I chose:
* Name: The Most Private Coin Ever
* Symbol: ???
* Decimal Places: 0
* Amount of Tokens in Circulation: 100,000

The decimal places is where things can get tricky. Most tokens have 18 decimal places, meaning that you can have up to .0000000000000000001 tokens.

When creating the token, you’ll need to be aware of what decimal places you’d like and how it fits into the larger picture of your project.

For me, I wanted to keep it simple and wanted people to either have a token, or not. Nothing in between. So I chose 0.  But you could choose 1 if you wanted people to have half a token, or 18 if you wanted it to be ‘standard’.

## Step 2: Code the Contract

Here is a contract that you can essentially "Copy/Paste" to create your ERC20 token. Shoutout to [TokenFactory](https://github.com/ConsenSys/Token-Factory) for the source code.

```
pragma solidity ^0.4.4;

contract Token {

    /// @return total amount of tokens
    function totalSupply() constant returns (uint256 supply) {}

    /// @param _owner The address from which the balance will be retrieved
    /// @return The balance
    function balanceOf(address _owner) constant returns (uint256 balance) {}

    /// @notice send `_value` token to `_to` from `msg.sender`
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transfer(address _to, uint256 _value) returns (bool success) {}

    /// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
    /// @param _from The address of the sender
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {}

    /// @notice `msg.sender` approves `_addr` to spend `_value` tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @param _value The amount of wei to be approved for transfer
    /// @return Whether the approval was successful or not
    function approve(address _spender, uint256 _value) returns (bool success) {}

    /// @param _owner The address of the account owning tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @return Amount of remaining tokens allowed to spent
    function allowance(address _owner, address _spender) constant returns (uint256 remaining) {}

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
    
}



contract StandardToken is Token {

    function transfer(address _to, uint256 _value) returns (bool success) {
        //Default assumes totalSupply can't be over max (2^256 - 1).
        //If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap.
        //Replace the if with this one instead.
        //if (balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
        if (balances[msg.sender] >= _value && _value > 0) {
            balances[msg.sender] -= _value;
            balances[_to] += _value;
            Transfer(msg.sender, _to, _value);
            return true;
        } else { return false; }
    }

    function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
        //same as above. Replace this line with the following if you want to protect against wrapping uints.
        //if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
        if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) {
            balances[_to] += _value;
            balances[_from] -= _value;
            allowed[_from][msg.sender] -= _value;
            Transfer(_from, _to, _value);
            return true;
        } else { return false; }
    }

    function balanceOf(address _owner) constant returns (uint256 balance) {
        return balances[_owner];
    }

    function approve(address _spender, uint256 _value) returns (bool success) {
        allowed[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);
        return true;
    }

    function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
      return allowed[_owner][_spender];
    }

    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowed;
    uint256 public totalSupply;
}


//name this contract whatever you'd like
contract ERC20Token is StandardToken {

    function () {
        //if ether is sent to this address, send it back.
        throw;
    }

    /* Public variables of the token */

    /*
    NOTE:
    The following variables are OPTIONAL vanities. One does not have to include them.
    They allow one to customise the token contract & in no way influences the core functionality.
    Some wallets/interfaces might not even bother to look at this information.
    */
    string public name;                   //fancy name: eg Simon Bucks
    uint8 public decimals;                //How many decimals to show. ie. There could 1000 base units with 3 decimals. Meaning 0.980 SBX = 980 base units. It's like comparing 1 wei to 1 ether.
    string public symbol;                 //An identifier: eg SBX
    string public version = 'H1.0';       //human 0.1 standard. Just an arbitrary versioning scheme.

//
// CHANGE THESE VALUES FOR YOUR TOKEN
//

//make sure this function name matches the contract name above. So if you're token is called TutorialToken, make sure the //contract name above is also TutorialToken instead of ERC20Token

    function ERC20Token(
        ) {
        balances[msg.sender] = NUMBER_OF_TOKENS_HERE;               // Give the creator all initial tokens (100000 for example)
        totalSupply = NUMBER_OF_TOKENS_HERE;                        // Update total supply (100000 for example)
        name = "NAME OF YOUR TOKEN HERE";                                   // Set the name for display purposes
        decimals = 0;                            // Amount of decimals for display purposes
        symbol = "SYM";                               // Set the symbol for display purposes
    }

    /* Approves and then calls the receiving contract */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success) {
        allowed[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);

        //call the receiveApproval function on the contract you want to be notified. This crafts the function signature manually so one doesn't have to include a contract in here just for this.
        //receiveApproval(address _from, uint256 _value, address _tokenContract, bytes _extraData)
        //it is assumed that when does this that the call *should* succeed, otherwise one would use vanilla approve instead.
        if(!_spender.call(bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData)) { throw; }
        return true;
    }
}
```


Throw this into your favorite text editor ([Sublime](https://www.sublimetext.com/) is my personal favorite).

You’re going to want to replace everything in the area where it says “CHANGE THESE VARIABLES FOR YOUR TOKEN”.

So that means, change:

* The token name
* The token symbol (I'd go no more than 4 characters here)
* The token decimal places
* How much you as the owner want to start off with
* The amount of tokens in circulation (to keep things basic, make this is the same amount as the owner supply)

Some things to keep in mind:

1. The supply that you set for the token is correlated to the amount of decimal places that you set. 

For example, if you want a token that has 0 decimal places to have 100 tokens, then the supply would be 100.

But if you have a token with 18 decimal places and you want 100 of them, then the supply would be 100000000000000000000 (18 zeros added to the amount).

2. You set the amount of tokens you receive as the creator of the contract.

That’s what this line of code is: 

```
balances[msg.sender] = NUMBER_OF_TOKENS_HERE;  
```

Whatever you set here will be sent to the ETH wallet of wherever you deploy the contract. We’ll get to that in a few. 

But for now just set this equal to the supply so that you receive all the tokens. If you’re wanting to be more advanced with the token logic, you could set it with different rules, like different founders of your projects would receive different amounts or something like that.

Once you have all the variables in, it’s now time to deploy it to the blockchain and test it.

## Step 3: Test The Token on The TestNet

Next we’re going to deploy the contract to the Test Net to see if it works. It sucks to deploy a contract to the MainNet, pay for it, and then watch it fail.

I *may* have done that while creating my own token….so heed the warning.

First, if you don’t have it already, download [MetaMask](https://metamask.io/). They have an easy-to-use interface to test this.

Once you’ve installed MetaMask, make sure that you’re logged in and setup on the Ropsten test network.  If you click in the top left where it says ‘Main Ethereum Network’ you can change it to Ropsten.

To confirm, the top of your MetaMask window should look like this:

![Screen Shot 2017-07-10 at 1.25.35 PM.png](https://steemitimages.com/DQmRR7avYAnDebACb1CCEBLvDeEo1cckHkXTViJKPc336KG/Screen%20Shot%202017-07-10%20at%201.25.35%20PM.png)

**This Wallet is going to be the ‘Owner’ of the contract, so don’t lose this wallet! If you’d like it not to be Metamask, you can use Mist or MyEtherWallet to create contracts as well. I recommend using MM for simplicity, and you can always export your private key to MyEtherWallet for usage later.**

Now head to the [Solidity Remix Compiler](https://ethereum.github.io/browser-solidity/) - it’s an online compiler that allows you to publish the Smart Contract straight to the blockchain.

Copy/Paste the source of the contract you just modified into the main window. It'll look something like this:

![Screen Shot 2017-07-10 at 2.34.16 PM.png](https://steemitimages.com/DQmbSygUYivCNyTiMLqrKcYXrsP2WWJ6qJLTacDM3ygJVGJ/Screen%20Shot%202017-07-10%20at%202.34.16%20PM.png)

Now, go to settings on the right and select the latest release compiler version (NOT nightly), as well as unchecking ‘Enable Optimization’.

So it should look something like this:

![Screen Shot 2017-07-10 at 1.47.33 PM.png](https://steemitimages.com/DQmUqM2jbnebusoywDez8qN7hQ9qBWp9HVhPmwRDDeSbvwp/Screen%20Shot%202017-07-10%20at%201.47.33%20PM.png)

Keep note of the current Solidity version in the compiler. We’ll need that later to verify the contract source.

Now go back to the Contract tab and hit ‘Create’ under the name of the Token function that you created.

So you’d hit ‘Create’ under ‘TutorialToken’.

![Screen Shot 2017-07-10 at 1.31.03 PM.png](https://steemitimages.com/DQmfFhHPUkGTM9nBUSrQGBPGiZB6X8GEgmUPge43ECWv2Ca/Screen%20Shot%202017-07-10%20at%201.31.03%20PM.png)

What will happen is MetaMask will pop up asking you to hit ‘Submit’ to pay for the transaction.

Remember, this is the Ropsten test net, so it’s not real Ether. You can double check to make sure you’re on the test network in MetaMask before you hit submit just to be sure.

When you hit Submit, it’ll say ‘Contract Pending’ in MetaMask. When it’s ready, click the ‘Date’ and it’ll bring up the transaction in EtherScan. Like this:

![Screen Shot 2017-07-10 at 1.34.45 PM.png](https://steemitimages.com/DQmfDsvRuu5JPcP8udz2iaXFhauHGs5nVB53PjMep9P3ni9/Screen%20Shot%202017-07-10%20at%201.34.45%20PM.png)

If you click the date, it’ll bring up the following screen:

![txscreen.jpg](https://steemitimages.com/DQmWJT5jURdy5no1NuFPZFrBJw1KPufqWDmJ5MxTLudJhzX/txscreen.jpg)

If this process worked, it’s now time to verify the source code.

If not, you’ll want to go back to the code and modify the source to get it to work. 

I can’t say exactly what that’d look like, but this is where having a “programmers mindset” comes in. A lot of time there’s unexpected bugs that can’t be predicted until you just do it.

## Step 3.5. Watch The Custom Token

Now let’s see if it actually created the tokens and sent them to me.

![contract_address.jpg](https://steemitimages.com/DQmf9d2foSCh6RkiFoZa6wT8ctxhsvFMwPSzdie65J21MNz/contract_address.jpg)

Copy the Contract Address that’s listed in the Transaction information (see screenshot above).

In this case, for me, it’s `0x5xxxxxxxxxxxxxxxx`.

I’m going to add that to MetaMask ‘Tokens’ tab:

![Screen Shot 2017-07-10 at 2.07.02 PM.png](https://steemitimages.com/DQmeH4qsQfpZDjeLagfXAPindzspfEaf5YUmAtyAXjr9ugh/Screen%20Shot%202017-07-10%20at%202.07.02%20PM.png)

When I click the “+” button, I can paste it in there and it’ll automatically insert the information of the token, like so:

![mm_token.jpg](https://steemitimages.com/DQmQZ7xwbu5Y7nduLV2kYjAMrZj4QNBFgXNqJA6wkbZrajh/mm_token.jpg)

Let’s hit ‘Add’.

Sweet! It says I have the 100 tokens that I created - it worked! 

Now I can send those tokens, or sell them on a market if I decide to do so.

![Screen Shot 2017-07-10 at 2.08.15 PM.png](https://steemitimages.com/DQmQwMgtBD7wqsW4CMCbz4Kg4bjT3kUNRKQrh9yhCppzYXm/Screen%20Shot%202017-07-10%20at%202.08.15%20PM.png)

Boo ya!

## Step 4. Verify the Source Code
This is going to be important for various reasons, mainly verifying the validity of your token to the public. 

It doesn’t technically matter, and your token will still be usable if you don’t do it, but it’s good practice to verify it so people know that you’re not doing anything shady.

When you’re on the Transaction screen from the previous step, click where it says [Contract xxxxxx Created] in the To: field. That’s the Contract we just published.

![contract_creation.jpg](https://steemitimages.com/DQmWpKipkzivsryrnYf1a5fwc4dEuyBrShsV2eBvBuRdHys/contract_creation.jpg)

Then click the ‘Contract Code’ tab.

![contract_code.jpg](https://steemitimages.com/DQmUUJPy3du2BChAT2qqoPpsnzxvXwZNJRaDpRVVWiX1vCh/contract_code.jpg)

Hit ‘Verify and Publish’. That’ll bring you to this screen:

![verify_token.jpg](https://steemitimages.com/DQmahYLjjWFP9e3fG1TtJjjt455SSHnw3EcGDCoAsm2uzsr/verify_token.jpg)
Here’s where you NEED to have the right settings.

The Contract Address will already be filled in.

For Contract Name, make sure to put the name of the function that you modified for your custom token. The default in the code I gave you is ERC20Token, but if you renamed it, make sure you put that.

I renamed mine ‘TutorialToken’ for this tutorial, so I put that.

For Compiler, select the SAME compiler you used in the Solidity Compiler. Otherwise you will not be able to verify your source code!

Make sure Optimization is disabled as well.

Then Copy/Paste the code from the compiler right into the Contract Code field (the big one).

Hit submit.

If you did the steps right, you’ll get something like this:

![token_verify2.jpg](https://steemitimages.com/DQmWx4tMLrss8XMWJ5uS3QinWBzi4ZTWzkV22WnzbtwDPLm/token_verify2.jpg)
That means it was verified. Woot! 

If you go to the Contract address page, you’ll see that ‘Contract Source’ says Yes and says that it’s Verified. Like this:

![Screen Shot 2017-07-10 at 1.46.34 PM.png](https://steemitimages.com/DQmNmKwnwrMAVy11sKQT6wNtwZZA2poAdJrq8vcoof8cP1f/Screen%20Shot%202017-07-10%20at%201.46.34%20PM.png)

If not, double check your steps, or make a comment in this thread and we’ll see what went wrong.

## Step 5. Get it on The Main Net

Now that everything’s working, it’s time to deploy it on the MainNet and let other people use it.

This part is simple.

Just do steps 3 & 4, but instead of being connected to the Ropsten Test Network, you want to be connected to the MainNet. Make sure your MetaMask account is in Mainnet mode.

![Screen Shot 2017-07-10 at 2.37.26 PM.png](https://steemitimages.com/DQmZwFcUits3ashYAhaZ55z6ozhjSEyE3dPTLvqxZs2UuJL/Screen%20Shot%202017-07-10%20at%202.37.26%20PM.png)

You’ll need to fund your contract with real Ether to do this. This cost me ~$30 USD when I did this for [The Most Private Coin Ever](https://www.themostprivatecoinever.com)

## Step 6.  Get it Verified on Etherscan

This step is not required, but it adds to the validity of your token if you get it verified by them.

You can see how my token is verified by how it has the logo and it doesn't say "UNVERIFIED" next to it.

[Click here to see what I mean](https://etherscan.io/token/0x1a645debd700890f1bc93626078d89e260bd09ce)

To do this you’ll need to go to the [Etherscan Contact Us Page](https://etherscan.io/contactus)) and send them an e-mail with the following information:
```
1. Ensure that you token contract source code has been verified 

2. Provide us with your Official Site URL: 

3. Contract Address:

4. Link to download a 28x28png icon logo:
```

So yes, you'll need to have a website with a stated purpose of the token.

They’ll get back to you and let you know if they’ll verify it or not. Remember, Etherscan is a centralized service so it's very possible that they will not verify your token if they don't deem it worthy.

### Congrats! & Next Steps

You now have a token on the ETH MainNet that other people can use. It's now primed to be sent to others and received.


To buy and sell, you'll need to get your token listed on an exchange. But that's a tutorial for another day :) 

For now, enjoy your newly created (and personal) ERC20 & Verified Ethereum Token!!

Follow me at @maxnachamkin to get notified when new tutorials and reports come out.

To freedom,

Max

EDIT: It's been 3 years since the original post - it's likely that the contract code has updated so that will no longer work. If you'd like to create your own token with MyEtherWallet, the same process will still work you just need to find that new contract code. Since then I've heard about some tools that do this for you  - <a href="www.guarda.co">Guarda</a> & <a href="https://docs.wavesplatform.com/en/waves-client/assets-management/issue-an-asset.html">WAVES</a> are two that I've heard of (but haven't tried).

<center><a href="https://steemit.com/@maxnachamkin"><img src="https://steemitimages.com/DQme1qhwdEA85eSCJEKLfih93PHrB36KHg4jTsBytTQwtP5/follower_badge.jpg" /></a></center>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 292 others
👎  
properties (23)
authormaxnachamkin
permlinkhow-to-create-your-own-ethereum-token-in-an-hour-erc20-verified
categoryethereum
json_metadata{"format":"markdown","links":["https://www.themostprivatecoinever.com","https://github.com/ConsenSys/Token-Factory","https://www.sublimetext.com/","https://metamask.io/","https://ethereum.github.io/browser-solidity/","https://etherscan.io/token/0x1a645debd700890f1bc93626078d89e260bd09ce","https://etherscan.io/contactus","www.guarda.co","https://docs.wavesplatform.com/en/waves-client/assets-management/issue-an-asset.html","https://steemit.com/@maxnachamkin"],"app":"steemit/0.1","tags":["cryptocurrency","blockchain","token","creation"],"users":["maxnachamkin"],"image":["https://steemitimages.com/DQmXf4sX4d9HAPaDD2zseh57tJ18rRMMVk4nA799PYRwodU/create_token_tutorial.jpg","https://steemitimages.com/DQmRR7avYAnDebACb1CCEBLvDeEo1cckHkXTViJKPc336KG/Screen%20Shot%202017-07-10%20at%201.25.35%20PM.png","https://steemitimages.com/DQmbSygUYivCNyTiMLqrKcYXrsP2WWJ6qJLTacDM3ygJVGJ/Screen%20Shot%202017-07-10%20at%202.34.16%20PM.png","https://steemitimages.com/DQmUqM2jbnebusoywDez8qN7hQ9qBWp9HVhPmwRDDeSbvwp/Screen%20Shot%202017-07-10%20at%201.47.33%20PM.png","https://steemitimages.com/DQmfFhHPUkGTM9nBUSrQGBPGiZB6X8GEgmUPge43ECWv2Ca/Screen%20Shot%202017-07-10%20at%201.31.03%20PM.png","https://steemitimages.com/DQmfDsvRuu5JPcP8udz2iaXFhauHGs5nVB53PjMep9P3ni9/Screen%20Shot%202017-07-10%20at%201.34.45%20PM.png","https://steemitimages.com/DQmWJT5jURdy5no1NuFPZFrBJw1KPufqWDmJ5MxTLudJhzX/txscreen.jpg","https://steemitimages.com/DQmf9d2foSCh6RkiFoZa6wT8ctxhsvFMwPSzdie65J21MNz/contract_address.jpg","https://steemitimages.com/DQmeH4qsQfpZDjeLagfXAPindzspfEaf5YUmAtyAXjr9ugh/Screen%20Shot%202017-07-10%20at%202.07.02%20PM.png","https://steemitimages.com/DQmQZ7xwbu5Y7nduLV2kYjAMrZj4QNBFgXNqJA6wkbZrajh/mm_token.jpg","https://steemitimages.com/DQmQwMgtBD7wqsW4CMCbz4Kg4bjT3kUNRKQrh9yhCppzYXm/Screen%20Shot%202017-07-10%20at%202.08.15%20PM.png","https://steemitimages.com/DQmWpKipkzivsryrnYf1a5fwc4dEuyBrShsV2eBvBuRdHys/contract_creation.jpg","https://steemitimages.com/DQmUUJPy3du2BChAT2qqoPpsnzxvXwZNJRaDpRVVWiX1vCh/contract_code.jpg","https://steemitimages.com/DQmahYLjjWFP9e3fG1TtJjjt455SSHnw3EcGDCoAsm2uzsr/verify_token.jpg","https://steemitimages.com/DQmWx4tMLrss8XMWJ5uS3QinWBzi4ZTWzkV22WnzbtwDPLm/token_verify2.jpg","https://steemitimages.com/DQmNmKwnwrMAVy11sKQT6wNtwZZA2poAdJrq8vcoof8cP1f/Screen%20Shot%202017-07-10%20at%201.46.34%20PM.png","https://steemitimages.com/DQmZwFcUits3ashYAhaZ55z6ozhjSEyE3dPTLvqxZs2UuJL/Screen%20Shot%202017-07-10%20at%202.37.26%20PM.png","https://steemitimages.com/DQme1qhwdEA85eSCJEKLfih93PHrB36KHg4jTsBytTQwtP5/follower_badge.jpg"]}
created2017-07-10 21:21:39
last_update2020-01-17 16:55:36
depth0
children158
last_payout2017-07-17 21:21:39
cashout_time1969-12-31 23:59:59
total_payout_value2.001 HBD
curator_payout_value0.546 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20,139
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,033,350
net_rshares721,225,495,442
author_curate_reward""
vote details (357)
@adarshsunil ·
Nice and simple tutorial .. Really helped me a lot..
properties (22)
authoradarshsunil
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180125t043139824z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-25 04:32:42
last_update2018-01-25 04:32:42
depth1
children4
last_payout2018-02-01 04:32:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation1,046,788
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id32,100,104
net_rshares0
@maxnachamkin ·
Good to hear.
properties (22)
authormaxnachamkin
permlinkre-adarshsunil-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180131t054942766z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-31 05:49:42
last_update2018-01-31 05:49:42
depth2
children3
last_payout2018-02-07 05:49:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,769,070
net_rshares0
@hashflat ·
Hallo Max, können Sie uns bei der Erstellung eines ERC20 Token für einen ICO behilflich sein? Danke und Grüße Manfred
properties (22)
authorhashflat
permlinkre-maxnachamkin-re-adarshsunil-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180629t054111555z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-06-29 05:41:12
last_update2018-06-29 05:41:12
depth3
children0
last_payout2018-07-06 05:41:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length117
author_reputation0
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id62,700,489
net_rshares0
@tombola ·
Hi Max - How do I send the tokens to another wallet? I don't want to list it on an exchange - I just want to be able to send to other Ethereum wallets belonging to people in my company? 

Thanks very much for such a great post - you resolved what I have been attempting for days in a few hours and I have never done a single bit of coding in my life. Really great post!
properties (22)
authortombola
permlinkre-maxnachamkin-re-adarshsunil-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180213t164139434z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-02-13 16:41:39
last_update2018-02-13 16:41:39
depth3
children1
last_payout2018-02-20 16:41:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length369
author_reputation0
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,255,715
net_rshares0
@adiandrea ·
great tutorial! I was looking what to be prepared for deploying smartcontract to main net and I got this!
properties (22)
authoradiandrea
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180121t010746604z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-21 01:07:36
last_update2018-01-21 01:07:36
depth1
children1
last_payout2018-01-28 01:07:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length105
author_reputation243,849,030
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,988,400
net_rshares0
@maxnachamkin ·
Nice.
properties (22)
authormaxnachamkin
permlinkre-adiandrea-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180131t054822013z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-31 05:48:21
last_update2018-01-31 05:48:21
depth2
children0
last_payout2018-02-07 05:48:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,768,829
net_rshares0
@amarasophi · (edited)
Really appreciate your insights, thanks for sharing this article! As Erc20 tokens are creating a rage in a digital currency sector , most token created for ICO’s on ethereum are ERC20 compliant . If you want to start your exchange or planning to launch an ICO and to build tokens powered by ethereum, then I preferably suggest one of the topmost ICO development service providers who will be happy to assist you in several ways. visit their website
and go through their services here--> https://www.cryptoexchangescript.com/erc20-token-development
properties (22)
authoramarasophi
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20181130t131934793z
categoryethereum
json_metadata{"tags":["ethereum"],"links":["https://www.cryptoexchangescript.com/erc20-token-development"],"app":"steemit/0.1"}
created2018-11-30 13:19:36
last_update2018-12-26 11:59:09
depth1
children0
last_payout2018-12-07 13:19:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length547
author_reputation190,686,040
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,148,131
net_rshares0
@amitrwt ·
This looks interesting. I would love to test it. Time to launch sublime.
properties (22)
authoramitrwt
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171129t185558997z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-29 18:56:00
last_update2017-11-29 18:56:00
depth1
children1
last_payout2017-12-06 18:56:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length72
author_reputation4,986,999,320
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,916,835
net_rshares0
@maxnachamkin ·
Do it.
properties (22)
authormaxnachamkin
permlinkre-amitrwt-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180131t053822201z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-31 05:38:21
last_update2018-01-31 05:38:21
depth2
children0
last_payout2018-02-07 05:38:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,766,844
net_rshares0
@ankitgoyal09 ·
where i have to paste the code of contarct?
in my pc ethereum wallet and geth is not running properly. when i run the applications it always show an error??
please help bro!!
thanks!
properties (22)
authorankitgoyal09
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171123t042915219z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-23 04:29:24
last_update2017-11-23 04:29:24
depth1
children1
last_payout2017-11-30 04:29:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length182
author_reputation2,409,061,381
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,261,497
net_rshares0
@maxnachamkin ·
You don't need Ethereum Wallet or Geth. Just MetaMask, then use the online solidity browser as I talked about in the tutorial.
properties (22)
authormaxnachamkin
permlinkre-ankitgoyal09-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171124t164706010z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-24 16:47:06
last_update2017-11-24 16:47:06
depth2
children0
last_payout2017-12-01 16:47:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length126
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,408,785
net_rshares0
@apprenticecrypto ·
Great write-up, community definitely needs more coding/crypto 'beginner' articles like this.
properties (22)
authorapprenticecrypto
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180211t050727092z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-02-11 05:07:27
last_update2018-02-11 05:07:27
depth1
children0
last_payout2018-02-18 05:07:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation665,866,167
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,582,473
net_rshares0
@aqeelmalik ·
Thanks for rhe tutorial helped me alot
properties (22)
authoraqeelmalik
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171222t140546581z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-12-22 14:06:39
last_update2017-12-22 14:06:39
depth1
children0
last_payout2017-12-29 14:06:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation1,771,354,629,409
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,700,253
net_rshares0
@ara13 ·
Hi Max, thanks for your post, it's ****ing awesome. I ran into some issues with step 3. After I select my Solidity Version, I go to Run and when I click create button nothing is happening. It looks like it was redesigned, so I am not sure what to do?
Please help, thanks a lot !
properties (22)
authorara13
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180107t101724481z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-07 10:10:51
last_update2018-01-07 10:10:51
depth1
children1
last_payout2018-01-14 10:10:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length278
author_reputation0
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,727,392
net_rshares0
@maxnachamkin ·
Yeah, the redesign kind of made it a bit more confusing. Have you figured this out yet?

I’d love to update this tutorial at some point soon.
properties (22)
authormaxnachamkin
permlinkre-ara13-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180131t054115845z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-31 05:41:15
last_update2018-01-31 05:41:15
depth2
children0
last_payout2018-02-07 05:41:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length141
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,767,391
net_rshares0
@astroboysoup ·
Thank you for the great content. Made my first token
👍  ,
properties (23)
authorastroboysoup
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171102t230727296z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-02 23:07:21
last_update2017-11-02 23:07:21
depth1
children2
last_payout2017-11-09 23:07:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation4,677,587,770
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,303,126
net_rshares0
author_curate_reward""
vote details (2)
@guisepppe ·
how? i get errors
👍  
properties (23)
authorguisepppe
permlinkre-astroboysoup-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180121t215755495z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-21 21:57:57
last_update2018-01-21 21:57:57
depth2
children0
last_payout2018-01-28 21:57:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation4,740,309,574
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id31,208,227
net_rshares0
author_curate_reward""
vote details (1)
@maxnachamkin ·
Boo ya, nice astroboysoup!!
👍  
properties (23)
authormaxnachamkin
permlinkre-astroboysoup-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171122t022037850z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-22 02:20:36
last_update2017-11-22 02:20:36
depth2
children0
last_payout2017-11-29 02:20:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,153,458
net_rshares0
author_curate_reward""
vote details (1)
@bangkokhearts ·
One of the best posts on Steemit and only $2.55 payout shows the shallow nature of today's social media. Thanks for posting this information.
👍  ,
properties (23)
authorbangkokhearts
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171019t133536521z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-10-19 13:35:45
last_update2017-10-19 13:35:45
depth1
children3
last_payout2017-10-26 13:35:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length141
author_reputation16,286,670,122
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,056,530
net_rshares0
author_curate_reward""
vote details (2)
@deborahlindsey ·
Honestly I agree. Wow. This is a GREAT post! It is exactly what I have been looking for for weeks. I still have gaping holes in my knowledge here but this goes a long way to giving me some understanding.
properties (22)
authordeborahlindsey
permlinkre-bangkokhearts-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180319t041054723z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-03-19 04:10:57
last_update2018-03-19 04:10:57
depth2
children0
last_payout2018-03-26 04:10:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length203
author_reputation1,048,290,004
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,262,983
net_rshares0
@maxnachamkin ·
Thanks bangkokhearts, and my pleasure.
👍  , , ,
properties (23)
authormaxnachamkin
permlinkre-bangkokhearts-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171022t225220738z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-10-22 22:52:30
last_update2017-10-22 22:52:30
depth2
children1
last_payout2017-10-29 22:52:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,334,748
net_rshares0
author_curate_reward""
vote details (4)
@skope ·
Hi please can you make or link me to a post on how to create an ico from scratch
properties (22)
authorskope
permlinkre-maxnachamkin-re-bangkokhearts-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171031t102330086z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-10-31 10:23:33
last_update2017-10-31 10:23:33
depth3
children0
last_payout2017-11-07 10:23:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation0
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,058,073
net_rshares0
@barnabyandersun ·
This is an awesome article, I've been researching this topic, thanks so much for sharing all of this @maxnachamkin !
I've just now joined Steemit, and I'm researching for creating my own ERC20 token for a new project that I'll be launch, very helpful indeed.
👍  
properties (23)
authorbarnabyandersun
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170715t135702407z
categoryethereum
json_metadata{"tags":["ethereum"],"users":["maxnachamkin"],"app":"steemit/0.1"}
created2017-07-15 13:57:06
last_update2017-07-15 13:57:06
depth1
children1
last_payout2017-07-22 13:57:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length258
author_reputation0
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,570,805
net_rshares0
author_curate_reward""
vote details (1)
@maxnachamkin ·
Happy to help! Good luck with your project :)
properties (22)
authormaxnachamkin
permlinkre-barnabyandersun-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170721t164459319z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-07-21 16:45:00
last_update2017-07-21 16:45:00
depth2
children0
last_payout2017-07-28 16:45:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,214,761
net_rshares0
@bennyliaw ·
A bit lengthy, but is a nice article
properties (22)
authorbennyliaw
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180124t080409437z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-24 08:04:09
last_update2018-01-24 08:04:09
depth1
children0
last_payout2018-01-31 08:04:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation424,477,391
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id31,860,719
net_rshares0
@bgilbert ·
I really hope you become a billionaire, or whatever your goal may be. Thank you very much for this post.
properties (22)
authorbgilbert
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180213t151028238z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-02-13 15:10:33
last_update2018-02-13 15:10:33
depth1
children0
last_payout2018-02-20 15:10:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length104
author_reputation96,455,774
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,237,020
net_rshares0
@bitcoinmeetups ·
Good article. Following.
properties (22)
authorbitcoinmeetups
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171003t071340779z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-10-03 07:13:42
last_update2017-10-03 07:13:42
depth1
children1
last_payout2017-10-10 07:13:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation236,882,220,234
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,640,940
net_rshares0
@maxnachamkin ·
Thank you. Cheers.
properties (22)
authormaxnachamkin
permlinkre-bitcoinmeetups-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171010t173719285z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-10-10 17:37:21
last_update2017-10-10 17:37:21
depth2
children0
last_payout2017-10-17 17:37:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,318,760
net_rshares0
@coinjokerscript ·
Great Article !

This article will really able to understand by basic web skill people to create own ethereum token.I would suggest to have a look at this article https://www.cryptoexchangescript.com/erc20-token-creation to create ERC20 token with short period
properties (22)
authorcoinjokerscript
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180927t112041104z
categoryethereum
json_metadata{"tags":["ethereum"],"links":["https://www.cryptoexchangescript.com/erc20-token-creation"],"app":"steemit/0.1"}
created2018-09-27 11:20:42
last_update2018-09-27 11:20:42
depth1
children0
last_payout2018-10-04 11:20:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length260
author_reputation2,808,208,518
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id72,262,109
net_rshares0
@communisttea ·
Im a bit late in case of time (posted 2 years ago) but this is great, it even works for other MEW blockchains. Keep it up!
properties (22)
authorcommunisttea
permlinkq3r4tj
categoryethereum
json_metadata{"app":"steemit/0.1"}
created2020-01-07 19:29:42
last_update2020-01-07 19:29:42
depth1
children0
last_payout2020-01-14 19:29:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation11,434,049
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id94,158,111
net_rshares0
@cryptheld ·
It's a great job you did here bro. You just decided to educate us all. You must be a genius.
👍  
properties (23)
authorcryptheld
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180409t211657663z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-04-09 21:17:06
last_update2018-04-09 21:17:06
depth1
children0
last_payout2018-04-16 21:17:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation9,938,499,617
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id49,201,120
net_rshares0
author_curate_reward""
vote details (1)
@crypto-cash-hub ·
Thank you for writing this up
👍  
properties (23)
authorcrypto-cash-hub
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171031t220908795z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-10-31 22:09:09
last_update2017-10-31 22:09:09
depth1
children1
last_payout2017-11-07 22:09:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation140,896,711
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,112,793
net_rshares0
author_curate_reward""
vote details (1)
@maxnachamkin ·
You're welcome.
👍  
properties (23)
authormaxnachamkin
permlinkre-crypto-cash-hub-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171102t192114229z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-02 19:21:15
last_update2017-11-02 19:21:15
depth2
children0
last_payout2017-11-09 19:21:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,290,006
net_rshares0
author_curate_reward""
vote details (1)
@cryptogee ·
Hi, I don't know if you're still monitoring this article. 

I found it really helpful, however I hit a snag; when I copied your modified code into the solidity compiler, I just got a bunch of errors on the right. The interface looks different as well, and I don't see any 'create' button.

Do you have any tips for me?

I downloaded Metamask as well..

Thanks
[*Cg*](https://steemit.com/@cryptogee)
properties (22)
authorcryptogee
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171114t140548879z
categoryethereum
json_metadata{"tags":["ethereum"],"links":["https://steemit.com/@cryptogee"],"app":"steemit/0.1"}
created2017-11-14 14:05:48
last_update2017-11-14 14:05:48
depth1
children4
last_payout2017-11-21 14:05:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length398
author_reputation419,387,439,147,428
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,361,420
net_rshares0
@maxnachamkin ·
Hi cryptogee,

Are they errors on the right (in red?) or are they just warnings? I get a lot of warnings when I compile with this code but it never seems to be an issue.

As far as the UI - it looks like it's changed quite a bit. Try going to the 'Run' tab and hitting 'Create' on the function. 

If that doesn't work I'll have to play around a bit to see how they changed it.
👍  
properties (23)
authormaxnachamkin
permlinkre-cryptogee-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171122t021432897z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-22 02:14:33
last_update2017-11-22 02:14:33
depth2
children3
last_payout2017-11-29 02:14:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length376
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,153,046
net_rshares0
author_curate_reward""
vote details (1)
@cryptogee ·
HI Max,

Thanks for the reply, I really appreciate it; since I posted that question I got a little bit further; I realised the error was in the Pragma Solidity version, in your code it was .4 and it has since been upgraded to .18.

So as soon as I changed that it worked; however my latest problem is, the coin seems to publish fine; and gives me an address, however I can't get it to show up in my wallet when I try and add the coin to Metamask.

Any ideas?

Thanks again.
[*Cg*](https://steemit.com/@cryptogee)
properties (22)
authorcryptogee
permlinkre-maxnachamkin-re-cryptogee-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171123t142241322z
categoryethereum
json_metadata{"tags":["ethereum"],"links":["https://steemit.com/@cryptogee"],"app":"steemit/0.1"}
created2017-11-23 14:22:42
last_update2017-11-23 14:22:42
depth3
children1
last_payout2017-11-30 14:22:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length512
author_reputation419,387,439,147,428
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,302,095
net_rshares0
@tombola ·
Hi Maxnachamkin - I too got these errors and it seemed a bit different. I am a newb but will soldier on regardless as my job depends on it - lol - Thanks for taking the time to do this
properties (22)
authortombola
permlinkre-maxnachamkin-re-cryptogee-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180213t124332537z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-02-13 12:43:33
last_update2018-02-13 12:43:33
depth3
children0
last_payout2018-02-20 12:43:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length184
author_reputation0
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,206,443
net_rshares0
@cryptotoit ·
Thanks for this, pretty amazing!! How do you add an image to your token?
properties (22)
authorcryptotoit
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180224t114928772z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-02-24 11:49:30
last_update2018-02-24 11:49:30
depth1
children0
last_payout2018-03-03 11:49:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length72
author_reputation0
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,076,218
net_rshares0
@curiousmatter ·
This post was excellent - I don't know why it didn't get more attention when you published it.
👍  
properties (23)
authorcuriousmatter
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180220t192259693z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-02-20 19:23:00
last_update2018-02-20 19:23:00
depth1
children0
last_payout2018-02-27 19:23:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length94
author_reputation138,969,269
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,146,126
net_rshares614,449,999
author_curate_reward""
vote details (1)
@dhimansatish ·
Thank you for sharing this all,

I've followed all what is mentioned here, all things are going well on test but at the time of add token on Ropsten Test Net I'm failed, It's not responding anything there
properties (22)
authordhimansatish
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171204t114109133z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-12-04 11:41:09
last_update2017-12-04 11:41:09
depth1
children0
last_payout2017-12-11 11:41:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length204
author_reputation0
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,355,271
net_rshares0
@doraemon ·
Please make the next post about getting the token listed in an exchange, I'm involved with a couple new tokens and this is hard and expensive.
properties (22)
authordoraemon
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170901t192355842z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-09-01 19:23:48
last_update2017-09-01 19:23:48
depth1
children0
last_payout2017-09-08 19:23:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length142
author_reputation275,073,022
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,582,203
net_rshares0
@ecoboss ·
wow..that's amazing...i think now there are so many different #ICO's based on #etherum that it's so hard to judge which ones will survive and which ones will die quickly...thanks for sharing the info
properties (22)
authorecoboss
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171129t124745299z
categoryethereum
json_metadata{"tags":["ethereum","ico","etherum"],"app":"steemit/0.1"}
created2017-11-29 12:47:45
last_update2017-11-29 12:47:45
depth1
children1
last_payout2017-12-06 12:47:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length199
author_reputation2,218,868,935
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,883,701
net_rshares0
@maxnachamkin ·
Indeed. My pleasure ecoboss.
properties (22)
authormaxnachamkin
permlinkre-ecoboss-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180131t053743373z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-31 05:37:42
last_update2018-01-31 05:37:42
depth2
children0
last_payout2018-02-07 05:37:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,766,723
net_rshares0
@erics1230 ·
Does the example code for the contract work anymore?  I edit the names and get errors when trying to verify.  This outline does not show where to edit these other spots

Contract name(s) found: 'ERIC' , 'StandardToken' , 'Token'
properties (22)
authorerics1230
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171011t211608088z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-10-11 21:16:09
last_update2017-10-11 21:16:09
depth1
children2
last_payout2017-10-18 21:16:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length228
author_reputation0
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,430,944
net_rshares0
@erics1230 ·
I got it to work.  had to turn off optimization on the confirming
properties (22)
authorerics1230
permlinkre-erics1230-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171012t163904000z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-10-12 16:39:06
last_update2017-10-12 16:39:06
depth2
children1
last_payout2017-10-19 16:39:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length65
author_reputation0
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,507,494
net_rshares0
@maxnachamkin ·
Nice :)
properties (22)
authormaxnachamkin
permlinkre-erics1230-re-erics1230-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171018t151911344z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-10-18 15:19:12
last_update2017-10-18 15:19:12
depth3
children0
last_payout2017-10-25 15:19:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,987,180
net_rshares0
@falselight ·
Hey, good tutorial! But I have a problem... I create the contract in testnet, It says Contract created, but tokens don't show up in my address when I add it to MetaMask... I dont know what to do
👍  
properties (23)
authorfalselight
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171107t164306770z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-07 16:43:06
last_update2017-11-07 16:43:06
depth1
children3
last_payout2017-11-14 16:43:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length194
author_reputation71,725,155
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,708,516
net_rshares0
author_curate_reward""
vote details (1)
@maxnachamkin ·
Did you add the Contract Address for the token in Test Net to your Custom Token list in MetaMask?
👍  ,
properties (23)
authormaxnachamkin
permlinkre-falselight-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171122t021726278z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-22 02:17:24
last_update2017-11-22 02:17:24
depth2
children0
last_payout2017-11-29 02:17:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length97
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,153,233
net_rshares0
author_curate_reward""
vote details (2)
@rafalloc ·
Same problem, any idea?¿
👍  
properties (23)
authorrafalloc
permlinkre-falselight-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171114t121602605z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-14 12:16:18
last_update2017-11-14 12:16:18
depth2
children0
last_payout2017-11-21 12:16:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation24,257,655
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,351,288
net_rshares0
author_curate_reward""
vote details (1)
@rafalloc ·
Same problem, any idea?
properties (22)
authorrafalloc
permlinkre-falselight-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171114t124319837z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-14 12:43:36
last_update2017-11-14 12:43:36
depth2
children0
last_payout2017-11-21 12:43:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation24,257,655
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,353,671
net_rshares0
@freedomglen ·
Awesome! Thanx for sharing! resteemed and upvoted + followed :)
properties (22)
authorfreedomglen
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170711t084532216z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-07-11 08:45:33
last_update2017-07-11 08:45:33
depth1
children1
last_payout2017-07-18 08:45:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation3,966,089,349
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,083,387
net_rshares0
@maxnachamkin ·
My pleasure. Right on.
properties (22)
authormaxnachamkin
permlinkre-freedomglen-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170711t130719432z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-07-11 13:07:18
last_update2017-07-11 13:07:18
depth2
children0
last_payout2017-07-18 13:07:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,104,517
net_rshares0
@goodecoin ·
@maxnachamkin,

 Awesome guide!  

For educational purposes, what would be the drawbacks to walking a group through the guide that the Ethereum Foundation provides versus your guide?  If you've had a chance to check it out, what essential items do you feel they skip and how would it impact the outcome of the token?

Guide referenced: https://www.ethereum.org/token

Warmest Regards
properties (22)
authorgoodecoin
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180118t110104895z
categoryethereum
json_metadata{"tags":["ethereum"],"users":["maxnachamkin"],"links":["https://www.ethereum.org/token"],"app":"steemit/0.1"}
created2018-01-18 11:00:51
last_update2018-01-18 11:00:51
depth1
children1
last_payout2018-01-25 11:00:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length383
author_reputation0
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,368,582
net_rshares0
@maxnachamkin ·
Thanks, I appreciate that. 

I don’t know about drawbacks. I’ve seen that tutorial and it felt like it had things in there that I didn’t need initially (like freezing assets). I just wanted to learn how to create a token, in reality, with standards (ERC20) quickly. I don’t think that tutorial is for an ERC20 token but I could be mistaken.
properties (22)
authormaxnachamkin
permlinkre-goodecoin-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180131t054659792z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-31 05:47:00
last_update2018-01-31 05:47:00
depth2
children0
last_payout2018-02-07 05:47:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length340
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,768,567
net_rshares0
@greenalien ·
Assuming that I buy 1btc of your token.  How do you set it so that it sends the token to a wallet right after payment is confirmed?
properties (22)
authorgreenalien
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180405t204804343z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-04-05 20:48:03
last_update2018-04-05 20:48:03
depth1
children0
last_payout2018-04-12 20:48:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length131
author_reputation6,717,164,190
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,549,052
net_rshares0
@grunet ·
thanks a lot for this nice how-to!!!

when i want to Create the Token for the Main Network, i got the following error: "Gateway timeout. The request took too long to process. This can happen when querying logs over too wide a block range." can i do anything to short the block range?
properties (22)
authorgrunet
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180109t182411510z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-09 18:24:09
last_update2018-01-09 18:24:09
depth1
children2
last_payout2018-01-16 18:24:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length283
author_reputation299,041,492,536
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,311,883
net_rshares0
@grunet ·
ok, i need more ETH;) gas limit 1251480 and gas price 90 gwei means transaction fee from 0.112633 ETH...
properties (22)
authorgrunet
permlinkre-grunet-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180110t020023357z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-10 02:00:21
last_update2018-01-10 02:00:21
depth2
children1
last_payout2018-01-17 02:00:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length104
author_reputation299,041,492,536
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,384,453
net_rshares0
@maxnachamkin ·
Interesting. Did you get this handled? I’ve never seen that error before, and that transaction fee is quite high.
properties (22)
authormaxnachamkin
permlinkre-grunet-re-grunet-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180131t054208005z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-31 05:42:06
last_update2018-01-31 05:42:06
depth3
children0
last_payout2018-02-07 05:42:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length113
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,767,564
net_rshares0
@guessikatze · (edited)
Dear Maxnachamkin, a friend of  mine' Needs ome help to employ your tutorial, he is trying to do it for 3 days now. He Needs  500,000,000,000.00 coins  and the selling  Price would be  1 Cent. He wants 100,000,000,000.00 coins to stay in the Company and he Needs a description how to do it via MEW and Etherscan possibly with an ICO.
It would be helpful for him if the Things that he has to fill in himself would be in red colour and of Course it would be even better to know what exactly to fill in. In the PHP he couldn't see where to put in his own wallet to receive those coins and he wasn't able to distinguish where to get diverse codes from.  I myself can only translate thingsfor him as he cannot speak English. So it would be very nice of you to drop us some Information. My steemit nme is guessikatze. Thankyou for your Attention.
properties (22)
authorguessikatze
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180124t184721445z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-24 18:47:30
last_update2018-01-24 18:48:57
depth1
children1
last_payout2018-01-31 18:47:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length840
author_reputation-248,417,137
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id31,993,439
net_rshares0
@tessal ·
it's so easy to make all the necessary changes, even in less than 20min, kudos to the writer
properties (22)
authortessal
permlinkre-guessikatze-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180209t114237217z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-02-09 11:42:39
last_update2018-02-09 11:42:39
depth2
children0
last_payout2018-02-16 11:42:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation758,508,687
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,149,558
net_rshares0
@hemalnick ·
Please I'm stuck in trying to create the token. It keeps bringing out invalid address. Please what am I to use?
properties (22)
authorhemalnick
permlinkptxznr
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2019-07-01 02:45:30
last_update2019-07-01 02:45:30
depth1
children0
last_payout2019-07-08 02:45:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length111
author_reputation4,561,799,512
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,598,872
net_rshares0
@hezi ·
Thanks. I must reread to fully understand!!!
properties (22)
authorhezi
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180124t155101844z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-24 15:51:00
last_update2018-01-24 15:51:00
depth1
children0
last_payout2018-01-31 15:51:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation9,601,078
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id31,957,378
net_rshares0
@icoclone ·
Such an awesome information dude. In addition, I would like to suggest one another guide named [create your own ethereum token instantly](https://www.icoclone.com) published by icoclone which helps to create an ethereum token ERC20 instantly without getting scammed and efforts.
properties (22)
authoricoclone
permlinkq7e3nx
categoryethereum
json_metadata{"links":["https://www.icoclone.com"],"app":"steemit/0.2"}
created2020-03-18 12:50:21
last_update2020-03-18 12:50:21
depth1
children0
last_payout2020-03-25 12:50:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length278
author_reputation969,233,614
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,462,084
net_rshares0
@ilairdyi ·
Thanks! Do you know how to change the token icon in Metamask? 
For example your 100 TT is a yellow circle.
properties (22)
authorilairdyi
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180527t094142828z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-05-27 09:41:18
last_update2018-05-27 09:41:18
depth1
children0
last_payout2018-06-03 09:41:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length106
author_reputation46,679,622
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,922,086
net_rshares0
@infinitydaniel ·
Good job, with all the info.
👍  ,
properties (23)
authorinfinitydaniel
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180204t170400444z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-02-04 17:04:00
last_update2018-02-04 17:04:00
depth1
children0
last_payout2018-02-11 17:04:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation63,388,797
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,933,052
net_rshares1,170,544,856
author_curate_reward""
vote details (2)
@iunit ·
Hi, the token contract is outdated. Can you please provide a link for the latest ERC20 token contract?
properties (22)
authoriunit
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20181213t065420350z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-12-13 06:54:21
last_update2018-12-13 06:54:21
depth1
children0
last_payout2018-12-20 06:54:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation159,045,011,143
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,771,607
net_rshares0
@johnduckett ·
Very interesting<a href="https://steemit.com/car/@johnduckett/car-insurance-quotes">.</a> Thanks.
properties (22)
authorjohnduckett
permlinkq610m4
categoryethereum
json_metadata{"links":["https://steemit.com/car/@johnduckett/car-insurance-quotes"],"app":"steemit/0.2"}
created2020-02-21 00:42:09
last_update2020-02-21 00:42:09
depth1
children0
last_payout2020-02-28 00:42:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length97
author_reputation765,483,764,621
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,661,607
net_rshares0
@joshuapark66 ·
Thank you for your posting.
I was followed you, but I have an error msg on verify step.
"Block! Invalid captcha Response."
Please check the below and help me.

![](https://cdn.steemitimages.com/DQmUY5jqiVTExELvPTausTAfUL9sfuvgWSsQKf7U4gUCEkn/image.png)
properties (22)
authorjoshuapark66
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20181211t143601714z
categoryethereum
json_metadata{"tags":["ethereum"],"image":["https://cdn.steemitimages.com/DQmUY5jqiVTExELvPTausTAfUL9sfuvgWSsQKf7U4gUCEkn/image.png"],"app":"steemit/0.1"}
created2018-12-11 14:36:03
last_update2018-12-11 14:36:03
depth1
children0
last_payout2018-12-18 14:36:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length252
author_reputation0
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,689,574
net_rshares0
@julienpr ·
great job, i ll test it ! thanks.
👍  
properties (23)
authorjulienpr
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180123t204728584z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-23 20:47:27
last_update2018-01-23 20:47:27
depth1
children0
last_payout2018-01-30 20:47:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation272,480,730
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id31,737,283
net_rshares0
author_curate_reward""
vote details (1)
@karwanmino17 ·
Thanks for the hard work there is no one explained simply like you did

one question : what fee needs for a 150m total supply token project instead of 30$ for your work .. regards
properties (22)
authorkarwanmino17
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171111t003902223z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-11 00:39:03
last_update2017-11-11 00:39:03
depth1
children1
last_payout2017-11-18 00:39:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length179
author_reputation54,824,259
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,008,669
net_rshares0
@maxnachamkin ·
No prob.

I'm not sure, it would depend on the gas price. Try publishing it to the MainNet and it'll give you the exact number.
properties (22)
authormaxnachamkin
permlinkre-karwanmino17-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171122t021916248z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-22 02:19:15
last_update2017-11-22 02:19:15
depth2
children0
last_payout2017-11-29 02:19:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length127
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,153,374
net_rshares0
@louisberner ·
Hi, I hope someone can assist me. I get the response from Remix solidity that states as follows: creation of Awesome errored: Error: URI Too Long.

How do I resolve this?
properties (22)
authorlouisberner
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180117t105514975z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-17 10:55:15
last_update2018-01-17 10:55:15
depth1
children1
last_payout2018-01-24 10:55:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length170
author_reputation0
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,146,303
net_rshares0
@maxnachamkin ·
Have you figured this out? Post some more specifics, like which line of code it’s throwing the error on.
properties (22)
authormaxnachamkin
permlinkre-louisberner-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180131t054329790z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-31 05:43:30
last_update2018-01-31 05:43:30
depth2
children0
last_payout2018-02-07 05:43:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length104
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,767,867
net_rshares0
@maven360 ·
I am curious to see if ICO's will evolve into a new form of <a href="https://www.gofundme.com/" target="_blank">GoFundMe</a> campaigns. Appreciate the tutorial, this is great!

How did you cover yourself from a legal perspective with The Most Private Coin Ever? What is to prevent someone from buying into the coin not knowing what it is, and then upon realizing exactly what they purchased coming after you for "damages". I know you are explicit on your site, but it seems like a gray area to me...
properties (22)
authormaven360
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t221519638z
categoryethereum
json_metadata{"tags":["ethereum"],"links":["https://www.gofundme.com/"],"app":"steemit/0.1"}
created2017-07-10 22:15:21
last_update2017-07-10 22:15:21
depth1
children2
last_payout2017-07-17 22:15:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length499
author_reputation1,409,115,525,495
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,037,731
net_rshares0
@maxnachamkin ·
That's a legitimate concern. And one that I don't know all answers to - I agree it's a gray zone. I'm not making any false promises, so I'm not concerned about that specifically. 

That being said I'm keeping an eye on it and doing what I can as more awareness comes into do what I need to do to keep it in good legal standard.
👍  
properties (23)
authormaxnachamkin
permlinkre-maven360-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t233548488z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-07-10 23:35:48
last_update2017-07-10 23:35:48
depth2
children0
last_payout2017-07-17 23:35:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length327
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,043,597
net_rshares0
author_curate_reward""
vote details (1)
@niel96 ·
There already exist crypto crowdfunding website's. Doing an ICO is more like doing an IPO without all the paperwork and regulations.
properties (22)
authorniel96
permlinkre-maven360-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20181122t040050366z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-11-22 04:01:15
last_update2018-11-22 04:01:15
depth2
children0
last_payout2018-11-29 04:01:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length132
author_reputation99,990,577,247,925
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,710,293
net_rshares0
@mikeslavin ·
I had no idea it was this straightforward. Thanks for your thorough explanation @MaxNachamkin.

TheMostPrivateCoinEver.com is hilarious.
properties (22)
authormikeslavin
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t212303377z
categoryethereum
json_metadata{"tags":["ethereum"],"users":["maxnachamkin"],"app":"steemit/0.1"}
created2017-07-10 21:23:03
last_update2017-07-10 21:23:03
depth1
children1
last_payout2017-07-17 21:23:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length136
author_reputation45,019,480
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,033,452
net_rshares0
@maxnachamkin ·
My pleasure @mikeslavin. It's pretty straightforward for people that have some sort of tech background. It's a basic token, but my hope is that it inspires people to launch their own token and start projects.

Haha cheers ^_^
properties (22)
authormaxnachamkin
permlinkre-mikeslavin-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t212936503z
categoryethereum
json_metadata{"tags":["ethereum"],"users":["mikeslavin"],"app":"steemit/0.1"}
created2017-07-10 21:29:36
last_update2017-07-10 21:29:36
depth2
children0
last_payout2017-07-17 21:29:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length225
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,034,036
net_rshares0
@minderbinder ·
Freaking awesome. Thanks man. Upvoted and followed
properties (22)
authorminderbinder
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171015t051637658z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-10-15 05:16:39
last_update2017-10-15 05:16:39
depth1
children1
last_payout2017-10-22 05:16:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation23,080,720,700
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,721,151
net_rshares0
@maxnachamkin ·
Cheers!
👍  
properties (23)
authormaxnachamkin
permlinkre-minderbinder-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171022t005000766z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-10-22 00:50:00
last_update2017-10-22 00:50:00
depth2
children0
last_payout2017-10-29 00:50:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,257,386
net_rshares639,777,711
author_curate_reward""
vote details (1)
@mirax ·
Hi,

In your second post (https://steemit.com/ethereum/@maxnachamkin/the-most-private-coin-ever-launch-today-details-tokens-inside), you say that we have to send .003 ETH to receive one token.

Where is this parameter visible into the script above ? Where did you specify this number ?

Thank you,

Chris
properties (22)
authormirax
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180311t163344887z
categoryethereum
json_metadata{"tags":["ethereum"],"links":["https://steemit.com/ethereum/@maxnachamkin/the-most-private-coin-ever-launch-today-details-tokens-inside"],"app":"steemit/0.1"}
created2018-03-11 16:33:45
last_update2018-03-11 16:33:45
depth1
children0
last_payout2018-03-18 16:33:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length304
author_reputation61,598,650
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id43,737,205
net_rshares0
@mrtree420 · (edited)
This is great. Thanks for taking the time to show people how easy and quick it is to make a token. People seem to think it takes a lot of funding to get an ICO going and throw endless amounts of funds at companies  just because they taken an hour of there time to follow the steps you just explained.
properties (22)
authormrtree420
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171012t141451460z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-10-12 14:14:54
last_update2017-10-12 14:16:54
depth1
children5
last_payout2017-10-19 14:14:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length300
author_reputation20,530,707,664
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,495,521
net_rshares0
@maxnachamkin ·
My pleasure.

It's important to note that I wouldn't use this contract for an ICO - it's very basic, and doesn't have any rules attached to it that a legitimate ICO would most likely require.
👍  
properties (23)
authormaxnachamkin
permlinkre-mrtree420-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171018t154258649z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-10-18 15:43:03
last_update2017-10-18 15:43:03
depth2
children4
last_payout2017-10-25 15:43:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length191
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,988,667
net_rshares0
author_curate_reward""
vote details (1)
@earthumbrella ·
Hi there.  Thanks for the great tutorial.  I'm looking into creating my own coin as well and I am wondering how to incorporate values/rules at some point.  Can these be added later or do they have to be encoded from the very start?  I'm a noob and just wondering about the future viability of the coin I'd like to make.  Thanks again!
properties (22)
authorearthumbrella
permlinkre-maxnachamkin-re-mrtree420-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180113t172818721z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-13 17:28:18
last_update2018-01-13 17:28:18
depth3
children2
last_payout2018-01-20 17:28:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length334
author_reputation1,346,246,923,128
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,276,426
net_rshares0
@richardcrill ·
Maybe a tutorial for that part now?
properties (22)
authorrichardcrill
permlinkre-maxnachamkin-re-mrtree420-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171125t161049710z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-25 16:10:48
last_update2017-11-25 16:10:48
depth3
children0
last_payout2017-12-02 16:10:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation55,974,657,421,087
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,495,218
net_rshares0
@mywisdom ·
how to setup instant/auto sent and receive.....exp: 0.01 100 token
people sent 0.01 sent  100 token instanly sent....
properties (22)
authormywisdom
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180622t103044931z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-06-22 10:31:03
last_update2018-06-22 10:31:03
depth1
children0
last_payout2018-06-29 10:31:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length117
author_reputation-19,908,800,365
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,754,930
net_rshares0
@niel96 ·
Thanks for this guide, very helpful. Your websites is offline i see?
👍  
properties (23)
authorniel96
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20181122t020354320z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-11-22 02:04:18
last_update2018-11-22 02:04:18
depth1
children1
last_payout2018-11-29 02:04:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation99,990,577,247,925
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,706,349
net_rshares838,019,392
author_curate_reward""
vote details (1)
@niel96 · (edited)
Does ethereum has a manual for this? They should make it more user friendly.
properties (22)
authorniel96
permlinkre-niel96-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20181122t034200311z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-11-22 03:42:24
last_update2018-11-22 03:43:30
depth2
children0
last_payout2018-11-29 03:42:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation99,990,577,247,925
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,709,706
net_rshares0
@ocecer ·
This is a great explanation, thanks a lot. but i have a question. 

I want to send 5000 Tokens for 1 ETH and for that reason I added that line: "unitsOneEthCanBuy = 5000". 

But my problem is i have complately forgot about decimals! My decimal is 18 so i think i should have write 50 instead of 5000. 

Does anyone know how to fix it? i have already deployed, verified and published my smart contract.
properties (22)
authorocecer
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180313t131507922z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-03-13 13:15:06
last_update2018-03-13 13:15:06
depth1
children0
last_payout2018-03-20 13:15:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length401
author_reputation0
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,138,032
net_rshares0
@olsonmino ·
$0.19
Great info mate. :)

Even though this is pretty straightforward a video tutorial would be awesome to cover some more advance stuff as well as how  get the token listed on exchanges.
👍  , , , , , , , , , , , , , , ,
properties (23)
authorolsonmino
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170711t001455227z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-07-11 00:14:51
last_update2017-07-11 00:14:51
depth1
children2
last_payout2017-07-18 00:14:51
cashout_time1969-12-31 23:59:59
total_payout_value0.185 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length181
author_reputation949,935,351
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,046,389
net_rshares53,100,721,198
author_curate_reward""
vote details (16)
@maxnachamkin ·
Hey @olsonmino, I've thought about video tutorials for this but the challenge comes with security of showing addresses, private keys, etc. Not sure how to handle that one in a simple way in the video format yet.

Gotcha, appreciate the feedback and suggestions.
👍  , , , , , ,
properties (23)
authormaxnachamkin
permlinkre-olsonmino-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170711t001636444z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"busy/1.0.0"}
created2017-07-11 00:16:36
last_update2017-07-11 00:16:36
depth2
children1
last_payout2017-07-18 00:16:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length261
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,046,522
net_rshares0
author_curate_reward""
vote details (7)
@romanticist ·
That's not a problem at all. Simply use a dummy address and private key. Anyway, thanks for this tutorial. Although I would like to request a section where each and every line on the pre-written code that needs to be changed is highlighted or mentioned. I am trying to do my own token on a test net. For knowledge purposes.
👍  ,
properties (23)
authorromanticist
permlinkre-maxnachamkin-re-olsonmino-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171116t025851899z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-16 02:58:54
last_update2017-11-16 02:58:54
depth3
children0
last_payout2017-11-23 02:58:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length323
author_reputation281,768,976
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,528,292
net_rshares0
author_curate_reward""
vote details (2)
@pcaruba ·
Thank you Max, this was of great help.
Do you know how to change the icon that is assigned to the token?
properties (22)
authorpcaruba
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171222t153734474z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-12-22 15:37:36
last_update2017-12-22 15:37:36
depth1
children2
last_payout2017-12-29 15:37:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length104
author_reputation2,934,445,046
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,713,021
net_rshares0
@sarah249 ·
You need to fill out a form on etherescan and submit icon along with a bunch of other information.
👍  ,
properties (23)
authorsarah249
permlinkre-pcaruba-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171223t171246454z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-12-23 17:12:48
last_update2017-12-23 17:12:48
depth2
children1
last_payout2017-12-30 17:12:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length98
author_reputation627,414,456,840
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,890,392
net_rshares621,144,871
author_curate_reward""
vote details (2)
@pcaruba ·
Thanks!
properties (22)
authorpcaruba
permlinkre-sarah249-re-pcaruba-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180102t121244373z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-02 12:12:45
last_update2018-01-02 12:12:45
depth3
children0
last_payout2018-01-09 12:12:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation2,934,445,046
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,546,956
net_rshares0
@philiprhoades ·
Max,

Very interesting! I have now read your other articles too and followed you. I also had a look at ByteBall. I have an idea about creating tokens to support this project:

http://lev.com.au

(eg one token per square metre of land) - which I am using to also support one of my non-profits:

http://neuralarchivesfoundation.org

I think you are the sort of person who could help me sort out the best way forward with my ideas. Do you have any time? - send me an email if you do:

phr AT lev DOT com DOT au

Thanks for your generous contributions!

Regards,
Phil.
properties (22)
authorphiliprhoades
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180222t010711249z
categoryethereum
json_metadata{"tags":["ethereum"],"links":["http://lev.com.au","http://neuralarchivesfoundation.org"],"app":"steemit/0.1"}
created2018-02-22 01:07:12
last_update2018-02-22 01:07:12
depth1
children0
last_payout2018-03-01 01:07:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length564
author_reputation163,486,765
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,477,302
net_rshares0
@pixelsnapshot ·
very detial information, do you know who we make  NEO token  as same as ETH ?
properties (22)
authorpixelsnapshot
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180707t065039955z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-07-07 06:50:42
last_update2018-07-07 06:50:42
depth1
children0
last_payout2018-07-14 06:50:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length77
author_reputation281,141,457
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,746,718
net_rshares0
@popsfish ·
I know that the article was released a year ago, but spending an hour on deployment is too much. It’s good that on a MyWish service it will take a couple of minutes to create a token.  https://mywish.io/eth-token
👍  
properties (23)
authorpopsfish
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20181128t210842003z
categoryethereum
json_metadata{"tags":["ethereum"],"links":["https://mywish.io/eth-token"],"app":"steemit/0.1"}
created2018-11-28 21:08:42
last_update2018-11-28 21:08:42
depth1
children0
last_payout2018-12-05 21:08:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length212
author_reputation504,143,911
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,061,941
net_rshares557,486,544
author_curate_reward""
vote details (1)
@pynchon ·
great post thanks for sharing. As a novice in ethereal programming I found this exceedingly helpful
properties (22)
authorpynchon
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180528t235827537z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-05-28 23:58:27
last_update2018-05-28 23:58:27
depth1
children0
last_payout2018-06-04 23:58:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length99
author_reputation12,666,137,790
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id58,190,145
net_rshares0
@rhoyos1985 ·
Hey max, excellent tutorial It helped me for start to create my own token.
i would like to translate to Spanish, if you let me.

Thanks
properties (22)
authorrhoyos1985
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180522t135238504z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-05-22 13:52:39
last_update2018-05-22 13:52:39
depth1
children0
last_payout2018-05-29 13:52:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length135
author_reputation0
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,082,358
net_rshares0
@richangh ·
NICE ARTICLE
properties (22)
authorrichangh
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171113t082609775z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-13 08:26:36
last_update2017-11-13 08:26:36
depth1
children1
last_payout2017-11-20 08:26:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation853,510,232
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,229,800
net_rshares0
@maxnachamkin ·
Thanks.
properties (22)
authormaxnachamkin
permlinkre-richangh-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171122t022014649z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-22 02:20:15
last_update2017-11-22 02:20:15
depth2
children0
last_payout2017-11-29 02:20:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,153,439
net_rshares0
@richardcrill ·
Thanks for this tutorial! I have just created my first token! I am not a developer so this was very encouraging to be able to create an ERC20 token so easily! Guess it's time for my ICO!
properties (22)
authorrichardcrill
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171121t173609696z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-21 17:36:09
last_update2017-11-21 17:36:09
depth1
children1
last_payout2017-11-28 17:36:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length186
author_reputation55,974,657,421,087
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,112,848
net_rshares0
@maxnachamkin ·
$0.69
Hi Richard, nice dude!!!

Haha right??
👍  ,
properties (23)
authormaxnachamkin
permlinkre-richardcrill-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171122t021524663z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-22 02:15:24
last_update2017-11-22 02:15:24
depth2
children0
last_payout2017-11-29 02:15:24
cashout_time1969-12-31 23:59:59
total_payout_value0.520 HBD
curator_payout_value0.173 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,153,099
net_rshares286,088,105,672
author_curate_reward""
vote details (2)
@rishabhbhandari ·
Your post is a million dollar post <3 
Loved it :) Very informative. 
Thank you for sharing...
Have a great day
properties (22)
authorrishabhbhandari
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180220t204739363z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-02-20 20:47:42
last_update2018-02-20 20:47:42
depth1
children0
last_payout2018-02-27 20:47:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length111
author_reputation1,135,209,819
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,163,150
net_rshares0
@rodw ·
Hello Max, Great Guide!  On the final step to verify the contract, I get a few errors regarding the name.  Any ideas? 


Sorry! The Compiled Contract ByteCode for 'CoinMarkertAlert' does NOT match the Contract Creation Code for [0xb623864cc5ea683ecab9f41a822a49901d03978d].

Contract name(s) found: 'CoinMarketAlert' , 'StandardToken' , 'Token' 
Unable to Verify Contract at this point time.
properties (22)
authorrodw
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170714t164616207z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-07-14 16:46:15
last_update2017-07-14 16:46:15
depth1
children2
last_payout2017-07-21 16:46:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length391
author_reputation0
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,476,541
net_rshares0
@maxnachamkin ·
Hey rodw, make sure that your compiler in the online browser is the same as the one that's being tested when you're trying to verify the contract.

Otherwise the bytecode won't be the same and it won't verify.
properties (22)
authormaxnachamkin
permlinkre-rodw-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170721t164112382z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-07-21 16:41:12
last_update2017-07-21 16:41:12
depth2
children1
last_payout2017-07-28 16:41:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length209
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,214,373
net_rshares0
@rodw ·
Ok thanks. I'll try it again
properties (22)
authorrodw
permlinkre-maxnachamkin-re-rodw-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170724t065554931z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-07-24 06:55:54
last_update2017-07-24 06:55:54
depth3
children0
last_payout2017-07-31 06:55:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation0
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,500,917
net_rshares0
@rootpwn ·
Thanks for adding this to the community. This was exactly what I was searching for and to see it here on steemit is wonderful.
properties (22)
authorrootpwn
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180118t160929782z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-18 16:09:30
last_update2018-01-18 16:09:30
depth1
children1
last_payout2018-01-25 16:09:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length126
author_reputation7,223,971,172
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,427,039
net_rshares0
@maxnachamkin ·
Nice, happy to hear it was what you were looking for.
properties (22)
authormaxnachamkin
permlinkre-rootpwn-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180131t054753793z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-31 05:47:54
last_update2018-01-31 05:47:54
depth2
children0
last_payout2018-02-07 05:47:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,768,751
net_rshares0
@salsim5774 ·
Thanks for this amazing post. I want to make a ERC 20 Token on the test net for a school project.
properties (22)
authorsalsim5774
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180227t054348902z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-02-27 05:43:51
last_update2018-02-27 05:43:51
depth1
children0
last_payout2018-03-06 05:43:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length97
author_reputation214,063,373
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,785,071
net_rshares0
@samarkand.me2017 ·
very useful info! will try to create one
properties (22)
authorsamarkand.me2017
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171101t030338561z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-01 03:03:36
last_update2017-11-01 03:03:36
depth1
children1
last_payout2017-11-08 03:03:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation12,832,687
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,129,032
net_rshares0
@maxnachamkin ·
Nice ^_^
properties (22)
authormaxnachamkin
permlinkre-samarkandme2017-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171102t192209100z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-02 19:22:12
last_update2017-11-02 19:22:12
depth2
children0
last_payout2017-11-09 19:22:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,290,077
net_rshares0
@simplewriter ·
Sometimes it's good to read something totally out of your comfort zone. I read this and had to Google a few terms! I recently did my first Steemit article on <a href="https://steemit.com/equity/@simplewriter/v4m6w-what-is-equity-release">equity release</a>. It's a great platform and I'm enjoying the diversity of content.
properties (22)
authorsimplewriter
permlinkq5xdrj
categoryethereum
json_metadata{"links":["https://steemit.com/equity/@simplewriter/v4m6w-what-is-equity-release"],"app":"steemit/0.1"}
created2020-02-19 01:35:45
last_update2020-02-19 01:35:45
depth1
children0
last_payout2020-02-26 01:35:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length322
author_reputation2,748,459,092,046
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,593,704
net_rshares0
@solextin · (edited)
Nice post bro....this is really helpful
properties (22)
authorsolextin
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t214035751z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-07-10 21:40:42
last_update2017-07-10 21:40:57
depth1
children1
last_payout2017-07-17 21:40:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation9,086,821,688
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,035,004
net_rshares0
@maxnachamkin ·
Happy to hear that @solextin!
👍  
properties (23)
authormaxnachamkin
permlinkre-solextin-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t214412650z
categoryethereum
json_metadata{"tags":["ethereum"],"users":["solextin"],"app":"steemit/0.1"}
created2017-07-10 21:44:12
last_update2017-07-10 21:44:12
depth2
children0
last_payout2017-07-17 21:44:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,035,305
net_rshares0
author_curate_reward""
vote details (1)
@solomon123 ·
Thanks a lot for this article, really awesome. Also I was wondering if we can use MEW instead of metamask.
properties (22)
authorsolomon123
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180212t175643147z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-02-12 17:57:12
last_update2018-02-12 17:57:12
depth1
children0
last_payout2018-02-19 17:57:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length106
author_reputation21,664,686,084
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,992,989
net_rshares0
@sreecanvas ·
It's awesome.It was really helpful but a video would be much easier to create ERC20 tokens.You can make a video of this and post the link @maxnachamkin.
properties (22)
authorsreecanvas
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180412t013137280z
categoryethereum
json_metadata{"tags":["ethereum"],"users":["maxnachamkin"],"app":"steemit/0.1"}
created2018-04-12 01:31:21
last_update2018-04-12 01:31:21
depth1
children0
last_payout2018-04-19 01:31:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length152
author_reputation589,247,147
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id49,587,239
net_rshares0
@svedenmacher ·
Well explained! Upvoted! I wonder if there are further costs other than the initial $30 for the coin to be used on the network..
👍  
properties (23)
authorsvedenmacher
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171112t004058347z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-12 00:41:00
last_update2017-11-12 00:41:00
depth1
children1
last_payout2017-11-19 00:41:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation41,460,398,988
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,100,148
net_rshares0
author_curate_reward""
vote details (1)
@maxnachamkin ·
Hi there, the cost isn't a flat fee that's static. It depends on the gas price at the current moment.
👍  
properties (23)
authormaxnachamkin
permlinkre-svedenmacher-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171122t180807314z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-22 18:08:06
last_update2017-11-22 18:08:06
depth2
children0
last_payout2017-11-29 18:08:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length101
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,223,724
net_rshares0
author_curate_reward""
vote details (1)
@tavasti ·
Hi, what could be the problem be when verifying and publishing in Ropsten test ntw I get this error: Error! Unable to generate Contract ByteCode and ABI. 

I tried to follow the instructions carefully, but I am not an experienced programmer so.. will need your help, folks.
👍  
properties (23)
authortavasti
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180105t111719472z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-05 11:17:21
last_update2018-01-05 11:17:21
depth1
children0
last_payout2018-01-12 11:17:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length273
author_reputation88,877,746
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,257,522
net_rshares614,860,000
author_curate_reward""
vote details (1)
@teddib ·
Thanks so much for this!  it was super helpful
properties (22)
authorteddib
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180210t225954367z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-02-10 22:59:54
last_update2018-02-10 22:59:54
depth1
children0
last_payout2018-02-17 22:59:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation0
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,521,390
net_rshares0
@tellall ·
How much ether does it normally costs to create a custom token?
properties (22)
authortellall
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170930t192656540z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-09-30 19:26:57
last_update2017-09-30 19:26:57
depth1
children2
last_payout2017-10-07 19:26:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation-2,980,032,232
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,405,430
net_rshares0
@maxnachamkin ·
Amount of Ether would depend on spot price. It cost me around $30 USD.
properties (22)
authormaxnachamkin
permlinkre-tellall-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170930t232059463z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-09-30 23:20:57
last_update2017-09-30 23:20:57
depth2
children1
last_payout2017-10-07 23:20:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,419,819
net_rshares0
@deborahlindsey ·
Does this depend also on the number of tokens you are creating? Also does it need to be on an exchange in order to use it? For instance, in my case it would be a coin to be used for trade between people in our little community. For example, one person sells coffee and someone else sells rice. Can we use this token as a kind of money to trade between them?  Would I need to make a custom wallet for that or can I use any wallet the uses ETH? If I wanted to have custom aspects to the wallet can I build on top of the ETH wallet or is it something that needs to start from scratch?
properties (22)
authordeborahlindsey
permlinkre-maxnachamkin-re-tellall-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180319t040808525z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-03-19 04:08:09
last_update2018-03-19 04:08:09
depth3
children0
last_payout2018-03-26 04:08:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length581
author_reputation1,048,290,004
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,262,681
net_rshares0
@tessal ·
Nice tutorial, for those needing the testnet eth you can let me know and I will send you some
properties (22)
authortessal
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180209t114634852z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-02-09 11:46:36
last_update2018-02-09 11:46:36
depth1
children0
last_payout2018-02-16 11:46:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length93
author_reputation758,508,687
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,150,319
net_rshares0
@theguldenaries ·
$0.07
@maxnachamkim thnks for sharing.  I really appreciate that you did this for the community.  I hope to launch my own ERC20 token soon and this will definitely allow for that.  Thanks a million.  When I launch  I will make sure to send you some tokens
👍  , , ,
properties (23)
authortheguldenaries
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171003t071536737z
categoryethereum
json_metadata{"tags":["ethereum"],"users":["maxnachamkim"],"app":"steemit/0.1"}
created2017-10-03 07:15:36
last_update2017-10-03 07:15:36
depth1
children2
last_payout2017-10-10 07:15:36
cashout_time1969-12-31 23:59:59
total_payout_value0.070 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length249
author_reputation38,301,112,189
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,641,068
net_rshares26,239,442,375
author_curate_reward""
vote details (4)
@guisepppe ·
can u send me too?thx
properties (22)
authorguisepppe
permlinkre-theguldenaries-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180121t192339461z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-21 19:23:42
last_update2018-01-21 19:23:42
depth2
children0
last_payout2018-01-28 19:23:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation4,740,309,574
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id31,180,456
net_rshares0
@tombola ·
And me??? lol
properties (22)
authortombola
permlinkre-theguldenaries-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180213t134347728z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-02-13 13:43:48
last_update2018-02-13 13:43:48
depth2
children0
last_payout2018-02-20 13:43:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation0
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,219,196
net_rshares0
@tinoschloegl ·
$0.06
That sounds funny.
👍  ,
properties (23)
authortinoschloegl
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171220t162110279z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-12-20 16:21:09
last_update2017-12-20 16:21:09
depth1
children0
last_payout2017-12-27 16:21:09
cashout_time1969-12-31 23:59:59
total_payout_value0.047 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation1,455,841,681,924
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,375,042
net_rshares9,732,401,267
author_curate_reward""
vote details (2)
@tomm ·
Thanks! Fantastic! A+++++
👍  
properties (23)
authortomm
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t231655334z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-07-10 23:16:54
last_update2017-07-10 23:16:54
depth1
children1
last_payout2017-07-17 23:16:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation316,077,391,779
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,042,190
net_rshares404,007,932
author_curate_reward""
vote details (1)
@maxnachamkin ·
My pleasure @tomm. And thank you sir.
👍  
properties (23)
authormaxnachamkin
permlinkre-tomm-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t233141832z
categoryethereum
json_metadata{"tags":["ethereum"],"users":["tomm"],"app":"steemit/0.1"}
created2017-07-10 23:31:42
last_update2017-07-10 23:31:42
depth2
children0
last_payout2017-07-17 23:31:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,043,294
net_rshares404,007,932
author_curate_reward""
vote details (1)
@tuakanamorgan ·
thanks for the heads up, im going to try this asap... I have a idea for a coin that with revolutionise the world but cant say more than that ...cheers upvoted and resteemed
👍  
properties (23)
authortuakanamorgan
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t231759376z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-07-10 23:18:00
last_update2017-07-10 23:18:00
depth1
children1
last_payout2017-07-17 23:18:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation228,450,255,458
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,042,275
net_rshares3,523,933,415
author_curate_reward""
vote details (1)
@maxnachamkin ·
Nice, best of luck with your project!

Cheers ^_^
properties (22)
authormaxnachamkin
permlinkre-tuakanamorgan-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t232807671z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-07-10 23:28:06
last_update2017-07-10 23:28:06
depth2
children0
last_payout2017-07-17 23:28:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,043,031
net_rshares0
@tvance929 · (edited)
I had to try several times to get eth from the faucet... so that I could CREATE to test network.  Just keep trying to 'BUY' ether.

![](https://steemitimages.com/DQmdJErQHeLMug6gSAkWfE2iZRUKPBhsjGBKkXycVM7oC3Z/image.png)
properties (22)
authortvance929
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180122t022920294z
categoryethereum
json_metadata{"tags":["ethereum"],"image":["https://steemitimages.com/DQmdJErQHeLMug6gSAkWfE2iZRUKPBhsjGBKkXycVM7oC3Z/image.png"],"app":"steemit/0.1"}
created2018-01-22 02:29:15
last_update2018-01-22 02:30:15
depth1
children1
last_payout2018-01-29 02:29:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length220
author_reputation32,752,517
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id31,259,473
net_rshares0
@maxnachamkin ·
Try looking up the Ropsten faucet and getting your ETH from there.
properties (22)
authormaxnachamkin
permlinkre-tvance929-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180131t054911833z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-31 05:49:12
last_update2018-01-31 05:49:12
depth2
children0
last_payout2018-02-07 05:49:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,768,982
net_rshares0
@unicron ·
very good tutorial.
👍  
properties (23)
authorunicron
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180102t044644793z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-02 04:46:48
last_update2018-01-02 04:46:48
depth1
children0
last_payout2018-01-09 04:46:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation380,853,700,167
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,488,155
net_rshares166,809,023
author_curate_reward""
vote details (1)
@websilver ·
Very good manual, thx a lot. 

It helped  to understand it better.
THX
👍  
properties (23)
authorwebsilver
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180418t105740566z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-04-18 10:57:42
last_update2018-04-18 10:57:42
depth1
children0
last_payout2018-04-25 10:57:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation0
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id50,737,124
net_rshares0
author_curate_reward""
vote details (1)
@wekkel ·
It looks quite technical but alas, this should be doable for most people. $30 for creating the tokens is not the worst either.

I made ['tokens' on the Byteball network](https://steemit.com/cryptocurrency/@wekkel/byteball-create-your-own-tokens) which is a bit more straight forward but has a few issues. Devs need to solve this before it is usable for Byteball users. 

Anyway, good to see that knowledge is spread. I am already thinking about the possible applications when you're able to create your own tokens on the spot.
👍  
properties (23)
authorwekkel
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t215132435z
categoryethereum
json_metadata{"tags":["ethereum"],"links":["https://steemit.com/cryptocurrency/@wekkel/byteball-create-your-own-tokens"],"app":"steemit/0.1"}
created2017-07-10 21:51:33
last_update2017-07-10 21:51:33
depth1
children1
last_payout2017-07-17 21:51:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length526
author_reputation793,854,297,842
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,035,916
net_rshares0
author_curate_reward""
vote details (1)
@maxnachamkin ·
Totally. 

Interesting. I haven't heard of Byteball, I'll take a look. 

Agreed.
properties (22)
authormaxnachamkin
permlinkre-wekkel-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t215958623z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-07-10 22:00:00
last_update2017-07-10 22:00:00
depth2
children0
last_payout2017-07-17 22:00:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,036,554
net_rshares0
@winglessss ·
Thanks for this post.  However I am having difficulty verifying my source code.

I keep getting the error

Missing Constructor Arguments for function MyToken(uint256 initialSupply, string tokenName, uint8 decimalUnits, string tokenSymbol)



Here is my Source Code any help would be greatly appreciated.  I'll throw you at least $5 worth of steem if you can help me out.

pragma solidity ^0.4.11;
contract tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData); }

contract MyToken  {
    /* Public variables of the token */
    string public standard = 'Token 0.1';
    string public name;
    string public symbol;
    uint8 public decimals;
    uint256 public totalSupply;

    /* This creates an array with all balances */
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

    /* This generates a public event on the blockchain that will notify clients */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /* This notifies clients about the amount burnt */
    event Burn(address indexed from, uint256 value);

    /* Initializes contract with initial supply tokens to the creator of the contract */
    function MyToken(
        uint256 initialSupply,
        string tokenName,
        uint8 decimalUnits,
        string tokenSymbol
        ) {
        balanceOf[msg.sender] = initialSupply;              // Give the creator all initial tokens
        totalSupply = initialSupply;                        // Update total supply
        name = tokenName;                                   // Set the name for display purposes
        symbol = tokenSymbol;                               // Set the symbol for display purposes
        decimals = decimalUnits;                            // Amount of decimals for display purposes
    }

    /* Send coins */
    function transfer(address _to, uint256 _value) {
        require(_to != 0x0);                                // Prevent transfer to 0x0 address. Use burn() instead
        require(balanceOf[msg.sender] >= _value);           // Check if the sender has enough
        require(balanceOf[_to] + _value >= balanceOf[_to]); // Check for overflows
        balanceOf[msg.sender] -= _value;                    // Subtract from the sender
        balanceOf[_to] += _value;                           // Add the same to the recipient
        Transfer(msg.sender, _to, _value);                  // Notify anyone listening that this transfer took place
    }

    /* Allow another contract to spend some tokens in your behalf */
    function approve(address _spender, uint256 _value)
        returns (bool success) {
        allowance[msg.sender][_spender] = _value;
        return true;
    }

    /* Approve and then communicate the approved contract in a single tx */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData)
        returns (bool success) {
        tokenRecipient spender = tokenRecipient(_spender);
        if (approve(_spender, _value)) {
            spender.receiveApproval(msg.sender, _value, this, _extraData);
            return true;
        }
    }        

    /* A contract attempts to get the coins */
    function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
        require(_to != 0x0);                                // Prevent transfer to 0x0 address. Use burn() instead
        require(balanceOf[_from] >= _value);                // Check if the sender has enough
        require(balanceOf[_to] + _value >= balanceOf[_to]); // Check for overflows
        require(_value <= allowance[_from][msg.sender]);    // Check allowance
        balanceOf[_from] -= _value;                         // Subtract from the sender
        balanceOf[_to] += _value;                           // Add the same to the recipient
        allowance[_from][msg.sender] -= _value;
        Transfer(_from, _to, _value);
        return true;
    }

    function burn(uint256 _value) returns (bool success) {
        require(balanceOf[msg.sender] >= _value);           // Check if the sender has enough
        balanceOf[msg.sender] -= _value;                    // Subtract from the sender
        totalSupply -= _value;                              // Updates totalSupply
        Burn(msg.sender, _value);
        return true;
    }

    function burnFrom(address _from, uint256 _value) returns (bool success) {
        require(balanceOf[_from] >= _value);                // Check if the targeted balance is enough
        require(_value <= allowance[_from][msg.sender]);    // Check allowance
        balanceOf[_from] -= _value;                         // Subtract from the targeted balance
        allowance[_from][msg.sender] -= _value;             // Subtract from the sender's allowance
        totalSupply -= _value;                              // Update totalSupply
        Burn(_from, _value);
        return true;
    }
}
👍  , , , , , , , , , ,
properties (23)
authorwinglessss
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170726t235801357z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-07-26 23:57:57
last_update2017-07-26 23:57:57
depth1
children6
last_payout2017-08-02 23:57:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5,007
author_reputation208,894,886,989
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,851,836
net_rshares0
author_curate_reward""
vote details (11)
@ccmut ·
besides not having inserted throw if your stil having issues check                                       

balanceOf[_from] -= _value;                         // Subtract from the sender's allowance

 allowance[_from][msg.sender] -= _value;             // Subtract from the targeted balance
  
  totalSupply -= _value;                              // Update totalSupply

i also believe you can delete 
allowance[_from] line completly
👍  
properties (23)
authorccmut
permlinkre-winglessss-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170729t070128911z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-07-29 07:01:36
last_update2017-07-29 07:01:36
depth2
children0
last_payout2017-08-05 07:01:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length433
author_reputation70,425,903,947
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,092,999
net_rshares0
author_curate_reward""
vote details (1)
@coinjokerscript · (edited)
Good article with worthwhile information. meanwhile, try this  link to know about step by step process of creating erc20 token, erc223 token creation, erc721 token creation-https://www.cryptoexchangescript.com/erc20-token-creation
properties (22)
authorcoinjokerscript
permlinkre-winglessss-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180828t074809188z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1","links":["https://www.cryptoexchangescript.com/erc20-token-creation"]}
created2018-08-28 07:48:03
last_update2018-08-28 07:48:39
depth2
children0
last_payout2018-09-04 07:48:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length230
author_reputation2,808,208,518
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,578,309
net_rshares0
@theoriginal3ddee ·
Thank you so much! One of the best posts on steemit!!! Can I just paste this in windows 7 notepad?
👍  ,
properties (23)
authortheoriginal3ddee
permlinkre-winglessss-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180207t235313784z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-02-07 23:53:24
last_update2018-02-07 23:53:24
depth2
children0
last_payout2018-02-14 23:53:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length98
author_reputation580,827,569
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,777,951
net_rshares615,035,572
author_curate_reward""
vote details (2)
@tombola ·
HI - I can see from here that you havent completed the following:

![](https://steemitimages.com/DQmUMHFTiqpYeKvTEDk35kq4hiYwr1ESMU4D1ymDaRkyJnD/image.png)
properties (22)
authortombola
permlinkre-winglessss-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180213t134750805z
categoryethereum
json_metadata{"tags":["ethereum"],"image":["https://steemitimages.com/DQmUMHFTiqpYeKvTEDk35kq4hiYwr1ESMU4D1ymDaRkyJnD/image.png"],"app":"steemit/0.1"}
created2018-02-13 13:47:51
last_update2018-02-13 13:47:51
depth2
children1
last_payout2018-02-20 13:47:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length155
author_reputation0
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,219,966
net_rshares0
@tombola ·
Sorry - see you have fixed it!
properties (22)
authortombola
permlinkre-tombola-re-winglessss-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180213t134822096z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-02-13 13:48:21
last_update2018-02-13 13:48:21
depth3
children0
last_payout2018-02-20 13:48:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation0
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,220,058
net_rshares0
@winglessss ·
I looked at this again today  I think I figured it out
properties (22)
authorwinglessss
permlinkre-winglessss-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170727t231833643z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-07-27 23:18:27
last_update2017-07-27 23:18:27
depth2
children0
last_payout2017-08-03 23:18:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation208,894,886,989
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,961,698
net_rshares0
@wizard3000 ·
Thanks a lot for the tutorial Max! However MM ask me to pay to confirm the transaction even in on the Ropsten test net and it is very frustrating... How can I fix this?
properties (22)
authorwizard3000
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180105t115216244z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-05 11:52:15
last_update2018-01-05 11:52:15
depth1
children1
last_payout2018-01-12 11:52:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length168
author_reputation0
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,263,788
net_rshares0
@maxnachamkin ·
You will have to pay to publish the contract. Ropsten ETH isn’t real ETH though. If you don’t have Ropsten ETH look up the Ropsten faucet to get some.
properties (22)
authormaxnachamkin
permlinkre-wizard3000-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180131t053952708z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-01-31 05:39:51
last_update2018-01-31 05:39:51
depth2
children0
last_payout2018-02-07 05:39:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length150
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,767,128
net_rshares0
@wombleoftherock ·
oh man why can I only upvote this once ??

u r a ****ing star dude!!!!!!

great post :)
properties (22)
authorwombleoftherock
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171122t153217896z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-22 15:32:18
last_update2017-11-22 15:32:18
depth1
children1
last_payout2017-11-29 15:32:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length87
author_reputation28,468,035,193
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,210,226
net_rshares0
@maxnachamkin ·
Haha thanks dude!!!
properties (22)
authormaxnachamkin
permlinkre-wombleoftherock-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171122t180229664z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-22 18:02:30
last_update2017-11-22 18:02:30
depth2
children0
last_payout2017-11-29 18:02:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,223,248
net_rshares0
@x-online ·
Great read mate. Thanks so much for this!
properties (22)
authorx-online
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171103t032005878z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-03 03:20:06
last_update2017-11-03 03:20:06
depth1
children1
last_payout2017-11-10 03:20:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation18,134,836
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,316,099
net_rshares0
@maxnachamkin ·
My pleasure!!
properties (22)
authormaxnachamkin
permlinkre-x-online-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171122t021609699z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2017-11-22 02:16:09
last_update2017-11-22 02:16:09
depth2
children0
last_payout2017-11-29 02:16:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation26,072,737,547
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,153,139
net_rshares0
@yomight · (edited)
WOOW!!! Thanks
properties (22)
authoryomight
permlinkre-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180223t175434706z
categoryethereum
json_metadata{"tags":["ethereum"],"app":"steemit/0.1"}
created2018-02-23 17:54:42
last_update2018-02-24 14:04:21
depth1
children0
last_payout2018-03-02 17:54:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation-505,701,079
root_title"How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,922,496
net_rshares0