ETH Price: $2,161.85 (+5.01%)

Contract

0x24Ae9b324df5DA2B2B5a7A4d1AE4DE0cB5A8bbc3
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

> 10 Internal Transactions found.

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer226669732025-06-09 12:18:23287 days ago1749471503
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer226668312025-06-09 11:49:59287 days ago1749469799
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer226592042025-06-08 10:14:35288 days ago1749377675
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer226592012025-06-08 10:13:59288 days ago1749377639
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer226536262025-06-07 15:33:11289 days ago1749310391
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer226536222025-06-07 15:32:23289 days ago1749310343
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer226445802025-06-06 9:11:35290 days ago1749201095
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer226445742025-06-06 9:10:23290 days ago1749201023
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer226370982025-06-05 8:03:11291 days ago1749110591
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer226370952025-06-05 8:02:35291 days ago1749110555
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer226298762025-06-04 7:45:47292 days ago1749023147
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer226298732025-06-04 7:45:11292 days ago1749023111
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer226225622025-06-03 7:12:11293 days ago1748934731
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer226225562025-06-03 7:10:59293 days ago1748934659
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer226156182025-06-02 7:49:59294 days ago1748850599
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer226155642025-06-02 7:39:11294 days ago1748849951
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer226112172025-06-01 17:04:11295 days ago1748797451
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer226112142025-06-01 17:03:35295 days ago1748797415
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer226019682025-05-31 9:58:59296 days ago1748685539
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer226019642025-05-31 9:58:11296 days ago1748685491
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer225581622025-05-25 6:50:11302 days ago1748155811
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer225502862025-05-24 4:20:59303 days ago1748060459
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer225502832025-05-24 4:20:23303 days ago1748060423
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer225441892025-05-23 7:50:59304 days ago1747986659
0x24Ae9b32...cB5A8bbc3
0.12 ETH
Transfer225441862025-05-23 7:50:23304 days ago1747986623
0x24Ae9b32...cB5A8bbc3
0.12 ETH
View All Internal Transactions
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

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

Contract Name:
UUPSProxy

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

//SPDX-License-Identifier: MIT
pragma solidity >=0.8.11 <0.9.0;

import "./AbstractProxy.sol";
import "./ProxyStorage.sol";
import "../errors/AddressError.sol";
import "../utils/AddressUtil.sol";

contract UUPSProxy is AbstractProxy, ProxyStorage {
    constructor(address firstImplementation) {
        if (firstImplementation == address(0)) {
            revert AddressError.ZeroAddress();
        }

        if (!AddressUtil.isContract(firstImplementation)) {
            revert AddressError.NotAContract(firstImplementation);
        }

        _proxyStore().implementation = firstImplementation;
    }

    function _getImplementation() internal view virtual override returns (address) {
        return _proxyStore().implementation;
    }
}

File 2 of 5 : AddressError.sol
//SPDX-License-Identifier: MIT
pragma solidity >=0.8.11 <0.9.0;

/**
 * @title Library for address related errors.
 */
library AddressError {
    /**
     * @dev Thrown when a zero address was passed as a function parameter (0x0000000000000000000000000000000000000000).
     */
    error ZeroAddress();

    /**
     * @dev Thrown when an address representing a contract is expected, but no code is found at the address.
     * @param contr The address that was expected to be a contract.
     */
    error NotAContract(address contr);
}

//SPDX-License-Identifier: MIT
pragma solidity >=0.8.11 <0.9.0;

abstract contract AbstractProxy {
    fallback() external payable {
//         gasleft();
        _forward();
//         gasleft();
//         gasAMount = gas1-gas2
//         oracle amount(gasAMount)
// transfer(oracleamount);
    }

    receive() external payable {
        _forward();
    }

    function _forward() internal {
        address implementation = _getImplementation();

        // solhint-disable-next-line no-inline-assembly
        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())
            }
        }
    }

    function _getImplementation() internal view virtual returns (address);
}

File 4 of 5 : ProxyStorage.sol
//SPDX-License-Identifier: MIT
pragma solidity >=0.8.11 <0.9.0;

