ETH Price: $2,599.10 (-4.37%)
 

Overview

Max Total Supply

180,000,000 TFIO

Holders

88

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Filtered by Token Holder
m83m83.eth
Balance
26 TFIO

Value
$0.00
0xC1EE59265EfA7d13f8592cdDaE514A5BE4cDf4a8
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x26Cb37fD...7EF3E08CE
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
TheFund

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-10-08
*/

pragma solidity ^0.4.11;

contract ERC20Standard {
	uint public totalSupply;
	
	string public name;
	uint8 public decimals;
	string public symbol;
	string public version;
	
	mapping (address => uint256) balances;
	mapping (address => mapping (address => uint)) allowed;

	//Fix for short address attack against ERC20
	modifier onlyPayloadSize(uint size) {
		assert(msg.data.length == size + 4);
		_;
	} 

	function balanceOf(address _owner) constant returns (uint balance) {
		return balances[_owner];
	}

	function transfer(address _recipient, uint _value) onlyPayloadSize(2*32) {
		require(balances[msg.sender] >= _value && _value > 0);
	    balances[msg.sender] -= _value;
	    balances[_recipient] += _value;
	    Transfer(msg.sender, _recipient, _value);        
    }

	function transferFrom(address _from, address _to, uint _value) {
		require(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);
    }

	function approve(address _spender, uint _value) {
		allowed[msg.sender][_spender] = _value;
		Approval(msg.sender, _spender, _value);
	}

	function allowance(address _spender, address _owner) constant returns (uint balance) {
		return allowed[_owner][_spender];
	}

	//Event which is triggered to log all transfers to this contract's event log
	event Transfer(
		address indexed _from,
		address indexed _to,
		uint _value
		);
		
	//Event which is triggered whenever an owner approves a new allowance for a spender.
	event Approval(
		address indexed _owner,
		address indexed _spender,
		uint _value
		);

}

contract TheFund is ERC20Standard {
	function TheFund() {
		totalSupply = 18000000000000000;
		name = "TheFund.io";
		decimals = 8;
		symbol = "TFIO";
		version = "1.0";
		balances[msg.sender] = totalSupply;
	}
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_recipient","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_spender","type":"address"},{"name":"_owner","type":"address"}],"name":"allowance","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]

608060405234801561001057600080fd5b50663ff2e795f5000060005560408051808201909152600a8082527f54686546756e642e696f0000000000000000000000000000000000000000000060209092019182526100609160019161010f565b506002805460ff191660081790556040805180820190915260048082527f5446494f0000000000000000000000000000000000000000000000000000000060209092019182526100b29160039161010f565b506040805180820190915260038082527f312e30000000000000000000000000000000000000000000000000000000000060209092019182526100f79160049161010f565b506000805433825260056020526040909120556101aa565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061015057805160ff191683800117855561017d565b8280016001018555821561017d579182015b8281111561017d578251825591602001919060010190610162565b5061018992915061018d565b5090565b6101a791905b808211156101895760008155600101610193565b90565b610616806101b96000396000f3006080604052600436106100a35763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100a8578063095ea7b31461013257806318160ddd1461015857806323b872dd1461017f578063313ce567146101a957806354fd4d50146101d457806370a08231146101e957806395d89b411461020a578063a9059cbb1461021f578063dd62ed3e14610243575b600080fd5b3480156100b457600080fd5b506100bd61026a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100f75781810151838201526020016100df565b50505050905090810190601f1680156101245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561013e57600080fd5b50610156600160a060020a03600435166024356102f7565b005b34801561016457600080fd5b5061016d610359565b60408051918252519081900360200190f35b34801561018b57600080fd5b50610156600160a060020a036004358116906024351660443561035f565b3480156101b557600080fd5b506101be610444565b6040805160ff9092168252519081900360200190f35b3480156101e057600080fd5b506100bd61044d565b3480156101f557600080fd5b5061016d600160a060020a03600435166104a8565b34801561021657600080fd5b506100bd6104c3565b34801561022b57600080fd5b50610156600160a060020a036004351660243561051e565b34801561024f57600080fd5b5061016d600160a060020a03600435811690602435166105be565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156102ef5780601f106102c4576101008083540402835291602001916102ef565b820191906000526020600020905b8154815290600101906020018083116102d257829003601f168201915b505050505081565b336000818152600660209081526040808320600160a060020a03871680855290835292819020859055805185815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35050565b60005481565b600160a060020a03831660009081526005602052604090205481118015906103aa5750600160a060020a03831660009081526006602090815260408083203384529091529020548111155b80156103b65750600081115b15156103c157600080fd5b600160a060020a03808316600081815260056020908152604080832080548701905593871680835284832080548790039055600682528483203384528252918490208054869003905583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3505050565b60025460ff1681565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156102ef5780601f106102c4576101008083540402835291602001916102ef565b600160a060020a031660009081526005602052604090205490565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156102ef5780601f106102c4576101008083540402835291602001916102ef565b60403660441461052a57fe5b3360009081526005602052604090205482118015906105495750600082115b151561055457600080fd5b33600081815260056020908152604080832080548790039055600160a060020a03871680845292819020805487019055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3505050565b600160a060020a03808216600090815260066020908152604080832093861683529290522054929150505600a165627a7a7230582014a1d626f60057539dd3efa51c01d83ddf125d8cca0ccac1ee86be1d9a4bb74b0029

