More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 767 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 18263761 | 496 days ago | IN | 0 ETH | 0.0007127 | ||||
Transfer | 18263721 | 496 days ago | IN | 0 ETH | 0.00091421 | ||||
Transfer | 18077818 | 522 days ago | IN | 0 ETH | 0.00066106 | ||||
Transfer | 18077790 | 522 days ago | IN | 0 ETH | 0.00099801 | ||||
Transfer | 17977249 | 536 days ago | IN | 0 ETH | 0.00040442 | ||||
Transfer | 17977218 | 536 days ago | IN | 0 ETH | 0.0007393 | ||||
Transfer | 17971423 | 536 days ago | IN | 0 ETH | 0.00150245 | ||||
Transfer | 17971418 | 536 days ago | IN | 0 ETH | 0.00186629 | ||||
Transfer | 17963156 | 538 days ago | IN | 0 ETH | 0.00059239 | ||||
Transfer | 17827548 | 557 days ago | IN | 0 ETH | 0.00065539 | ||||
Transfer | 17827534 | 557 days ago | IN | 0 ETH | 0.00070822 | ||||
Transfer | 17827519 | 557 days ago | IN | 0 ETH | 0.00117133 | ||||
Transfer | 17813956 | 558 days ago | IN | 0 ETH | 0.00219329 | ||||
Transfer | 17813950 | 558 days ago | IN | 0 ETH | 0.00200991 | ||||
Transfer | 17813911 | 559 days ago | IN | 0 ETH | 0.00183141 | ||||
Transfer | 17813904 | 559 days ago | IN | 0 ETH | 0.00255743 | ||||
Transfer | 17813802 | 559 days ago | IN | 0 ETH | 0.00165106 | ||||
Transfer | 17813776 | 559 days ago | IN | 0 ETH | 0.00277534 | ||||
Transfer | 17813745 | 559 days ago | IN | 0 ETH | 0.00208108 | ||||
Transfer | 17813016 | 559 days ago | IN | 0 ETH | 0.00057557 | ||||
Transfer | 17812956 | 559 days ago | IN | 0 ETH | 0.00064319 | ||||
Transfer | 17812374 | 559 days ago | IN | 0 ETH | 0.00060198 | ||||
Transfer | 17812240 | 559 days ago | IN | 0 ETH | 0.00052563 | ||||
Transfer | 17796803 | 561 days ago | IN | 0 ETH | 0.00050149 | ||||
Transfer | 17796727 | 561 days ago | IN | 0 ETH | 0.00079099 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Token
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-18 */ pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface ERC20Interface { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } contract ERC20Base is ERC20Interface { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. // constructor () internal { } // solhint-disable-previous-line no-empty-blocks mapping (address => uint256) public _balances; mapping (address => mapping (address => uint256)) public _allowances; uint256 public _totalSupply; function transfer(address _to, uint256 _value) public returns (bool success) { //Default assumes totalSupply can't be over max (2^256 - 1). //If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap. //Replace the if with this one instead. //if (balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]) { if (_balances[msg.sender] >= _value && _value > 0) { _balances[msg.sender] -= _value; _balances[_to] += _value; emit Transfer(msg.sender, _to, _value); return true; } else { return false; } } function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { //same as above. Replace this line with the following if you want to protect against wrapping uints. //if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]) { if (_balances[_from] >= _value && _allowances[_from][msg.sender] >= _value && _value > 0) { _balances[_to] += _value; _balances[_from] -= _value; _allowances[_from][msg.sender] -= _value; emit Transfer(_from, _to, _value); return true; } else { return false; } } function balanceOf(address _owner) public view returns (uint256 balance) { return _balances[_owner]; } function approve(address _spender, uint256 _value) public returns (bool success) { _allowances[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) public view returns (uint256 remaining) { return _allowances[_owner][_spender]; } function totalSupply() public view returns (uint256 total) { return _totalSupply; } } contract Token is ERC20Base { string private _name; string private _symbol; uint8 private _decimals; constructor (string memory name, string memory symbol, uint8 decimals, uint256 initialSupply) public payable { _name = name; _symbol = symbol; _decimals = decimals; _totalSupply = initialSupply; _balances[msg.sender] = initialSupply; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"_allowances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"total","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052604051620014b3380380620014b38339818101604052810190620000299190620002c8565b83600390816200003a9190620005b9565b5082600490816200004c9190620005b9565b5081600560006101000a81548160ff021916908360ff16021790555080600281905550806000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050620006a0565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200012582620000da565b810181811067ffffffffffffffff82111715620001475762000146620000eb565b5b80604052505050565b60006200015c620000bc565b90506200016a82826200011a565b919050565b600067ffffffffffffffff8211156200018d576200018c620000eb565b5b6200019882620000da565b9050602081019050919050565b60005b83811015620001c5578082015181840152602081019050620001a8565b60008484015250505050565b6000620001e8620001e2846200016f565b62000150565b905082815260208101848484011115620002075762000206620000d5565b5b62000214848285620001a5565b509392505050565b600082601f830112620002345762000233620000d0565b5b815162000246848260208601620001d1565b91505092915050565b600060ff82169050919050565b62000267816200024f565b81146200027357600080fd5b50565b60008151905062000287816200025c565b92915050565b6000819050919050565b620002a2816200028d565b8114620002ae57600080fd5b50565b600081519050620002c28162000297565b92915050565b60008060008060808587031215620002e557620002e4620000c6565b5b600085015167ffffffffffffffff811115620003065762000305620000cb565b5b62000314878288016200021c565b945050602085015167ffffffffffffffff811115620003385762000337620000cb565b5b62000346878288016200021c565b9350506040620003598782880162000276565b92505060606200036c87828801620002b1565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003cb57607f821691505b602082108103620003e157620003e062000383565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200044b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200040c565b6200045786836200040c565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200049a620004946200048e846200028d565b6200046f565b6200028d565b9050919050565b6000819050919050565b620004b68362000479565b620004ce620004c582620004a1565b84845462000419565b825550505050565b600090565b620004e5620004d6565b620004f2818484620004ab565b505050565b5b818110156200051a576200050e600082620004db565b600181019050620004f8565b5050565b601f82111562000569576200053381620003e7565b6200053e84620003fc565b810160208510156200054e578190505b620005666200055d85620003fc565b830182620004f7565b50505b505050565b600082821c905092915050565b60006200058e600019846008026200056e565b1980831691505092915050565b6000620005a983836200057b565b9150826002028217905092915050565b620005c48262000378565b67ffffffffffffffff811115620005e057620005df620000eb565b5b620005ec8254620003b2565b620005f98282856200051e565b600060209050601f8311600181146200063157600084156200061c578287015190505b6200062885826200059b565b86555062000698565b601f1984166200064186620003e7565b60005b828110156200066b5784890151825560018201915060208501945060208101905062000644565b868310156200068b578489015162000687601f8916826200057b565b8355505b6001600288020188555050505b505050505050565b610e0380620006b06000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c80633eaaf86b116100715780633eaaf86b146101a35780636ebcf607146101c157806370a08231146101f157806395d89b4114610221578063a9059cbb1461023f578063dd62ed3e1461026f576100b4565b8063024c2ddd146100b957806306fdde03146100e9578063095ea7b31461010757806318160ddd1461013757806323b872dd14610155578063313ce56714610185575b600080fd5b6100d360048036038101906100ce9190610a57565b61029f565b6040516100e09190610ab0565b60405180910390f35b6100f16102c4565b6040516100fe9190610b5b565b60405180910390f35b610121600480360381019061011c9190610ba9565b610356565b60405161012e9190610c04565b60405180910390f35b61013f610448565b60405161014c9190610ab0565b60405180910390f35b61016f600480360381019061016a9190610c1f565b610452565b60405161017c9190610c04565b60405180910390f35b61018d6106e6565b60405161019a9190610c8e565b60405180910390f35b6101ab6106fd565b6040516101b89190610ab0565b60405180910390f35b6101db60048036038101906101d69190610ca9565b610703565b6040516101e89190610ab0565b60405180910390f35b61020b60048036038101906102069190610ca9565b61071b565b6040516102189190610ab0565b60405180910390f35b610229610763565b6040516102369190610b5b565b60405180910390f35b61025960048036038101906102549190610ba9565b6107f5565b6040516102669190610c04565b60405180910390f35b61028960048036038101906102849190610a57565b61096d565b6040516102969190610ab0565b60405180910390f35b6001602052816000526040600020602052806000526040600020600091509150505481565b6060600380546102d390610d05565b80601f01602080910402602001604051908101604052809291908181526020018280546102ff90610d05565b801561034c5780601f106103215761010080835404028352916020019161034c565b820191906000526020600020905b81548152906001019060200180831161032f57829003601f168201915b5050505050905090565b600081600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516104369190610ab0565b60405180910390a36001905092915050565b6000600254905090565b6000816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015801561051e575081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410155b801561052a5750600082115b156106da57816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461057d9190610d65565b92505081905550816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546105d29190610d99565b9250508190555081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546106659190610d99565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106c99190610ab0565b60405180910390a3600190506106df565b600090505b9392505050565b6000600560009054906101000a900460ff16905090565b60025481565b60006020528060005260406000206000915090505481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461077290610d05565b80601f016020809104026020016040519081016040528092919081815260200182805461079e90610d05565b80156107eb5780601f106107c0576101008083540402835291602001916107eb565b820191906000526020600020905b8154815290600101906020018083116107ce57829003601f168201915b5050505050905090565b6000816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101580156108455750600082115b1561096257816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546108989190610d99565b92505081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546108ed9190610d65565b925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109519190610ab0565b60405180910390a360019050610967565b600090505b92915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610a24826109f9565b9050919050565b610a3481610a19565b8114610a3f57600080fd5b50565b600081359050610a5181610a2b565b92915050565b60008060408385031215610a6e57610a6d6109f4565b5b6000610a7c85828601610a42565b9250506020610a8d85828601610a42565b9150509250929050565b6000819050919050565b610aaa81610a97565b82525050565b6000602082019050610ac56000830184610aa1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610b05578082015181840152602081019050610aea565b60008484015250505050565b6000601f19601f8301169050919050565b6000610b2d82610acb565b610b378185610ad6565b9350610b47818560208601610ae7565b610b5081610b11565b840191505092915050565b60006020820190508181036000830152610b758184610b22565b905092915050565b610b8681610a97565b8114610b9157600080fd5b50565b600081359050610ba381610b7d565b92915050565b60008060408385031215610bc057610bbf6109f4565b5b6000610bce85828601610a42565b9250506020610bdf85828601610b94565b9150509250929050565b60008115159050919050565b610bfe81610be9565b82525050565b6000602082019050610c196000830184610bf5565b92915050565b600080600060608486031215610c3857610c376109f4565b5b6000610c4686828701610a42565b9350506020610c5786828701610a42565b9250506040610c6886828701610b94565b9150509250925092565b600060ff82169050919050565b610c8881610c72565b82525050565b6000602082019050610ca36000830184610c7f565b92915050565b600060208284031215610cbf57610cbe6109f4565b5b6000610ccd84828501610a42565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610d1d57607f821691505b602082108103610d3057610d2f610cd6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610d7082610a97565b9150610d7b83610a97565b9250828201905080821115610d9357610d92610d36565b5b92915050565b6000610da482610a97565b9150610daf83610a97565b9250828203905081811115610dc757610dc6610d36565b5b9291505056fea26469706673582212203a2915fd5c001c66f4c7b80cc628a5c744ef975c2976672ed41298dbc89efc5764736f6c63430008130033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000ba1d9a70c21cda81000000000000000000000000000000000000000000000000000000000000000000000a50726f4361706974616c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045043415000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100b45760003560e01c80633eaaf86b116100715780633eaaf86b146101a35780636ebcf607146101c157806370a08231146101f157806395d89b4114610221578063a9059cbb1461023f578063dd62ed3e1461026f576100b4565b8063024c2ddd146100b957806306fdde03146100e9578063095ea7b31461010757806318160ddd1461013757806323b872dd14610155578063313ce56714610185575b600080fd5b6100d360048036038101906100ce9190610a57565b61029f565b6040516100e09190610ab0565b60405180910390f35b6100f16102c4565b6040516100fe9190610b5b565b60405180910390f35b610121600480360381019061011c9190610ba9565b610356565b60405161012e9190610c04565b60405180910390f35b61013f610448565b60405161014c9190610ab0565b60405180910390f35b61016f600480360381019061016a9190610c1f565b610452565b60405161017c9190610c04565b60405180910390f35b61018d6106e6565b60405161019a9190610c8e565b60405180910390f35b6101ab6106fd565b6040516101b89190610ab0565b60405180910390f35b6101db60048036038101906101d69190610ca9565b610703565b6040516101e89190610ab0565b60405180910390f35b61020b60048036038101906102069190610ca9565b61071b565b6040516102189190610ab0565b60405180910390f35b610229610763565b6040516102369190610b5b565b60405180910390f35b61025960048036038101906102549190610ba9565b6107f5565b6040516102669190610c04565b60405180910390f35b61028960048036038101906102849190610a57565b61096d565b6040516102969190610ab0565b60405180910390f35b6001602052816000526040600020602052806000526040600020600091509150505481565b6060600380546102d390610d05565b80601f01602080910402602001604051908101604052809291908181526020018280546102ff90610d05565b801561034c5780601f106103215761010080835404028352916020019161034c565b820191906000526020600020905b81548152906001019060200180831161032f57829003601f168201915b5050505050905090565b600081600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516104369190610ab0565b60405180910390a36001905092915050565b6000600254905090565b6000816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015801561051e575081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410155b801561052a5750600082115b156106da57816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461057d9190610d65565b92505081905550816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546105d29190610d99565b9250508190555081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546106659190610d99565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106c99190610ab0565b60405180910390a3600190506106df565b600090505b9392505050565b6000600560009054906101000a900460ff16905090565b60025481565b60006020528060005260406000206000915090505481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461077290610d05565b80601f016020809104026020016040519081016040528092919081815260200182805461079e90610d05565b80156107eb5780601f106107c0576101008083540402835291602001916107eb565b820191906000526020600020905b8154815290600101906020018083116107ce57829003601f168201915b5050505050905090565b6000816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101580156108455750600082115b1561096257816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546108989190610d99565b92505081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546108ed9190610d65565b925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109519190610ab0565b60405180910390a360019050610967565b600090505b92915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610a24826109f9565b9050919050565b610a3481610a19565b8114610a3f57600080fd5b50565b600081359050610a5181610a2b565b92915050565b60008060408385031215610a6e57610a6d6109f4565b5b6000610a7c85828601610a42565b9250506020610a8d85828601610a42565b9150509250929050565b6000819050919050565b610aaa81610a97565b82525050565b6000602082019050610ac56000830184610aa1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610b05578082015181840152602081019050610aea565b60008484015250505050565b6000601f19601f8301169050919050565b6000610b2d82610acb565b610b378185610ad6565b9350610b47818560208601610ae7565b610b5081610b11565b840191505092915050565b60006020820190508181036000830152610b758184610b22565b905092915050565b610b8681610a97565b8114610b9157600080fd5b50565b600081359050610ba381610b7d565b92915050565b60008060408385031215610bc057610bbf6109f4565b5b6000610bce85828601610a42565b9250506020610bdf85828601610b94565b9150509250929050565b60008115159050919050565b610bfe81610be9565b82525050565b6000602082019050610c196000830184610bf5565b92915050565b600080600060608486031215610c3857610c376109f4565b5b6000610c4686828701610a42565b9350506020610c5786828701610a42565b9250506040610c6886828701610b94565b9150509250925092565b600060ff82169050919050565b610c8881610c72565b82525050565b6000602082019050610ca36000830184610c7f565b92915050565b600060208284031215610cbf57610cbe6109f4565b5b6000610ccd84828501610a42565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610d1d57607f821691505b602082108103610d3057610d2f610cd6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610d7082610a97565b9150610d7b83610a97565b9250828201905080821115610d9357610d92610d36565b5b92915050565b6000610da482610a97565b9150610daf83610a97565b9250828203905081811115610dc757610dc6610d36565b5b9291505056fea26469706673582212203a2915fd5c001c66f4c7b80cc628a5c744ef975c2976672ed41298dbc89efc5764736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000ba1d9a70c21cda81000000000000000000000000000000000000000000000000000000000000000000000a50726f4361706974616c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045043415000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): ProCapital
Arg [1] : symbol (string): PCAP
Arg [2] : decimals (uint8): 18
Arg [3] : initialSupply (uint256): 225000000000000000000000000
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000ba1d9a70c21cda81000000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 50726f4361706974616c00000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 5043415000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
5325:1424:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3173:68;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5809:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4837:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5221:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3999:706;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6661:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3248:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3121:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4713:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6011:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3284:707;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5063:146;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3173:68;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5809:83::-;5846:13;5879:5;5872:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5809:83;:::o;4837:218::-;4904:12;4965:6;4929:11;:23;4941:10;4929:23;;;;;;;;;;;;;;;:33;4953:8;4929:33;;;;;;;;;;;;;;;:42;;;;5008:8;4987:38;;4996:10;4987:38;;;5018:6;4987:38;;;;;;:::i;:::-;;;;;;;;5043:4;5036:11;;4837:218;;;;:::o;5221:97::-;5265:13;5298:12;;5291:19;;5221:97;:::o;3999:706::-;4081:12;4366:6;4346:9;:16;4356:5;4346:16;;;;;;;;;;;;;;;;:26;;:70;;;;;4410:6;4376:11;:18;4388:5;4376:18;;;;;;;;;;;;;;;:30;4395:10;4376:30;;;;;;;;;;;;;;;;:40;;4346:70;:84;;;;;4429:1;4420:6;:10;4346:84;4342:356;;;4465:6;4447:9;:14;4457:3;4447:14;;;;;;;;;;;;;;;;:24;;;;;;;:::i;:::-;;;;;;;;4506:6;4486:9;:16;4496:5;4486:16;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;4561:6;4527:11;:18;4539:5;4527:18;;;;;;;;;;;;;;;:30;4546:10;4527:30;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;4603:3;4587:28;;4596:5;4587:28;;;4608:6;4587:28;;;;;;:::i;:::-;;;;;;;;4637:4;4630:11;;;;4342:356;4681:5;4674:12;;3999:706;;;;;;:::o;6661:83::-;6702:5;6727:9;;;;;;;;;;;6720:16;;6661:83;:::o;3248:27::-;;;;:::o;3121:45::-;;;;;;;;;;;;;;;;;:::o;4713:116::-;4769:15;4804:9;:17;4814:6;4804:17;;;;;;;;;;;;;;;;4797:24;;4713:116;;;:::o;6011:87::-;6050:13;6083:7;6076:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6011:87;:::o;3284:707::-;3347:12;3740:6;3715:9;:21;3725:10;3715:21;;;;;;;;;;;;;;;;:31;;:45;;;;;3759:1;3750:6;:10;3715:45;3711:273;;;3802:6;3777:9;:21;3787:10;3777:21;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;3841:6;3823:9;:14;3833:3;3823:14;;;;;;;;;;;;;;;;:24;;;;;;;:::i;:::-;;;;;;;;3888:3;3867:33;;3876:10;3867:33;;;3893:6;3867:33;;;;;;:::i;:::-;;;;;;;;3922:4;3915:11;;;;3711:273;3967:5;3960:12;;3284:707;;;;;:::o;5063:146::-;5137:17;5172:11;:19;5184:6;5172:19;;;;;;;;;;;;;;;:29;5192:8;5172:29;;;;;;;;;;;;;;;;5165:36;;5063:146;;;;:::o;88:117:1:-;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:474::-;909:6;917;966:2;954:9;945:7;941:23;937:32;934:119;;;972:79;;:::i;:::-;934:119;1092:1;1117:53;1162:7;1153:6;1142:9;1138:22;1117:53;:::i;:::-;1107:63;;1063:117;1219:2;1245:53;1290:7;1281:6;1270:9;1266:22;1245:53;:::i;:::-;1235:63;;1190:118;841:474;;;;;:::o;1321:77::-;1358:7;1387:5;1376:16;;1321:77;;;:::o;1404:118::-;1491:24;1509:5;1491:24;:::i;:::-;1486:3;1479:37;1404:118;;:::o;1528:222::-;1621:4;1659:2;1648:9;1644:18;1636:26;;1672:71;1740:1;1729:9;1725:17;1716:6;1672:71;:::i;:::-;1528:222;;;;:::o;1756:99::-;1808:6;1842:5;1836:12;1826:22;;1756:99;;;:::o;1861:169::-;1945:11;1979:6;1974:3;1967:19;2019:4;2014:3;2010:14;1995:29;;1861:169;;;;:::o;2036:246::-;2117:1;2127:113;2141:6;2138:1;2135:13;2127:113;;;2226:1;2221:3;2217:11;2211:18;2207:1;2202:3;2198:11;2191:39;2163:2;2160:1;2156:10;2151:15;;2127:113;;;2274:1;2265:6;2260:3;2256:16;2249:27;2098:184;2036:246;;;:::o;2288:102::-;2329:6;2380:2;2376:7;2371:2;2364:5;2360:14;2356:28;2346:38;;2288:102;;;:::o;2396:377::-;2484:3;2512:39;2545:5;2512:39;:::i;:::-;2567:71;2631:6;2626:3;2567:71;:::i;:::-;2560:78;;2647:65;2705:6;2700:3;2693:4;2686:5;2682:16;2647:65;:::i;:::-;2737:29;2759:6;2737:29;:::i;:::-;2732:3;2728:39;2721:46;;2488:285;2396:377;;;;:::o;2779:313::-;2892:4;2930:2;2919:9;2915:18;2907:26;;2979:9;2973:4;2969:20;2965:1;2954:9;2950:17;2943:47;3007:78;3080:4;3071:6;3007:78;:::i;:::-;2999:86;;2779:313;;;;:::o;3098:122::-;3171:24;3189:5;3171:24;:::i;:::-;3164:5;3161:35;3151:63;;3210:1;3207;3200:12;3151:63;3098:122;:::o;3226:139::-;3272:5;3310:6;3297:20;3288:29;;3326:33;3353:5;3326:33;:::i;:::-;3226:139;;;;:::o;3371:474::-;3439:6;3447;3496:2;3484:9;3475:7;3471:23;3467:32;3464:119;;;3502:79;;:::i;:::-;3464:119;3622:1;3647:53;3692:7;3683:6;3672:9;3668:22;3647:53;:::i;:::-;3637:63;;3593:117;3749:2;3775:53;3820:7;3811:6;3800:9;3796:22;3775:53;:::i;:::-;3765:63;;3720:118;3371:474;;;;;:::o;3851:90::-;3885:7;3928:5;3921:13;3914:21;3903:32;;3851:90;;;:::o;3947:109::-;4028:21;4043:5;4028:21;:::i;:::-;4023:3;4016:34;3947:109;;:::o;4062:210::-;4149:4;4187:2;4176:9;4172:18;4164:26;;4200:65;4262:1;4251:9;4247:17;4238:6;4200:65;:::i;:::-;4062:210;;;;:::o;4278:619::-;4355:6;4363;4371;4420:2;4408:9;4399:7;4395:23;4391:32;4388:119;;;4426:79;;:::i;:::-;4388:119;4546:1;4571:53;4616:7;4607:6;4596:9;4592:22;4571:53;:::i;:::-;4561:63;;4517:117;4673:2;4699:53;4744:7;4735:6;4724:9;4720:22;4699:53;:::i;:::-;4689:63;;4644:118;4801:2;4827:53;4872:7;4863:6;4852:9;4848:22;4827:53;:::i;:::-;4817:63;;4772:118;4278:619;;;;;:::o;4903:86::-;4938:7;4978:4;4971:5;4967:16;4956:27;;4903:86;;;:::o;4995:112::-;5078:22;5094:5;5078:22;:::i;:::-;5073:3;5066:35;4995:112;;:::o;5113:214::-;5202:4;5240:2;5229:9;5225:18;5217:26;;5253:67;5317:1;5306:9;5302:17;5293:6;5253:67;:::i;:::-;5113:214;;;;:::o;5333:329::-;5392:6;5441:2;5429:9;5420:7;5416:23;5412:32;5409:119;;;5447:79;;:::i;:::-;5409:119;5567:1;5592:53;5637:7;5628:6;5617:9;5613:22;5592:53;:::i;:::-;5582:63;;5538:117;5333:329;;;;:::o;5668:180::-;5716:77;5713:1;5706:88;5813:4;5810:1;5803:15;5837:4;5834:1;5827:15;5854:320;5898:6;5935:1;5929:4;5925:12;5915:22;;5982:1;5976:4;5972:12;6003:18;5993:81;;6059:4;6051:6;6047:17;6037:27;;5993:81;6121:2;6113:6;6110:14;6090:18;6087:38;6084:84;;6140:18;;:::i;:::-;6084:84;5905:269;5854:320;;;:::o;6180:180::-;6228:77;6225:1;6218:88;6325:4;6322:1;6315:15;6349:4;6346:1;6339:15;6366:191;6406:3;6425:20;6443:1;6425:20;:::i;:::-;6420:25;;6459:20;6477:1;6459:20;:::i;:::-;6454:25;;6502:1;6499;6495:9;6488:16;;6523:3;6520:1;6517:10;6514:36;;;6530:18;;:::i;:::-;6514:36;6366:191;;;;:::o;6563:194::-;6603:4;6623:20;6641:1;6623:20;:::i;:::-;6618:25;;6657:20;6675:1;6657:20;:::i;:::-;6652:25;;6701:1;6698;6694:9;6686:17;;6725:1;6719:4;6716:11;6713:37;;;6730:18;;:::i;:::-;6713:37;6563:194;;;;:::o
Swarm Source
ipfs://3a2915fd5c001c66f4c7b80cc628a5c744ef975c2976672ed41298dbc89efc57
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.