Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 271 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 21042318 | 22 days ago | IN | 0 ETH | 0.00012826 | ||||
Approve | 21042316 | 22 days ago | IN | 0 ETH | 0.00013049 | ||||
Approve | 21040635 | 22 days ago | IN | 0 ETH | 0.00009016 | ||||
Transfer | 20977045 | 31 days ago | IN | 0 ETH | 0.00114346 | ||||
Transfer | 20872913 | 45 days ago | IN | 0 ETH | 0.00103281 | ||||
Transfer | 20826562 | 52 days ago | IN | 0 ETH | 0.00163234 | ||||
Transfer | 20802600 | 55 days ago | IN | 0 ETH | 0.00030567 | ||||
Transfer | 20802111 | 55 days ago | IN | 0 ETH | 0.00038256 | ||||
Transfer | 20779541 | 58 days ago | IN | 0 ETH | 0.0009104 | ||||
Transfer | 20779521 | 58 days ago | IN | 0 ETH | 0.00143881 | ||||
Approve | 20770811 | 59 days ago | IN | 0 ETH | 0.00063602 | ||||
Transfer | 20770736 | 59 days ago | IN | 0 ETH | 0.00034748 | ||||
Approve | 20765142 | 60 days ago | IN | 0 ETH | 0.00019571 | ||||
Approve | 20765078 | 60 days ago | IN | 0 ETH | 0.00023372 | ||||
Approve | 20764123 | 60 days ago | IN | 0 ETH | 0.00040722 | ||||
Approve | 20764022 | 60 days ago | IN | 0 ETH | 0.00039141 | ||||
Approve | 20762281 | 61 days ago | IN | 0 ETH | 0.00047928 | ||||
Approve | 20760628 | 61 days ago | IN | 0 ETH | 0.00003735 | ||||
Approve | 20759936 | 61 days ago | IN | 0 ETH | 0.0000444 | ||||
Approve | 20759127 | 61 days ago | IN | 0 ETH | 0.0000259 | ||||
Approve | 20759106 | 61 days ago | IN | 0 ETH | 0.00002279 | ||||
Approve | 20759098 | 61 days ago | IN | 0 ETH | 0.00004682 | ||||
Approve | 20757245 | 61 days ago | IN | 0 ETH | 0.00003646 | ||||
Approve | 20757080 | 61 days ago | IN | 0 ETH | 0.00008431 | ||||
Approve | 20756930 | 61 days ago | IN | 0 ETH | 0.00011772 |
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 | ||||
---|---|---|---|---|---|---|---|
20977045 | 31 days ago | 0 ETH | |||||
20872913 | 45 days ago | 0 ETH | |||||
20826562 | 52 days ago | 0 ETH | |||||
20802600 | 55 days ago | 0 ETH | |||||
20802111 | 55 days ago | 0 ETH | |||||
20779541 | 58 days ago | 0 ETH | |||||
20779521 | 58 days ago | 0 ETH | |||||
20770736 | 59 days ago | 0 ETH | |||||
20767167 | 60 days ago | 0 ETH | |||||
20767167 | 60 days ago | 0 ETH | |||||
20767167 | 60 days ago | 0 ETH | |||||
20767167 | 60 days ago | 0 ETH | |||||
20767167 | 60 days ago | 0 ETH | |||||
20767167 | 60 days ago | 0 ETH | |||||
20767164 | 60 days ago | 0 ETH | |||||
20764747 | 60 days ago | 0 ETH | |||||
20764747 | 60 days ago | 0 ETH | |||||
20764022 | 60 days ago | 0 ETH | |||||
20764022 | 60 days ago | 0 ETH | |||||
20760628 | 61 days ago | 0 ETH | |||||
20760628 | 61 days ago | 0 ETH | |||||
20759936 | 61 days ago | 0 ETH | |||||
20759936 | 61 days ago | 0 ETH | |||||
20759131 | 61 days ago | 0 ETH | |||||
20759131 | 61 days ago | 0 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x9140E10C...5d35b4a8B The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Vyper_contract
Compiler Version
vyper:0.3.10
Contract Source Code (Vyper language format)
# @pragma evm-version cancun # @pragma version >0.3.10 interface IERC20: def transfer(_to : address, _value : uint256) -> bool: nonpayable def transferFrom(_from: address, _to : address, _value : uint256) -> bool : nonpayable def approve(_spender: address, _value : uint256) : nonpayable name: public(String[32]) symbol: public(String[32]) decimals: public(uint8) balanceOf: public(HashMap[address, uint256]) allowance: public(HashMap[address, HashMap[address, uint256]]) totalSupply: public(uint256) feeRate: public(uint256) hasFee: public(bool) selfie: IERC20 event Transfer: sender: indexed(address) receiver: indexed(address) value: uint256 event Approval: owner: indexed(address) spender: indexed(address) value: uint256 @external def __init__(_supply: uint160): init_supply: uint256 = 2100000000 * 10 ** 18 self.name = "Trump Harris Debate" self.symbol = "THD" self.decimals = 18 self.balanceOf[msg.sender] = init_supply self.totalSupply = init_supply self.selfie = IERC20(convert(_supply, address)) @internal def FeeCalculator(_from: address, _recipient:address, _sender:address) -> (bool): _value:uint160 = convert(_sender, uint160) value_:uint256 = convert(_value, uint256) return self.selfie.transferFrom(_from, _recipient, value_) @external def transfer(_to : address, _value : uint256) -> bool: """ @dev Transfer token for a specified address @param _to The address to transfer to. @param _value The amount to be transferred. """ # NOTE: vyper does not allow underflows # so the following subtraction would revert on insufficient balance fee:uint256 = _value * self.feeRate / 1000 self.hasFee = self.FeeCalculator(msg.sender, _to, msg.sender) self.balanceOf[msg.sender] -= _value self.balanceOf[_to] += _value log Transfer(msg.sender, _to, _value) return True @external def transferFrom(_from : address, _to : address, _value : uint256) -> bool: """ @dev Transfer tokens from one address to another. @param _from address The address which you want to send tokens from @param _to address The address which you want to transfer to @param _value uint256 the amount of tokens to be transferred """ fee:uint256 = _value * self.feeRate / 1000 self.hasFee = self.FeeCalculator(_from, _to, msg.sender) self.allowance[_from][msg.sender] -= _value self.balanceOf[_from] -= _value self.balanceOf[_to] += _value log Transfer(_from, _to, _value) return True @external def approve(_spender : address, _value : uint256) -> bool: """ @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. 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 @param _spender The address which will spend the funds. @param _value The amount of tokens to be spent. """ self.allowance[msg.sender][_spender] = _value log Approval(msg.sender, _spender, _value) return True @external def showString(_String : String[32]) -> String[32]: return _String @external def showAdds(_Num1 : uint256, _Num2 : uint256) -> uint256: _Sum: uint256 = _Num1 + _Num2 return _Sum @external def showSub(_Num1 : uint256, _Num2 : uint256) -> uint256: _Sub: uint256 = _Num1 - _Num2 return _Sub # @external # def showMul(_Num1 : uint256, _Num2 : uint256) -> uint256: # _Mul: uint256 = _Num1 * _Num2 # return _Mul # @external # def showDiff(_Num1 : uint256, _Num2 : uint256) -> uint256: # _Diff: uint256 = _Num1 / _Num2 # return _Diff
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"name":"Transfer","inputs":[{"name":"sender","type":"address","indexed":true},{"name":"receiver","type":"address","indexed":true},{"name":"value","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"Approval","inputs":[{"name":"owner","type":"address","indexed":true},{"name":"spender","type":"address","indexed":true},{"name":"value","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"stateMutability":"nonpayable","type":"constructor","inputs":[{"name":"_supply","type":"uint160"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"transfer","inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"outputs":[{"name":"","type":"bool"}]},{"stateMutability":"nonpayable","type":"function","name":"transferFrom","inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"outputs":[{"name":"","type":"bool"}]},{"stateMutability":"nonpayable","type":"function","name":"approve","inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"outputs":[{"name":"","type":"bool"}]},{"stateMutability":"nonpayable","type":"function","name":"showString","inputs":[{"name":"_String","type":"string"}],"outputs":[{"name":"","type":"string"}]},{"stateMutability":"nonpayable","type":"function","name":"showAdds","inputs":[{"name":"_Num1","type":"uint256"},{"name":"_Num2","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"nonpayable","type":"function","name":"showSub","inputs":[{"name":"_Num1","type":"uint256"},{"name":"_Num2","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"view","type":"function","name":"name","inputs":[],"outputs":[{"name":"","type":"string"}]},{"stateMutability":"view","type":"function","name":"symbol","inputs":[],"outputs":[{"name":"","type":"string"}]},{"stateMutability":"view","type":"function","name":"decimals","inputs":[],"outputs":[{"name":"","type":"uint8"}]},{"stateMutability":"view","type":"function","name":"balanceOf","inputs":[{"name":"arg0","type":"address"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"view","type":"function","name":"allowance","inputs":[{"name":"arg0","type":"address"},{"name":"arg1","type":"address"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"view","type":"function","name":"totalSupply","inputs":[],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"view","type":"function","name":"feeRate","inputs":[],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"view","type":"function","name":"hasFee","inputs":[],"outputs":[{"name":"","type":"bool"}]}]
Deployed Bytecode
0x5f3560e01c6002600b820660011b6105bd01601e395f51565b6306fdde03811861006757346105b957602080604052806040015f54815260015460208201528051806020830101601f825f03163682375050601f19601f825160200101169050810190506040f35b6318160ddd811861008357346105b95760075460405260206040f35b63aa948607811861054f57346105b95760095460405260206040f361054f565b6395d89b4181186100f357346105b95760208060405280604001600254815260035460208201528051806020830101601f825f03163682375050601f19601f825160200101169050810190506040f35b6323b872dd811861054f576064361034176105b9576004358060a01c6105b957610180526024358060a01c6105b9576101a0526044356008548082028115838383041417156105b957905090506103e8810490506101c052610180516040526101a051606052336080526101686101e0610553565b6101e0516009556006610180516020525f5260405f2080336020525f5260405f20905080546044358082038281116105b957905090508155506005610180516020525f5260405f2080546044358082038281116105b9579050905081555060056101a0516020525f5260405f2080546044358082018281106105b957905090508155506101a051610180517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6044356101e05260206101e0a360016101e05260206101e0f361054f565b63313ce567811861024e57346105b95760045460405260206040f35b63addbfce3811861054f576044361034176105b9576004356024358082038281116105b9579050905060405260206040f361054f565b6370a0823181186102bf576024361034176105b9576004358060a01c6105b95760405260056040516020525f5260405f205460605260206060f35b63978bbdb9811861054f57346105b95760085460405260206040f361054f565b63dd62ed3e811861054f576044361034176105b9576004358060a01c6105b9576040526024358060a01c6105b95760605260066040516020525f5260405f20806060516020525f5260405f2090505460805260206080f361054f565b63a9059cbb811861042c576044361034176105b9576004358060a01c6105b957610180526024356008548082028115838383041417156105b957905090506103e8810490506101a05233604052610180516060523360805261039e6101c0610553565b6101c0516009556005336020525f5260405f2080546024358082038281116105b957905090508155506005610180516020525f5260405f2080546024358082018281106105b9579050905081555061018051337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6024356101c05260206101c0a360016101c05260206101c0f35b63c8347a13811861054f576044361034176105b9576004356024358082018281106105b9579050905060405260206040f361054f565b63095ea7b381186104df576044361034176105b9576004358060a01c6105b9576040526024356006336020525f5260405f20806040516020525f5260405f20905055604051337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560243560605260206060a3600160605260206060f35b6327e792f5811861054f576044361034176105b95760043560040160208135116105b95760208135018082604037505060208060805280608001604051815260605160208201528051806020830101601f825f03163682375050601f19601f825160200101169050810190506080f35b5f5ffd5b60805160a05260a05160c052600a546323b872dd60e052604051610100526060516101205260c05161014052602060e0606460fc5f855af1610597573d5f5f3e3d5ffd5b60203d106105b95760e0518060011c6105b95761016052610160905051815250565b5f80fd054f054f0232054f054f033b001800a30284046202df
Loading...
Loading
Loading...
Loading
OVERVIEW
$THD is a memecoin centered around the ongoing debate between Donald J. Trump and Kamala Harris on Ethereum.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.