ERC-20
Overview
Max Total Supply
20,000,000,000 STSC
Holders
895
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
6,538.8888 STSCValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
stsc
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-03 */ pragma solidity ^0.4.16; interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external; } contract TokenERC20 { // 本token的公共变量 string public name; string public symbol; uint8 public decimals = 18; // 18位小数点,尽量不修改 uint256 public totalSupply; // 余额数组 mapping (address => uint256) public balanceOf; mapping (address => mapping (address => uint256)) public allowance; //2维数组限额 //Token转移事件 This generates a public event on the blockchain that will notify clients event Transfer(address indexed from, address indexed to, uint256 value); // 蒸发某个账户的token This notifies clients about the amount burnt event Burn(address indexed from, uint256 value); /** * Constructor function * * 初始化 合约 Initializes contract with initial supply tokens to the creator of the contract */ function TokenERC20( uint256 initialSupply, string tokenName, string tokenSymbol ) public { totalSupply = initialSupply * 10 ** uint256(decimals); // 小数变整数 乘18个0 Update total supply with the decimal amount balanceOf[msg.sender] = totalSupply; // 初始token数量 Give the creator all initial tokens name = tokenName; // 设置token名称 Set the name for display purposes symbol = tokenSymbol; // 设置token符号 Set the symbol for display purposes } /** * 赠送货币 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 *从当前账户向其他账户发送token * 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 { _transfer(msg.sender, _to, _value); } /** * Transfer tokens from other address * * Send `_value` tokens to `_to` on behalf of `_from` * * @param _from The address of the sender * @param _to The address of the recipient * @param _value the amount to send */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { require(_value <= allowance[_from][msg.sender]); // 检查限额 Check allowance allowance[_from][msg.sender] -= _value; //减少相应的限额 _transfer(_from, _to, _value); //调用调用交易,完成交易 return true; } /** * 设置账户限额 Set allowance for other address * * Allows `_spender` to spend no more than `_value` tokens on your behalf * * @param _spender The address authorized to spend * @param _value the max amount they can spend */ function approve(address _spender, uint256 _value) public returns (bool success) { allowance[msg.sender][_spender] = _value; return true; } /** * 设置其他账户限额 Set allowance for other address and notify * * Allows `_spender` to spend no more than `_value` tokens on your behalf, and then ping the contract about it * * @param _spender The address authorized to spend * @param _value the max amount they can spend * @param _extraData some extra information to send to the approved contract */ function approveAndCall(address _spender, uint256 _value, bytes _extraData) public returns (bool success) { tokenRecipient spender = tokenRecipient(_spender); if (approve(_spender, _value)) { spender.receiveApproval(msg.sender, _value, this, _extraData); return true; } } /** * Destroy tokens *蒸发自己的token * Remove `_value` tokens from the system irreversibly * * @param _value the amount of money to burn */ function burn(uint256 _value) public returns (bool success) { require(balanceOf[msg.sender] >= _value); //判断使用者的余额是否充足 Check if the sender has enough balanceOf[msg.sender] -= _value; //减掉token Subtract from the sender totalSupply -= _value; //减掉总taoken数 Updates totalSupply emit Burn(msg.sender, _value); //触发Burn事件 return true; } /** * Destroy tokens from other account *蒸发别人的token * Remove `_value` tokens from the system irreversibly on behalf of `_from`. * * @param _from the address of the sender * @param _value the amount of money to burn */ function burnFrom(address _from, uint256 _value) public returns (bool success) { require(balanceOf[_from] >= _value); // 检查别人的余额是否充足 Check if the targeted balance is enough require(_value <= allowance[_from][msg.sender]); // 检查限额是否充足 Check allowance balanceOf[_from] -= _value; // 蒸发token Subtract from the targeted balance allowance[_from][msg.sender] -= _value; // 去除限额 Subtract from the sender's allowance totalSupply -= _value; // 减掉总taoken数Update totalSupply emit Burn(_from, _value); //触发Burn事件 return true; } } contract owned { address public owner; function owned() public { owner = msg.sender; } modifier onlyOwner { require(msg.sender == owner); _; } function transferOwnership(address newOwner) onlyOwner public { owner = newOwner; } } contract stsc is owned, TokenERC20{ bool public freeze=true; function stsc() TokenERC20(20000000000,"StarbullCoin","STSC") public {} function _transfer(address _from, address _to, uint _value) internal { require (freeze); require (_to != 0x0); // Prevent transfer to 0x0 address. Use burn() instead require (balanceOf[_from] >= _value); // Check if the sender has enough require (balanceOf[_to] + _value >= balanceOf[_to]); // Check for overflows uint previousBalances = balanceOf[_from] + balanceOf[_to]; // 付款地址中的余额-付款金额 Subtract from the sender balanceOf[_from] -= _value; // Subtract from the sender balanceOf[_to] += _value; // Add the same to the recipient 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); } function setfreeze(bool state) onlyOwner public{ freeze=state; } }
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":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"freeze","outputs":[{"name":"","type":"bool"}],"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":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"state","type":"bool"}],"name":"setfreeze","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","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"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]
Contract Creation Code
60806040526003805460ff1990811660121790915560078054909116600117905534801561002c57600080fd5b50604080518082018252600c81527f5374617262756c6c436f696e000000000000000000000000000000000000000060208083019182528351808501855260048082527f53545343000000000000000000000000000000000000000000000000000000008284015260008054600160a060020a03191633908117825560035460ff16600a0a6404a817c800908102938490559082526005909452959095209490945582519093916100e091600191906100fd565b5080516100f49060029060208401906100fd565b50505050610198565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061013e57805160ff191683800117855561016b565b8280016001018555821561016b579182015b8281111561016b578251825591602001919060010190610150565b5061017792915061017b565b5090565b61019591905b808211156101775760008155600101610181565b90565b6109cf806101a76000396000f3006080604052600436106100e55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ea578063095ea7b31461017457806318160ddd146101ac57806323b872dd146101d3578063313ce567146101fd57806342966c681461022857806362a5af3b1461024057806370a082311461025557806379cc6790146102765780638da5cb5b1461029a57806395d89b41146102cb578063a9059cbb146102e0578063b15897cc14610306578063cae9ca5114610320578063dd62ed3e14610389578063f2fde38b146103b0575b600080fd5b3480156100f657600080fd5b506100ff6103d1565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610139578181015183820152602001610121565b50505050905090810190601f1680156101665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018057600080fd5b50610198600160a060020a036004351660243561045e565b604080519115158252519081900360200190f35b3480156101b857600080fd5b506101c161048b565b60408051918252519081900360200190f35b3480156101df57600080fd5b50610198600160a060020a0360043581169060243516604435610491565b34801561020957600080fd5b50610212610500565b6040805160ff9092168252519081900360200190f35b34801561023457600080fd5b50610198600435610509565b34801561024c57600080fd5b50610198610581565b34801561026157600080fd5b506101c1600160a060020a036004351661058a565b34801561028257600080fd5b50610198600160a060020a036004351660243561059c565b3480156102a657600080fd5b506102af61066d565b60408051600160a060020a039092168252519081900360200190f35b3480156102d757600080fd5b506100ff61067c565b3480156102ec57600080fd5b50610304600160a060020a03600435166024356106d4565b005b34801561031257600080fd5b5061030460043515156106e3565b34801561032c57600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610198948235600160a060020a031694602480359536959460649492019190819084018382808284375094975061070d9650505050505050565b34801561039557600080fd5b506101c1600160a060020a0360043581169060243516610826565b3480156103bc57600080fd5b50610304600160a060020a0360043516610843565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104565780601f1061042b57610100808354040283529160200191610456565b820191906000526020600020905b81548152906001019060200180831161043957829003601f168201915b505050505081565b336000908152600660209081526040808320600160a060020a039590951683529390529190912055600190565b60045481565b600160a060020a03831660009081526006602090815260408083203384529091528120548211156104c157600080fd5b600160a060020a03841660009081526006602090815260408083203384529091529020805483900390556104f6848484610889565b5060019392505050565b60035460ff1681565b3360009081526005602052604081205482111561052557600080fd5b3360008181526005602090815260409182902080548690039055600480548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a2506001919050565b60075460ff1681565b60056020526000908152604090205481565b600160a060020a0382166000908152600560205260408120548211156105c157600080fd5b600160a060020a03831660009081526006602090815260408083203384529091529020548211156105f157600080fd5b600160a060020a0383166000818152600560209081526040808320805487900390556006825280832033845282529182902080548690039055600480548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a250600192915050565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156104565780601f1061042b57610100808354040283529160200191610456565b6106df338383610889565b5050565b600054600160a060020a031633146106fa57600080fd5b6007805460ff1916911515919091179055565b60008361071a818561045e565b1561081e576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b838110156107b257818101518382015260200161079a565b50505050905090810190601f1680156107df5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561080157600080fd5b505af1158015610815573d6000803e3d6000fd5b50505050600191505b509392505050565b600660209081526000928352604080842090915290825290205481565b600054600160a060020a0316331461085a57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60075460009060ff16151561089d57600080fd5b600160a060020a03831615156108b257600080fd5b600160a060020a0384166000908152600560205260409020548211156108d757600080fd5b600160a060020a03831660009081526005602052604090205482810110156108fe57600080fd5b50600160a060020a038083166000818152600560209081526040808320805495891680855282852080548981039091559486905281548801909155815187815291519390950194927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3600160a060020a0380841660009081526005602052604080822054928716825290205401811461099d57fe5b505050505600a165627a7a723058206343f51aee8fed33b359508eb258d23bb5f9f59dc422c5e81c3cdf53c8b4943c0029
Deployed Bytecode
0x6080604052600436106100e55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ea578063095ea7b31461017457806318160ddd146101ac57806323b872dd146101d3578063313ce567146101fd57806342966c681461022857806362a5af3b1461024057806370a082311461025557806379cc6790146102765780638da5cb5b1461029a57806395d89b41146102cb578063a9059cbb146102e0578063b15897cc14610306578063cae9ca5114610320578063dd62ed3e14610389578063f2fde38b146103b0575b600080fd5b3480156100f657600080fd5b506100ff6103d1565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610139578181015183820152602001610121565b50505050905090810190601f1680156101665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018057600080fd5b50610198600160a060020a036004351660243561045e565b604080519115158252519081900360200190f35b3480156101b857600080fd5b506101c161048b565b60408051918252519081900360200190f35b3480156101df57600080fd5b50610198600160a060020a0360043581169060243516604435610491565b34801561020957600080fd5b50610212610500565b6040805160ff9092168252519081900360200190f35b34801561023457600080fd5b50610198600435610509565b34801561024c57600080fd5b50610198610581565b34801561026157600080fd5b506101c1600160a060020a036004351661058a565b34801561028257600080fd5b50610198600160a060020a036004351660243561059c565b3480156102a657600080fd5b506102af61066d565b60408051600160a060020a039092168252519081900360200190f35b3480156102d757600080fd5b506100ff61067c565b3480156102ec57600080fd5b50610304600160a060020a03600435166024356106d4565b005b34801561031257600080fd5b5061030460043515156106e3565b34801561032c57600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610198948235600160a060020a031694602480359536959460649492019190819084018382808284375094975061070d9650505050505050565b34801561039557600080fd5b506101c1600160a060020a0360043581169060243516610826565b3480156103bc57600080fd5b50610304600160a060020a0360043516610843565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104565780601f1061042b57610100808354040283529160200191610456565b820191906000526020600020905b81548152906001019060200180831161043957829003601f168201915b505050505081565b336000908152600660209081526040808320600160a060020a039590951683529390529190912055600190565b60045481565b600160a060020a03831660009081526006602090815260408083203384529091528120548211156104c157600080fd5b600160a060020a03841660009081526006602090815260408083203384529091529020805483900390556104f6848484610889565b5060019392505050565b60035460ff1681565b3360009081526005602052604081205482111561052557600080fd5b3360008181526005602090815260409182902080548690039055600480548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a2506001919050565b60075460ff1681565b60056020526000908152604090205481565b600160a060020a0382166000908152600560205260408120548211156105c157600080fd5b600160a060020a03831660009081526006602090815260408083203384529091529020548211156105f157600080fd5b600160a060020a0383166000818152600560209081526040808320805487900390556006825280832033845282529182902080548690039055600480548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a250600192915050565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156104565780601f1061042b57610100808354040283529160200191610456565b6106df338383610889565b5050565b600054600160a060020a031633146106fa57600080fd5b6007805460ff1916911515919091179055565b60008361071a818561045e565b1561081e576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b838110156107b257818101518382015260200161079a565b50505050905090810190601f1680156107df5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561080157600080fd5b505af1158015610815573d6000803e3d6000fd5b50505050600191505b509392505050565b600660209081526000928352604080842090915290825290205481565b600054600160a060020a0316331461085a57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60075460009060ff16151561089d57600080fd5b600160a060020a03831615156108b257600080fd5b600160a060020a0384166000908152600560205260409020548211156108d757600080fd5b600160a060020a03831660009081526005602052604090205482810110156108fe57600080fd5b50600160a060020a038083166000818152600560209081526040808320805495891680855282852080548981039091559486905281548801909155815187815291519390950194927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3600160a060020a0380841660009081526005602052604080822054928716825290205401811461099d57fe5b505050505600a165627a7a723058206343f51aee8fed33b359508eb258d23bb5f9f59dc422c5e81c3cdf53c8b4943c0029
Swarm Source
bzzr://6343f51aee8fed33b359508eb258d23bb5f9f59dc422c5e81c3cdf53c8b4943c
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.