ETH Price: $3,927.01 (+0.55%)

Contract

0xDB057bc5EA7Ff1Fa8e1698f43800f6cBaf2c3c20
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
To Pause181239292023-09-13 0:50:59460 days ago1694566259IN
0xDB057bc5...Baf2c3c20
0 ETH0.00060199.01177724
Un Pause162905812022-12-29 13:01:47718 days ago1672318907IN
0xDB057bc5...Baf2c3c20
0 ETH0.0009230220.53733017
To Pause161477432022-12-09 14:29:35738 days ago1670596175IN
0xDB057bc5...Baf2c3c20
0 ETH0.0017947326.87087323
Un Pause159037972022-11-05 12:24:23772 days ago1667651063IN
0xDB057bc5...Baf2c3c20
0 ETH0.0006232513.86746471
To Pause159037922022-11-05 12:23:23772 days ago1667651003IN
0xDB057bc5...Baf2c3c20
0 ETH0.0009594214.36457942
Un Pause158957432022-11-04 9:26:23773 days ago1667553983IN
0xDB057bc5...Baf2c3c20
0 ETH0.0008391318.67071696
To Pause158957422022-11-04 9:26:11773 days ago1667553971IN
0xDB057bc5...Baf2c3c20
0 ETH0.00127119.0295979
Un Pause158465552022-10-28 12:27:35780 days ago1666960055IN
0xDB057bc5...Baf2c3c20
0 ETH0.0005642712.55499644
To Pause158465542022-10-28 12:27:23780 days ago1666960043IN
0xDB057bc5...Baf2c3c20
0 ETH0.0007517511.25535499
Un Pause158393932022-10-27 12:23:35781 days ago1666873415IN
0xDB057bc5...Baf2c3c20
0 ETH0.0005850313.01686564
To Pause156570542022-10-02 1:04:47806 days ago1664672687IN
0xDB057bc5...Baf2c3c20
0 ETH0.00028524.27017942
Un Pause156398522022-09-29 15:19:59808 days ago1664464799IN
0xDB057bc5...Baf2c3c20
0 ETH0.0010351223.03136091
To Pause155381922022-09-15 9:24:47823 days ago1663233887IN
0xDB057bc5...Baf2c3c20
0 ETH0.0008014211.99897844
Un Pause155321572022-09-14 9:21:12824 days ago1663147272IN
0xDB057bc5...Baf2c3c20
0 ETH0.0007089615.77449058
To Pause155321562022-09-14 9:20:49824 days ago1663147249IN
0xDB057bc5...Baf2c3c20
0 ETH0.0009482114.19673837
Un Pause155249352022-09-13 4:30:13825 days ago1663043413IN
0xDB057bc5...Baf2c3c20
0 ETH0.0005484912.20407402
To Pause155249342022-09-13 4:30:06825 days ago1663043406IN
0xDB057bc5...Baf2c3c20
0 ETH0.0006841310.24293054
Un Pause155188772022-09-12 4:25:44826 days ago1662956744IN
0xDB057bc5...Baf2c3c20
0 ETH0.0005185211.53703828
To Pause155188762022-09-12 4:25:29826 days ago1662956729IN
0xDB057bc5...Baf2c3c20
0 ETH0.0007427511.12060538
Un Pause155078912022-09-10 8:48:12828 days ago1662799692IN
0xDB057bc5...Baf2c3c20
0 ETH0.00030516.78852681
To Pause155078902022-09-10 8:47:55828 days ago1662799675IN
0xDB057bc5...Baf2c3c20
0 ETH0.000460286.89136624
Un Pause154895492022-09-07 9:32:49831 days ago1662543169IN
0xDB057bc5...Baf2c3c20
0 ETH0.00044329.86130473
To Pause154895482022-09-07 9:32:39831 days ago1662543159IN
0xDB057bc5...Baf2c3c20
0 ETH0.000658649.86130473
Un Pause154827112022-09-06 7:24:49832 days ago1662449089IN
0xDB057bc5...Baf2c3c20
0 ETH0.0005148511.45554808
To Pause154827092022-09-06 7:24:30832 days ago1662449070IN
0xDB057bc5...Baf2c3c20
0 ETH0.0006890910.31725003
View all transactions

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
152819792022-08-05 11:13:41864 days ago1659698021
0xDB057bc5...Baf2c3c20
 Contract Creation0 ETH
152819792022-08-05 11:13:41864 days ago1659698021  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.