Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 3,535 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 9617086 | 1774 days ago | IN | 0 ETH | 0.00008122 | ||||
Transfer | 9570863 | 1781 days ago | IN | 0 ETH | 0.00016683 | ||||
Transfer | 9531485 | 1787 days ago | IN | 0 ETH | 0.00020311 | ||||
Transfer | 9033817 | 1870 days ago | IN | 0 ETH | 0.00003801 | ||||
Transfer | 8888088 | 1894 days ago | IN | 0 ETH | 0.00057111 | ||||
Transfer | 8364562 | 1976 days ago | IN | 0 ETH | 0.00003807 | ||||
Approve | 8112307 | 2015 days ago | IN | 0 ETH | 0.00005751 | ||||
Approve | 8112297 | 2016 days ago | IN | 0 ETH | 0.00005751 | ||||
Approve | 8008198 | 2032 days ago | IN | 0 ETH | 0.00022392 | ||||
Transfer | 7912356 | 2047 days ago | IN | 0.01 ETH | 0.00011185 | ||||
Transfer | 7902810 | 2048 days ago | IN | 0 ETH | 0.00043858 | ||||
Transfer | 7462733 | 2117 days ago | IN | 0 ETH | 0.00043711 | ||||
Transfer | 7418807 | 2124 days ago | IN | 0 ETH | 0.0005301 | ||||
Transfer | 7398974 | 2127 days ago | IN | 0 ETH | 0.00054931 | ||||
Transfer | 7398972 | 2127 days ago | IN | 0 ETH | 0.00010614 | ||||
Transfer | 7326295 | 2138 days ago | IN | 0 ETH | 0.00019005 | ||||
Transfer | 7195806 | 2165 days ago | IN | 0 ETH | 0.00023815 | ||||
Approve | 7119534 | 2181 days ago | IN | 0 ETH | 0.00019076 | ||||
Approve | 7119519 | 2181 days ago | IN | 0 ETH | 0.00022417 | ||||
Transfer | 7119511 | 2181 days ago | IN | 0 ETH | 0.00023138 | ||||
Transfer | 7109371 | 2183 days ago | IN | 0 ETH | 0.00062944 | ||||
Transfer | 7077159 | 2189 days ago | IN | 0 ETH | 0.00007602 | ||||
Transfer | 6997887 | 2203 days ago | IN | 0 ETH | 0.00017389 | ||||
Transfer | 6980969 | 2206 days ago | IN | 0 ETH | 0.00015922 | ||||
Transfer | 6971209 | 2207 days ago | IN | 0 ETH | 0.00047709 |
Latest 14 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
6264159 | 2324 days ago | 500.8479 ETH | ||||
6264150 | 2324 days ago | 9 ETH | ||||
6264132 | 2324 days ago | 1 ETH | ||||
6255726 | 2325 days ago | 0.005 ETH | ||||
6235056 | 2329 days ago | 0.063 ETH | ||||
6234744 | 2329 days ago | 0.19 ETH | ||||
6232815 | 2329 days ago | 10 ETH | ||||
6232573 | 2329 days ago | 0.021 ETH | ||||
6227965 | 2330 days ago | 5 ETH | ||||
6175625 | 2339 days ago | 1 ETH | ||||
6175461 | 2339 days ago | 0.017 ETH | ||||
6150375 | 2343 days ago | 0.017 ETH | ||||
6031026 | 2363 days ago | 0.04 ETH | ||||
6015430 | 2366 days ago | 0.02 ETH |
Loading...
Loading
Contract Name:
VixcoreToken2
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-08-13 */ pragma solidity ^0.4.16; contract Owned { address public owner; function Owned() public { owner = msg.sender; } modifier onlyOwner { require(msg.sender == owner); _; } function transferOwnership(address newOwner) public onlyOwner { owner = newOwner; } } interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external; } contract VixcoreToken2 is Owned { // Public variables of the token string public name; string public symbol; uint8 public decimals = 18; // 18 decimals is the strongly suggested default, avoid changing it uint256 public totalSupply; // This creates an array with all balances mapping (address => uint256) public balanceOf; uint public totalTokenSold; uint public totalWeiReceived; uint public weiBalance; //EVENTS // This generates a public event on the blockchain that will notify clients event Transfer(address indexed from, address indexed to, uint256 value); // This generates a public event on the blockchain that will notify clients event Approval(address indexed _owner, address indexed _spender, uint256 _value); // This notifies clients about the amount burnt event Burn(address indexed from, uint256 value); //ETH Withdrawn event Withdrawal(address receiver, uint amount); //Token is purchased using Selfdrop event Selfdrop(address backer, uint weiAmount, uint token); //Over softcap set for Selfdrop event OverSoftCap(address receiver, uint weiAmount); /** * Constructor function * * Initializes contract with initial supply tokens to the creator of the contract */ function VixcoreToken2( uint256 initialSupply, string tokenName, string tokenSymbol ) public { totalSupply = initialSupply * 10 ** uint256(decimals); // Update total supply with the decimal amount balanceOf[msg.sender] = totalSupply; // Give the creator all initial tokens name = tokenName; // Set the name for display purposes symbol = tokenSymbol; // Set the symbol for display purposes owner = msg.sender; } /** * Internal transfer, only can be called by this contract */ function _transfer(address _from, address _to, uint _value) internal { // Prevent transfer to 0x0 address. Use burn() instead require(_to != 0x0); // Check if the sender has enough require(balanceOf[_from] >= _value); // Check for overflows require(balanceOf[_to] + _value >= balanceOf[_to]); // Save this for an assertion in the future uint previousBalances = balanceOf[_from] + balanceOf[_to]; // Subtract from the sender balanceOf[_from] -= _value; // Add the same to the recipient balanceOf[_to] += _value; emit Transfer(_from, _to, _value); // Asserts are used to use static analysis to find bugs in your code. They should never fail assert(balanceOf[_from] + balanceOf[_to] == previousBalances); } /** * Transfer tokens * * Send `_value` tokens to `_to` from your account * * @param _to The address of the recipient * @param _value the amount to send */ function transfer(address _to, uint256 _value) public returns (bool success) { _transfer(msg.sender, _to, _value); return true; } /** * Default function when someone's transferring to this contract * The next 3 functions are the same */ function () payable public { _pay(); } function pay() payable public { _pay(); } function _pay() internal { uint weiValue = msg.value; uint phase1 = 2500000000000000000000000000; uint phase2 = phase1 + 1500000000000000000000000000; uint phase3 = phase2 + 1000000000000000000000000000; //phase 3 should be less than supply if(totalTokenSold <= phase1){ _exchange(weiValue, 5000000); }else if(totalTokenSold <= phase2){ _exchange(weiValue, 4000000); }else if(totalTokenSold <= phase3){ _exchange(weiValue, 3500000); }else{ emit OverSoftCap(msg.sender, weiValue); } } function _exchange(uint weiValue, uint rate) internal { uint tokenEquiv = tokenEquivalent(weiValue, rate); _transfer(owner, msg.sender, tokenEquiv); totalWeiReceived += weiValue; weiBalance += weiValue; totalTokenSold += tokenEquiv; emit Selfdrop(msg.sender, weiValue, tokenEquiv); } function tokenEquivalent(uint weiValue, uint rate) public returns (uint) { return weiValue * rate; } /** * Withdraw the funds * * Send the benefeciary some Wei * This function will emit the Withdrawal event if send it successful * Only owner can call this function */ function withdraw(uint _amount) onlyOwner public { require(_amount > 0); require(_amount <= weiBalance); // Amount withdraw should be less or equal to balance if (owner.send(_amount)) { weiBalance -= _amount; emit Withdrawal(owner, _amount); }else{ throw; } } }
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":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"weiBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"weiValue","type":"uint256"},{"name":"rate","type":"uint256"}],"name":"tokenEquivalent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalWeiReceived","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"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":"totalTokenSold","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"receiver","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Withdrawal","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"backer","type":"address"},{"indexed":false,"name":"weiAmount","type":"uint256"},{"indexed":false,"name":"token","type":"uint256"}],"name":"Selfdrop","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"receiver","type":"address"},{"indexed":false,"name":"weiAmount","type":"uint256"}],"name":"OverSoftCap","type":"event"}]
Contract Creation Code
60806040526003805460ff1916601217905534801561001d57600080fd5b5060405161090838038061090883398101604090815281516020808401518385015160008054600160a060020a03191633908117825560035460ff16600a0a8602600481905590825260058552959020949094558401805192949093019161008b91600191908501906100bb565b50805161009f9060029060208401906100bb565b505060008054600160a060020a03191633179055506101569050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106100fc57805160ff1916838001178555610129565b82800160010185558215610129579182015b8281111561012957825182559160200191906001019061010e565b50610135929150610139565b5090565b61015391905b80821115610135576000815560010161013f565b90565b6107a3806101656000396000f3006080604052600436106100cf5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100d957806318160ddd146101635780631b9265b81461018a5780632969d202146101925780632e1a7d4d146101a7578063313ce567146101bf5780635c390f82146101ea57806370a082311461020557806388d12a4d146102265780638da5cb5b1461023b57806395d89b411461026c578063a9059cbb14610281578063b5f7f636146102b9578063f2fde38b146102ce575b6100d76102ef565b005b3480156100e557600080fd5b506100ee6103a4565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610128578181015183820152602001610110565b50505050905090810190601f1680156101555780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561016f57600080fd5b50610178610431565b60408051918252519081900360200190f35b6100d7610437565b34801561019e57600080fd5b50610178610441565b3480156101b357600080fd5b506100d7600435610447565b3480156101cb57600080fd5b506101d4610504565b6040805160ff9092168252519081900360200190f35b3480156101f657600080fd5b5061017860043560243561050d565b34801561021157600080fd5b50610178600160a060020a0360043516610511565b34801561023257600080fd5b50610178610523565b34801561024757600080fd5b50610250610529565b60408051600160a060020a039092168252519081900360200190f35b34801561027857600080fd5b506100ee610538565b34801561028d57600080fd5b506102a5600160a060020a0360043516602435610590565b604080519115158252519081900360200190f35b3480156102c557600080fd5b506101786105a6565b3480156102da57600080fd5b506100d7600160a060020a03600435166105ac565b60065434906b0813f3978f89409844000000906b0cecb8f27f4200f3a0000000906b1027e72f1f128130880000009083106103365761033184624c4b406105f2565b61039e565b600654821061034c5761033184623d09006105f2565b60065481106103625761033184623567e06105f2565b604080513381526020810186905281517fc84ed8366166eed21655a3e72ffe2fe188b3704052bf2ae0a62675162a7c3d42929181900390910190a15b50505050565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104295780601f106103fe57610100808354040283529160200191610429565b820191906000526020600020905b81548152906001019060200180831161040c57829003601f168201915b505050505081565b60045481565b61043f6102ef565b565b60085481565b600054600160a060020a0316331461045e57600080fd5b6000811161046b57600080fd5b60085481111561047a57600080fd5b60008054604051600160a060020a039091169183156108fc02918491818181858888f19350505050156104fc5760088054829003905560005460408051600160a060020a0390921682526020820183905280517f7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b659281900390910190a1610501565b600080fd5b50565b60035460ff1681565b0290565b60056020526000908152604090205481565b60075481565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156104295780601f106103fe57610100808354040283529160200191610429565b600061059d338484610675565b50600192915050565b60065481565b600054600160a060020a031633146105c357600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60006105fe838361050d565b60005490915061061890600160a060020a03163383610675565b600780548401905560088054840190556006805482019055604080513381526020810185905280820183905290517f42a8aad03bce5faa99c641182dab32a27652f001fb7ae1565fc86915457b743b9181900360600190a1505050565b6000600160a060020a038316151561068c57600080fd5b600160a060020a0384166000908152600560205260409020548211156106b157600080fd5b600160a060020a03831660009081526005602052604090205482810110156106d857600080fd5b50600160a060020a038083166000818152600560209081526040808320805495891680855282852080548981039091559486905281548801909155815187815291519390950194927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3600160a060020a0380841660009081526005602052604080822054928716825290205401811461039e57fe00a165627a7a723058204cbf17b7a51bca9b7d353c830c9880c1bbb5c95d918ea1418b753a5ac3fe41c4002900000000000000000000000000000000000000000000000000000002540be400000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000007566978636f72650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045658435200000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106100cf5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100d957806318160ddd146101635780631b9265b81461018a5780632969d202146101925780632e1a7d4d146101a7578063313ce567146101bf5780635c390f82146101ea57806370a082311461020557806388d12a4d146102265780638da5cb5b1461023b57806395d89b411461026c578063a9059cbb14610281578063b5f7f636146102b9578063f2fde38b146102ce575b6100d76102ef565b005b3480156100e557600080fd5b506100ee6103a4565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610128578181015183820152602001610110565b50505050905090810190601f1680156101555780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561016f57600080fd5b50610178610431565b60408051918252519081900360200190f35b6100d7610437565b34801561019e57600080fd5b50610178610441565b3480156101b357600080fd5b506100d7600435610447565b3480156101cb57600080fd5b506101d4610504565b6040805160ff9092168252519081900360200190f35b3480156101f657600080fd5b5061017860043560243561050d565b34801561021157600080fd5b50610178600160a060020a0360043516610511565b34801561023257600080fd5b50610178610523565b34801561024757600080fd5b50610250610529565b60408051600160a060020a039092168252519081900360200190f35b34801561027857600080fd5b506100ee610538565b34801561028d57600080fd5b506102a5600160a060020a0360043516602435610590565b604080519115158252519081900360200190f35b3480156102c557600080fd5b506101786105a6565b3480156102da57600080fd5b506100d7600160a060020a03600435166105ac565b60065434906b0813f3978f89409844000000906b0cecb8f27f4200f3a0000000906b1027e72f1f128130880000009083106103365761033184624c4b406105f2565b61039e565b600654821061034c5761033184623d09006105f2565b60065481106103625761033184623567e06105f2565b604080513381526020810186905281517fc84ed8366166eed21655a3e72ffe2fe188b3704052bf2ae0a62675162a7c3d42929181900390910190a15b50505050565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104295780601f106103fe57610100808354040283529160200191610429565b820191906000526020600020905b81548152906001019060200180831161040c57829003601f168201915b505050505081565b60045481565b61043f6102ef565b565b60085481565b600054600160a060020a0316331461045e57600080fd5b6000811161046b57600080fd5b60085481111561047a57600080fd5b60008054604051600160a060020a039091169183156108fc02918491818181858888f19350505050156104fc5760088054829003905560005460408051600160a060020a0390921682526020820183905280517f7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b659281900390910190a1610501565b600080fd5b50565b60035460ff1681565b0290565b60056020526000908152604090205481565b60075481565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156104295780601f106103fe57610100808354040283529160200191610429565b600061059d338484610675565b50600192915050565b60065481565b600054600160a060020a031633146105c357600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60006105fe838361050d565b60005490915061061890600160a060020a03163383610675565b600780548401905560088054840190556006805482019055604080513381526020810185905280820183905290517f42a8aad03bce5faa99c641182dab32a27652f001fb7ae1565fc86915457b743b9181900360600190a1505050565b6000600160a060020a038316151561068c57600080fd5b600160a060020a0384166000908152600560205260409020548211156106b157600080fd5b600160a060020a03831660009081526005602052604090205482810110156106d857600080fd5b50600160a060020a038083166000818152600560209081526040808320805495891680855282852080548981039091559486905281548801909155815187815291519390950194927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3600160a060020a0380841660009081526005602052604080822054928716825290205401811461039e57fe00a165627a7a723058204cbf17b7a51bca9b7d353c830c9880c1bbb5c95d918ea1418b753a5ac3fe41c40029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000002540be400000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000007566978636f72650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045658435200000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 10000000000
Arg [1] : tokenName (string): Vixcore
Arg [2] : tokenSymbol (string): VXCR
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000002540be400
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 566978636f726500000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5658435200000000000000000000000000000000000000000000000000000000
Swarm Source
bzzr://4cbf17b7a51bca9b7d353c830c9880c1bbb5c95d918ea1418b753a5ac3fe41c4
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,000.88 | 0.00008571 | $0.257192 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.