ETH Price: $2,349.60 (-0.94%)

Contract

0x6ACEb4cAbA81Fa6a8065059f3A944fb066A10fAc
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Propose New Term...208720672024-10-01 17:14:352 days ago1727802875IN
Syrup: Open Term Loan Manager
0 ETH0.0039056327.6180556
Propose New Term...208652822024-09-30 18:31:473 days ago1727721107IN
Syrup: Open Term Loan Manager
0 ETH0.0021345415.09406219
Propose New Term...208424122024-09-27 13:58:596 days ago1727445539IN
Syrup: Open Term Loan Manager
0 ETH0.002494217.63583633
Propose New Term...208364602024-09-26 18:03:117 days ago1727373791IN
Syrup: Open Term Loan Manager
0 ETH0.0034618224.47554086
Propose New Term...208286852024-09-25 16:02:478 days ago1727280167IN
Syrup: Open Term Loan Manager
0 ETH0.0063793645.10300476
Propose New Term...208277642024-09-25 12:57:118 days ago1727269031IN
Syrup: Open Term Loan Manager
0 ETH0.0076958654.41543581
Propose New Term...208265442024-09-25 8:51:238 days ago1727254283IN
Syrup: Open Term Loan Manager
0 ETH0.0029255620.68589225
Propose New Term...208221742024-09-24 18:13:359 days ago1727201615IN
Syrup: Open Term Loan Manager
0 ETH0.0062618844.27238063
Propose New Term...207928532024-09-20 15:59:4713 days ago1726847987IN
Syrup: Open Term Loan Manager
0 ETH0.0029498320.85574315
Propose New Term...207657242024-09-16 21:00:5916 days ago1726520459IN
Syrup: Open Term Loan Manager
0 ETH0.000617524.36636797
Propose New Term...207640302024-09-16 15:20:3517 days ago1726500035IN
Syrup: Open Term Loan Manager
0 ETH0.001290799.1260726
Fund207419972024-09-13 13:29:1120 days ago1726234151IN
Syrup: Open Term Loan Manager
0 ETH0.000591011.93050898
Fund207201582024-09-10 12:16:5923 days ago1725970619IN
Syrup: Open Term Loan Manager
0 ETH0.0018826.14741199
Propose New Term...207200242024-09-10 11:49:3523 days ago1725968975IN
Syrup: Open Term Loan Manager
0 ETH0.001081417.64577546
Propose New Term...206932682024-09-06 18:13:3527 days ago1725646415IN
Syrup: Open Term Loan Manager
0 ETH0.00128319.07323619
Fund206859402024-09-05 17:40:4728 days ago1725558047IN
Syrup: Open Term Loan Manager
0 ETH0.001279214.1784424
Fund206206952024-08-27 15:03:3537 days ago1724771015IN
Syrup: Open Term Loan Manager
0 ETH0.001037113.20844686
Fund205922952024-08-23 15:48:2341 days ago1724428103IN
Syrup: Open Term Loan Manager
0 ETH0.000881142.87818157
Fund205849262024-08-22 15:05:2342 days ago1724339123IN
Syrup: Open Term Loan Manager
0 ETH0.000872252.84913352
Fund205293952024-08-14 20:56:2349 days ago1723668983IN
Syrup: Open Term Loan Manager
0 ETH0.000884352.73584587
Fund205290942024-08-14 19:55:3549 days ago1723665335IN
Syrup: Open Term Loan Manager
0 ETH0.001443544.71523088
Fund204726742024-08-06 23:00:3557 days ago1722985235IN
Syrup: Open Term Loan Manager
0 ETH0.000479341.48290384
Fund204652272024-08-05 22:03:4758 days ago1722895427IN
Syrup: Open Term Loan Manager
0 ETH0.000873112.85206632
Fund204426492024-08-02 18:28:2362 days ago1722623303IN
Syrup: Open Term Loan Manager
0 ETH0.001195613.69877993
Fund203915642024-07-26 15:17:2369 days ago1722007043IN
Syrup: Open Term Loan Manager
0 ETH0.001448424.73115671
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
199203662024-05-21 19:27:47135 days ago1716319667  Contract Creation0 ETH
Loading...
Loading

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

