ERC20
This contract is an ERC20 token.
Name
Trustcoin
Symbol
TRST
Decimals
6
Total Supply
100,000,000 TRST
About
link
description
WeTrust (TRST) is a cryptocurrency token and operates on the Ethereum platform. WeTrust has a current supply of 100,000,000 with 92,147,500 in circulation. The last known price of WeTrust is $0.010561 USD and is up 8.98% over the last 24 hours. It is currently trading on 4 active market(s) with $626.23 traded over the last 24 hours. More information can be found at https://www.wetrust.io/.
Stats
Public Functions
9
Event Types
3
Code Size
7,953 bytes
Events (3) keyboard_arrow_up
Functions
totalSupply keyboard_arrow_up
balanceOf keyboard_arrow_up
transfer keyboard_arrow_up
Source Code
function transfer(address _to, uint256 _value) public returns (bool) {
if (balances[msg.sender] >= _value) {
balances[msg.sender] -= _value;
balances[_to] += _value;
Transfer(msg.sender, _to, _value);
return true;
}
return false;
}
transferFrom keyboard_arrow_up
Source Code
function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value) {
balances[_from] -= _value;
allowed[_from][msg.sender] -= _value;
balances[_to] += _value;
Transfer(_from, _to, _value);
return true;
}
return false;
}
approve keyboard_arrow_up
Source Code
function approve(address _spender, uint256 _value) public returns (bool) {
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}
allowance keyboard_arrow_up
compareAndApprove keyboard_arrow_up
Source Code
function compareAndApprove(address _spender, uint256 _currentValue, uint256 _newValue) public returns(bool) {
if (allowed[msg.sender][_spender] != _currentValue) {
return false;
}
return approve(_spender, _newValue);
}
setMigrationInfo keyboard_arrow_up
Modifiers help
onlyFromMigrationInfoSetter checks for the following:
Source Code
function setMigrationInfo(string _migrationInfo) onlyFromMigrationInfoSetter public {
migrationInfo = _migrationInfo;
MigrationInfoSet(_migrationInfo);
}
changeMigrationInfoSetter keyboard_arrow_up
Modifiers help
onlyFromMigrationInfoSetter checks for the following:
Source Code
function changeMigrationInfoSetter(address _newMigrationInfoSetter) onlyFromMigrationInfoSetter public {
migrationInfoSetter = _newMigrationInfoSetter;
}