ETH Price: $3,299.25 (-0.93%)

Contract

0x98E64bEE2BA4A45b75f4614A734cC9D4bA0EE26c
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer119914412021-03-07 12:47:511386 days ago1615121271IN
0x98E64bEE...4bA0EE26c
0 ETH0.0034480389
Transfer119443182021-02-28 6:46:041394 days ago1614494764IN
0x98E64bEE...4bA0EE26c
0 ETH0.00492023127
Transfer119134412021-02-23 13:00:251398 days ago1614085225IN
0x98E64bEE...4bA0EE26c
0 ETH0.02328394601

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
112723592020-11-17 1:10:241497 days ago1605575424  Contract Creation0 ETH
Loading...
Loading

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

Contract Name:
Proxy

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2020-11-17
*/

pragma solidity 0.6.12;

contract Proxy {
    // Code position in storage is keccak256("PROXIABLE") = "0xc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7"
    uint256 constant PROXY_MEM_SLOT = 0xc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7;

    constructor(address contractLogic) public {
        // Verify a valid address was passed in
        require(contractLogic != address(0), "Contract Logic cannot be 0x0");

        // save the code address
        assembly {
            // solium-disable-line
            sstore(PROXY_MEM_SLOT, contractLogic)
        }
    }

    fallback() external payable {
        assembly {
            // solium-disable-line
            let contractLogic := sload(PROXY_MEM_SLOT)
            let ptr := mload(0x40)
            calldatacopy(ptr, 0x0, calldatasize())
            let success := delegatecall(
                gas(),
                contractLogic,
                ptr,
                calldatasize(),
                0,
                0
            )
            let retSz := returndatasize()
            returndatacopy(ptr, 0, retSz)
            switch success
                case 0 {
                    revert(ptr, retSz)
                }
                default {
                    return(ptr, retSz)
                }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"contractLogic","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]

Deployed Bytecode

0x60806040527fc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf75460405136600082376000803683855af491503d806000833e8280156048578183f35b8183fdfea2646970667358221220551b1350f755851d728f025e1e78d87c1a8cf67ba97458c753f6e1b37bb5145464736f6c634300060c0033

Deployed Bytecode Sourcemap

27:1343:0:-:0;;;754:14;748:21;800:4;794:11;842:14;837:3;832;819:38;1048:1;1028;995:14;973:3;941:13;917:5;886:178;871:193;;1091:16;1144:5;1141:1;1136:3;1121:29;1171:7;1196:67;;;;1324:5;1319:3;1312:18;1196:67;1238:5;1233:3;1226:18

Swarm Source

ipfs://551b1350f755851d728f025e1e78d87c1a8cf67ba97458c753f6e1b37bb51454

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.