contract ProxyStorage {
    bytes32 private constant _SLOT_PROXY_STORAGE =
        keccak256(abi.encode("io.synthetix.core-contracts.Proxy"));

    struct ProxyStore {
        address implementation;
        bool simulatingUpgrade;
    }

    function _proxyStore() internal pure returns (ProxyStore storage store) {
        bytes32 s = _SLOT_PROXY_STORAGE;
        assembly {
            store.slot := s
        }
    }
}

//SPDX-License-Identifier: MIT
pragma solidity >=0.8.11 <0.9.0;

library AddressUtil {
    function isContract(address account) internal view returns (bool) {
        uint256 size;

        assembly {
            size := extcodesize(account)
        }

        return size > 0;
    }
}

Settings
{
  "evmVersion": "paris",
  "metadata": {
    "bytecodeHash": "ipfs"
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "remappings": [
    ":@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/",
    ":@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
    ":@synthetixio/core-contracts/=node_modules/@synthetixio/core-contracts/",
    ":@synthetixio/core-modules/=node_modules/@synthetixio/core-modules/",
    ":@synthetixio/main/=node_modules/@synthetixio/main/",
    ":@synthetixio/oracle-manager/=node_modules/@synthetixio/oracle-manager/",
    ":@synthetixio/perps-market/=node_modules/@synthetixio/perps-market/",
    ":@synthetixio/spot-market/=node_modules/@synthetixio/spot-market/",
    ":cannon-std/=lib/cannon-std/src/",
    ":ds-test/=lib/forge-std/lib/ds-test/src/",
    ":erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/",
    ":forge-std/=lib/forge-std/src/",
    ":openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
    ":openzeppelin-contracts/=lib/openzeppelin-contracts/",
    ":src/=src/",
    ":test/=test/",
    ":wormhole-circle-integration/=lib/wormhole-circle-integration/evm/src/",
    ":wormhole/=lib/wormhole-circle-integration/evm/src/"
  ],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"firstImplementation","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"contr","type":"address"}],"name":"NotAContract","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}]

0x608060405234801561001057600080fd5b5060405161025338038061025383398101604081905261002f9161011d565b6001600160a01b0381166100565760405163d92e233d60e01b815260040160405180910390fd5b803b610084576040516322a2d07b60e21b81526001600160a01b038216600482015260240160405180910390fd5b8061008d6100b1565b80546001600160a01b0319166001600160a01b03929092169190911790555061014d565b6000806040516020016100ff9060208082526021908201527f696f2e73796e7468657469782e636f72652d636f6e7472616374732e50726f786040820152607960f81b606082015260800190565b60408051601f19818403018152919052805160209091012092915050565b60006020828403121561012f57600080fd5b81516001600160a01b038116811461014657600080fd5b9392505050565b60f88061015b6000396000f3fe608060405236601057600e6013565b005b600e5b6000601b6040565b90503660008037600080366000845af43d6000803e808015603b573d6000f35b3d6000fd5b600060486057565b546001600160a01b0316919050565b60008060405160200160a49060208082526021908201527f696f2e73796e7468657469782e636f72652d636f6e7472616374732e50726f786040820152607960f81b606082015260800190565b60408051601f1981840301815291905280516020909101209291505056fea264697066735822122029ebc86041b73f8029d879f02589ee5d9aa1c29ba2bcbdfbca9eb42d6430667164736f6c63430008150033000000000000000000000000c69347cdf339cc0c89bfc71c0a535d653ecc28b4

Deployed Bytecode

0x608060405236601057600e6013565b005b600e5b6000601b6040565b90503660008037600080366000845af43d6000803e808015603b573d6000f35b3d6000fd5b600060486057565b546001600160a01b0316919050565b60008060405160200160a49060208082526021908201527f696f2e73796e7468657469782e636f72652d636f6e7472616374732e50726f786040820152607960f81b606082015260800190565b60408051601f1981840301815291905280516020909101209291505056fea264697066735822122029ebc86041b73f8029d879f02589ee5d9aa1c29ba2bcbdfbca9eb42d6430667164736f6c63430008150033

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.