Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 60 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
To Pause | 18123929 | 460 days ago | IN | 0 ETH | 0.0006019 | ||||
Un Pause | 16290581 | 718 days ago | IN | 0 ETH | 0.00092302 | ||||
To Pause | 16147743 | 738 days ago | IN | 0 ETH | 0.00179473 | ||||
Un Pause | 15903797 | 772 days ago | IN | 0 ETH | 0.00062325 | ||||
To Pause | 15903792 | 772 days ago | IN | 0 ETH | 0.00095942 | ||||
Un Pause | 15895743 | 773 days ago | IN | 0 ETH | 0.00083913 | ||||
To Pause | 15895742 | 773 days ago | IN | 0 ETH | 0.001271 | ||||
Un Pause | 15846555 | 780 days ago | IN | 0 ETH | 0.00056427 | ||||
To Pause | 15846554 | 780 days ago | IN | 0 ETH | 0.00075175 | ||||
Un Pause | 15839393 | 781 days ago | IN | 0 ETH | 0.00058503 | ||||
To Pause | 15657054 | 806 days ago | IN | 0 ETH | 0.0002852 | ||||
Un Pause | 15639852 | 808 days ago | IN | 0 ETH | 0.00103512 | ||||
To Pause | 15538192 | 823 days ago | IN | 0 ETH | 0.00080142 | ||||
Un Pause | 15532157 | 824 days ago | IN | 0 ETH | 0.00070896 | ||||
To Pause | 15532156 | 824 days ago | IN | 0 ETH | 0.00094821 | ||||
Un Pause | 15524935 | 825 days ago | IN | 0 ETH | 0.00054849 | ||||
To Pause | 15524934 | 825 days ago | IN | 0 ETH | 0.00068413 | ||||
Un Pause | 15518877 | 826 days ago | IN | 0 ETH | 0.00051852 | ||||
To Pause | 15518876 | 826 days ago | IN | 0 ETH | 0.00074275 | ||||
Un Pause | 15507891 | 828 days ago | IN | 0 ETH | 0.0003051 | ||||
To Pause | 15507890 | 828 days ago | IN | 0 ETH | 0.00046028 | ||||
Un Pause | 15489549 | 831 days ago | IN | 0 ETH | 0.0004432 | ||||
To Pause | 15489548 | 831 days ago | IN | 0 ETH | 0.00065864 | ||||
Un Pause | 15482711 | 832 days ago | IN | 0 ETH | 0.00051485 | ||||
To Pause | 15482709 | 832 days ago | IN | 0 ETH | 0.00068909 |
Latest 2 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
15281979 | 864 days ago | Contract Creation | 0 ETH | |||
15281979 | 864 days ago | Contract Creation | 0 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
Contract Source Code (Solidity)
/** *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
- No Contract Security Audit Submitted- Submit Audit Here
[{"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
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.