Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 5,610 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 21491277 | 21 days ago | IN | 0 ETH | 0.00017 | ||||
Approve | 21142199 | 70 days ago | IN | 0 ETH | 0.00047843 | ||||
Transfer | 20453460 | 166 days ago | IN | 0 ETH | 0.00004689 | ||||
Approve | 19831053 | 253 days ago | IN | 0 ETH | 0.0002055 | ||||
Approve | 19827165 | 254 days ago | IN | 0 ETH | 0.00032497 | ||||
Approve | 19564745 | 291 days ago | IN | 0 ETH | 0.00088875 | ||||
Approve | 19543482 | 294 days ago | IN | 0 ETH | 0.00090326 | ||||
Approve | 19030700 | 365 days ago | IN | 0 ETH | 0.00138791 | ||||
Transfer | 18704284 | 411 days ago | IN | 0 ETH | 0.00124716 | ||||
Approve | 18496179 | 440 days ago | IN | 0 ETH | 0.00056154 | ||||
Approve | 18452449 | 447 days ago | IN | 0 ETH | 0.00039736 | ||||
Approve | 18401889 | 454 days ago | IN | 0 ETH | 0.00048739 | ||||
Approve | 18398254 | 454 days ago | IN | 0 ETH | 0.00031001 | ||||
Transfer | 18394204 | 455 days ago | IN | 0 ETH | 0.00037425 | ||||
Approve | 18389521 | 455 days ago | IN | 0 ETH | 0.00028237 | ||||
Approve | 18366989 | 459 days ago | IN | 0 ETH | 0.00030668 | ||||
Transfer | 18366505 | 459 days ago | IN | 0 ETH | 0.00031501 | ||||
Approve | 18363506 | 459 days ago | IN | 0 ETH | 0.00060867 | ||||
Approve | 18324560 | 464 days ago | IN | 0 ETH | 0.00034549 | ||||
Approve | 18324450 | 464 days ago | IN | 0 ETH | 0.00027488 | ||||
Approve | 18233071 | 477 days ago | IN | 0 ETH | 0.00046137 | ||||
Transfer | 18219997 | 479 days ago | IN | 0 ETH | 0.00061615 | ||||
Transfer* | 18200292 | 482 days ago | IN | 0 ETH | 0.00023155 | ||||
Transfer | 18082348 | 498 days ago | IN | 0 ETH | 0.00047771 | ||||
Approve | 17974554 | 513 days ago | IN | 0 ETH | 0.00081892 |
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers. Name tag integration is not available in advanced view.
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
||||
---|---|---|---|---|---|---|---|
21491277 | 21 days ago | 0 ETH | |||||
21491277 | 21 days ago | 0 ETH | |||||
21491277 | 21 days ago | 0 ETH | |||||
21491277 | 21 days ago | 0 ETH | |||||
21491277 | 21 days ago | 0 ETH | |||||
21491277 | 21 days ago | 0 ETH | |||||
21491277 | 21 days ago | 0 ETH | |||||
21142199 | 70 days ago | 0 ETH | |||||
21142199 | 70 days ago | 0 ETH | |||||
21142199 | 70 days ago | 0 ETH | |||||
19827439 | 254 days ago | 0 ETH | |||||
19827439 | 254 days ago | 0 ETH | |||||
19827439 | 254 days ago | 0 ETH | |||||
19827439 | 254 days ago | 0 ETH | |||||
19827439 | 254 days ago | 0 ETH | |||||
19827439 | 254 days ago | 0 ETH | |||||
19827439 | 254 days ago | 0 ETH | |||||
19827439 | 254 days ago | 0 ETH | |||||
19827439 | 254 days ago | 0 ETH | |||||
19827439 | 254 days ago | 0 ETH | |||||
19827439 | 254 days ago | 0 ETH | |||||
19827439 | 254 days ago | 0 ETH | |||||
19827166 | 254 days ago | 0 ETH | |||||
19827166 | 254 days ago | 0 ETH | |||||
19827166 | 254 days ago | 0 ETH |
Loading...
Loading
Contract Name:
FixedSupplyToken
Compiler Version
v0.5.0+commit.1d4f565a
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-12-28 */ pragma solidity ^0.5.0; // ---------------------------------------------------------------------------- // 'FIXED' 'Example Fixed Supply Token' token contract // // Symbol : FIXED // Name : Example Fixed Supply Token // Total supply: 1,000,000.000000000000000000 // Decimals : 18 // // Enjoy. // // (c) BokkyPooBah / Bok Consulting Pty Ltd 2018. The MIT Licence. // ---------------------------------------------------------------------------- // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- library SafeMath { function add(uint a, uint b) internal pure returns (uint c) { c = a + b; require(c >= a); } function sub(uint a, uint b) internal pure returns (uint c) { require(b <= a); c = a - b; } function mul(uint a, uint b) internal pure returns (uint c) { c = a * b; require(a == 0 || c / a == b); } function div(uint a, uint b) internal pure returns (uint c) { require(b > 0); c = a / b; } } // ---------------------------------------------------------------------------- // ERC Token Standard #20 Interface // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md // ---------------------------------------------------------------------------- contract ERC20Interface { function totalSupply() public view returns (uint); function balanceOf(address tokenOwner) public view returns (uint balance); function allowance(address tokenOwner, address spender) public view returns (uint remaining); function transfer(address to, uint tokens) public returns (bool success); function approve(address spender, uint tokens) public returns (bool success); function transferFrom(address from, address to, uint tokens) public returns (bool success); event Transfer(address indexed from, address indexed to, uint tokens); event Approval(address indexed tokenOwner, address indexed spender, uint tokens); } // ---------------------------------------------------------------------------- // Contract function to receive approval and execute function in one call // // Borrowed from MiniMeToken // ---------------------------------------------------------------------------- contract ApproveAndCallFallBack { function receiveApproval(address from, uint256 tokens, address token, bytes memory data) public; } // ---------------------------------------------------------------------------- // Owned contract // ---------------------------------------------------------------------------- contract Owned { address public owner; address public newOwner; event OwnershipTransferred(address indexed _from, address indexed _to); constructor() public { owner = msg.sender; } modifier onlyOwner { require(msg.sender == owner); _; } function transferOwnership(address _newOwner) public onlyOwner { newOwner = _newOwner; } function acceptOwnership() public { require(msg.sender == newOwner); emit OwnershipTransferred(owner, newOwner); owner = newOwner; newOwner = address(0); } } // ---------------------------------------------------------------------------- // ERC20 Token, with the addition of symbol, name and decimals and a // fixed supply // ---------------------------------------------------------------------------- contract FixedSupplyToken is ERC20Interface, Owned { using SafeMath for uint; string public symbol; string public name; uint8 public decimals; uint _totalSupply; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; // ------------------------------------------------------------------------ // Constructor // ------------------------------------------------------------------------ constructor() public { symbol = "BST"; name = "Bitsten Token"; decimals = 18; _totalSupply = 20000000 * 10**uint(decimals); balances[owner] = _totalSupply; emit Transfer(address(0), owner, _totalSupply); } // ------------------------------------------------------------------------ // Total supply // ------------------------------------------------------------------------ function totalSupply() public view returns (uint) { return _totalSupply.sub(balances[address(0)]); } // ------------------------------------------------------------------------ // Get the token balance for account `tokenOwner` // ------------------------------------------------------------------------ function balanceOf(address tokenOwner) public view returns (uint balance) { return balances[tokenOwner]; } // ------------------------------------------------------------------------ // Transfer the balance from token owner's account to `to` account // - Owner's account must have sufficient balance to transfer // - 0 value transfers are allowed // ------------------------------------------------------------------------ function transfer(address to, uint tokens) public returns (bool success) { balances[msg.sender] = balances[msg.sender].sub(tokens); balances[to] = balances[to].add(tokens); emit Transfer(msg.sender, to, tokens); return true; } // ------------------------------------------------------------------------ // Token owner can approve for `spender` to transferFrom(...) `tokens` // from the token owner's account // // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md // recommends that there are no checks for the approval double-spend attack // as this should be implemented in user interfaces // ------------------------------------------------------------------------ function approve(address spender, uint tokens) public returns (bool success) { allowed[msg.sender][spender] = tokens; emit Approval(msg.sender, spender, tokens); return true; } // ------------------------------------------------------------------------ // Transfer `tokens` from the `from` account to the `to` account // // The calling account must already have sufficient tokens approve(...)-d // for spending from the `from` account and // - From account must have sufficient balance to transfer // - Spender must have sufficient allowance to transfer // - 0 value transfers are allowed // ------------------------------------------------------------------------ function transferFrom(address from, address to, uint tokens) public returns (bool success) { balances[from] = balances[from].sub(tokens); allowed[from][msg.sender] = allowed[from][msg.sender].sub(tokens); balances[to] = balances[to].add(tokens); emit Transfer(from, to, tokens); return true; } // ------------------------------------------------------------------------ // Returns the amount of tokens approved by the owner that can be // transferred to the spender's account // ------------------------------------------------------------------------ function allowance(address tokenOwner, address spender) public view returns (uint remaining) { return allowed[tokenOwner][spender]; } // ------------------------------------------------------------------------ // Token owner can approve for `spender` to transferFrom(...) `tokens` // from the token owner's account. The `spender` contract function // `receiveApproval(...)` is then executed // ------------------------------------------------------------------------ function approveAndCall(address spender, uint tokens, bytes memory data) public returns (bool success) { allowed[msg.sender][spender] = tokens; emit Approval(msg.sender, spender, tokens); ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, address(this), data); return true; } // ------------------------------------------------------------------------ // Don't accept ETH // ------------------------------------------------------------------------ function () external payable { revert(); } // ------------------------------------------------------------------------ // Owner can transfer out any accidentally sent ERC20 tokens // ------------------------------------------------------------------------ function transferAnyERC20Token(address tokenAddress, uint tokens) public onlyOwner returns (bool success) { return ERC20Interface(tokenAddress).transfer(owner, tokens); } }
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":"tokens","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":"tokens","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":"tokenOwner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"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":"tokens","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"tokens","type":"uint256"},{"name":"data","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","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"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"tokenOwner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
608060405234801561001057600080fd5b5060008054600160a060020a031916331790556040805180820190915260038082527f425354000000000000000000000000000000000000000000000000000000000060209092019182526100679160029161012b565b5060408051808201909152600d8082527f4269747374656e20546f6b656e0000000000000000000000000000000000000060209092019182526100ac9160039161012b565b5060048054601260ff19909116179081905560ff16600a0a6301312d0002600581905560008054600160a060020a0390811682526006602090815260408084208590558354815195865290519216937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a36101c6565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061016c57805160ff1916838001178555610199565b82800160010185558215610199579182015b8281111561019957825182559160200191906001019061017e565b506101a59291506101a9565b5090565b6101c391905b808211156101a557600081556001016101af565b90565b610b8b806101d56000396000f3fe6080604052600436106100da5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100df578063095ea7b31461016957806318160ddd146101b657806323b872dd146101dd578063313ce5671461022057806370a082311461024b57806379ba50971461027e5780638da5cb5b1461029557806395d89b41146102c6578063a9059cbb146102db578063cae9ca5114610314578063d4ee1d90146103dc578063dc39d06d146103f1578063dd62ed3e1461042a578063f2fde38b14610465575b600080fd5b3480156100eb57600080fd5b506100f4610498565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012e578181015183820152602001610116565b50505050905090810190601f16801561015b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561017557600080fd5b506101a26004803603604081101561018c57600080fd5b50600160a060020a038135169060200135610526565b604080519115158252519081900360200190f35b3480156101c257600080fd5b506101cb61058d565b60408051918252519081900360200190f35b3480156101e957600080fd5b506101a26004803603606081101561020057600080fd5b50600160a060020a038135811691602081013590911690604001356105d0565b34801561022c57600080fd5b506102356106db565b6040805160ff9092168252519081900360200190f35b34801561025757600080fd5b506101cb6004803603602081101561026e57600080fd5b5035600160a060020a03166106e4565b34801561028a57600080fd5b506102936106ff565b005b3480156102a157600080fd5b506102aa610787565b60408051600160a060020a039092168252519081900360200190f35b3480156102d257600080fd5b506100f4610796565b3480156102e757600080fd5b506101a2600480360360408110156102fe57600080fd5b50600160a060020a0381351690602001356107ee565b34801561032057600080fd5b506101a26004803603606081101561033757600080fd5b600160a060020a038235169160208101359181019060608101604082013564010000000081111561036757600080fd5b82018360208201111561037957600080fd5b8035906020019184600183028401116401000000008311171561039b57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061089e945050505050565b3480156103e857600080fd5b506102aa6109ff565b3480156103fd57600080fd5b506101a26004803603604081101561041457600080fd5b50600160a060020a038135169060200135610a0e565b34801561043657600080fd5b506101cb6004803603604081101561044d57600080fd5b50600160a060020a0381358116916020013516610ac9565b34801561047157600080fd5b506102936004803603602081101561048857600080fd5b5035600160a060020a0316610af4565b6003805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561051e5780601f106104f35761010080835404028352916020019161051e565b820191906000526020600020905b81548152906001019060200180831161050157829003601f168201915b505050505081565b336000818152600760209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b600080805260066020527f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f8546005546105cb9163ffffffff610b3a16565b905090565b600160a060020a0383166000908152600660205260408120546105f9908363ffffffff610b3a16565b600160a060020a0385166000908152600660209081526040808320939093556007815282822033835290522054610636908363ffffffff610b3a16565b600160a060020a03808616600090815260076020908152604080832033845282528083209490945591861681526006909152205461067a908363ffffffff610b4f16565b600160a060020a0380851660008181526006602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019392505050565b60045460ff1681565b600160a060020a031660009081526006602052604090205490565b600154600160a060020a0316331461071657600080fd5b60015460008054604051600160a060020a0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f8101849004840282018401909252818152929183018282801561051e5780601f106104f35761010080835404028352916020019161051e565b3360009081526006602052604081205461080e908363ffffffff610b3a16565b3360009081526006602052604080822092909255600160a060020a03851681522054610840908363ffffffff610b4f16565b600160a060020a0384166000818152600660209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000818152600760209081526040808320600160a060020a038816808552908352818420879055815187815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a36040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018690523060448401819052608060648501908152865160848601528651600160a060020a038a1695638f4ffcb195948a94938a939192909160a490910190602085019080838360005b8381101561098e578181015183820152602001610976565b50505050905090810190601f1680156109bb5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156109dd57600080fd5b505af11580156109f1573d6000803e3d6000fd5b506001979650505050505050565b600154600160a060020a031681565b60008054600160a060020a03163314610a2657600080fd5b60008054604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810186905290519186169263a9059cbb926044808401936020939083900390910190829087803b158015610a9657600080fd5b505af1158015610aaa573d6000803e3d6000fd5b505050506040513d6020811015610ac057600080fd5b50519392505050565b600160a060020a03918216600090815260076020908152604080832093909416825291909152205490565b600054600160a060020a03163314610b0b57600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610b4957600080fd5b50900390565b8181018281101561058757600080fdfea165627a7a7230582048bce6be3b112a4cb221fc2e2df0523cb866d3216e65a9ea90a9aefdc41b47c50029
Deployed Bytecode
0x6080604052600436106100da5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100df578063095ea7b31461016957806318160ddd146101b657806323b872dd146101dd578063313ce5671461022057806370a082311461024b57806379ba50971461027e5780638da5cb5b1461029557806395d89b41146102c6578063a9059cbb146102db578063cae9ca5114610314578063d4ee1d90146103dc578063dc39d06d146103f1578063dd62ed3e1461042a578063f2fde38b14610465575b600080fd5b3480156100eb57600080fd5b506100f4610498565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012e578181015183820152602001610116565b50505050905090810190601f16801561015b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561017557600080fd5b506101a26004803603604081101561018c57600080fd5b50600160a060020a038135169060200135610526565b604080519115158252519081900360200190f35b3480156101c257600080fd5b506101cb61058d565b60408051918252519081900360200190f35b3480156101e957600080fd5b506101a26004803603606081101561020057600080fd5b50600160a060020a038135811691602081013590911690604001356105d0565b34801561022c57600080fd5b506102356106db565b6040805160ff9092168252519081900360200190f35b34801561025757600080fd5b506101cb6004803603602081101561026e57600080fd5b5035600160a060020a03166106e4565b34801561028a57600080fd5b506102936106ff565b005b3480156102a157600080fd5b506102aa610787565b60408051600160a060020a039092168252519081900360200190f35b3480156102d257600080fd5b506100f4610796565b3480156102e757600080fd5b506101a2600480360360408110156102fe57600080fd5b50600160a060020a0381351690602001356107ee565b34801561032057600080fd5b506101a26004803603606081101561033757600080fd5b600160a060020a038235169160208101359181019060608101604082013564010000000081111561036757600080fd5b82018360208201111561037957600080fd5b8035906020019184600183028401116401000000008311171561039b57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061089e945050505050565b3480156103e857600080fd5b506102aa6109ff565b3480156103fd57600080fd5b506101a26004803603604081101561041457600080fd5b50600160a060020a038135169060200135610a0e565b34801561043657600080fd5b506101cb6004803603604081101561044d57600080fd5b50600160a060020a0381358116916020013516610ac9565b34801561047157600080fd5b506102936004803603602081101561048857600080fd5b5035600160a060020a0316610af4565b6003805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561051e5780601f106104f35761010080835404028352916020019161051e565b820191906000526020600020905b81548152906001019060200180831161050157829003601f168201915b505050505081565b336000818152600760209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b600080805260066020527f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f8546005546105cb9163ffffffff610b3a16565b905090565b600160a060020a0383166000908152600660205260408120546105f9908363ffffffff610b3a16565b600160a060020a0385166000908152600660209081526040808320939093556007815282822033835290522054610636908363ffffffff610b3a16565b600160a060020a03808616600090815260076020908152604080832033845282528083209490945591861681526006909152205461067a908363ffffffff610b4f16565b600160a060020a0380851660008181526006602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019392505050565b60045460ff1681565b600160a060020a031660009081526006602052604090205490565b600154600160a060020a0316331461071657600080fd5b60015460008054604051600160a060020a0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f8101849004840282018401909252818152929183018282801561051e5780601f106104f35761010080835404028352916020019161051e565b3360009081526006602052604081205461080e908363ffffffff610b3a16565b3360009081526006602052604080822092909255600160a060020a03851681522054610840908363ffffffff610b4f16565b600160a060020a0384166000818152600660209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000818152600760209081526040808320600160a060020a038816808552908352818420879055815187815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a36040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018690523060448401819052608060648501908152865160848601528651600160a060020a038a1695638f4ffcb195948a94938a939192909160a490910190602085019080838360005b8381101561098e578181015183820152602001610976565b50505050905090810190601f1680156109bb5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156109dd57600080fd5b505af11580156109f1573d6000803e3d6000fd5b506001979650505050505050565b600154600160a060020a031681565b60008054600160a060020a03163314610a2657600080fd5b60008054604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810186905290519186169263a9059cbb926044808401936020939083900390910190829087803b158015610a9657600080fd5b505af1158015610aaa573d6000803e3d6000fd5b505050506040513d6020811015610ac057600080fd5b50519392505050565b600160a060020a03918216600090815260076020908152604080832093909416825291909152205490565b600054600160a060020a03163314610b0b57600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610b4957600080fd5b50900390565b8181018281101561058757600080fdfea165627a7a7230582048bce6be3b112a4cb221fc2e2df0523cb866d3216e65a9ea90a9aefdc41b47c50029
Swarm Source
bzzr://48bce6be3b112a4cb221fc2e2df0523cb866d3216e65a9ea90a9aefdc41b47c5
Loading...
Loading
Loading...
Loading
OVERVIEW
BST is a token utility used to change transaction fees and listing fees on bitsten exchange.Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BSC | 100.00% | $1.3 | 0.8261 | $1.07 |
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.