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 336 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 7495342 | 2137 days ago | IN | 0 ETH | 0.0004837 | ||||
Transfer | 7236358 | 2180 days ago | IN | 0 ETH | 0.00036708 | ||||
Transfer | 7155686 | 2198 days ago | IN | 0 ETH | 0.00026062 | ||||
Transfer | 6794614 | 2262 days ago | IN | 0 ETH | 0.0021174 | ||||
Transfer | 6715622 | 2274 days ago | IN | 0 ETH | 0.0015024 | ||||
Transfer | 6714676 | 2275 days ago | IN | 0 ETH | 0.0021174 | ||||
Transfer | 6332949 | 2337 days ago | IN | 0 ETH | 0.00151027 | ||||
Transfer | 6156533 | 2367 days ago | IN | 0 ETH | 0.00021708 | ||||
Transfer | 6156531 | 2367 days ago | IN | 0 ETH | 0.00021708 | ||||
Transfer | 6153373 | 2367 days ago | IN | 0 ETH | 0.0005475 | ||||
Transfer | 6153287 | 2367 days ago | IN | 0 ETH | 0.0003321 | ||||
Transfer | 6142156 | 2369 days ago | IN | 0 ETH | 0.000369 | ||||
Transfer | 6127641 | 2372 days ago | IN | 0 ETH | 0.00056878 | ||||
Transfer | 6104783 | 2376 days ago | IN | 0 ETH | 0.00041468 | ||||
Transfer | 6099044 | 2376 days ago | IN | 0 ETH | 0.00026126 | ||||
Transfer | 6098957 | 2377 days ago | IN | 0 ETH | 0.00036195 | ||||
Transfer | 6063209 | 2383 days ago | IN | 0 ETH | 0.00022099 | ||||
Transfer | 6063168 | 2383 days ago | IN | 0 ETH | 0.00032535 | ||||
Transfer | 6011407 | 2391 days ago | IN | 0 ETH | 0.00041417 | ||||
Transfer | 5991025 | 2395 days ago | IN | 0 ETH | 0.00065316 | ||||
Transfer | 5990956 | 2395 days ago | IN | 0 ETH | 0.00057466 | ||||
Transfer | 5949863 | 2402 days ago | IN | 0 ETH | 0.0021174 | ||||
Transfer | 5859585 | 2417 days ago | IN | 0 ETH | 0.00150502 | ||||
Transfer | 5841025 | 2420 days ago | IN | 0 ETH | 0.00065316 | ||||
Transfer | 5840901 | 2420 days ago | IN | 0 ETH | 0.00031063 |
Loading...
Loading
Contract Name:
Protean
Compiler Version
v0.4.14+commit.c2215d46
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2017-08-08 */ pragma solidity ^0.4.14; /* © 2017 There is no law stronger then the code */ library SafeMath { function mul(uint a, uint b) internal returns (uint) { uint c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint a, uint b) internal returns (uint) { assert(b > 0); uint c = a / b; assert(a == b * c + a % b); return c; } function sub(uint a, uint b) internal returns (uint) { assert(b <= a); return a - b; } function add(uint a, uint b) internal returns (uint) { uint c = a + b; assert(c >= a); return c; } function max64(uint64 a, uint64 b) internal constant returns (uint64) { return a >= b ? a : b; } function min64(uint64 a, uint64 b) internal constant returns (uint64) { return a < b ? a : b; } function max256(uint256 a, uint256 b) internal constant returns (uint256) { return a >= b ? a : b; } function min256(uint256 a, uint256 b) internal constant returns (uint256) { return a < b ? a : b; } function assert(bool assertion) internal { if (!assertion) { throw; } } } contract Ownable { address public owner; function Ownable() { owner = msg.sender; } modifier onlyOwner { if (msg.sender != owner) throw; _; } function transferOwnership(address newOwner) onlyOwner { if (newOwner != address(0)) { owner = newOwner; } } } contract ERC20Basic { uint public totalSupply; function balanceOf(address who) constant returns (uint); function transfer(address to, uint value); event Transfer(address indexed from, address indexed to, uint value); } contract ERC20 is ERC20Basic { function allowance(address owner, address spender) constant returns (uint); function transferFrom(address from, address to, uint value); function approve(address spender, uint value); event Approval(address indexed owner, address indexed spender, uint value); } contract newToken is ERC20Basic { using SafeMath for uint; mapping(address => uint) balances; modifier onlyPayloadSize(uint size) { if(msg.data.length < size + 4) { throw; } _; } function transfer(address _to, uint _value) onlyPayloadSize(2 * 32) { balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); } function balanceOf(address _owner) constant returns (uint balance) { return balances[_owner]; } } contract StandardToken is newToken, ERC20 { mapping (address => mapping (address => uint)) allowed; function transferFrom(address _from, address _to, uint _value) onlyPayloadSize(3 * 32) { var _allowance = allowed[_from][msg.sender]; // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // if (_value > _allowance) throw; balances[_to] = balances[_to].add(_value); balances[_from] = balances[_from].sub(_value); allowed[_from][msg.sender] = _allowance.sub(_value); Transfer(_from, _to, _value); } function approve(address _spender, uint _value) { // To change the approve amount you first have to reduce the addresses` // allowance to zero by calling approve(_spender, 0) if it is not // already 0 to mitigate the race condition described here: // https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 if ((_value != 0) && (allowed[msg.sender][_spender] != 0)) throw; allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); } function allowance(address _owner, address _spender) constant returns (uint remaining) { return allowed[_owner][_spender]; } } contract Protean is StandardToken, Ownable { string public constant name = "Protean"; string public constant symbol = "PRN"; uint public constant decimals = 18; uint256 public initialSupply; // Constructor function Protean () { totalSupply = 5000000000 * 10 ** decimals; balances[msg.sender] = totalSupply; initialSupply = totalSupply; Transfer(0, this, totalSupply); Transfer(this, msg.sender, totalSupply); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"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":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]
Contract Creation Code
6060604052341561000f57600080fd5b5b5b60038054600160a060020a03191633600160a060020a03161790555b6b1027e72f1f128130880000006000818155600160a060020a033381168252600160205260408083208490556004849055309091169260008051602061086a833981519152915190815260200160405180910390a333600160a060020a031630600160a060020a031660008051602061086a83398151915260005460405190815260200160405180910390a35b5b6107a0806100ca6000396000f300606060405236156100b75763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100bc578063095ea7b31461014757806318160ddd1461016b57806323b872dd14610190578063313ce567146101ba578063378dc3dc146101df57806370a08231146102045780638da5cb5b1461023557806395d89b4114610264578063a9059cbb146102ef578063dd62ed3e14610313578063f2fde38b1461034a575b600080fd5b34156100c757600080fd5b6100cf61036b565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561010c5780820151818401525b6020016100f3565b50505050905090810190601f1680156101395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561015257600080fd5b610169600160a060020a03600435166024356103a2565b005b341561017657600080fd5b61017e610444565b60405190815260200160405180910390f35b341561019b57600080fd5b610169600160a060020a036004358116906024351660443561044a565b005b34156101c557600080fd5b61017e61056d565b60405190815260200160405180910390f35b34156101ea57600080fd5b61017e610572565b60405190815260200160405180910390f35b341561020f57600080fd5b61017e600160a060020a0360043516610578565b60405190815260200160405180910390f35b341561024057600080fd5b610248610597565b604051600160a060020a03909116815260200160405180910390f35b341561026f57600080fd5b6100cf6105a6565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561010c5780820151818401525b6020016100f3565b50505050905090810190601f1680156101395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102fa57600080fd5b610169600160a060020a03600435166024356105dd565b005b341561031e57600080fd5b61017e600160a060020a03600435811690602435166106aa565b60405190815260200160405180910390f35b341561035557600080fd5b610169600160a060020a03600435166106d7565b005b60408051908101604052600781527f50726f7465616e00000000000000000000000000000000000000000000000000602082015281565b80158015906103d55750600160a060020a0333811660009081526002602090815260408083209386168352929052205415155b156103df57600080fd5b600160a060020a03338116600081815260026020908152604080832094871680845294909152908190208490557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259084905190815260200160405180910390a35b5050565b60005481565b60006060606436101561045c57600080fd5b600160a060020a0380861660009081526002602090815260408083203385168452825280832054938816835260019091529020549092506104a3908463ffffffff61072f16565b600160a060020a0380861660009081526001602052604080822093909355908716815220546104d8908463ffffffff61074b16565b600160a060020a038616600090815260016020526040902055610501828463ffffffff61074b16565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a35b5b5050505050565b601281565b60045481565b600160a060020a0381166000908152600160205260409020545b919050565b600354600160a060020a031681565b60408051908101604052600381527f50524e0000000000000000000000000000000000000000000000000000000000602082015281565b604060443610156105ed57600080fd5b600160a060020a033316600090815260016020526040902054610616908363ffffffff61074b16565b600160a060020a03338116600090815260016020526040808220939093559085168152205461064b908363ffffffff61072f16565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35b5b505050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a039081169116146106f257600080fd5b600160a060020a0381161561072a576003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b600082820161074084821015610764565b8091505b5092915050565b600061075983831115610764565b508082035b92915050565b80151561072a57600080fd5b5b505600a165627a7a72305820cdc6ada84772bf5f4b76d282600413b09d2cea122c1869eb53f3220dafc0a7ff0029ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Deployed Bytecode
0x606060405236156100b75763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100bc578063095ea7b31461014757806318160ddd1461016b57806323b872dd14610190578063313ce567146101ba578063378dc3dc146101df57806370a08231146102045780638da5cb5b1461023557806395d89b4114610264578063a9059cbb146102ef578063dd62ed3e14610313578063f2fde38b1461034a575b600080fd5b34156100c757600080fd5b6100cf61036b565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561010c5780820151818401525b6020016100f3565b50505050905090810190601f1680156101395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561015257600080fd5b610169600160a060020a03600435166024356103a2565b005b341561017657600080fd5b61017e610444565b60405190815260200160405180910390f35b341561019b57600080fd5b610169600160a060020a036004358116906024351660443561044a565b005b34156101c557600080fd5b61017e61056d565b60405190815260200160405180910390f35b34156101ea57600080fd5b61017e610572565b60405190815260200160405180910390f35b341561020f57600080fd5b61017e600160a060020a0360043516610578565b60405190815260200160405180910390f35b341561024057600080fd5b610248610597565b604051600160a060020a03909116815260200160405180910390f35b341561026f57600080fd5b6100cf6105a6565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561010c5780820151818401525b6020016100f3565b50505050905090810190601f1680156101395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102fa57600080fd5b610169600160a060020a03600435166024356105dd565b005b341561031e57600080fd5b61017e600160a060020a03600435811690602435166106aa565b60405190815260200160405180910390f35b341561035557600080fd5b610169600160a060020a03600435166106d7565b005b60408051908101604052600781527f50726f7465616e00000000000000000000000000000000000000000000000000602082015281565b80158015906103d55750600160a060020a0333811660009081526002602090815260408083209386168352929052205415155b156103df57600080fd5b600160a060020a03338116600081815260026020908152604080832094871680845294909152908190208490557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259084905190815260200160405180910390a35b5050565b60005481565b60006060606436101561045c57600080fd5b600160a060020a0380861660009081526002602090815260408083203385168452825280832054938816835260019091529020549092506104a3908463ffffffff61072f16565b600160a060020a0380861660009081526001602052604080822093909355908716815220546104d8908463ffffffff61074b16565b600160a060020a038616600090815260016020526040902055610501828463ffffffff61074b16565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a35b5b5050505050565b601281565b60045481565b600160a060020a0381166000908152600160205260409020545b919050565b600354600160a060020a031681565b60408051908101604052600381527f50524e0000000000000000000000000000000000000000000000000000000000602082015281565b604060443610156105ed57600080fd5b600160a060020a033316600090815260016020526040902054610616908363ffffffff61074b16565b600160a060020a03338116600090815260016020526040808220939093559085168152205461064b908363ffffffff61072f16565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35b5b505050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a039081169116146106f257600080fd5b600160a060020a0381161561072a576003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b600082820161074084821015610764565b8091505b5092915050565b600061075983831115610764565b508082035b92915050565b80151561072a57600080fd5b5b505600a165627a7a72305820cdc6ada84772bf5f4b76d282600413b09d2cea122c1869eb53f3220dafc0a7ff0029
Swarm Source
bzzr://cdc6ada84772bf5f4b76d282600413b09d2cea122c1869eb53f3220dafc0a7ff
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.