Contract Name:
Proxy

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2023-07-06
*/

// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.7;

/// @title An beacon that provides a default implementation for proxies, must implement IDefaultImplementationBeacon.
interface IDefaultImplementationBeacon {

    /// @dev The address of an implementation for proxies.
    function defaultImplementation() external view returns (address defaultImplementation_);

}

abstract contract SlotManipulatable {

    function _getReferenceTypeSlot(bytes32 slot_, bytes32 key_) internal pure returns (bytes32 value_) {
        return keccak256(abi.encodePacked(key_, slot_));
    }

    function _getSlotValue(bytes32 slot_) internal view returns (bytes32 value_) {
        assembly {
            value_ := sload(slot_)
        }
    }

    function _setSlotValue(bytes32 slot_, bytes32 value_) internal {
        assembly {
            sstore(slot_, value_)
        }
    }

}

/// @title A completely transparent, and thus interface-less, proxy contract.
contract Proxy is SlotManipulatable {

    /// @dev Storage slot with the address of the current factory. `keccak256('eip1967.proxy.factory') - 1`.
    bytes32 private constant FACTORY_SLOT = bytes32(0x7a45a402e4cb6e08ebc196f20f66d5d30e67285a2a8aa80503fa409e727a4af1);

    /// @dev Storage slot with the address of the current factory. `keccak256('eip1967.proxy.implementation') - 1`.
    bytes32 private constant IMPLEMENTATION_SLOT = bytes32(0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc);

    /**
     *  @dev   The constructor requires at least one of `factory_` or `implementation_`.
     *         If an implementation is not provided, the factory is treated as an IDefaultImplementationBeacon
     *         to fetch the default implementation.
     *  @param factory_        The address of a proxy factory, if any.
     *  @param implementation_ The address of the implementation contract being proxied, if any.
     */
    constructor(address factory_, address implementation_) {
        _setSlotValue(FACTORY_SLOT, bytes32(uint256(uint160(factory_))));

        // If the implementation is empty, fetch it from the factory, which can act as a beacon.
        address implementation = implementation_ == address(0)
            ? IDefaultImplementationBeacon(factory_).defaultImplementation()
            : implementation_;

        require(implementation != address(0));

        _setSlotValue(IMPLEMENTATION_SLOT, bytes32(uint256(uint160(implementation))));
    }

    fallback() payable external virtual {
        bytes32 implementation = _getSlotValue(IMPLEMENTATION_SLOT);

        require(address(uint160(uint256(implementation))).code.length != uint256(0));

        assembly {
            calldatacopy(0, 0, calldatasize())

            let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)

            returndatacopy(0, 0, returndatasize())

            switch result
            case 0 {
                revert(0, returndatasize())
            }
            default {
                return(0, returndatasize())
            }
        }
    }

}

Contract Security Audit

Contract ABI

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

Deployed Bytecode

0x60806040526000602d7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b90506001600160a01b0381163b604257600080fd5b3660008037600080366000845af43d6000803e8080156060573d6000f35b3d6000fdfea264697066735822122065b133a3f7fa45a139e1ab4bd420b9636a4de4c45142d268b2723a5727f443e564736f6c63430008070033

Deployed Bytecode Sourcemap

997:2157:0:-:0;;;2574:22;2599:34;1448:66;734:12;;612:152;2599:34;2574:59;-1:-1:-1;;;;;;2654:53:0;;;2646:76;;;;;;2778:14;2775:1;2772;2759:34;2881:1;2878;2862:14;2859:1;2843:14;2836:5;2823:60;2920:16;2917:1;2914;2899:38;2960:6;2980:68;;;;3099:16;3096:1;3089:27;2980:68;3016:16;3013:1;3006:27

Swarm Source

ipfs://65b133a3f7fa45a139e1ab4bd420b9636a4de4c45142d268b2723a5727f443e5

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.