ETH Price: $3,398.14 (+1.91%)

Contract

0xaEe1b50C7D695C56E096d8670E8fD8e908185A91
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Un Pause162912432022-12-29 15:15:11730 days ago1672326911IN
0xaEe1b50C...908185A91
0 ETH0.0010718723.84903211
To Pause162912402022-12-29 15:14:35730 days ago1672326875IN
0xaEe1b50C...908185A91
0 ETH0.0014556121.79360734
Un Pause162912372022-12-29 15:13:59730 days ago1672326839IN
0xaEe1b50C...908185A91
0 ETH0.0009384620.88083649
To Pause162912362022-12-29 15:13:47730 days ago1672326827IN
0xaEe1b50C...908185A91
0 ETH0.0015451223.13376828
Un Pause162912322022-12-29 15:12:59730 days ago1672326779IN
0xaEe1b50C...908185A91
0 ETH0.001037223.07772887
To Pause162912292022-12-29 15:12:23730 days ago1672326743IN
0xaEe1b50C...908185A91
0 ETH0.001577123.61246865
Un Pause162912252022-12-29 15:11:23730 days ago1672326683IN
0xaEe1b50C...908185A91
0 ETH0.0010009222.27049221
To Pause162912242022-12-29 15:11:11730 days ago1672326671IN
0xaEe1b50C...908185A91
0 ETH0.0015011822.47585775
Un Pause162912202022-12-29 15:10:23730 days ago1672326623IN
0xaEe1b50C...908185A91
0 ETH0.0010876424.20008011
To Pause162912192022-12-29 15:10:11730 days ago1672326611IN
0xaEe1b50C...908185A91
0 ETH0.0016163424.20008011
Un Pause162912162022-12-29 15:09:35730 days ago1672326575IN
0xaEe1b50C...908185A91
0 ETH0.0011752526.14937063
To Pause162912152022-12-29 15:09:23730 days ago1672326563IN
0xaEe1b50C...908185A91
0 ETH0.0015099822.60755326
Un Pause162912122022-12-29 15:08:47730 days ago1672326527IN
0xaEe1b50C...908185A91
0 ETH0.0010686623.77759134
To Pause162912112022-12-29 15:08:35730 days ago1672326515IN
0xaEe1b50C...908185A91
0 ETH0.0016778225.12051914
Un Pause162912082022-12-29 15:07:59730 days ago1672326479IN
0xaEe1b50C...908185A91
0 ETH0.0012089126.89826957
To Pause162912072022-12-29 15:07:47730 days ago1672326467IN
0xaEe1b50C...908185A91
0 ETH0.00181327.14444511
Un Pause162912042022-12-29 15:07:11730 days ago1672326431IN
0xaEe1b50C...908185A91
0 ETH0.0012363727.50931081
To Pause162912032022-12-29 15:06:59730 days ago1672326419IN
0xaEe1b50C...908185A91
0 ETH0.0018110127.11471397
Un Pause162912002022-12-29 15:06:23730 days ago1672326383IN
0xaEe1b50C...908185A91
0 ETH0.001364630.36229183
To Pause162911992022-12-29 15:06:11730 days ago1672326371IN
0xaEe1b50C...908185A91
0 ETH0.002103231.48938868
Un Pause162911952022-12-29 15:05:23730 days ago1672326323IN
0xaEe1b50C...908185A91
0 ETH0.0013800230.70537441
To Pause162911942022-12-29 15:05:11730 days ago1672326311IN
0xaEe1b50C...908185A91
0 ETH0.002356335.27880544
Un Pause162911862022-12-29 15:03:35730 days ago1672326215IN
0xaEe1b50C...908185A91
0 ETH0.0019550943.50063957
To Pause162911852022-12-29 15:03:23730 days ago1672326203IN
0xaEe1b50C...908185A91
0 ETH0.0028699242.96875831
Un Pause162911842022-12-29 15:03:11730 days ago1672326191IN
0xaEe1b50C...908185A91
0 ETH0.0018963942.19453593
View all transactions

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
153003192022-08-08 7:48:36874 days ago1659944916
0xaEe1b50C...908185A91
 Contract Creation0 ETH
153003192022-08-08 7:48:36874 days ago1659944916  Contract Creation0 ETH
Loading...
Loading

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

Contract Name:
YieldsterVaultProxy

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 100 runs

Other Settings:
petersburg EvmVersion, Unlicense license
/**
 *Submitted for verification at Etherscan.io on 2022-07-16
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;

/// @title IProxy - Helper interface to access masterCopy of the Proxy on-chain
/// @author Richard Meissner - <[email protected]>
interface IProxy {
    function masterCopy() external view returns (address);
}

/// @title YieldsterVaultProxy - Generic proxy contract allows to execute all transactions applying the code of a master contract.
/// @author Stefan George - <[email protected]>
/// @author Richard Meissner - <[email protected]>
contract YieldsterVaultProxy {
    // masterCopy always needs to be first declared variable, to ensure that it is at the same location in the contracts to which calls are delegated.
    // To reduce deployment costs this variable is internal and needs to be retrieved via `getStorageAt`
    address internal masterCopy;

    /// @dev Constructor function sets address of master copy contract.
    /// @param _masterCopy Master copy address.
    constructor(address _masterCopy)  {
        require(
            _masterCopy != address(0),
            "Invalid master copy address provided"
        );
        masterCopy = _masterCopy;
    }

    /// @dev Fallback function forwards all transactions and returns all received return data.
    fallback() external payable {
        // solium-disable-next-line security/no-inline-assembly
        assembly {
            let _masterCopy := and(
                sload(0),
                0xffffffffffffffffffffffffffffffffffffffff
            )
            // 0xa619486e == keccak("masterCopy()"). The value is right padded to 32-bytes with 0s
            if eq(
                calldataload(0),
                0xa619486e00000000000000000000000000000000000000000000000000000000
            ) {
                mstore(0, _masterCopy)
                return(0, 0x20)
            }
            calldatacopy(0, 0, calldatasize())
            let success := delegatecall(
                gas(),
                _masterCopy,
                0,
                calldatasize(),
                0,
                0
            )
            returndatacopy(0, 0, returndatasize())
            if eq(success, 0) {
                revert(0, returndatasize())
            }
            return(0, returndatasize())
        }
    }
}

Contract Security Audit

Contract ABI

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

Deployed Bytecode

0x6080604052600080546001600160a01b0316632cf35bc960e11b823501602757808252602082f35b3682833781823684845af490503d82833e806040573d82fd5b503d81f3fea26469706673582212203b47fb19c43088d22b9a2ea227e6ef92d3ba52c14f352f06ff3b47a6283ffa9064736f6c634300080d0033

Deployed Bytecode Sourcemap

510:1809:0:-:0;;;1440:1;1434:8;;-1:-1:-1;;;;;1412:106:0;-1:-1:-1;;;1656:15:0;;1635:136;1632:229;;1801:11;1440:1;1791:22;1841:4;1440:1;1831:15;1632:229;1894:14;1440:1;;1875:34;1440:1;;1894:14;1440:1;1993:11;1969:5;1938:174;1923:189;;2147:16;1440:1;;2126:38;2184:7;2178:79;;2225:16;1440:1;2215:27;2178:79;;2281:16;1440:1;2271:27

Swarm Source

ipfs://3b47fb19c43088d22b9a2ea227e6ef92d3ba52c14f352f06ff3b47a6283ffa90

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.