 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:  **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:  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:  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’.  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:  If you click the date, it’ll bring up the following screen:  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.  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:  When I click the “+” button, I can paste it in there and it’ll automatically insert the information of the token, like so:  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.  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.  Then click the ‘Contract Code’ tab.  Hit ‘Verify and Publish’. That’ll bring you to this screen:  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:  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:  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.  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>
author | maxnachamkin |
---|---|
permlink | how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified |
category | ethereum |
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"]} |
created | 2017-07-10 21:21:39 |
last_update | 2020-01-17 16:55:36 |
depth | 0 |
children | 158 |
last_payout | 2017-07-17 21:21:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.001 HBD |
curator_payout_value | 0.546 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20,139 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,033,350 |
net_rshares | 721,225,495,442 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaninv | 0 | 0 | 100% | ||
wizofreuse | 0 | 0 | 100% | ||
will-zewe | 0 | 10,716,847,013 | 100% | ||
ssstand | 0 | 1,620,852,131 | 100% | ||
chhayll | 0 | 82,865,392,220 | 100% | ||
ashold882015 | 0 | 0 | 100% | ||
chrpopov | 0 | 1,043,865,655 | 100% | ||
dragonho | 0 | 147,732,567,891 | 100% | ||
denverliu | 0 | 0 | 100% | ||
bola | 0 | 2,495,934,151 | 1% | ||
sebytza05 | 0 | 1,191,147,307 | 100% | ||
bitcoinmeetups | 0 | 0 | 100% | ||
stef | 0 | 0 | 100% | ||
racast | 0 | 0 | 100% | ||
djennyfloro | 0 | 0 | 100% | ||
rubenalexander | 0 | 177,687,209,194 | 100% | ||
risinhigher | 0 | 0 | 100% | ||
joshnekrep | 0 | 230,920,715 | 100% | ||
tomm | 0 | 415,718,307 | 100% | ||
richardcrill | 0 | 0 | 100% | ||
josephjeevanand | 0 | 0 | 100% | ||
winglessss | 0 | 0 | 100% | ||
grunet | 0 | 0 | 100% | ||
zonpower | 0 | 0 | 100% | ||
mrdeleted | 0 | 0 | 100% | ||
feldral | 0 | 205,352,722 | 100% | ||
gimballock | 0 | 0 | 100% | ||
annablume | 0 | 0 | 100% | ||
bslater | 0 | 583,358,249 | 100% | ||
kriskarthik | 0 | 0 | 100% | ||
jerdelance | 0 | 0 | 100% | ||
ecomisystems | 0 | 0 | 100% | ||
libert | 0 | 0 | 100% | ||
anthonyadavisii | 0 | 0 | 100% | ||
sydesjokes | 0 | 0 | 100% | ||
drayking | 0 | 0 | 100% | ||
jrappah | 0 | 4,415,471,014 | 100% | ||
thisismein360vr | 0 | 0 | 100% | ||
bugsdx | 0 | 0 | 100% | ||
techansaari | 0 | 0 | 100% | ||
aqeelmalik | 0 | 0 | 100% | ||
amoltc | 0 | 0 | 100% | ||
tmarkiewicz | 0 | 0 | 100% | ||
mikev | 0 | 2,919,631,919 | 100% | ||
mrtree420 | 0 | 0 | 100% | ||
ecoboss | 0 | 0 | 100% | ||
sorinsop | 0 | 0 | 100% | ||
marcsoer | 0 | 0 | 100% | ||
drewbixcube | 0 | 0 | 100% | ||
tellall | 0 | 0 | 100% | ||
seekzeros | 0 | 5,636,620,614 | 100% | ||
nrajesh | 0 | 0 | 100% | ||
frankintaiwan | 0 | 6,395,939,238 | 100% | ||
ankurankan | 0 | 0 | 100% | ||
nocoastpride | 0 | 0 | 100% | ||
mrsinguyen | 0 | 0 | 100% | ||
jacobvw | 0 | 14,365,549,710 | 100% | ||
olsonmino | 0 | 45,096,288,557 | 58% | ||
dickolsson | 0 | 0 | 100% | ||
alientech | 0 | 0 | 100% | ||
majesticgeek | 0 | 0 | 100% | ||
oncecoin | 0 | 0 | 100% | ||
bangkokhearts | 0 | 0 | 100% | ||
cooperkernan | 0 | 0 | 100% | ||
footprintertn | 0 | 0 | 100% | ||
laggy | 0 | 0 | 100% | ||
wekkel | 0 | 3,796,390,393 | 100% | ||
influenced | 0 | 1,054,229,469 | 100% | ||
mythocurrency | 0 | 432,797,564 | 100% | ||
jaquith | 0 | 2,270,908,884 | 100% | ||
healthtech | 0 | 0 | 100% | ||
seamusotto | 0 | 0 | 100% | ||
leecarter | 0 | 0 | 100% | ||
tuakanamorgan | 0 | 3,601,382,501 | 100% | ||
rglink | 0 | 0 | 100% | ||
chinesekan | 0 | 0 | 100% | ||
slavix | 0 | 187,984,589,907 | 100% | ||
hammy | 0 | 1,154,903,839 | 100% | ||
xof | 0 | 0 | 100% | ||
akanshu | 0 | 1,574,641,808 | 100% | ||
kylekidd | 0 | 0 | 100% | ||
jetta88 | 0 | 0 | 100% | ||
jinsukim | 0 | 0 | 100% | ||
jppommet | 0 | 0 | 100% | ||
watchesdaily | 0 | 0 | 100% | ||
ghaaspur | 0 | 0 | 100% | ||
goldcode | 0 | 0 | 100% | ||
watcheronhill | 0 | 0 | 100% | ||
dave.auld | 0 | 1,188,834,032 | 100% | ||
bertbosman | 0 | 0 | 100% | ||
traviis | 0 | 1,160,695,207 | 100% | ||
yr4kr | 0 | 0 | 100% | ||
jeffreykirdeikis | 0 | 1,167,073,986 | 100% | ||
ganjapreneur | 0 | 1,160,692,989 | 100% | ||
siliconbee | 0 | 0 | 100% | ||
upandbeyond | 0 | 0 | 100% | ||
kice | 0 | 0 | 100% | ||
freedomglen | 0 | 1,160,692,120 | 100% | ||
mikeslavin | 0 | 1,160,691,939 | 100% | ||
doraemon | 0 | 0 | 100% | ||
cambryan | 0 | 0 | 100% | ||
theguldenaries | 0 | 0 | 100% | ||
cryptheld | 0 | 0 | 100% | ||
revivedvic | 0 | 0 | 100% | ||
rishabhbhandari | 0 | 0 | 100% | ||
rundmc | 0 | 0 | 100% | ||
johnson522 | 0 | 975,532,889 | 100% | ||
alienovicho | 0 | 1,160,685,430 | 100% | ||
solextin | 0 | 1,120,059,847 | 100% | ||
saitama | 0 | 0 | 100% | ||
fitchh | 0 | 1,160,680,200 | 100% | ||
palme | 0 | 0 | 100% | ||
aleksssboss157 | 0 | 0 | 100% | ||
superpako | 0 | 0 | 100% | ||
emmy1 | 0 | 0 | 100% | ||
henok | 0 | 0 | 100% | ||
rodw | 0 | 1,160,673,295 | 100% | ||
barnabyandersun | 0 | 1,160,672,536 | 100% | ||
iknowyourider | 0 | 0 | 100% | ||
zackatkinsodell | 0 | 0 | 100% | ||
nuthman | 0 | 0 | 100% | ||
iscott | 0 | 0 | 100% | ||
selfmadeinvestor | 0 | 0 | 100% | ||
ihopeyouneverdie | 0 | 0 | 100% | ||
hammargren | 0 | 0 | 100% | ||
offtotheether | 0 | 0 | 100% | ||
an-di | 0 | 0 | 100% | ||
hananqureshi | 0 | 0 | 100% | ||
dcnotpc | 0 | 0 | 100% | ||
cooleo | 0 | 0 | 100% | ||
crypto-cash-hub | 0 | 0 | 100% | ||
gayanweerakkody | 0 | 0 | 100% | ||
fbslo | 0 | 0 | 52% | ||
hektikest | 0 | 0 | 100% | ||
constantcrypto | 0 | 0 | 100% | ||
alexanderisora | 0 | 0 | 100% | ||
il3ithim | 0 | 0 | 100% | ||
wombleoftherock | 0 | 0 | 100% | ||
krustenviech | 0 | 0 | 100% | ||
kiranrh | 0 | 0 | 100% | ||
gravitasllc | 0 | 0 | 100% | ||
alfredox | 0 | 0 | 100% | ||
stevvem | 0 | 0 | 100% | ||
clopes | 0 | 0 | 100% | ||
gtsmmst | 0 | 0 | 100% | ||
pcaruba | 0 | 0 | 100% | ||
redpillproj | 0 | 0 | 100% | ||
raees21 | 0 | 0 | 100% | ||
linkdead13 | 0 | 0 | 100% | ||
raden | 0 | 0 | 100% | ||
x-online | 0 | 0 | 100% | ||
sansasteem | 0 | 0 | 100% | ||
darney1 | 0 | 0 | 100% | ||
adamferrari | 0 | 0 | 100% | ||
pablo-murasaki | 0 | 0 | 100% | ||
bayapple22 | 0 | 0 | 100% | ||
astroboysoup | 0 | 0 | 100% | ||
gfsalvato | 0 | 0 | 100% | ||
cloud.coin | 0 | 0 | 100% | ||
solomon123 | 0 | 0 | 100% | ||
akhairul | 0 | 0 | 100% | ||
randomspirit | 0 | 0 | 100% | ||
astondb5 | 0 | 0 | 100% | ||
keegzhawkins | 0 | 0 | 100% | ||
ataraxy | 0 | 0 | 100% | ||
begger | 0 | 0 | 100% | ||
abjgd108 | 0 | 0 | 100% | ||
steake | 0 | 0 | 100% | ||
dosevader | 0 | 0 | 100% | ||
xs1l3n7x | 0 | 0 | 100% | ||
mcluster | 0 | 0 | 100% | ||
bluegear | 0 | 0 | 100% | ||
prophyt | 0 | 0 | 100% | ||
minderbinder | 0 | 0 | 100% | ||
myteamsucks | 0 | 0 | 100% | ||
jannnis | 0 | 0 | 100% | ||
cganley | 0 | 0 | 100% | ||
pmojo375 | 0 | 0 | 100% | ||
bgilbert | 0 | 0 | 100% | ||
inanc | 0 | 0 | 100% | ||
averymiller | 0 | 0 | 100% | ||
sezycei | 0 | 0 | 100% | ||
philiprhoades | 0 | 0 | 100% | ||
h3nd3r | 0 | 0 | 100% | ||
rahulsps | 0 | 0 | 100% | ||
savage2288 | 0 | 0 | 100% | ||
thinnhhp | 0 | 0 | 100% | ||
taufik0911 | 0 | 0 | 100% | ||
starzero | 0 | 0 | 100% | ||
gregorygrin | 0 | 0 | 100% | ||
aneilpatel | 0 | 0 | 100% | ||
adarshsunil | 0 | 0 | 100% | ||
procesor | 0 | 0 | 100% | ||
aungkoko | 0 | 0 | 100% | ||
cryptotrader-ug | 0 | 0 | 100% | ||
erne5t | 0 | 0 | 100% | ||
ebi16 | 0 | 0 | 100% | ||
samarkand.me2017 | 0 | 0 | 100% | ||
richangh | 0 | 0 | 100% | ||
dr4mohamed | 0 | 0 | 100% | ||
svedenmacher | 0 | 0 | 100% | ||
preetham | 0 | 0 | 100% | ||
ajits | 0 | 0 | 100% | ||
iotone-int001 | 0 | 0 | 100% | ||
earthumbrella | 0 | 0 | 100% | ||
pedrocas | 0 | 0 | 100% | ||
kidwok | 0 | 0 | 100% | ||
muzobuzo | 0 | 0 | 100% | ||
mamtasonwalkar | 0 | 0 | 100% | ||
mindsculptor | 0 | 0 | 100% | ||
bigtuna | 0 | 0 | 100% | ||
paltrickontpb | 0 | 0 | 100% | ||
bravos | 0 | 0 | 100% | ||
miningio | 0 | 0 | 100% | ||
trn | 0 | 0 | 100% | ||
mywisdom | 0 | 0 | 100% | ||
nofxx | 0 | 0 | 100% | ||
antonsteemit | 0 | 0 | 100% | ||
tacke | 0 | 0 | 100% | ||
kranzdylan2 | 0 | 0 | 100% | ||
aphoenixrose | 0 | 0 | 100% | ||
webguru | 0 | 0 | 100% | ||
itux1973 | 0 | 0 | 100% | ||
tinoschloegl | 0 | 0 | 100% | ||
jkom | 0 | 0 | 100% | ||
leehankyeol | 0 | 0 | 100% | ||
jordanlyall | 0 | 0 | 100% | ||
gooddeeds | 0 | 0 | 100% | ||
dtgibson | 0 | 0 | 100% | ||
xat.massacre | 0 | 0 | 0% | ||
piershampton | 0 | 0 | 100% | ||
simki97 | 0 | 0 | 100% | ||
adiandrea | 0 | 0 | 100% | ||
dheerajp | 0 | 0 | 100% | ||
vishalhkothari | 0 | 0 | 100% | ||
sulimanbenhalim | 0 | 0 | 100% | ||
creepyblues | 0 | 0 | 100% | ||
swediepie | 0 | 0 | 100% | ||
lachynicolson | 0 | 0 | 100% | ||
kromzer | 0 | 0 | 100% | ||
cloudconnect | 0 | 0 | 100% | ||
prhinodv | 0 | 0 | 100% | ||
dolanor | 0 | 0 | 100% | ||
conanchain | 0 | 0 | 100% | ||
pritambanikk | 0 | 0 | 100% | ||
david9 | 0 | 0 | 100% | ||
rootpwn | 0 | 0 | 100% | ||
kyawswar | 0 | 0 | 100% | ||
naffyy | 0 | 0 | 100% | ||
lapapanite | 0 | 0 | 100% | ||
sidem | 0 | 0 | 100% | ||
sellthesun | 0 | 0 | 100% | ||
stekz42 | 0 | 0 | 100% | ||
norod | 0 | 0 | 100% | ||
lana-in-france | 0 | 0 | 100% | ||
daencore | 0 | 0 | 100% | ||
mnevis | 0 | 0 | 100% | ||
helleagy | 0 | 0 | 100% | ||
rishiarora | 0 | 0 | 100% | ||
mzm | 0 | 0 | 100% | ||
cedricyarish | 0 | 0 | 100% | ||
uptownrodriguez | 0 | 0 | 100% | ||
theoriginal3ddee | 0 | 0 | 100% | ||
crypto-p90 | 0 | 0 | 100% | ||
willow2u | 0 | 0 | 100% | ||
mnording | 0 | 0 | 100% | ||
zero-vortex | 0 | 0 | 100% | ||
publius-caesar | 0 | 0 | 100% | ||
drawerpull | 0 | 0 | 100% | ||
tvance929 | 0 | 0 | 100% | ||
moritzzh | 0 | 0 | 100% | ||
jt123 | 0 | 0 | 100% | ||
tombola | 0 | 0 | 100% | ||
teddib | 0 | 0 | 100% | ||
unersetzlich | 0 | 0 | 100% | ||
barranger | 0 | 0 | 100% | ||
guster | 0 | 0 | 100% | ||
ariesdevil | 0 | 0 | 100% | ||
supertommetje | 0 | 0 | 100% | ||
futuretechs | 0 | 0 | 100% | ||
mfyz | 0 | 0 | 100% | ||
aefx786 | 0 | 0 | 100% | ||
nuthan | 0 | 0 | 100% | ||
kws4679 | 0 | 0 | 100% | ||
sapientnode | 0 | 0 | 100% | ||
martinkenny | 0 | 0 | 100% | ||
goodecoin | 0 | 0 | 100% | ||
rokzroom | 0 | 0 | 100% | ||
obewan | 0 | 0 | 100% | ||
cryptotoit | 0 | 0 | 100% | ||
aaroncsteem | 0 | 0 | 100% | ||
shahzaintariq | 0 | 0 | 100% | ||
weaseldotro | 0 | 0 | 100% | ||
dcol9186 | 0 | 0 | 100% | ||
lalafell | 0 | 0 | 100% | ||
hmlchy | 0 | 0 | 100% | ||
rafacruz | 0 | 0 | 100% | ||
remilianori | 0 | 0 | 100% | ||
kgillet80 | 0 | 0 | 100% | ||
bss42 | 0 | 0 | 100% | ||
hezi | 0 | 0 | 100% | ||
incubxperts | 0 | 0 | 100% | ||
hubertpasterny | 0 | 0 | 100% | ||
georgh93 | 0 | 0 | 100% | ||
julienpr | 0 | 0 | 100% | ||
guessikatze | 0 | 0 | 100% | ||
sherfey | 0 | 0 | 100% | ||
gicquelhugo | 0 | 0 | 100% | ||
recourier | 0 | 0 | 100% | ||
rehab22 | 0 | 0 | 100% | ||
bennyliaw | 0 | 0 | 100% | ||
aoufa | 0 | 0 | 100% | ||
pigd0g | 0 | 0 | 100% | ||
latoure | 0 | 0 | 100% | ||
willsmye | 0 | 0 | 100% | ||
pynchon | 0 | 0 | 100% | ||
cyberdemon531 | 0 | 0 | 100% | ||
infinitydaniel | 0 | 0 | 100% | ||
salsim5774 | 0 | 0 | 100% | ||
mathito | 0 | 0 | 100% | ||
ilcapo | 0 | 0 | 100% | ||
kbbpatidar | 0 | 0 | 100% | ||
grittymcgritface | 0 | 0 | 100% | ||
imfatsoiwin | 0 | 0 | 100% | ||
simptonym | 0 | 0 | 100% | ||
jasonczm | 0 | 0 | 100% | ||
curiousmatter | 0 | 0 | 100% | ||
carlphilipp | 0 | 0 | 100% | ||
megot | 0 | 0 | 100% | ||
georgiivanov13 | 0 | 0 | 100% | ||
apprenticecrypto | 0 | 0 | 100% | ||
mirax | 0 | 0 | 100% | ||
lucidlive | 0 | 0 | 100% | ||
payung | 0 | 0 | -100% | ||
jmsachin | 0 | 0 | 100% | ||
divesh | 0 | 0 | 100% | ||
netprince | 0 | 0 | 100% | ||
tranhoanganh | 0 | 0 | 100% | ||
rose110 | 0 | 0 | 100% | ||
ocecer | 0 | 0 | 100% | ||
evilsign | 0 | 0 | 100% | ||
jetgab | 0 | 0 | 100% | ||
lovetaxi005 | 0 | 0 | 100% | ||
sorol | 0 | 0 | 100% | ||
simolation | 0 | 0 | 100% | ||
rhoyos1985 | 0 | 0 | 100% | ||
tonightssoup | 0 | 0 | 100% | ||
criptok | 0 | 0 | 100% | ||
ronaldpijpers | 0 | 0 | 100% | ||
elitemachinery | 0 | 0 | 100% | ||
nicholasilechie | 0 | 0 | 100% | ||
pixelsnapshot | 0 | 0 | 100% | ||
planetofthedapps | 0 | 0 | 100% | ||
renzosteem | 0 | 0 | 100% | ||
vicrew12 | 0 | 0 | 100% | ||
fluere-piyush | 0 | 0 | 100% | ||
apres-sens | 0 | 0 | 100% |
Nice and simple tutorial .. Really helped me a lot..
author | adarshsunil |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180125t043139824z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-25 04:32:42 |
last_update | 2018-01-25 04:32:42 |
depth | 1 |
children | 4 |
last_payout | 2018-02-01 04:32:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 52 |
author_reputation | 1,046,788 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 32,100,104 |
net_rshares | 0 |
Good to hear.
author | maxnachamkin |
---|---|
permlink | re-adarshsunil-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180131t054942766z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-31 05:49:42 |
last_update | 2018-01-31 05:49:42 |
depth | 2 |
children | 3 |
last_payout | 2018-02-07 05:49:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 33,769,070 |
net_rshares | 0 |
Hallo Max, können Sie uns bei der Erstellung eines ERC20 Token für einen ICO behilflich sein? Danke und Grüße Manfred
author | hashflat |
---|---|
permlink | re-maxnachamkin-re-adarshsunil-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180629t054111555z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-06-29 05:41:12 |
last_update | 2018-06-29 05:41:12 |
depth | 3 |
children | 0 |
last_payout | 2018-07-06 05:41:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 117 |
author_reputation | 0 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 62,700,489 |
net_rshares | 0 |
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!
author | tombola |
---|---|
permlink | re-maxnachamkin-re-adarshsunil-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180213t164139434z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-02-13 16:41:39 |
last_update | 2018-02-13 16:41:39 |
depth | 3 |
children | 1 |
last_payout | 2018-02-20 16:41:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 369 |
author_reputation | 0 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,255,715 |
net_rshares | 0 |
great tutorial! I was looking what to be prepared for deploying smartcontract to main net and I got this!
author | adiandrea |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180121t010746604z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-21 01:07:36 |
last_update | 2018-01-21 01:07:36 |
depth | 1 |
children | 1 |
last_payout | 2018-01-28 01:07:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 105 |
author_reputation | 243,849,030 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,988,400 |
net_rshares | 0 |
Nice.
author | maxnachamkin |
---|---|
permlink | re-adiandrea-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180131t054822013z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-31 05:48:21 |
last_update | 2018-01-31 05:48:21 |
depth | 2 |
children | 0 |
last_payout | 2018-02-07 05:48:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 33,768,829 |
net_rshares | 0 |
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
author | amarasophi |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20181130t131934793z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"links":["https://www.cryptoexchangescript.com/erc20-token-development"],"app":"steemit/0.1"} |
created | 2018-11-30 13:19:36 |
last_update | 2018-12-26 11:59:09 |
depth | 1 |
children | 0 |
last_payout | 2018-12-07 13:19:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 547 |
author_reputation | 190,686,040 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,148,131 |
net_rshares | 0 |
This looks interesting. I would love to test it. Time to launch sublime.
author | amitrwt |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171129t185558997z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-29 18:56:00 |
last_update | 2017-11-29 18:56:00 |
depth | 1 |
children | 1 |
last_payout | 2017-12-06 18:56:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 72 |
author_reputation | 4,986,999,320 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,916,835 |
net_rshares | 0 |
Do it.
author | maxnachamkin |
---|---|
permlink | re-amitrwt-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180131t053822201z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-31 05:38:21 |
last_update | 2018-01-31 05:38:21 |
depth | 2 |
children | 0 |
last_payout | 2018-02-07 05:38:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 33,766,844 |
net_rshares | 0 |
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!
author | ankitgoyal09 |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171123t042915219z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-23 04:29:24 |
last_update | 2017-11-23 04:29:24 |
depth | 1 |
children | 1 |
last_payout | 2017-11-30 04:29:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 182 |
author_reputation | 2,409,061,381 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,261,497 |
net_rshares | 0 |
You don't need Ethereum Wallet or Geth. Just MetaMask, then use the online solidity browser as I talked about in the tutorial.
author | maxnachamkin |
---|---|
permlink | re-ankitgoyal09-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171124t164706010z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-24 16:47:06 |
last_update | 2017-11-24 16:47:06 |
depth | 2 |
children | 0 |
last_payout | 2017-12-01 16:47:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 126 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,408,785 |
net_rshares | 0 |
Great write-up, community definitely needs more coding/crypto 'beginner' articles like this.
author | apprenticecrypto |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180211t050727092z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-02-11 05:07:27 |
last_update | 2018-02-11 05:07:27 |
depth | 1 |
children | 0 |
last_payout | 2018-02-18 05:07:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 92 |
author_reputation | 665,866,167 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 36,582,473 |
net_rshares | 0 |
Thanks for rhe tutorial helped me alot
author | aqeelmalik |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171222t140546581z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-12-22 14:06:39 |
last_update | 2017-12-22 14:06:39 |
depth | 1 |
children | 0 |
last_payout | 2017-12-29 14:06:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 38 |
author_reputation | 1,771,354,629,409 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,700,253 |
net_rshares | 0 |
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 !
author | ara13 |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180107t101724481z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-07 10:10:51 |
last_update | 2018-01-07 10:10:51 |
depth | 1 |
children | 1 |
last_payout | 2018-01-14 10:10:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 278 |
author_reputation | 0 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,727,392 |
net_rshares | 0 |
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.
author | maxnachamkin |
---|---|
permlink | re-ara13-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180131t054115845z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-31 05:41:15 |
last_update | 2018-01-31 05:41:15 |
depth | 2 |
children | 0 |
last_payout | 2018-02-07 05:41:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 141 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 33,767,391 |
net_rshares | 0 |
Thank you for the great content. Made my first token
author | astroboysoup |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171102t230727296z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-02 23:07:21 |
last_update | 2017-11-02 23:07:21 |
depth | 1 |
children | 2 |
last_payout | 2017-11-09 23:07:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 52 |
author_reputation | 4,677,587,770 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,303,126 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
josephjeevanand | 0 | 0 | 100% | ||
aphoenixrose | 0 | 0 | 100% |
how? i get errors
author | guisepppe |
---|---|
permlink | re-astroboysoup-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180121t215755495z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-21 21:57:57 |
last_update | 2018-01-21 21:57:57 |
depth | 2 |
children | 0 |
last_payout | 2018-01-28 21:57:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 4,740,309,574 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 31,208,227 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptheld | 0 | 0 | 100% |
Boo ya, nice astroboysoup!!
author | maxnachamkin |
---|---|
permlink | re-astroboysoup-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171122t022037850z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-22 02:20:36 |
last_update | 2017-11-22 02:20:36 |
depth | 2 |
children | 0 |
last_payout | 2017-11-29 02:20:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 27 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,153,458 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
josephjeevanand | 0 | 0 | 100% |
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.
author | bangkokhearts |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171019t133536521z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-10-19 13:35:45 |
last_update | 2017-10-19 13:35:45 |
depth | 1 |
children | 3 |
last_payout | 2017-10-26 13:35:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 141 |
author_reputation | 16,286,670,122 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,056,530 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
binkley | 0 | 0 | 100% | ||
sandiegojenkins | 0 | 0 | 100% |
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.
author | deborahlindsey |
---|---|
permlink | re-bangkokhearts-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180319t041054723z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-03-19 04:10:57 |
last_update | 2018-03-19 04:10:57 |
depth | 2 |
children | 0 |
last_payout | 2018-03-26 04:10:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 203 |
author_reputation | 1,048,290,004 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,262,983 |
net_rshares | 0 |
Thanks bangkokhearts, and my pleasure.
author | maxnachamkin |
---|---|
permlink | re-bangkokhearts-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171022t225220738z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-10-22 22:52:30 |
last_update | 2017-10-22 22:52:30 |
depth | 2 |
children | 1 |
last_payout | 2017-10-29 22:52:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 38 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,334,748 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
josephjeevanand | 0 | 0 | 100% | ||
ghamal | 0 | 0 | 100% | ||
sandiegojenkins | 0 | 0 | 100% | ||
kryptovaluta | 0 | 0 | 100% |
Hi please can you make or link me to a post on how to create an ico from scratch
author | skope |
---|---|
permlink | re-maxnachamkin-re-bangkokhearts-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171031t102330086z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-10-31 10:23:33 |
last_update | 2017-10-31 10:23:33 |
depth | 3 |
children | 0 |
last_payout | 2017-11-07 10:23:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 80 |
author_reputation | 0 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,058,073 |
net_rshares | 0 |
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.
author | barnabyandersun |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170715t135702407z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"users":["maxnachamkin"],"app":"steemit/0.1"} |
created | 2017-07-15 13:57:06 |
last_update | 2017-07-15 13:57:06 |
depth | 1 |
children | 1 |
last_payout | 2017-07-22 13:57:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 258 |
author_reputation | 0 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,570,805 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anshul | 0 | 0 | 100% |
Happy to help! Good luck with your project :)
author | maxnachamkin |
---|---|
permlink | re-barnabyandersun-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170721t164459319z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-07-21 16:45:00 |
last_update | 2017-07-21 16:45:00 |
depth | 2 |
children | 0 |
last_payout | 2017-07-28 16:45:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 45 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,214,761 |
net_rshares | 0 |
A bit lengthy, but is a nice article
author | bennyliaw |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180124t080409437z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-24 08:04:09 |
last_update | 2018-01-24 08:04:09 |
depth | 1 |
children | 0 |
last_payout | 2018-01-31 08:04:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 36 |
author_reputation | 424,477,391 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 31,860,719 |
net_rshares | 0 |
I really hope you become a billionaire, or whatever your goal may be. Thank you very much for this post.
author | bgilbert |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180213t151028238z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-02-13 15:10:33 |
last_update | 2018-02-13 15:10:33 |
depth | 1 |
children | 0 |
last_payout | 2018-02-20 15:10:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 104 |
author_reputation | 96,455,774 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,237,020 |
net_rshares | 0 |
Good article. Following.
author | bitcoinmeetups |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171003t071340779z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-10-03 07:13:42 |
last_update | 2017-10-03 07:13:42 |
depth | 1 |
children | 1 |
last_payout | 2017-10-10 07:13:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 236,882,220,234 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,640,940 |
net_rshares | 0 |
Thank you. Cheers.
author | maxnachamkin |
---|---|
permlink | re-bitcoinmeetups-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171010t173719285z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-10-10 17:37:21 |
last_update | 2017-10-10 17:37:21 |
depth | 2 |
children | 0 |
last_payout | 2017-10-17 17:37:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,318,760 |
net_rshares | 0 |
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
author | coinjokerscript |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180927t112041104z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"links":["https://www.cryptoexchangescript.com/erc20-token-creation"],"app":"steemit/0.1"} |
created | 2018-09-27 11:20:42 |
last_update | 2018-09-27 11:20:42 |
depth | 1 |
children | 0 |
last_payout | 2018-10-04 11:20:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 260 |
author_reputation | 2,808,208,518 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 72,262,109 |
net_rshares | 0 |
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!
author | communisttea |
---|---|
permlink | q3r4tj |
category | ethereum |
json_metadata | {"app":"steemit/0.1"} |
created | 2020-01-07 19:29:42 |
last_update | 2020-01-07 19:29:42 |
depth | 1 |
children | 0 |
last_payout | 2020-01-14 19:29:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 122 |
author_reputation | 11,434,049 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 94,158,111 |
net_rshares | 0 |
It's a great job you did here bro. You just decided to educate us all. You must be a genius.
author | cryptheld |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180409t211657663z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-04-09 21:17:06 |
last_update | 2018-04-09 21:17:06 |
depth | 1 |
children | 0 |
last_payout | 2018-04-16 21:17:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 92 |
author_reputation | 9,938,499,617 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,201,120 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
flypcy | 0 | 0 | 100% |
Thank you for writing this up
author | crypto-cash-hub |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171031t220908795z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-10-31 22:09:09 |
last_update | 2017-10-31 22:09:09 |
depth | 1 |
children | 1 |
last_payout | 2017-11-07 22:09:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 140,896,711 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,112,793 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jaquith | 0 | 0 | 100% |
You're welcome.
author | maxnachamkin |
---|---|
permlink | re-crypto-cash-hub-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171102t192114229z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-02 19:21:15 |
last_update | 2017-11-02 19:21:15 |
depth | 2 |
children | 0 |
last_payout | 2017-11-09 19:21:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,290,006 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
db80 | 0 | 0 | 100% |
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)
author | cryptogee |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171114t140548879z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"links":["https://steemit.com/@cryptogee"],"app":"steemit/0.1"} |
created | 2017-11-14 14:05:48 |
last_update | 2017-11-14 14:05:48 |
depth | 1 |
children | 4 |
last_payout | 2017-11-21 14:05:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 398 |
author_reputation | 419,387,439,147,428 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,361,420 |
net_rshares | 0 |
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.
author | maxnachamkin |
---|---|
permlink | re-cryptogee-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171122t021432897z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-22 02:14:33 |
last_update | 2017-11-22 02:14:33 |
depth | 2 |
children | 3 |
last_payout | 2017-11-29 02:14:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 376 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,153,046 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
josephjeevanand | 0 | 0 | 100% |
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)
author | cryptogee |
---|---|
permlink | re-maxnachamkin-re-cryptogee-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171123t142241322z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"links":["https://steemit.com/@cryptogee"],"app":"steemit/0.1"} |
created | 2017-11-23 14:22:42 |
last_update | 2017-11-23 14:22:42 |
depth | 3 |
children | 1 |
last_payout | 2017-11-30 14:22:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 512 |
author_reputation | 419,387,439,147,428 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,302,095 |
net_rshares | 0 |
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
author | tombola |
---|---|
permlink | re-maxnachamkin-re-cryptogee-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180213t124332537z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-02-13 12:43:33 |
last_update | 2018-02-13 12:43:33 |
depth | 3 |
children | 0 |
last_payout | 2018-02-20 12:43:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 184 |
author_reputation | 0 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,206,443 |
net_rshares | 0 |
Thanks for this, pretty amazing!! How do you add an image to your token?
author | cryptotoit |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180224t114928772z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-02-24 11:49:30 |
last_update | 2018-02-24 11:49:30 |
depth | 1 |
children | 0 |
last_payout | 2018-03-03 11:49:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 72 |
author_reputation | 0 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,076,218 |
net_rshares | 0 |
This post was excellent - I don't know why it didn't get more attention when you published it.
author | curiousmatter |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180220t192259693z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-02-20 19:23:00 |
last_update | 2018-02-20 19:23:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-27 19:23:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 94 |
author_reputation | 138,969,269 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,146,126 |
net_rshares | 614,449,999 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
curiousmatter | 0 | 614,449,999 | 100% |
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
author | dhimansatish |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171204t114109133z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-12-04 11:41:09 |
last_update | 2017-12-04 11:41:09 |
depth | 1 |
children | 0 |
last_payout | 2017-12-11 11:41:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 204 |
author_reputation | 0 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 22,355,271 |
net_rshares | 0 |
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.
author | doraemon |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170901t192355842z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-09-01 19:23:48 |
last_update | 2017-09-01 19:23:48 |
depth | 1 |
children | 0 |
last_payout | 2017-09-08 19:23:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 142 |
author_reputation | 275,073,022 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,582,203 |
net_rshares | 0 |
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
author | ecoboss |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171129t124745299z |
category | ethereum |
json_metadata | {"tags":["ethereum","ico","etherum"],"app":"steemit/0.1"} |
created | 2017-11-29 12:47:45 |
last_update | 2017-11-29 12:47:45 |
depth | 1 |
children | 1 |
last_payout | 2017-12-06 12:47:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 199 |
author_reputation | 2,218,868,935 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,883,701 |
net_rshares | 0 |
Indeed. My pleasure ecoboss.
author | maxnachamkin |
---|---|
permlink | re-ecoboss-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180131t053743373z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-31 05:37:42 |
last_update | 2018-01-31 05:37:42 |
depth | 2 |
children | 0 |
last_payout | 2018-02-07 05:37:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 33,766,723 |
net_rshares | 0 |
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'
author | erics1230 |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171011t211608088z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-10-11 21:16:09 |
last_update | 2017-10-11 21:16:09 |
depth | 1 |
children | 2 |
last_payout | 2017-10-18 21:16:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 228 |
author_reputation | 0 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,430,944 |
net_rshares | 0 |
I got it to work. had to turn off optimization on the confirming
author | erics1230 |
---|---|
permlink | re-erics1230-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171012t163904000z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-10-12 16:39:06 |
last_update | 2017-10-12 16:39:06 |
depth | 2 |
children | 1 |
last_payout | 2017-10-19 16:39:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 65 |
author_reputation | 0 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,507,494 |
net_rshares | 0 |
Nice :)
author | maxnachamkin |
---|---|
permlink | re-erics1230-re-erics1230-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171018t151911344z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-10-18 15:19:12 |
last_update | 2017-10-18 15:19:12 |
depth | 3 |
children | 0 |
last_payout | 2017-10-25 15:19:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,987,180 |
net_rshares | 0 |
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
author | falselight |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171107t164306770z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-07 16:43:06 |
last_update | 2017-11-07 16:43:06 |
depth | 1 |
children | 3 |
last_payout | 2017-11-14 16:43:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 194 |
author_reputation | 71,725,155 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,708,516 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drawerpull | 0 | 0 | 100% |
Did you add the Contract Address for the token in Test Net to your Custom Token list in MetaMask?
author | maxnachamkin |
---|---|
permlink | re-falselight-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171122t021726278z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-22 02:17:24 |
last_update | 2017-11-22 02:17:24 |
depth | 2 |
children | 0 |
last_payout | 2017-11-29 02:17:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 97 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,153,233 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
josephjeevanand | 0 | 0 | 100% | ||
drawerpull | 0 | 0 | 100% |
Same problem, any idea?¿
author | rafalloc |
---|---|
permlink | re-falselight-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171114t121602605z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-14 12:16:18 |
last_update | 2017-11-14 12:16:18 |
depth | 2 |
children | 0 |
last_payout | 2017-11-21 12:16:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 24,257,655 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,351,288 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drawerpull | 0 | 0 | 100% |
Same problem, any idea?
author | rafalloc |
---|---|
permlink | re-falselight-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171114t124319837z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-14 12:43:36 |
last_update | 2017-11-14 12:43:36 |
depth | 2 |
children | 0 |
last_payout | 2017-11-21 12:43:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 24,257,655 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,353,671 |
net_rshares | 0 |
Awesome! Thanx for sharing! resteemed and upvoted + followed :)
author | freedomglen |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170711t084532216z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-07-11 08:45:33 |
last_update | 2017-07-11 08:45:33 |
depth | 1 |
children | 1 |
last_payout | 2017-07-18 08:45:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 63 |
author_reputation | 3,966,089,349 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,083,387 |
net_rshares | 0 |
My pleasure. Right on.
author | maxnachamkin |
---|---|
permlink | re-freedomglen-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170711t130719432z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-07-11 13:07:18 |
last_update | 2017-07-11 13:07:18 |
depth | 2 |
children | 0 |
last_payout | 2017-07-18 13:07:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,104,517 |
net_rshares | 0 |
@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
author | goodecoin |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180118t110104895z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"users":["maxnachamkin"],"links":["https://www.ethereum.org/token"],"app":"steemit/0.1"} |
created | 2018-01-18 11:00:51 |
last_update | 2018-01-18 11:00:51 |
depth | 1 |
children | 1 |
last_payout | 2018-01-25 11:00:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 383 |
author_reputation | 0 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,368,582 |
net_rshares | 0 |
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.
author | maxnachamkin |
---|---|
permlink | re-goodecoin-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180131t054659792z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-31 05:47:00 |
last_update | 2018-01-31 05:47:00 |
depth | 2 |
children | 0 |
last_payout | 2018-02-07 05:47:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 340 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 33,768,567 |
net_rshares | 0 |
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?
author | greenalien |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180405t204804343z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-04-05 20:48:03 |
last_update | 2018-04-05 20:48:03 |
depth | 1 |
children | 0 |
last_payout | 2018-04-12 20:48:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 131 |
author_reputation | 6,717,164,190 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 48,549,052 |
net_rshares | 0 |
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?
author | grunet |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180109t182411510z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-09 18:24:09 |
last_update | 2018-01-09 18:24:09 |
depth | 1 |
children | 2 |
last_payout | 2018-01-16 18:24:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 283 |
author_reputation | 299,041,492,536 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,311,883 |
net_rshares | 0 |
ok, i need more ETH;) gas limit 1251480 and gas price 90 gwei means transaction fee from 0.112633 ETH...
author | grunet |
---|---|
permlink | re-grunet-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180110t020023357z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-10 02:00:21 |
last_update | 2018-01-10 02:00:21 |
depth | 2 |
children | 1 |
last_payout | 2018-01-17 02:00:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 104 |
author_reputation | 299,041,492,536 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,384,453 |
net_rshares | 0 |
Interesting. Did you get this handled? I’ve never seen that error before, and that transaction fee is quite high.
author | maxnachamkin |
---|---|
permlink | re-grunet-re-grunet-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180131t054208005z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-31 05:42:06 |
last_update | 2018-01-31 05:42:06 |
depth | 3 |
children | 0 |
last_payout | 2018-02-07 05:42:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 113 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 33,767,564 |
net_rshares | 0 |
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.
author | guessikatze |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180124t184721445z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-24 18:47:30 |
last_update | 2018-01-24 18:48:57 |
depth | 1 |
children | 1 |
last_payout | 2018-01-31 18:47:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 840 |
author_reputation | -248,417,137 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 31,993,439 |
net_rshares | 0 |
it's so easy to make all the necessary changes, even in less than 20min, kudos to the writer
author | tessal |
---|---|
permlink | re-guessikatze-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180209t114237217z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-02-09 11:42:39 |
last_update | 2018-02-09 11:42:39 |
depth | 2 |
children | 0 |
last_payout | 2018-02-16 11:42:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 92 |
author_reputation | 758,508,687 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 36,149,558 |
net_rshares | 0 |
Please I'm stuck in trying to create the token. It keeps bringing out invalid address. Please what am I to use?
author | hemalnick |
---|---|
permlink | ptxznr |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2019-07-01 02:45:30 |
last_update | 2019-07-01 02:45:30 |
depth | 1 |
children | 0 |
last_payout | 2019-07-08 02:45:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 111 |
author_reputation | 4,561,799,512 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 87,598,872 |
net_rshares | 0 |
Thanks. I must reread to fully understand!!!
author | hezi |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180124t155101844z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-24 15:51:00 |
last_update | 2018-01-24 15:51:00 |
depth | 1 |
children | 0 |
last_payout | 2018-01-31 15:51:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 44 |
author_reputation | 9,601,078 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 31,957,378 |
net_rshares | 0 |
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.
author | icoclone |
---|---|
permlink | q7e3nx |
category | ethereum |
json_metadata | {"links":["https://www.icoclone.com"],"app":"steemit/0.2"} |
created | 2020-03-18 12:50:21 |
last_update | 2020-03-18 12:50:21 |
depth | 1 |
children | 0 |
last_payout | 2020-03-25 12:50:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 278 |
author_reputation | 969,233,614 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,462,084 |
net_rshares | 0 |
Thanks! Do you know how to change the token icon in Metamask? For example your 100 TT is a yellow circle.
author | ilairdyi |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180527t094142828z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-05-27 09:41:18 |
last_update | 2018-05-27 09:41:18 |
depth | 1 |
children | 0 |
last_payout | 2018-06-03 09:41:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 106 |
author_reputation | 46,679,622 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,922,086 |
net_rshares | 0 |
Good job, with all the info.
author | infinitydaniel |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180204t170400444z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-02-04 17:04:00 |
last_update | 2018-02-04 17:04:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-11 17:04:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 63,388,797 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,933,052 |
net_rshares | 1,170,544,856 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
infinitydaniel | 0 | 568,377,915 | 100% | ||
earnmoneymoney | 0 | 602,166,941 | 100% |
Hi, the token contract is outdated. Can you please provide a link for the latest ERC20 token contract?
author | iunit |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20181213t065420350z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-12-13 06:54:21 |
last_update | 2018-12-13 06:54:21 |
depth | 1 |
children | 0 |
last_payout | 2018-12-20 06:54:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 102 |
author_reputation | 159,045,011,143 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,771,607 |
net_rshares | 0 |
Very interesting<a href="https://steemit.com/car/@johnduckett/car-insurance-quotes">.</a> Thanks.
author | johnduckett |
---|---|
permlink | q610m4 |
category | ethereum |
json_metadata | {"links":["https://steemit.com/car/@johnduckett/car-insurance-quotes"],"app":"steemit/0.2"} |
created | 2020-02-21 00:42:09 |
last_update | 2020-02-21 00:42:09 |
depth | 1 |
children | 0 |
last_payout | 2020-02-28 00:42:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 97 |
author_reputation | 765,483,764,621 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,661,607 |
net_rshares | 0 |
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. 
author | joshuapark66 |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20181211t143601714z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"image":["https://cdn.steemitimages.com/DQmUY5jqiVTExELvPTausTAfUL9sfuvgWSsQKf7U4gUCEkn/image.png"],"app":"steemit/0.1"} |
created | 2018-12-11 14:36:03 |
last_update | 2018-12-11 14:36:03 |
depth | 1 |
children | 0 |
last_payout | 2018-12-18 14:36:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 252 |
author_reputation | 0 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,689,574 |
net_rshares | 0 |
great job, i ll test it ! thanks.
author | julienpr |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180123t204728584z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-23 20:47:27 |
last_update | 2018-01-23 20:47:27 |
depth | 1 |
children | 0 |
last_payout | 2018-01-30 20:47:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 33 |
author_reputation | 272,480,730 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 31,737,283 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
starship2525 | 0 | 0 | 100% |
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
author | karwanmino17 |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171111t003902223z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-11 00:39:03 |
last_update | 2017-11-11 00:39:03 |
depth | 1 |
children | 1 |
last_payout | 2017-11-18 00:39:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 179 |
author_reputation | 54,824,259 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,008,669 |
net_rshares | 0 |
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.
author | maxnachamkin |
---|---|
permlink | re-karwanmino17-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171122t021916248z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-22 02:19:15 |
last_update | 2017-11-22 02:19:15 |
depth | 2 |
children | 0 |
last_payout | 2017-11-29 02:19:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 127 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,153,374 |
net_rshares | 0 |
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?
author | louisberner |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180117t105514975z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-17 10:55:15 |
last_update | 2018-01-17 10:55:15 |
depth | 1 |
children | 1 |
last_payout | 2018-01-24 10:55:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 170 |
author_reputation | 0 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,146,303 |
net_rshares | 0 |
Have you figured this out? Post some more specifics, like which line of code it’s throwing the error on.
author | maxnachamkin |
---|---|
permlink | re-louisberner-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180131t054329790z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-31 05:43:30 |
last_update | 2018-01-31 05:43:30 |
depth | 2 |
children | 0 |
last_payout | 2018-02-07 05:43:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 104 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 33,767,867 |
net_rshares | 0 |
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...
author | maven360 |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t221519638z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"links":["https://www.gofundme.com/"],"app":"steemit/0.1"} |
created | 2017-07-10 22:15:21 |
last_update | 2017-07-10 22:15:21 |
depth | 1 |
children | 2 |
last_payout | 2017-07-17 22:15:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 499 |
author_reputation | 1,409,115,525,495 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,037,731 |
net_rshares | 0 |
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.
author | maxnachamkin |
---|---|
permlink | re-maven360-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t233548488z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-07-10 23:35:48 |
last_update | 2017-07-10 23:35:48 |
depth | 2 |
children | 0 |
last_payout | 2017-07-17 23:35:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 327 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,043,597 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
josephjeevanand | 0 | 0 | 100% |
There already exist crypto crowdfunding website's. Doing an ICO is more like doing an IPO without all the paperwork and regulations.
author | niel96 |
---|---|
permlink | re-maven360-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20181122t040050366z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-11-22 04:01:15 |
last_update | 2018-11-22 04:01:15 |
depth | 2 |
children | 0 |
last_payout | 2018-11-29 04:01:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 132 |
author_reputation | 99,990,577,247,925 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,710,293 |
net_rshares | 0 |
I had no idea it was this straightforward. Thanks for your thorough explanation @MaxNachamkin. TheMostPrivateCoinEver.com is hilarious.
author | mikeslavin |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t212303377z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"users":["maxnachamkin"],"app":"steemit/0.1"} |
created | 2017-07-10 21:23:03 |
last_update | 2017-07-10 21:23:03 |
depth | 1 |
children | 1 |
last_payout | 2017-07-17 21:23:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 136 |
author_reputation | 45,019,480 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,033,452 |
net_rshares | 0 |
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 ^_^
author | maxnachamkin |
---|---|
permlink | re-mikeslavin-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t212936503z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"users":["mikeslavin"],"app":"steemit/0.1"} |
created | 2017-07-10 21:29:36 |
last_update | 2017-07-10 21:29:36 |
depth | 2 |
children | 0 |
last_payout | 2017-07-17 21:29:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 225 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,034,036 |
net_rshares | 0 |
Freaking awesome. Thanks man. Upvoted and followed
author | minderbinder |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171015t051637658z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-10-15 05:16:39 |
last_update | 2017-10-15 05:16:39 |
depth | 1 |
children | 1 |
last_payout | 2017-10-22 05:16:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 50 |
author_reputation | 23,080,720,700 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,721,151 |
net_rshares | 0 |
Cheers!
author | maxnachamkin |
---|---|
permlink | re-minderbinder-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171022t005000766z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-10-22 00:50:00 |
last_update | 2017-10-22 00:50:00 |
depth | 2 |
children | 0 |
last_payout | 2017-10-29 00:50:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,257,386 |
net_rshares | 639,777,711 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
minderbinder | 0 | 639,777,711 | 100% |
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
author | mirax |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180311t163344887z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"links":["https://steemit.com/ethereum/@maxnachamkin/the-most-private-coin-ever-launch-today-details-tokens-inside"],"app":"steemit/0.1"} |
created | 2018-03-11 16:33:45 |
last_update | 2018-03-11 16:33:45 |
depth | 1 |
children | 0 |
last_payout | 2018-03-18 16:33:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 304 |
author_reputation | 61,598,650 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 43,737,205 |
net_rshares | 0 |
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.
author | mrtree420 |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171012t141451460z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-10-12 14:14:54 |
last_update | 2017-10-12 14:16:54 |
depth | 1 |
children | 5 |
last_payout | 2017-10-19 14:14:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 300 |
author_reputation | 20,530,707,664 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,495,521 |
net_rshares | 0 |
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.
author | maxnachamkin |
---|---|
permlink | re-mrtree420-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171018t154258649z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-10-18 15:43:03 |
last_update | 2017-10-18 15:43:03 |
depth | 2 |
children | 4 |
last_payout | 2017-10-25 15:43:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 191 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,988,667 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
earthumbrella | 0 | 0 | 100% |
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!
author | earthumbrella |
---|---|
permlink | re-maxnachamkin-re-mrtree420-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180113t172818721z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-13 17:28:18 |
last_update | 2018-01-13 17:28:18 |
depth | 3 |
children | 2 |
last_payout | 2018-01-20 17:28:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 334 |
author_reputation | 1,346,246,923,128 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,276,426 |
net_rshares | 0 |
Maybe a tutorial for that part now?
author | richardcrill |
---|---|
permlink | re-maxnachamkin-re-mrtree420-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171125t161049710z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-25 16:10:48 |
last_update | 2017-11-25 16:10:48 |
depth | 3 |
children | 0 |
last_payout | 2017-12-02 16:10:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 35 |
author_reputation | 55,974,657,421,087 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,495,218 |
net_rshares | 0 |
how to setup instant/auto sent and receive.....exp: 0.01 100 token people sent 0.01 sent 100 token instanly sent....
author | mywisdom |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180622t103044931z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-06-22 10:31:03 |
last_update | 2018-06-22 10:31:03 |
depth | 1 |
children | 0 |
last_payout | 2018-06-29 10:31:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 117 |
author_reputation | -19,908,800,365 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 61,754,930 |
net_rshares | 0 |
Thanks for this guide, very helpful. Your websites is offline i see?
author | niel96 |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20181122t020354320z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-11-22 02:04:18 |
last_update | 2018-11-22 02:04:18 |
depth | 1 |
children | 1 |
last_payout | 2018-11-29 02:04:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 68 |
author_reputation | 99,990,577,247,925 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,706,349 |
net_rshares | 838,019,392 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
largeadultson | 0 | 838,019,392 | 5% |
Does ethereum has a manual for this? They should make it more user friendly.
author | niel96 |
---|---|
permlink | re-niel96-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20181122t034200311z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-11-22 03:42:24 |
last_update | 2018-11-22 03:43:30 |
depth | 2 |
children | 0 |
last_payout | 2018-11-29 03:42:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 76 |
author_reputation | 99,990,577,247,925 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,709,706 |
net_rshares | 0 |
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.
author | ocecer |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180313t131507922z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-03-13 13:15:06 |
last_update | 2018-03-13 13:15:06 |
depth | 1 |
children | 0 |
last_payout | 2018-03-20 13:15:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 401 |
author_reputation | 0 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 44,138,032 |
net_rshares | 0 |
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.
author | olsonmino |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170711t001455227z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-07-11 00:14:51 |
last_update | 2017-07-11 00:14:51 |
depth | 1 |
children | 2 |
last_payout | 2017-07-18 00:14:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.185 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 181 |
author_reputation | 949,935,351 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,046,389 |
net_rshares | 53,100,721,198 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
izzy | 0 | 0 | 100% | ||
jrappah | 0 | 4,505,582,667 | 100% | ||
olsonmino | 0 | 48,595,138,531 | 63% | ||
sanjaymishra | 0 | 0 | 100% | ||
slackersteem | 0 | 0 | 100% | ||
foodhunter | 0 | 0 | 100% | ||
clopes | 0 | 0 | 100% | ||
mtalha | 0 | 0 | 100% | ||
rootpwn | 0 | 0 | 100% | ||
tavasti | 0 | 0 | 100% | ||
tvance929 | 0 | 0 | 100% | ||
unersetzlich | 0 | 0 | 100% | ||
pratikigen | 0 | 0 | 100% | ||
netprince | 0 | 0 | 100% | ||
agoodob | 0 | 0 | 100% | ||
allocoin | 0 | 0 | 100% |
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.
author | maxnachamkin |
---|---|
permlink | re-olsonmino-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170711t001636444z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"busy/1.0.0"} |
created | 2017-07-11 00:16:36 |
last_update | 2017-07-11 00:16:36 |
depth | 2 |
children | 1 |
last_payout | 2017-07-18 00:16:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 261 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,046,522 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
josephjeevanand | 0 | 0 | 100% | ||
majesticgeek | 0 | 0 | 100% | ||
karwanmino17 | 0 | 0 | 100% | ||
hamendratak | 0 | 0 | 100% | ||
rootpwn | 0 | 0 | 100% | ||
tombola | 0 | 0 | 100% | ||
instamage | 0 | 0 | 100% |
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.
author | romanticist |
---|---|
permlink | re-maxnachamkin-re-olsonmino-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171116t025851899z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-16 02:58:54 |
last_update | 2017-11-16 02:58:54 |
depth | 3 |
children | 0 |
last_payout | 2017-11-23 02:58:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 323 |
author_reputation | 281,768,976 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,528,292 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
josephjeevanand | 0 | 0 | 100% | ||
madrowdyrucky | 0 | 0 | 100% |
Thank you Max, this was of great help. Do you know how to change the icon that is assigned to the token?
author | pcaruba |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171222t153734474z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-12-22 15:37:36 |
last_update | 2017-12-22 15:37:36 |
depth | 1 |
children | 2 |
last_payout | 2017-12-29 15:37:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 104 |
author_reputation | 2,934,445,046 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,713,021 |
net_rshares | 0 |
You need to fill out a form on etherescan and submit icon along with a bunch of other information.
author | sarah249 |
---|---|
permlink | re-pcaruba-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171223t171246454z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-12-23 17:12:48 |
last_update | 2017-12-23 17:12:48 |
depth | 2 |
children | 1 |
last_payout | 2017-12-30 17:12:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 98 |
author_reputation | 627,414,456,840 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,890,392 |
net_rshares | 621,144,871 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pcaruba | 0 | 0 | 100% | ||
sarah249 | 0 | 621,144,871 | 100% |
Thanks!
author | pcaruba |
---|---|
permlink | re-sarah249-re-pcaruba-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180102t121244373z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-02 12:12:45 |
last_update | 2018-01-02 12:12:45 |
depth | 3 |
children | 0 |
last_payout | 2018-01-09 12:12:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 2,934,445,046 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 26,546,956 |
net_rshares | 0 |
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.
author | philiprhoades |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180222t010711249z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"links":["http://lev.com.au","http://neuralarchivesfoundation.org"],"app":"steemit/0.1"} |
created | 2018-02-22 01:07:12 |
last_update | 2018-02-22 01:07:12 |
depth | 1 |
children | 0 |
last_payout | 2018-03-01 01:07:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 564 |
author_reputation | 163,486,765 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,477,302 |
net_rshares | 0 |
very detial information, do you know who we make NEO token as same as ETH ?
author | pixelsnapshot |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180707t065039955z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-07-07 06:50:42 |
last_update | 2018-07-07 06:50:42 |
depth | 1 |
children | 0 |
last_payout | 2018-07-14 06:50:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 77 |
author_reputation | 281,141,457 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,746,718 |
net_rshares | 0 |
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
author | popsfish |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20181128t210842003z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"links":["https://mywish.io/eth-token"],"app":"steemit/0.1"} |
created | 2018-11-28 21:08:42 |
last_update | 2018-11-28 21:08:42 |
depth | 1 |
children | 0 |
last_payout | 2018-12-05 21:08:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 212 |
author_reputation | 504,143,911 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,061,941 |
net_rshares | 557,486,544 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
popsfish | 0 | 557,486,544 | 100% |
great post thanks for sharing. As a novice in ethereal programming I found this exceedingly helpful
author | pynchon |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180528t235827537z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-05-28 23:58:27 |
last_update | 2018-05-28 23:58:27 |
depth | 1 |
children | 0 |
last_payout | 2018-06-04 23:58:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 99 |
author_reputation | 12,666,137,790 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 58,190,145 |
net_rshares | 0 |
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
author | rhoyos1985 |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180522t135238504z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-05-22 13:52:39 |
last_update | 2018-05-22 13:52:39 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 13:52:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 135 |
author_reputation | 0 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,082,358 |
net_rshares | 0 |
NICE ARTICLE
author | richangh |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171113t082609775z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-13 08:26:36 |
last_update | 2017-11-13 08:26:36 |
depth | 1 |
children | 1 |
last_payout | 2017-11-20 08:26:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | 853,510,232 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,229,800 |
net_rshares | 0 |
Thanks.
author | maxnachamkin |
---|---|
permlink | re-richangh-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171122t022014649z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-22 02:20:15 |
last_update | 2017-11-22 02:20:15 |
depth | 2 |
children | 0 |
last_payout | 2017-11-29 02:20:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,153,439 |
net_rshares | 0 |
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!
author | richardcrill |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171121t173609696z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-21 17:36:09 |
last_update | 2017-11-21 17:36:09 |
depth | 1 |
children | 1 |
last_payout | 2017-11-28 17:36:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 186 |
author_reputation | 55,974,657,421,087 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,112,848 |
net_rshares | 0 |
Hi Richard, nice dude!!! Haha right??
author | maxnachamkin |
---|---|
permlink | re-richardcrill-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171122t021524663z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-22 02:15:24 |
last_update | 2017-11-22 02:15:24 |
depth | 2 |
children | 0 |
last_payout | 2017-11-29 02:15:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.520 HBD |
curator_payout_value | 0.173 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 38 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,153,099 |
net_rshares | 286,088,105,672 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
richardcrill | 0 | 286,088,105,672 | 100% | ||
ananarchist | 0 | 0 | 0% |
Your post is a million dollar post <3 Loved it :) Very informative. Thank you for sharing... Have a great day
author | rishabhbhandari |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180220t204739363z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-02-20 20:47:42 |
last_update | 2018-02-20 20:47:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-27 20:47:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 111 |
author_reputation | 1,135,209,819 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,163,150 |
net_rshares | 0 |
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.
author | rodw |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170714t164616207z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-07-14 16:46:15 |
last_update | 2017-07-14 16:46:15 |
depth | 1 |
children | 2 |
last_payout | 2017-07-21 16:46:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 391 |
author_reputation | 0 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,476,541 |
net_rshares | 0 |
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.
author | maxnachamkin |
---|---|
permlink | re-rodw-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170721t164112382z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-07-21 16:41:12 |
last_update | 2017-07-21 16:41:12 |
depth | 2 |
children | 1 |
last_payout | 2017-07-28 16:41:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 209 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,214,373 |
net_rshares | 0 |
Ok thanks. I'll try it again
author | rodw |
---|---|
permlink | re-maxnachamkin-re-rodw-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170724t065554931z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-07-24 06:55:54 |
last_update | 2017-07-24 06:55:54 |
depth | 3 |
children | 0 |
last_payout | 2017-07-31 06:55:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 0 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,500,917 |
net_rshares | 0 |
Thanks for adding this to the community. This was exactly what I was searching for and to see it here on steemit is wonderful.
author | rootpwn |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180118t160929782z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-18 16:09:30 |
last_update | 2018-01-18 16:09:30 |
depth | 1 |
children | 1 |
last_payout | 2018-01-25 16:09:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 126 |
author_reputation | 7,223,971,172 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,427,039 |
net_rshares | 0 |
Nice, happy to hear it was what you were looking for.
author | maxnachamkin |
---|---|
permlink | re-rootpwn-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180131t054753793z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-31 05:47:54 |
last_update | 2018-01-31 05:47:54 |
depth | 2 |
children | 0 |
last_payout | 2018-02-07 05:47:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 53 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 33,768,751 |
net_rshares | 0 |
Thanks for this amazing post. I want to make a ERC 20 Token on the test net for a school project.
author | salsim5774 |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180227t054348902z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-02-27 05:43:51 |
last_update | 2018-02-27 05:43:51 |
depth | 1 |
children | 0 |
last_payout | 2018-03-06 05:43:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 97 |
author_reputation | 214,063,373 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,785,071 |
net_rshares | 0 |
very useful info! will try to create one
author | samarkand.me2017 |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171101t030338561z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-01 03:03:36 |
last_update | 2017-11-01 03:03:36 |
depth | 1 |
children | 1 |
last_payout | 2017-11-08 03:03:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 40 |
author_reputation | 12,832,687 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,129,032 |
net_rshares | 0 |
Nice ^_^
author | maxnachamkin |
---|---|
permlink | re-samarkandme2017-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171102t192209100z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-02 19:22:12 |
last_update | 2017-11-02 19:22:12 |
depth | 2 |
children | 0 |
last_payout | 2017-11-09 19:22:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,290,077 |
net_rshares | 0 |
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.
author | simplewriter |
---|---|
permlink | q5xdrj |
category | ethereum |
json_metadata | {"links":["https://steemit.com/equity/@simplewriter/v4m6w-what-is-equity-release"],"app":"steemit/0.1"} |
created | 2020-02-19 01:35:45 |
last_update | 2020-02-19 01:35:45 |
depth | 1 |
children | 0 |
last_payout | 2020-02-26 01:35:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 322 |
author_reputation | 2,748,459,092,046 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,593,704 |
net_rshares | 0 |
Nice post bro....this is really helpful
author | solextin |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t214035751z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-07-10 21:40:42 |
last_update | 2017-07-10 21:40:57 |
depth | 1 |
children | 1 |
last_payout | 2017-07-17 21:40:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 39 |
author_reputation | 9,086,821,688 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,035,004 |
net_rshares | 0 |
Happy to hear that @solextin!
author | maxnachamkin |
---|---|
permlink | re-solextin-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t214412650z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"users":["solextin"],"app":"steemit/0.1"} |
created | 2017-07-10 21:44:12 |
last_update | 2017-07-10 21:44:12 |
depth | 2 |
children | 0 |
last_payout | 2017-07-17 21:44:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,035,305 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thetasigma | 0 | 0 | 100% |
Thanks a lot for this article, really awesome. Also I was wondering if we can use MEW instead of metamask.
author | solomon123 |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180212t175643147z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-02-12 17:57:12 |
last_update | 2018-02-12 17:57:12 |
depth | 1 |
children | 0 |
last_payout | 2018-02-19 17:57:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 106 |
author_reputation | 21,664,686,084 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 36,992,989 |
net_rshares | 0 |
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.
author | sreecanvas |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180412t013137280z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"users":["maxnachamkin"],"app":"steemit/0.1"} |
created | 2018-04-12 01:31:21 |
last_update | 2018-04-12 01:31:21 |
depth | 1 |
children | 0 |
last_payout | 2018-04-19 01:31:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 152 |
author_reputation | 589,247,147 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,587,239 |
net_rshares | 0 |
Well explained! Upvoted! I wonder if there are further costs other than the initial $30 for the coin to be used on the network..
author | svedenmacher |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171112t004058347z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-12 00:41:00 |
last_update | 2017-11-12 00:41:00 |
depth | 1 |
children | 1 |
last_payout | 2017-11-19 00:41:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 128 |
author_reputation | 41,460,398,988 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,100,148 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
josephjeevanand | 0 | 0 | 100% |
Hi there, the cost isn't a flat fee that's static. It depends on the gas price at the current moment.
author | maxnachamkin |
---|---|
permlink | re-svedenmacher-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171122t180807314z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-22 18:08:06 |
last_update | 2017-11-22 18:08:06 |
depth | 2 |
children | 0 |
last_payout | 2017-11-29 18:08:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 101 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,223,724 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
josephjeevanand | 0 | 0 | 100% |
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.
author | tavasti |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180105t111719472z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-05 11:17:21 |
last_update | 2018-01-05 11:17:21 |
depth | 1 |
children | 0 |
last_payout | 2018-01-12 11:17:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 273 |
author_reputation | 88,877,746 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,257,522 |
net_rshares | 614,860,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tavasti | 0 | 614,860,000 | 100% |
Thanks so much for this! it was super helpful
author | teddib |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180210t225954367z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-02-10 22:59:54 |
last_update | 2018-02-10 22:59:54 |
depth | 1 |
children | 0 |
last_payout | 2018-02-17 22:59:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 0 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 36,521,390 |
net_rshares | 0 |
How much ether does it normally costs to create a custom token?
author | tellall |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170930t192656540z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-09-30 19:26:57 |
last_update | 2017-09-30 19:26:57 |
depth | 1 |
children | 2 |
last_payout | 2017-10-07 19:26:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 63 |
author_reputation | -2,980,032,232 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,405,430 |
net_rshares | 0 |
Amount of Ether would depend on spot price. It cost me around $30 USD.
author | maxnachamkin |
---|---|
permlink | re-tellall-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170930t232059463z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-09-30 23:20:57 |
last_update | 2017-09-30 23:20:57 |
depth | 2 |
children | 1 |
last_payout | 2017-10-07 23:20:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 70 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,419,819 |
net_rshares | 0 |
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?
author | deborahlindsey |
---|---|
permlink | re-maxnachamkin-re-tellall-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180319t040808525z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-03-19 04:08:09 |
last_update | 2018-03-19 04:08:09 |
depth | 3 |
children | 0 |
last_payout | 2018-03-26 04:08:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 581 |
author_reputation | 1,048,290,004 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,262,681 |
net_rshares | 0 |
Nice tutorial, for those needing the testnet eth you can let me know and I will send you some
author | tessal |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180209t114634852z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-02-09 11:46:36 |
last_update | 2018-02-09 11:46:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-16 11:46:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 93 |
author_reputation | 758,508,687 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 36,150,319 |
net_rshares | 0 |
@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
author | theguldenaries |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171003t071536737z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"users":["maxnachamkim"],"app":"steemit/0.1"} |
created | 2017-10-03 07:15:36 |
last_update | 2017-10-03 07:15:36 |
depth | 1 |
children | 2 |
last_payout | 2017-10-10 07:15:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.070 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 249 |
author_reputation | 38,301,112,189 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,641,068 |
net_rshares | 26,239,442,375 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
josephjeevanand | 0 | 0 | 100% | ||
theguldenaries | 0 | 26,239,442,375 | 100% | ||
tombola | 0 | 0 | 100% | ||
instamage | 0 | 0 | 100% |
can u send me too?thx
author | guisepppe |
---|---|
permlink | re-theguldenaries-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180121t192339461z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-21 19:23:42 |
last_update | 2018-01-21 19:23:42 |
depth | 2 |
children | 0 |
last_payout | 2018-01-28 19:23:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 21 |
author_reputation | 4,740,309,574 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 31,180,456 |
net_rshares | 0 |
And me??? lol
author | tombola |
---|---|
permlink | re-theguldenaries-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180213t134347728z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-02-13 13:43:48 |
last_update | 2018-02-13 13:43:48 |
depth | 2 |
children | 0 |
last_payout | 2018-02-20 13:43:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 0 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,219,196 |
net_rshares | 0 |
That sounds funny.
author | tinoschloegl |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171220t162110279z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-12-20 16:21:09 |
last_update | 2017-12-20 16:21:09 |
depth | 1 |
children | 0 |
last_payout | 2017-12-27 16:21:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.047 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 1,455,841,681,924 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,375,042 |
net_rshares | 9,732,401,267 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tinoschloegl | 0 | 364,328,180 | 100% | ||
tinowhale | 0 | 9,368,073,087 | 100% |
Thanks! Fantastic! A+++++
author | tomm |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t231655334z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-07-10 23:16:54 |
last_update | 2017-07-10 23:16:54 |
depth | 1 |
children | 1 |
last_payout | 2017-07-17 23:16:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 25 |
author_reputation | 316,077,391,779 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,042,190 |
net_rshares | 404,007,932 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tomm | 0 | 404,007,932 | 100% |
My pleasure @tomm. And thank you sir.
author | maxnachamkin |
---|---|
permlink | re-tomm-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t233141832z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"users":["tomm"],"app":"steemit/0.1"} |
created | 2017-07-10 23:31:42 |
last_update | 2017-07-10 23:31:42 |
depth | 2 |
children | 0 |
last_payout | 2017-07-17 23:31:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 37 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,043,294 |
net_rshares | 404,007,932 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tomm | 0 | 404,007,932 | 100% |
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
author | tuakanamorgan |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t231759376z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-07-10 23:18:00 |
last_update | 2017-07-10 23:18:00 |
depth | 1 |
children | 1 |
last_payout | 2017-07-17 23:18:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 172 |
author_reputation | 228,450,255,458 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,042,275 |
net_rshares | 3,523,933,415 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tuakanamorgan | 0 | 3,523,933,415 | 100% |
Nice, best of luck with your project! Cheers ^_^
author | maxnachamkin |
---|---|
permlink | re-tuakanamorgan-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t232807671z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-07-10 23:28:06 |
last_update | 2017-07-10 23:28:06 |
depth | 2 |
children | 0 |
last_payout | 2017-07-17 23:28:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 49 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,043,031 |
net_rshares | 0 |
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. 
author | tvance929 |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180122t022920294z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"image":["https://steemitimages.com/DQmdJErQHeLMug6gSAkWfE2iZRUKPBhsjGBKkXycVM7oC3Z/image.png"],"app":"steemit/0.1"} |
created | 2018-01-22 02:29:15 |
last_update | 2018-01-22 02:30:15 |
depth | 1 |
children | 1 |
last_payout | 2018-01-29 02:29:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 220 |
author_reputation | 32,752,517 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 31,259,473 |
net_rshares | 0 |
Try looking up the Ropsten faucet and getting your ETH from there.
author | maxnachamkin |
---|---|
permlink | re-tvance929-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180131t054911833z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-31 05:49:12 |
last_update | 2018-01-31 05:49:12 |
depth | 2 |
children | 0 |
last_payout | 2018-02-07 05:49:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 33,768,982 |
net_rshares | 0 |
very good tutorial.
author | unicron |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180102t044644793z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-02 04:46:48 |
last_update | 2018-01-02 04:46:48 |
depth | 1 |
children | 0 |
last_payout | 2018-01-09 04:46:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 380,853,700,167 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 26,488,155 |
net_rshares | 166,809,023 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
unicron | 0 | 166,809,023 | 100% |
Very good manual, thx a lot. It helped to understand it better. THX
author | websilver |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180418t105740566z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-04-18 10:57:42 |
last_update | 2018-04-18 10:57:42 |
depth | 1 |
children | 0 |
last_payout | 2018-04-25 10:57:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 70 |
author_reputation | 0 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 50,737,124 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
rhoyos1985 | 0 | 0 | 100% |
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.
author | wekkel |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t215132435z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"links":["https://steemit.com/cryptocurrency/@wekkel/byteball-create-your-own-tokens"],"app":"steemit/0.1"} |
created | 2017-07-10 21:51:33 |
last_update | 2017-07-10 21:51:33 |
depth | 1 |
children | 1 |
last_payout | 2017-07-17 21:51:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 526 |
author_reputation | 793,854,297,842 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,035,916 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dhimansatish | 0 | 0 | 100% |
Totally. Interesting. I haven't heard of Byteball, I'll take a look. Agreed.
author | maxnachamkin |
---|---|
permlink | re-wekkel-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170710t215958623z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-07-10 22:00:00 |
last_update | 2017-07-10 22:00:00 |
depth | 2 |
children | 0 |
last_payout | 2017-07-17 22:00:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 80 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,036,554 |
net_rshares | 0 |
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; } }
author | winglessss |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170726t235801357z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-07-26 23:57:57 |
last_update | 2017-07-26 23:57:57 |
depth | 1 |
children | 6 |
last_payout | 2017-08-02 23:57:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5,007 |
author_reputation | 208,894,886,989 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,851,836 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stevy | 0 | 0 | 100% | ||
wombleoftherock | 0 | 0 | 100% | ||
cyrillebtc | 0 | 0 | 100% | ||
xs1l3n7x | 0 | 0 | 100% | ||
myteamsucks | 0 | 0 | 100% | ||
milindraje | 0 | 0 | 100% | ||
lapapanite | 0 | 0 | 100% | ||
anirudhmurali | 0 | 0 | 100% | ||
theoriginal3ddee | 0 | 0 | 100% | ||
theroxat | 0 | 0 | 100% | ||
evilsign | 0 | 0 | 100% |
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
author | ccmut |
---|---|
permlink | re-winglessss-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170729t070128911z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-07-29 07:01:36 |
last_update | 2017-07-29 07:01:36 |
depth | 2 |
children | 0 |
last_payout | 2017-08-05 07:01:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 433 |
author_reputation | 70,425,903,947 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,092,999 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
winglessss | 0 | 0 | 100% |
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
author | coinjokerscript |
---|---|
permlink | re-winglessss-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180828t074809188z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1","links":["https://www.cryptoexchangescript.com/erc20-token-creation"]} |
created | 2018-08-28 07:48:03 |
last_update | 2018-08-28 07:48:39 |
depth | 2 |
children | 0 |
last_payout | 2018-09-04 07:48:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 230 |
author_reputation | 2,808,208,518 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,578,309 |
net_rshares | 0 |
Thank you so much! One of the best posts on steemit!!! Can I just paste this in windows 7 notepad?
author | theoriginal3ddee |
---|---|
permlink | re-winglessss-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180207t235313784z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-02-07 23:53:24 |
last_update | 2018-02-07 23:53:24 |
depth | 2 |
children | 0 |
last_payout | 2018-02-14 23:53:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 98 |
author_reputation | 580,827,569 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,777,951 |
net_rshares | 615,035,572 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
theoriginal3ddee | 0 | 615,035,572 | 100% | ||
communisttea | 0 | 0 | 100% |
HI - I can see from here that you havent completed the following: 
author | tombola |
---|---|
permlink | re-winglessss-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180213t134750805z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"image":["https://steemitimages.com/DQmUMHFTiqpYeKvTEDk35kq4hiYwr1ESMU4D1ymDaRkyJnD/image.png"],"app":"steemit/0.1"} |
created | 2018-02-13 13:47:51 |
last_update | 2018-02-13 13:47:51 |
depth | 2 |
children | 1 |
last_payout | 2018-02-20 13:47:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 155 |
author_reputation | 0 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,219,966 |
net_rshares | 0 |
Sorry - see you have fixed it!
author | tombola |
---|---|
permlink | re-tombola-re-winglessss-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180213t134822096z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-02-13 13:48:21 |
last_update | 2018-02-13 13:48:21 |
depth | 3 |
children | 0 |
last_payout | 2018-02-20 13:48:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 30 |
author_reputation | 0 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,220,058 |
net_rshares | 0 |
I looked at this again today I think I figured it out
author | winglessss |
---|---|
permlink | re-winglessss-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20170727t231833643z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-07-27 23:18:27 |
last_update | 2017-07-27 23:18:27 |
depth | 2 |
children | 0 |
last_payout | 2017-08-03 23:18:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 54 |
author_reputation | 208,894,886,989 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,961,698 |
net_rshares | 0 |
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?
author | wizard3000 |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180105t115216244z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-05 11:52:15 |
last_update | 2018-01-05 11:52:15 |
depth | 1 |
children | 1 |
last_payout | 2018-01-12 11:52:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 168 |
author_reputation | 0 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,263,788 |
net_rshares | 0 |
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.
author | maxnachamkin |
---|---|
permlink | re-wizard3000-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180131t053952708z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-01-31 05:39:51 |
last_update | 2018-01-31 05:39:51 |
depth | 2 |
children | 0 |
last_payout | 2018-02-07 05:39:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 150 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 33,767,128 |
net_rshares | 0 |
oh man why can I only upvote this once ?? u r a ****ing star dude!!!!!! great post :)
author | wombleoftherock |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171122t153217896z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-22 15:32:18 |
last_update | 2017-11-22 15:32:18 |
depth | 1 |
children | 1 |
last_payout | 2017-11-29 15:32:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 87 |
author_reputation | 28,468,035,193 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,210,226 |
net_rshares | 0 |
Haha thanks dude!!!
author | maxnachamkin |
---|---|
permlink | re-wombleoftherock-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171122t180229664z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-22 18:02:30 |
last_update | 2017-11-22 18:02:30 |
depth | 2 |
children | 0 |
last_payout | 2017-11-29 18:02:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,223,248 |
net_rshares | 0 |
Great read mate. Thanks so much for this!
author | x-online |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171103t032005878z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-03 03:20:06 |
last_update | 2017-11-03 03:20:06 |
depth | 1 |
children | 1 |
last_payout | 2017-11-10 03:20:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 41 |
author_reputation | 18,134,836 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,316,099 |
net_rshares | 0 |
My pleasure!!
author | maxnachamkin |
---|---|
permlink | re-x-online-re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20171122t021609699z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2017-11-22 02:16:09 |
last_update | 2017-11-22 02:16:09 |
depth | 2 |
children | 0 |
last_payout | 2017-11-29 02:16:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 26,072,737,547 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,153,139 |
net_rshares | 0 |
WOOW!!! Thanks
author | yomight |
---|---|
permlink | re-maxnachamkin-how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified-20180223t175434706z |
category | ethereum |
json_metadata | {"tags":["ethereum"],"app":"steemit/0.1"} |
created | 2018-02-23 17:54:42 |
last_update | 2018-02-24 14:04:21 |
depth | 1 |
children | 0 |
last_payout | 2018-03-02 17:54:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | -505,701,079 |
root_title | "How To Create Your Own Ethereum Token In An Hour (ERC20 + Verified)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,922,496 |
net_rshares | 0 |