Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
500,000,000 https://multisender.app
Holders
395
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
10,000 https://multisender.appValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MultisenderDotAppFreeVip
Compiler Version
v0.4.19+commit.c4cbbb05
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-07-03 */ /** * Please join #1 Dapp for sending ERC20 and Ether at https://multisender.app * If you received this token, please write a tweet about https://multisender.app * and join our telegram group to receive free VIP pass * https://multisender.app * https://multisender.app * https://multisender.app * __ __ __ __ __ ________ ______ ______ ________ __ __ _______ ________ _______ ______ _______ _______ * | \ / \| \ | \| \ | \| \ / \ | \| \ | \| \ | \| \ / \ | \ | \ * | $$\ / $$| $$ | $$| $$ \$$$$$$$$ \$$$$$$| $$$$$$\| $$$$$$$$| $$\ | $$| $$$$$$$\| $$$$$$$$| $$$$$$$\ | $$$$$$\| $$$$$$$\| $$$$$$$\ * | $$$\ / $$$| $$ | $$| $$ | $$ | $$ | $$___\$$| $$__ | $$$\| $$| $$ | $$| $$__ | $$__| $$ | $$__| $$| $$__/ $$| $$__/ $$ * | $$$$\ $$$$| $$ | $$| $$ | $$ | $$ \$$ \ | $$ \ | $$$$\ $$| $$ | $$| $$ \ | $$ $$ | $$ $$| $$ $$| $$ $$ * | $$\$$ $$ $$| $$ | $$| $$ | $$ | $$ _\$$$$$$\| $$$$$ | $$\$$ $$| $$ | $$| $$$$$ | $$$$$$$\ | $$$$$$$$| $$$$$$$ | $$$$$$$ * | $$ \$$$| $$| $$__/ $$| $$_____ | $$ _| $$_ | \__| $$| $$_____ | $$ \$$$$| $$__/ $$| $$_____ | $$ | $$ __ | $$ | $$| $$ | $$ * | $$ \$ | $$ \$$ $$| $$ \| $$ | $$ \ \$$ $$| $$ \| $$ \$$$| $$ $$| $$ \| $$ | $$| \| $$ | $$| $$ | $$ * \$$ \$$ \$$$$$$ \$$$$$$$$ \$$ \$$$$$$ \$$$$$$ \$$$$$$$$ \$$ \$$ \$$$$$$$ \$$$$$$$$ \$$ \$$ \$$ \$$ \$$ \$$ \$$ * https://multisender.app * https://multisender.app * https://multisender.app */ pragma solidity ^0.4.19; contract BaseToken { string public name; string public symbol; uint8 public decimals; uint256 public totalSupply; mapping (address => uint256) public balanceOf; mapping (address => mapping (address => uint256)) public allowance; event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); function _transfer(address _from, address _to, uint _value) internal { require(_to != 0x0); require(balanceOf[_from] >= _value); require(balanceOf[_to] + _value > balanceOf[_to]); uint previousBalances = balanceOf[_from] + balanceOf[_to]; balanceOf[_from] -= _value; balanceOf[_to] += _value; assert(balanceOf[_from] + balanceOf[_to] == previousBalances); Transfer(_from, _to, _value); } function transfer(address _to, uint256 _value) public returns (bool success) { _transfer(msg.sender, _to, _value); return true; } function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { require(_value <= allowance[_from][msg.sender]); allowance[_from][msg.sender] -= _value; _transfer(_from, _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; } } contract MultisenderDotAppFreeVip is BaseToken { function MultisenderDotAppFreeVip() public { totalSupply = 500000000000000000000000000; name = 'https://multisender.app'; symbol = 'https://multisender.app'; decimals = 18; balanceOf[msg.sender] = totalSupply / 2; balanceOf[0xA5025FABA6E70B84F74e9b1113e5F7F4E7f4859f] = totalSupply / 2; Transfer(address(0), msg.sender, totalSupply/2); Transfer(address(0), 0xA5025FABA6E70B84F74e9b1113e5F7F4E7f4859f, totalSupply/2); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":[{"name":"success","type":"bool"}],"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":[{"name":"success","type":"bool"}],"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":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","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":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","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"}]
Contract Creation Code
6060604052341561000f57600080fd5b6b019d971e4fe8401e7400000060035560408051908101604052601781527f68747470733a2f2f6d756c746973656e6465722e61707000000000000000000060208201526000908051610066929160200190610186565b5060408051908101604052601781527f68747470733a2f2f6d756c746973656e6465722e617070000000000000000000602082015260019080516100ae929160200190610186565b506002805460ff1916601217815560038054600160a060020a03331660008181526004602052604080822093869004909355925473a5025faba6e70b84f74e9b1113e5f7f4e7f4859f8452939093047f6f49e64e40538da8c29c0827b0ee3e76b5344134571c9f57e3d4ad87b06b675b8190556000805160206107d9833981519152915190815260200160405180910390a360035473a5025faba6e70b84f74e9b1113e5f7f4e7f4859f906000906000805160206107d9833981519152906002900460405190815260200160405180910390a3610221565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106101c757805160ff19168380011785556101f4565b828001600101855582156101f4579182015b828111156101f45782518255916020019190600101906101d9565b50610200929150610204565b5090565b61021e91905b80821115610200576000815560010161020a565b90565b6105a9806102306000396000f3006060604052600436106100985763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461009d578063095ea7b31461012757806318160ddd1461015d57806323b872dd14610182578063313ce567146101aa57806370a08231146101d357806395d89b41146101f2578063a9059cbb14610205578063dd62ed3e14610227575b600080fd5b34156100a857600080fd5b6100b061024c565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156100ec5780820151838201526020016100d4565b50505050905090810190601f1680156101195780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561013257600080fd5b610149600160a060020a03600435166024356102ea565b604051901515815260200160405180910390f35b341561016857600080fd5b610170610356565b60405190815260200160405180910390f35b341561018d57600080fd5b610149600160a060020a036004358116906024351660443561035c565b34156101b557600080fd5b6101bd6103d3565b60405160ff909116815260200160405180910390f35b34156101de57600080fd5b610170600160a060020a03600435166103dc565b34156101fd57600080fd5b6100b06103ee565b341561021057600080fd5b610149600160a060020a0360043516602435610459565b341561023257600080fd5b610170600160a060020a036004358116906024351661046f565b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156102e25780601f106102b7576101008083540402835291602001916102e2565b820191906000526020600020905b8154815290600101906020018083116102c557829003601f168201915b505050505081565b600160a060020a03338116600081815260056020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60035481565b600160a060020a0380841660009081526005602090815260408083203390941683529290529081205482111561039157600080fd5b600160a060020a03808516600090815260056020908152604080832033909416835292905220805483900390556103c984848461048c565b5060019392505050565b60025460ff1681565b60046020526000908152604090205481565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156102e25780601f106102b7576101008083540402835291602001916102e2565b600061046633848461048c565b50600192915050565b600560209081526000928352604080842090915290825290205481565b6000600160a060020a03831615156104a357600080fd5b600160a060020a038416600090815260046020526040902054829010156104c957600080fd5b600160a060020a038316600090815260046020526040902054828101116104ef57600080fd5b50600160a060020a03828116600090815260046020526040808220805493871683529120805484810382558254850192839055905492019101811461053057fe5b82600160a060020a031684600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a3505050505600a165627a7a72305820a84d9322fcaf8b8efa41771a41ece7ced74e035e23508f8a33751474d670b5cc0029ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Deployed Bytecode
0x6060604052600436106100985763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461009d578063095ea7b31461012757806318160ddd1461015d57806323b872dd14610182578063313ce567146101aa57806370a08231146101d357806395d89b41146101f2578063a9059cbb14610205578063dd62ed3e14610227575b600080fd5b34156100a857600080fd5b6100b061024c565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156100ec5780820151838201526020016100d4565b50505050905090810190601f1680156101195780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561013257600080fd5b610149600160a060020a03600435166024356102ea565b604051901515815260200160405180910390f35b341561016857600080fd5b610170610356565b60405190815260200160405180910390f35b341561018d57600080fd5b610149600160a060020a036004358116906024351660443561035c565b34156101b557600080fd5b6101bd6103d3565b60405160ff909116815260200160405180910390f35b34156101de57600080fd5b610170600160a060020a03600435166103dc565b34156101fd57600080fd5b6100b06103ee565b341561021057600080fd5b610149600160a060020a0360043516602435610459565b341561023257600080fd5b610170600160a060020a036004358116906024351661046f565b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156102e25780601f106102b7576101008083540402835291602001916102e2565b820191906000526020600020905b8154815290600101906020018083116102c557829003601f168201915b505050505081565b600160a060020a03338116600081815260056020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60035481565b600160a060020a0380841660009081526005602090815260408083203390941683529290529081205482111561039157600080fd5b600160a060020a03808516600090815260056020908152604080832033909416835292905220805483900390556103c984848461048c565b5060019392505050565b60025460ff1681565b60046020526000908152604090205481565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156102e25780601f106102b7576101008083540402835291602001916102e2565b600061046633848461048c565b50600192915050565b600560209081526000928352604080842090915290825290205481565b6000600160a060020a03831615156104a357600080fd5b600160a060020a038416600090815260046020526040902054829010156104c957600080fd5b600160a060020a038316600090815260046020526040902054828101116104ef57600080fd5b50600160a060020a03828116600090815260046020526040808220805493871683529120805484810382558254850192839055905492019101811461053057fe5b82600160a060020a031684600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a3505050505600a165627a7a72305820a84d9322fcaf8b8efa41771a41ece7ced74e035e23508f8a33751474d670b5cc0029
Deployed Bytecode Sourcemap
3296:552:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1759:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:2;8:100;;;99:1;94:3;90;84:5;71:3;;;64:6;52:2;45:3;8:100;;;12:14;3:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3078:211:0;;;;;;;;;;-1:-1:-1;;;;;3078:211:0;;;;;;;;;;;;;;;;;;;;;;;;1839:26;;;;;;;;;;;;;;;;;;;;;;;;;;;2797:273;;;;;;;;;;-1:-1:-1;;;;;2797:273:0;;;;;;;;;;;;1811:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1874:45;;;;;;;;;;-1:-1:-1;;;;;1874:45:0;;;;;1784:20;;;;;;;;;;;;2637:152;;;;;;;;;;-1:-1:-1;;;;;2637:152:0;;;;;;;1926:66;;;;;;;;;;-1:-1:-1;;;;;1926:66:0;;;;;;;;;;1759:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3078:211::-;-1:-1:-1;;;;;3180:10:0;3170:21;;3145:12;3170:21;;;:9;:21;;;;;;;;:31;;;;;;;;;;;;;:40;;;3145:12;;3170:31;:21;3221:38;;3204:6;;3221:38;;;;;;;;;;;;;-1:-1:-1;3277:4:0;3078:211;;;;:::o;1839:26::-;;;;:::o;2797:273::-;-1:-1:-1;;;;;2922:16:0;;;2879:12;2922:16;;;:9;:16;;;;;;;;2939:10;2922:28;;;;;;;;;;;;2912:38;;;2904:47;;;;;;-1:-1:-1;;;;;2962:16:0;;;;;;;:9;:16;;;;;;;;2979:10;2962:28;;;;;;;;;:38;;;;;;;3011:29;2972:5;3028:3;2994:6;3011:9;:29::i;:::-;-1:-1:-1;3058:4:0;2797:273;;;;;:::o;1811:21::-;;;;;;:::o;1874:45::-;;;;;;;;;;;;;:::o;1784:20::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2637:152;2700:12;2725:34;2735:10;2747:3;2752:6;2725:9;:34::i;:::-;-1:-1:-1;2777:4:0;2637:152;;;;:::o;1926:66::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;2165:464::-;2381:21;-1:-1:-1;;;;;2253:10:0;;;;2245:19;;;;;;-1:-1:-1;;;;;2283:16:0;;;;;;:9;:16;;;;;;:26;;;;2275:35;;;;;;-1:-1:-1;;;;;2355:14:0;;;;;;:9;:14;;;;;;2329:23;;;:40;2321:49;;;;;;-1:-1:-1;;;;;;2424:14:0;;;;;;;:9;:14;;;;;;;;2405:16;;;;;;;;;2449:26;;;;;2486:24;;;;;;;;2528:16;;2405:33;;;2528;:53;;2521:61;;;;2609:3;-1:-1:-1;;;;;2593:28:0;2602:5;-1:-1:-1;;;;;2593:28:0;;2614:6;2593:28;;;;;;;;;;;;;;2165:464;;;;:::o
Swarm Source
bzzr://a84d9322fcaf8b8efa41771a41ece7ced74e035e23508f8a33751474d670b5cc
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.