ERC-20
Overview
Max Total Supply
0 ERC-20 TOKEN*
Holders
8,022
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
232 ERC-20 TOKEN*Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
JUST
Compiler Version
v0.4.20+commit.3155dd80
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-04-12 */ pragma solidity ^0.4.20; // blaze it fgt ^ /* * Team JUST presents... ,----, ,----, ,---._ ,/ .`| ,/ .`| .-- -.' \ .--.--. ,` .' : ,` .' : ,-. | | : ,--, / / '. ; ; / ; ; / ,--/ /| : ; | ,'_ /|| : /`. /.'___,/ ,' .'___,/ ,' ,---. ,--. :/ | ,---, : | .--. | | :; | |--` | : | | : | ' ,'\ : : ' / ,-+-. / | | : :,'_ /| : . || : ;_ ; |.'; ; ; |.'; ; / / || ' / ,---. ,--.'|' | : | ' | | . . \ \ `.`----' | | `----' | |. ; ,. :' | : / \| | ,"' | | ; || | ' | | | `----. \ ' : ; ' : ;' | |: :| | \ / / | | / | | ___ l : | | : ' ; __ \ \ | | | ' | | '' | .; :' : |. \ . ' / | | | | | / /\ J :| ; ' | | ' / /`--' / ' : | ' : || : || | ' \ \' ; /| | | |/ / ../ `..- ,: | : ; ; |'--'. / ; |.' ; |.' \ \ / ' : |--' ' | / | | |--' \ \ ; ' : `--' \ `--'---' '---' '---' `----' ; |,' | : | |/ \ \ ,' : , .-./ '--' \ \ /'---' "---....--' `--`----' `----' * -> What? * [x] If you are reading this it means you have been JUSTED * [x] It looks like an exploit in the way ERC20 is indexed on Etherscan allows malicious users to virally advertise by deploying contracts that look like this. * [x] You pretty much own this token forever, with nothing you can do about it until we pull the UNJUST() function. * [x] Just try to transfer it away, we dare you! * [x] It's kinda like shitposting on the blockchain * [x] Pls fix Papa Vitalik * [x] Also we love your shirts. * * * Also we're required to virally advertise. * Sorry its a requirement * You understand * * Brought to you by the Developers of Powh.io * The first three dimensional cryptocurrency. * https://discord.gg/KJ9wJG8 */ contract ERC20Interface { /* This is a slight change to the ERC20 base standard. function totalSupply() constant returns (uint256 supply); is replaced with: uint256 public totalSupply; This automatically creates a getter function for the totalSupply. This is moved to the base contract since public getter functions are not currently recognised as an implementation of the matching abstract function by the compiler. */ /// total amount of tokens uint256 public totalSupply; /// @param _owner The address from which the balance will be retrieved /// @return The balance function balanceOf(address _owner) public view returns (uint256 balance); /// @notice send `_value` token to `_to` from `msg.sender` /// @param _to The address of the recipient /// @param _value The amount of token to be transferred /// @return Whether the transfer was successful or not function transfer(address _to, uint256 _value) public returns (bool success); /// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from` /// @param _from The address of the sender /// @param _to The address of the recipient /// @param _value The amount of token to be transferred /// @return Whether the transfer was successful or not function transferFrom(address _from, address _to, uint256 _value) public returns (bool success); /// @notice `msg.sender` approves `_spender` to spend `_value` tokens /// @param _spender The address of the account able to transfer the tokens /// @param _value The amount of tokens to be approved for transfer /// @return Whether the approval was successful or not function approve(address _spender, uint256 _value) public returns (bool success); /// @param _owner The address of the account owning tokens /// @param _spender The address of the account able to transfer the tokens /// @return Amount of remaining tokens allowed to spent function allowance(address _owner, address _spender) public view returns (uint256 remaining); // solhint-disable-next-line no-simple-event-func-name event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); } contract JUST is ERC20Interface { // Standard ERC20 string public name = "JUST www.powh.io"; uint8 public decimals = 18; string public symbol = "JUST powh.io"; // Default balance uint256 public stdBalance; mapping (address => uint256) public bonus; // Owner address public owner; bool public JUSTed; // PSA event Message(string message); function JUST() public { owner = msg.sender; totalSupply = 1337 * 1e18; stdBalance = 232 * 1e18; JUSTed = true; } /** * Due to the presence of this function, it is considered a valid ERC20 token. * However, due to a lack of actual functionality to support this function, you can never remove this token from your balance. * RIP. */ function transfer(address _to, uint256 _value) public returns (bool success) { bonus[msg.sender] = bonus[msg.sender] + 1e18; Message("+1 token for you."); Transfer(msg.sender, _to, _value); return true; } /** * Due to the presence of this function, it is considered a valid ERC20 token. * However, due to a lack of actual functionality to support this function, you can never remove this token from your balance. * RIP. */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { bonus[msg.sender] = bonus[msg.sender] + 1e18; Message("+1 token for you."); Transfer(msg.sender, _to, _value); return true; } /** * Once we have sufficiently demonstrated how this 'exploit' is detrimental to Etherescan, we can disable the token and remove it from everyone's balance. * Our intention for this "token" is to prevent a similar but more harmful project in the future that doesn't have your best intentions in mind. */ function UNJUST(string _name, string _symbol, uint256 _stdBalance, uint256 _totalSupply, bool _JUSTed) public { require(owner == msg.sender); name = _name; symbol = _symbol; stdBalance = _stdBalance; totalSupply = _totalSupply; JUSTed = _JUSTed; } /** * Everyone has tokens! * ... until we decide you don't. */ function balanceOf(address _owner) public view returns (uint256 balance) { if(JUSTed){ if(bonus[msg.sender] > 0){ return stdBalance + bonus[msg.sender]; } else { return stdBalance; } } else { return 0; } } function approve(address _spender, uint256 _value) public returns (bool success) { return true; } function allowance(address _owner, address _spender) public view returns (uint256 remaining) { return 0; } // in case someone accidentally sends ETH to this contract. function() public payable { owner.transfer(this.balance); Message("Thanks for your donation."); } // in case some accidentally sends other tokens to this contract. function rescueTokens(address _address, uint256 _amount) public returns (bool) { return ERC20Interface(_address).transfer(owner, _amount); } }
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":"JUSTed","outputs":[{"name":"","type":"bool"}],"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":"_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":false,"inputs":[{"name":"_address","type":"address"},{"name":"_amount","type":"uint256"}],"name":"rescueTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"stdBalance","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":"","type":"address"}],"name":"bonus","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_stdBalance","type":"uint256"},{"name":"_totalSupply","type":"uint256"},{"name":"_JUSTed","type":"bool"}],"name":"UNJUST","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"message","type":"string"}],"name":"Message","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"},{"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
606060405260408051908101604052601081527f4a555354207777772e706f77682e696f000000000000000000000000000000006020820152600190805161004b929160200190610109565b506002805460ff1916601217905560408051908101604052600c81527f4a55535420706f77682e696f0000000000000000000000000000000000000000602082015260039080516100a0929160200190610109565b5034156100ac57600080fd5b6006805468487a9a304539440000600055680c93a592cfb2a0000060045574010000000000000000000000000000000000000000600160a060020a031990911633600160a060020a03161760a060020a60ff0219161790556101a4565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061014a57805160ff1916838001178555610177565b82800160010185558215610177579182015b8281111561017757825182559160200191906001019061015c565b50610183929150610187565b5090565b6101a191905b80821115610183576000815560010161018d565b90565b6109f8806101b36000396000f3006060604052600436106100da5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461017a578063095ea7b3146102045780630da86f7f1461023a57806318160ddd1461024d57806323b872dd14610272578063313ce5671461029a57806357376198146102c357806370a08231146102e55780637ecfb675146103045780638da5cb5b1461031757806395d89b4114610346578063a9059cbb14610359578063d8cb4aa31461037b578063dd62ed3e1461039a578063fdbb9fdb146103bf575b600654600160a060020a039081169030163180156108fc0290604051600060405180830381858888f19350505050151561011357600080fd5b7f51a7f65c6325882f237d4aeb43228179cfad48b868511d508e24b4437a81913760405160208082526019908201527f5468616e6b7320666f7220796f757220646f6e6174696f6e2e000000000000006040808301919091526060909101905180910390a1005b341561018557600080fd5b61018d610463565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c95780820151838201526020016101b1565b50505050905090810190601f1680156101f65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020f57600080fd5b610226600160a060020a0360043516602435610501565b604051901515815260200160405180910390f35b341561024557600080fd5b610226610509565b341561025857600080fd5b61026061052a565b60405190815260200160405180910390f35b341561027d57600080fd5b610226600160a060020a0360043581169060243516604435610530565b34156102a557600080fd5b6102ad61060c565b60405160ff909116815260200160405180910390f35b34156102ce57600080fd5b610226600160a060020a0360043516602435610615565b34156102f057600080fd5b610260600160a060020a03600435166106b4565b341561030f57600080fd5b61026061072e565b341561032257600080fd5b61032a610734565b604051600160a060020a03909116815260200160405180910390f35b341561035157600080fd5b61018d610743565b341561036457600080fd5b610226600160a060020a03600435166024356107ae565b341561038657600080fd5b610260600160a060020a0360043516610889565b34156103a557600080fd5b610260600160a060020a036004358116906024351661089b565b34156103ca57600080fd5b61046160046024813581810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284378201915050505050509190803590602001908201803590602001908080601f016020809104026020016040519081016040528181529291906020840183838082843750949650508435946020810135945060400135151592506108a3915050565b005b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104f95780601f106104ce576101008083540402835291602001916104f9565b820191906000526020600020905b8154815290600101906020018083116104dc57829003601f168201915b505050505081565b600192915050565b60065474010000000000000000000000000000000000000000900460ff1681565b60005481565b600160a060020a0333166000908152600560205260408082208054670de0b6b3a76400000190557f51a7f65c6325882f237d4aeb43228179cfad48b868511d508e24b4437a819137905160208082526011908201527f2b3120746f6b656e20666f7220796f752e0000000000000000000000000000006040808301919091526060909101905180910390a182600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a35060019392505050565b60025460ff1681565b600654600090600160a060020a038085169163a9059cbb91168484604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561069357600080fd5b6102c65a03f115156106a457600080fd5b5050506040518051949350505050565b60065460009074010000000000000000000000000000000000000000900460ff161561072557600160a060020a033316600090815260056020526040812054111561071c5750600160a060020a03331660009081526005602052604090205460045401610729565b50600454610729565b5060005b919050565b60045481565b600654600160a060020a031681565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104f95780601f106104ce576101008083540402835291602001916104f9565b600160a060020a0333166000908152600560205260408082208054670de0b6b3a76400000190557f51a7f65c6325882f237d4aeb43228179cfad48b868511d508e24b4437a819137905160208082526011908201527f2b3120746f6b656e20666f7220796f752e0000000000000000000000000000006040808301919091526060909101905180910390a182600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b60056020526000908152604090205481565b600092915050565b60065433600160a060020a039081169116146108be57600080fd5b60018580516108d1929160200190610931565b5060038480516108e5929160200190610931565b5060049290925560005560068054911515740100000000000000000000000000000000000000000274ff0000000000000000000000000000000000000000199092169190911790555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061097257805160ff191683800117855561099f565b8280016001018555821561099f579182015b8281111561099f578251825591602001919060010190610984565b506109ab9291506109af565b5090565b6109c991905b808211156109ab57600081556001016109b5565b905600a165627a7a72305820c2c13337205cc153e8102ae31c54827145e98acea71fe82732960a5e8faf37fc0029
Deployed Bytecode
0x6060604052600436106100da5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461017a578063095ea7b3146102045780630da86f7f1461023a57806318160ddd1461024d57806323b872dd14610272578063313ce5671461029a57806357376198146102c357806370a08231146102e55780637ecfb675146103045780638da5cb5b1461031757806395d89b4114610346578063a9059cbb14610359578063d8cb4aa31461037b578063dd62ed3e1461039a578063fdbb9fdb146103bf575b600654600160a060020a039081169030163180156108fc0290604051600060405180830381858888f19350505050151561011357600080fd5b7f51a7f65c6325882f237d4aeb43228179cfad48b868511d508e24b4437a81913760405160208082526019908201527f5468616e6b7320666f7220796f757220646f6e6174696f6e2e000000000000006040808301919091526060909101905180910390a1005b341561018557600080fd5b61018d610463565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c95780820151838201526020016101b1565b50505050905090810190601f1680156101f65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020f57600080fd5b610226600160a060020a0360043516602435610501565b604051901515815260200160405180910390f35b341561024557600080fd5b610226610509565b341561025857600080fd5b61026061052a565b60405190815260200160405180910390f35b341561027d57600080fd5b610226600160a060020a0360043581169060243516604435610530565b34156102a557600080fd5b6102ad61060c565b60405160ff909116815260200160405180910390f35b34156102ce57600080fd5b610226600160a060020a0360043516602435610615565b34156102f057600080fd5b610260600160a060020a03600435166106b4565b341561030f57600080fd5b61026061072e565b341561032257600080fd5b61032a610734565b604051600160a060020a03909116815260200160405180910390f35b341561035157600080fd5b61018d610743565b341561036457600080fd5b610226600160a060020a03600435166024356107ae565b341561038657600080fd5b610260600160a060020a0360043516610889565b34156103a557600080fd5b610260600160a060020a036004358116906024351661089b565b34156103ca57600080fd5b61046160046024813581810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284378201915050505050509190803590602001908201803590602001908080601f016020809104026020016040519081016040528181529291906020840183838082843750949650508435946020810135945060400135151592506108a3915050565b005b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104f95780601f106104ce576101008083540402835291602001916104f9565b820191906000526020600020905b8154815290600101906020018083116104dc57829003601f168201915b505050505081565b600192915050565b60065474010000000000000000000000000000000000000000900460ff1681565b60005481565b600160a060020a0333166000908152600560205260408082208054670de0b6b3a76400000190557f51a7f65c6325882f237d4aeb43228179cfad48b868511d508e24b4437a819137905160208082526011908201527f2b3120746f6b656e20666f7220796f752e0000000000000000000000000000006040808301919091526060909101905180910390a182600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a35060019392505050565b60025460ff1681565b600654600090600160a060020a038085169163a9059cbb91168484604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561069357600080fd5b6102c65a03f115156106a457600080fd5b5050506040518051949350505050565b60065460009074010000000000000000000000000000000000000000900460ff161561072557600160a060020a033316600090815260056020526040812054111561071c5750600160a060020a03331660009081526005602052604090205460045401610729565b50600454610729565b5060005b919050565b60045481565b600654600160a060020a031681565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104f95780601f106104ce576101008083540402835291602001916104f9565b600160a060020a0333166000908152600560205260408082208054670de0b6b3a76400000190557f51a7f65c6325882f237d4aeb43228179cfad48b868511d508e24b4437a819137905160208082526011908201527f2b3120746f6b656e20666f7220796f752e0000000000000000000000000000006040808301919091526060909101905180910390a182600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b60056020526000908152604090205481565b600092915050565b60065433600160a060020a039081169116146108be57600080fd5b60018580516108d1929160200190610931565b5060038480516108e5929160200190610931565b5060049290925560005560068054911515740100000000000000000000000000000000000000000274ff0000000000000000000000000000000000000000199092169190911790555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061097257805160ff191683800117855561099f565b8280016001018555821561099f579182015b8281111561099f578251825591602001919060010190610984565b506109ab9291506109af565b5090565b6109c991905b808211156109ab57600081556001016109b5565b905600a165627a7a72305820c2c13337205cc153e8102ae31c54827145e98acea71fe82732960a5e8faf37fc0029
Swarm Source
bzzr://c2c13337205cc153e8102ae31c54827145e98acea71fe82732960a5e8faf37fc
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.