What is an Ethereum token?
blockgeeks.com
What is an Ethereum token?
1–7 of 7 posts
Re: What is an Ethereum token?
#2Re: What is an Ethereum token?
#3Re: What is an Ethereum token?
#4 function totalSupply() constant returns (uint totalSupply);
function balanceOf(address _owner) constant returns (uint balance);
function transfer(address _to, uint _value) returns (bool success);
function transferFrom(address _from, address _to, uint _value) returns (bool success);
function approve(address _spender, uint _value) returns (bool success);
function allowance(address _owner, address _spender) constant returns (uint remaining);
event Transfer(address indexed _from, address indexed _to, uint _value);
event Approval(address indexed _owner, address indexed _spender, uint _value);
How the tokens are distributed and what owners of them are allowed to do with them is where things get interesting, of course.Re: What is an Ethereum token?
#5A good definition could be: "An Ethereum token is something that goes up in value, as soon as it hits the exchanges".
Re: What is an Ethereum token?
#6The short version is just that it's an ethereum contract/program that implements the ERC20 interface: function totalSupply() constant returns (uint totalSupply); function balanceOf(address _owner) constant returns (uint balance); function transfer(address _to, uint _value) returns (bool success); function transferFrom(address _from, address _to, uint _value) returns (bool success); function approve(address _spender,…
Good night overall. I'm still skeptical of ETH, however.
Re: What is an Ethereum token?
#7They're not transferrable in the way ETH is between accounts; the original Token smart contract account just moves internal balances between accounts.
Which is really what ETH does at a higher level anyway, lol.