Overview
ETH Balance
0 ETH
Eth Value
$0.00Token Holdings
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 391 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Un Pause | 16291243 | 730 days ago | IN | 0 ETH | 0.00107187 | ||||
To Pause | 16291240 | 730 days ago | IN | 0 ETH | 0.00145561 | ||||
Un Pause | 16291237 | 730 days ago | IN | 0 ETH | 0.00093846 | ||||
To Pause | 16291236 | 730 days ago | IN | 0 ETH | 0.00154512 | ||||
Un Pause | 16291232 | 730 days ago | IN | 0 ETH | 0.0010372 | ||||
To Pause | 16291229 | 730 days ago | IN | 0 ETH | 0.0015771 | ||||
Un Pause | 16291225 | 730 days ago | IN | 0 ETH | 0.00100092 | ||||
To Pause | 16291224 | 730 days ago | IN | 0 ETH | 0.00150118 | ||||
Un Pause | 16291220 | 730 days ago | IN | 0 ETH | 0.00108764 | ||||
To Pause | 16291219 | 730 days ago | IN | 0 ETH | 0.00161634 | ||||
Un Pause | 16291216 | 730 days ago | IN | 0 ETH | 0.00117525 | ||||
To Pause | 16291215 | 730 days ago | IN | 0 ETH | 0.00150998 | ||||
Un Pause | 16291212 | 730 days ago | IN | 0 ETH | 0.00106866 | ||||
To Pause | 16291211 | 730 days ago | IN | 0 ETH | 0.00167782 | ||||
Un Pause | 16291208 | 730 days ago | IN | 0 ETH | 0.00120891 | ||||
To Pause | 16291207 | 730 days ago | IN | 0 ETH | 0.001813 | ||||
Un Pause | 16291204 | 730 days ago | IN | 0 ETH | 0.00123637 | ||||
To Pause | 16291203 | 730 days ago | IN | 0 ETH | 0.00181101 | ||||
Un Pause | 16291200 | 730 days ago | IN | 0 ETH | 0.0013646 | ||||
To Pause | 16291199 | 730 days ago | IN | 0 ETH | 0.0021032 | ||||
Un Pause | 16291195 | 730 days ago | IN | 0 ETH | 0.00138002 | ||||
To Pause | 16291194 | 730 days ago | IN | 0 ETH | 0.0023563 | ||||
Un Pause | 16291186 | 730 days ago | IN | 0 ETH | 0.00195509 | ||||
To Pause | 16291185 | 730 days ago | IN | 0 ETH | 0.00286992 | ||||
Un Pause | 16291184 | 730 days ago | IN | 0 ETH | 0.00189639 |
Latest 2 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
15300319 | 874 days ago | Contract Creation | 0 ETH | |||
15300319 | 874 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
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.