top of page
Search
Writer's pictureDR.GEEK

ERC 20 Token Smart Contract

Updated: Dec 16, 2019

(11th-December-2019)

To design Smart contract using token, we may consider to use ERC020. Following is the smart contract in Solidity for a sample token (taken from DApp University website). Each vendor will have an ERC 20 token in the private blockchain.


Figure: Vendor Coins in Private Blockchain

pragma solidity ^0.4.2;

contract DappToken {

string public name = "DApp Token";

string public symbol = "DAPP";

string public standard = "DApp Token v1.0";

uint256 public totalSupply;

event Transfer(

address indexed _from,

address indexed _to,

uint256 _value

);

event Approval(

address indexed _owner,

address indexed _spender,

uint256 _value

);

mapping(address => uint256) public balanceOf;

mapping(address => mapping(address => uint256)) public allowance;

function DappToken (uint256 _initialSupply) public {

balanceOf[msg.sender] = _initialSupply;

totalSupply = _initialSupply;

}

function transfer(address _to, uint256 _value) public returns (bool success) {

require(balanceOf[msg.sender] >= _value);

balanceOf[msg.sender] -= _value;

balanceOf[_to] += _value;

Transfer(msg.sender, _to, _value);

return true;

}

function approve(address _spender, uint256 _value) public returns (bool success) {

allowance[msg.sender][_spender] = _value;

Approval(msg.sender, _spender, _value);

return true;

}

function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {

require(_value <= balanceOf[_from]);

require(_value <= allowance[_from][msg.sender]);

balanceOf[_from] -= _value;

balanceOf[_to] += _value;

allowance[_from][msg.sender] -= _value;

Transfer(_from, _to, _value);

return true;

}

}

We plan to move to ERC918 standard later on. ERC918 is the minable token standard.

0 views0 comments

Recent Posts

See All

Comments


bottom of page