Deployed Bytecode

0x6080604052600436106100a35763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100a8578063095ea7b31461013257806318160ddd1461015857806323b872dd1461017f578063313ce567146101a957806354fd4d50146101d457806370a08231146101e957806395d89b411461020a578063a9059cbb1461021f578063dd62ed3e14610243575b600080fd5b3480156100b457600080fd5b506100bd61026a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100f75781810151838201526020016100df565b50505050905090810190601f1680156101245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561013e57600080fd5b50610156600160a060020a03600435166024356102f7565b005b34801561016457600080fd5b5061016d610359565b60408051918252519081900360200190f35b34801561018b57600080fd5b50610156600160a060020a036004358116906024351660443561035f565b3480156101b557600080fd5b506101be610444565b6040805160ff9092168252519081900360200190f35b3480156101e057600080fd5b506100bd61044d565b3480156101f557600080fd5b5061016d600160a060020a03600435166104a8565b34801561021657600080fd5b506100bd6104c3565b34801561022b57600080fd5b50610156600160a060020a036004351660243561051e565b34801561024f57600080fd5b5061016d600160a060020a03600435811690602435166105be565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156102ef5780601f106102c4576101008083540402835291602001916102ef565b820191906000526020600020905b8154815290600101906020018083116102d257829003601f168201915b505050505081565b336000818152600660209081526040808320600160a060020a03871680855290835292819020859055805185815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35050565b60005481565b600160a060020a03831660009081526005602052604090205481118015906103aa5750600160a060020a03831660009081526006602090815260408083203384529091529020548111155b80156103b65750600081115b15156103c157600080fd5b600160a060020a03808316600081815260056020908152604080832080548701905593871680835284832080548790039055600682528483203384528252918490208054869003905583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3505050565b60025460ff1681565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156102ef5780601f106102c4576101008083540402835291602001916102ef565b600160a060020a031660009081526005602052604090205490565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156102ef5780601f106102c4576101008083540402835291602001916102ef565b60403660441461052a57fe5b3360009081526005602052604090205482118015906105495750600082115b151561055457600080fd5b33600081815260056020908152604080832080548790039055600160a060020a03871680845292819020805487019055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3505050565b600160a060020a03808216600090815260066020908152604080832093861683529290522054929150505600a165627a7a7230582014a1d626f60057539dd3efa51c01d83ddf125d8cca0ccac1ee86be1d9a4bb74b0029

Swarm Source

bzzr://14a1d626f60057539dd3efa51c01d83ddf125d8cca0ccac1ee86be1d9a4bb74b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.