ETH Price: $2,703.12 (-0.68%)

Contract

0xee53FC2c96Ba562823D23B61260E747E1511d79f
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve210644042024-10-28 13:22:59108 days ago1730121779IN
0xee53FC2c...E1511d79f
0 ETH0.000592112.04951758
Approve210568092024-10-27 11:57:11109 days ago1730030231IN
0xee53FC2c...E1511d79f
0 ETH0.000247385.03429276
Approve210471612024-10-26 3:38:35111 days ago1729913915IN
0xee53FC2c...E1511d79f
0 ETH0.000215264.381875
Approve210469842024-10-26 3:02:47111 days ago1729911767IN
0xee53FC2c...E1511d79f
0 ETH0.000249765.05689358
Approve210445812024-10-25 18:59:59111 days ago1729882799IN
0xee53FC2c...E1511d79f
0 ETH0.000464579.40602387
Approve210443982024-10-25 18:23:11111 days ago1729880591IN
0xee53FC2c...E1511d79f
0 ETH0.0009234418.6965244
Approve210398682024-10-25 3:13:47112 days ago1729826027IN
0xee53FC2c...E1511d79f
0 ETH0.000291315.89822403
Approve210398652024-10-25 3:12:59112 days ago1729825979IN
0xee53FC2c...E1511d79f
0 ETH0.000270895.48471663

Latest 14 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
210568172024-10-27 11:58:47109 days ago1730030327
0xee53FC2c...E1511d79f
0.02309604 ETH
210568172024-10-27 11:58:47109 days ago1730030327
0xee53FC2c...E1511d79f
0.02309604 ETH
210471652024-10-26 3:39:23111 days ago1729913963
0xee53FC2c...E1511d79f
0.02529222 ETH
210471652024-10-26 3:39:23111 days ago1729913963
0xee53FC2c...E1511d79f
0.02529222 ETH
210469872024-10-26 3:03:23111 days ago1729911803
0xee53FC2c...E1511d79f
0.02746837 ETH
210469872024-10-26 3:03:23111 days ago1729911803
0xee53FC2c...E1511d79f
0.02746837 ETH
210446822024-10-25 19:20:23111 days ago1729884023
0xee53FC2c...E1511d79f
0.0258724 ETH
210446822024-10-25 19:20:23111 days ago1729884023
0xee53FC2c...E1511d79f
0.0258724 ETH
210444012024-10-25 18:23:47111 days ago1729880627
0xee53FC2c...E1511d79f
0.04163371 ETH
210444012024-10-25 18:23:47111 days ago1729880627
0xee53FC2c...E1511d79f
0.04163371 ETH
210397632024-10-25 2:52:35112 days ago1729824755
0xee53FC2c...E1511d79f
1 ETH
210397632024-10-25 2:52:35112 days ago1729824755
0xee53FC2c...E1511d79f
 Contract Creation0 ETH
210397632024-10-25 2:52:35112 days ago1729824755
0xee53FC2c...E1511d79f
1 ETH
210397632024-10-25 2:52:35112 days ago1729824755  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x4c597846...8a5D5D17c
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
TokenProxy

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
shanghai EvmVersion
File 1 of 1 : TokenProxy.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

/*    

               ########      #####               
                ###    #   #####                 
                  ###   ######                   
                   ###   ###                     
                     ###   ##                    
                     ####   ##                   
                   #### ##    ##                 
                 #####    ##   ##                
               #####       ########              
                                                 
https://x.com/elonmusk/status/1832194200839823817


┌──────────────────────────────────────────────────────────────────────────────────────────────────────────┐
│     __  __           _         _             _______         ______                      _               │
│    |  \/  |         | |       | |           |__   __|       |  ____|                    (_)              │
│    | \  / | __ _  __| | ___   | |__  _   _     | | __ ___  _| |__ __ _ _ __ _ __ ___     _ _ __   __ _   │
│    | |\/| |/ _` |/ _|` |/ _ \  | '_ \| | | |    | |/ _` | / /  __/ _` | '__| '_ ` _ \   | | '_ \ / _` |  │
│    | |  | | (_| | (_| |  __/  | |_) | |_| |    | | (_| |>  <| | | (_| | |  | | | | | |  | | | | | (_| |  │
│    |_|  |_|\__,_|\__,_|\___|  |_.__/ \__, |    |_|\__,_/_/\_\_|  \__,_|_|  |_| |_| |_|(_)_|_| |_|\__, |  │
│                                       __/ |                                                      __/ |   │
│                                      |___/                                                      |___/    │
│                                                                                                          │
│                                             taxfarm.ing                                                  │
│                                                                                                          │
└──────────────────────────────────────────────────────────────────────────────────────────────────────────┘

*/


contract TokenProxy {
    // constant stored in runtime bytecode to ensure contract uniqueness and be able to verify it on etherscan with custom comments
    uint256 public constant uniqueId = 0x1000200000000000000000000000000000000000000000000000000000000007; // use a 32 bytes uint to ensure consistency of PUSH32 opcode, 1st byte to ensure 32 bytes length, 2 next bytes are used as a placeholder for factory version and the next 29 bytes are used as a placeholder for unique id

    address public immutable tokenLogic;

    constructor(address _tokenLogic) {
        tokenLogic = _tokenLogic;
    }

    // delegate functions call to the token logic contract
    fallback() external payable {
        address dest = tokenLogic;
        
        assembly {
            calldatacopy(0, 0, calldatasize())

            let result := delegatecall(gas(), dest, 0, calldatasize(), 0, 0)
            returndatacopy(0, 0, returndatasize())

            switch result
            case 0 {
                revert(0, returndatasize())
            }
            default {
                return(0, returndatasize())
            }
        }
    }
}

Settings
{
  "evmVersion": "shanghai",
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_tokenLogic","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"tokenLogic","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniqueId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

Deployed Bytecode

0x60806040526004361061002c575f3560e01c8063629c52a914610070578063d77177501461009a5761002d565b5b5f7f000000000000000000000000e69c9d1ba9d5242f87d4f26d3516df798f663d2d9050365f80375f80365f845af43d5f803e805f811461006c573d5ff35b3d5ffd5b34801561007b575f80fd5b506100846100c4565b6040516100919190610124565b60405180910390f35b3480156100a5575f80fd5b506100ae6100e8565b6040516100bb919061017c565b60405180910390f35b7f100020000000000000000000000000000000000000000000000000000000000781565b7f000000000000000000000000e69c9d1ba9d5242f87d4f26d3516df798f663d2d81565b5f819050919050565b61011e8161010c565b82525050565b5f6020820190506101375f830184610115565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6101668261013d565b9050919050565b6101768161015c565b82525050565b5f60208201905061018f5f83018461016d565b9291505056fea26469706673582212208caaf51ee3f849b605f6e63e26072b5c076726d07d40423546787cda62f1dc5b64736f6c63430008140033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ 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.