S Price: $0.483929 (+3.95%)
    /

    Contract

    0xF400bd0c76e50d864ACE7d7288a185D6A495592C

    Overview

    S Balance

    Sonic LogoSonic LogoSonic Logo0 S

    S Value

    $0.00

    Multichain Info

    No addresses found
    Transaction Hash
    Method
    Block
    Age
    From
    To
    Amount
    Approve212087022025-04-20 17:15:4820 hrs ago1745169348IN
    0xF400bd0c...6A495592C
    0 S0.0018460855.01
    Approve212042122025-04-20 16:40:0321 hrs ago1745167203IN
    0xF400bd0c...6A495592C
    0 S0.0018460855.01
    Approve212041372025-04-20 16:39:2721 hrs ago1745167167IN
    0xF400bd0c...6A495592C
    0 S0.0018460855.01
    Approve211277122025-04-20 4:38:4133 hrs ago1745123921IN
    0xF400bd0c...6A495592C
    0 S0.002209950
    Approve211277092025-04-20 4:38:3733 hrs ago1745123917IN
    0xF400bd0c...6A495592C
    0 S0.0033751550
    Approve208340572025-04-18 3:42:213 days ago1744947741IN
    0xF400bd0c...6A495592C
    0 S0.0032467455.01
    Approve208338682025-04-18 3:39:463 days ago1744947586IN
    0xF400bd0c...6A495592C
    0 S0.0032460855.01
    Approve202790042025-04-14 23:06:156 days ago1744671975IN
    0xF400bd0c...6A495592C
    0 S0.002809750.0001
    Approve202783172025-04-14 22:59:296 days ago1744671569IN
    0xF400bd0c...6A495592C
    0 S0.002809750.0001
    Approve202781862025-04-14 22:58:286 days ago1744671508IN
    0xF400bd0c...6A495592C
    0 S0.002809150.0001
    Approve175079342025-04-01 17:36:1819 days ago1743528978IN
    0xF400bd0c...6A495592C
    0 S0.0033441256.66
    Approve175065642025-04-01 17:28:2519 days ago1743528505IN
    0xF400bd0c...6A495592C
    0 S0.0033441256.66
    Approve175051902025-04-01 17:20:3019 days ago1743528030IN
    0xF400bd0c...6A495592C
    0 S0.0021131555.01
    Approve175051582025-04-01 17:20:1819 days ago1743528018IN
    0xF400bd0c...6A495592C
    0 S0.0032467455.01
    Approve165863112025-03-28 15:01:4323 days ago1743174103IN
    0xF400bd0c...6A495592C
    0 S0.002809750.0001
    Approve164173732025-03-27 20:49:0024 days ago1743108540IN
    0xF400bd0c...6A495592C
    0 S0.0032749955.5
    Approve164173562025-03-27 20:48:5524 days ago1743108535IN
    0xF400bd0c...6A495592C
    0 S0.0032756655.5
    Approve164173402025-03-27 20:48:4824 days ago1743108528IN
    0xF400bd0c...6A495592C
    0 S0.0032467455.01
    Approve164173222025-03-27 20:48:4224 days ago1743108522IN
    0xF400bd0c...6A495592C
    0 S0.0032460855.01
    Approve161037022025-03-26 14:13:1225 days ago1742998392IN
    0xF400bd0c...6A495592C
    0 S0.002809750.0001
    Approve160799352025-03-26 11:54:3926 days ago1742990079IN
    0xF400bd0c...6A495592C
    0 S0.0032467455.01
    Approve159535662025-03-25 21:25:1226 days ago1742937912IN
    0xF400bd0c...6A495592C
    0 S0.0032467455.01
    Approve159305582025-03-25 19:08:5026 days ago1742929730IN
    0xF400bd0c...6A495592C
    0 S0.0032467455.01
    Approve158020482025-03-25 5:17:0627 days ago1742879826IN
    0xF400bd0c...6A495592C
    0 S0.0033751550
    Approve158019832025-03-25 5:16:3427 days ago1742879794IN
    0xF400bd0c...6A495592C
    0 S0.0033751550.00005
    View all transactions

    Latest 1 internal transaction

    Parent Transaction Hash Block Age From To Amount
    46266262025-01-20 1:56:3591 days ago1737338195
     Contract Creation
    0 S
    Loading...
    Loading

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

    Contract Name:
    BeaconProxy

    Compiler Version
    v0.8.28+commit.7893614a

    Optimization Enabled:
    Yes with 9999999 runs

    Other Settings:
    cancun EvmVersion
    File 1 of 6 : BeaconProxy.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/BeaconProxy.sol)
    pragma solidity ^0.8.20;
    import {IBeacon} from "./IBeacon.sol";
    import {Proxy} from "../Proxy.sol";
    import {ERC1967Utils} from "../ERC1967/ERC1967Utils.sol";
    /**
    * @dev This contract implements a proxy that gets the implementation address for each call from an {UpgradeableBeacon}.
    *
    * The beacon address can only be set once during construction, and cannot be changed afterwards. It is stored in an
    * immutable variable to avoid unnecessary storage reads, and also in the beacon storage slot specified by
    * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] so that it can be accessed externally.
    *
    * CAUTION: Since the beacon address can never be changed, you must ensure that you either control the beacon, or trust
    * the beacon to not upgrade the implementation maliciously.
    *
    * IMPORTANT: Do not use the implementation logic to modify the beacon storage slot. Doing so would leave the proxy in
    * an inconsistent state where the beacon storage slot does not match the beacon address.
    */
    contract BeaconProxy is Proxy {
    // An immutable address for the beacon to avoid unnecessary SLOADs before each delegate call.
    address private immutable _beacon;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 6 : IBeacon.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/IBeacon.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev This is the interface that {BeaconProxy} expects of its beacon.
    */
    interface IBeacon {
    /**
    * @dev Must return an address that can be used as a delegate call target.
    *
    * {UpgradeableBeacon} will check that this address is a contract.
    */
    function implementation() external view returns (address);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 3 of 6 : ERC1967Utils.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (proxy/ERC1967/ERC1967Utils.sol)
    pragma solidity ^0.8.20;
    import {IBeacon} from "../beacon/IBeacon.sol";
    import {Address} from "../../utils/Address.sol";
    import {StorageSlot} from "../../utils/StorageSlot.sol";
    /**
    * @dev This abstract contract provides getters and event emitting update functions for
    * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.
    */
    library ERC1967Utils {
    // We re-declare ERC-1967 events here because they can't be used directly from IERC1967.
    // This will be fixed in Solidity 0.8.21. At that point we should remove these events.
    /**
    * @dev Emitted when the implementation is upgraded.
    */
    event Upgraded(address indexed implementation);
    /**
    * @dev Emitted when the admin account has changed.
    */
    event AdminChanged(address previousAdmin, address newAdmin);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 4 of 6 : Proxy.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (proxy/Proxy.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
    * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
    * be specified by overriding the virtual {_implementation} function.
    *
    * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
    * different contract through the {_delegate} function.
    *
    * The success and return data of the delegated call will be returned back to the caller of the proxy.
    */
    abstract contract Proxy {
    /**
    * @dev Delegates the current call to `implementation`.
    *
    * This function does not return to its internal call site, it will return directly to the external caller.
    */
    function _delegate(address implementation) internal virtual {
    assembly {
    // Copy msg.data. We take full control of memory in this inline assembly
    // block because it will not return to Solidity code. We overwrite the
    // Solidity scratch pad at memory position 0.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 5 of 6 : Address.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Collection of functions related to the address type
    */
    library Address {
    /**
    * @dev The ETH balance of the account is not enough to perform the operation.
    */
    error AddressInsufficientBalance(address account);
    /**
    * @dev There's no code at `target` (it is not a contract).
    */
    error AddressEmptyCode(address target);
    /**
    * @dev A call to an address target failed. The target may have reverted.
    */
    error FailedInnerCall();
    /**
    * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 6 of 6 : StorageSlot.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol)
    // This file was procedurally generated from scripts/generate/templates/StorageSlot.js.
    pragma solidity ^0.8.20;
    /**
    * @dev Library for reading and writing primitive types to specific storage slots.
    *
    * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
    * This library helps with reading and writing to such slots without the need for inline assembly.
    *
    * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
    *
    * Example usage to set ERC1967 implementation slot:
    * ```solidity
    * contract ERC1967 {
    * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
    *
    * function _getImplementation() internal view returns (address) {
    * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
    * }
    *
    * function _setImplementation(address newImplementation) internal {
    * require(newImplementation.code.length > 0);
    * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Settings
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    {
    "evmVersion": "cancun",
    "optimizer": {
    "enabled": true,
    "runs": 9999999,
    "details": {
    "yul": true
    }
    },
    "viaIR": true,
    "outputSelection": {
    "*": {
    "*": [
    "evm.bytecode",
    "evm.deployedBytecode",
    "devdoc",
    "userdoc",
    "metadata",
    "abi"
    ]
    }
    },
    "libraries": {}
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Contract Security Audit

    Contract ABI

    API
    [{"inputs":[{"internalType":"address","name":"beacon","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"beacon","type":"address"}],"name":"ERC1967InvalidBeacon","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"stateMutability":"payable","type":"fallback"}]

    Deployed Bytecode

    0x60806040527f5c60da1b000000000000000000000000000000000000000000000000000000006080526020608060048173ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000050d16738f991028bcf9a010da67dc9bbf60920e8165afa8015610107575f9015610163575060203d602011610100575b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f820116608001906080821067ffffffffffffffff8311176100d3576100ce91604052608001610112565b610163565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b503d610081565b6040513d5f823e3d90fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff80602091011261015f5760805173ffffffffffffffffffffffffffffffffffffffff8116810361015f5790565b5f80fd5b5f8091368280378136915af43d5f803e1561017c573d5ff35b3d5ffdfea264697066735822122050b8f2fc948e8806e8a0cf30b120511321520ef93f9d20e403f989bc8fcd289d64736f6c634300081c0033

    Block Age Transaction Gas Used Reward
    view all blocks ##produced##

    Block Age Uncle Number Difficulty Gas Used Reward
    View All Uncles
    Loading...
    Loading
    Loading...
    Loading

    Validator Index Block Age Amount
    View All Withdrawals

    Transaction Hash Block Age Value Eth2 PubKey Valid
    View All Deposits
    [ 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.