Bitcoin Forum
June 26, 2024, 10:30:37 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Ethereum ERC20 code?  (Read 603 times)
kashish948 (OP)
Legendary
*
Offline Offline

Activity: 1596
Merit: 1000



View Profile
July 19, 2017, 09:58:54 AM
 #1

Hi

is there a template for making an erc20 coin?

i see this https://www.ethereum.org/token and the code under "Coin" works but is that erc20 or do i need to add any more parameters?
ranreichman
Full Member
***
Offline Offline

Activity: 140
Merit: 100

Snip CEO


View Profile WWW
July 19, 2017, 10:26:08 AM
 #2

That's the basic code which you need to create a token. You'll probably want to add more smart contract code to allow for vesting and stuff like that.

kashish948 (OP)
Legendary
*
Offline Offline

Activity: 1596
Merit: 1000



View Profile
July 19, 2017, 10:55:40 AM
 #3

That's the basic code which you need to create a token. You'll probably want to add more smart contract code to allow for vesting and stuff like that.

What all do i need to add to make it an ERC20 standard code?

I found this: https://theethereum.wiki/w/index.php/ERC20_Token_Standard
and that basic code at https://www.ethereum.org/token#the-code covers all these functions.....so does that mean it is erc20?
romeo-karrera
Newbie
*
Offline Offline

Activity: 54
Merit: 0


View Profile WWW
July 19, 2017, 11:41:54 AM
 #4

That's the basic code which you need to create a token. You'll probably want to add more smart contract code to allow for vesting and stuff like that.

What all do i need to add to make it an ERC20 standard code?

I found this: https://theethereum.wiki/w/index.php/ERC20_Token_Standard
and that basic code at https://www.ethereum.org/token#the-code covers all these functions.....so does that mean it is erc20?


Code:
 /// @title ERC20 interface see https://github.com/ethereum/EIPs/issues/20
 /// mail@smartcontracteam.com
contract ERC20 {
  uint public totalSupply;
  function balanceOf(address who) constant returns (uint);
  function allowance(address owner, address spender) constant returns (uint);
  function transfer(address to, uint value) returns (bool ok);
  function transferFrom(address from, address to, uint value) returns (bool ok);
  function approve(address spender, uint value) returns (bool ok);
  event Transfer(address indexed from, address indexed to, uint value);
  event Approval(address indexed owner, address indexed spender, uint value);
}
romanlanskoj
Sr. Member
****
Offline Offline

Activity: 340
Merit: 254


CREATE YOUR OWN CRYPTO-CURRENCY WITH ETHEREUM 150$


View Profile WWW
July 19, 2017, 11:42:59 AM
 #5

Hi

is there a template for making an erc20 coin?

i see this https://www.ethereum.org/token and the code under "Coin" works but is that erc20 or do i need to add any more parameters?

sorry for long time delay - I am back!  Wink

Since June I  had the  classical problem with Ethereum Wallet synchronization. Very long time my Ethereum node was offline and only I was possible to do - is writing codes. Was no deployment.

Finally solved this problem  these week using the Parity wallet node

Now  I have the ability deploy smartcontracts into the Ethereum Blockchain!!!
Can do it for you + test the code + verification + github + compilation etc


Please, those who wrote me, call or write me again Viber +375298563585
telegram +375298563585
skype open24365

https://bitcointalk.org/index.php?topic=1956996
I can create the cryptocurrency Ethereum-token for you, with any initial supply,  batch transfers, enable the owner to print new tokens,  custom currency rates (can make the token's value be backed by ether  by creating a fund that automatically sells and buys them at market value) and other features.
Full support and privacy

Only you will be able to issue it and only you will have all the copyrights!

Price is only 0.33 ETH in June 2017 (I ask you also gift me a small % of issued coins).

viber +375298563585
telegram +375298563585
gmail romanlanskoj@gmail.com

The information I need:
1) the address where your new currencies will be created and then the amount;
2) the name for your token and amount of decimals for display purposes;
3) if you need the token's value be backed by smart contract (automatically sells and buys) - write me this prices please;
4) if you want the amount of coins in circulation to change please tell it (the possibility to issue or remove your tokens from circulation);
5) also please send at least 0.05-0.1 ETH to 0x4BCc85fa097ad0f5618cb9bb5bc0AFfbAEC359B5 (or 0.33 ETH if you totally wanna prepay).

Your ETH Token will be seen like here: https://ethplorer.io/address/0x6d57fe045dcced8b289db59f66cd4354b6483d63
kashish948 (OP)
Legendary
*
Offline Offline

Activity: 1596
Merit: 1000



View Profile
July 20, 2017, 08:32:09 PM
 #6

up
kashish948 (OP)
Legendary
*
Offline Offline

Activity: 1596
Merit: 1000



View Profile
July 21, 2017, 12:56:53 PM
 #7

does really nobody know if there is a go to erc20 token code? that one can copy paste to check?
kashish948 (OP)
Legendary
*
Offline Offline

Activity: 1596
Merit: 1000



View Profile
July 23, 2017, 04:35:05 PM
 #8

upppp
newIndia
Legendary
*
Offline Offline

Activity: 2226
Merit: 1049


View Profile
July 23, 2017, 07:48:37 PM
 #9

and that basic code at https://www.ethereum.org/token#the-code covers all these functions.
Can it be deployed using https://www.myetherwallet.com/#contracts ?

Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!