S Price: $0.39598 (-9.43%)
    /

    Contract

    0x6748A1DD455F33F8FabC93Bd959420Ba3C867Bd3

    Overview

    S Balance

    Sonic LogoSonic LogoSonic Logo0.001296900000000001 S

    S Value

    Less Than $0.01 (@ $0.40/S)

    Multichain Info

    No addresses found
    Age:1H
    Amount:Between 1-100k
    Reset Filter

    Transaction Hash
    Method
    Block
    Age
    From
    To
    Amount

    There are no matching entries

    > 10 Internal Transactions and > 10 Token Transfers found.

    Latest 25 internal transactions (View All)

    Parent Transaction Hash Block Age From To Amount
    5033332024-12-17 3:12:50111 days ago1734405170
    0x6748A1DD...a3C867Bd3
    0x6748A1DD...a3C867Bd3
    0.0001 S
    4897972024-12-16 18:48:18111 days ago1734374898
    0x6748A1DD...a3C867Bd3
    0x6748A1DD...a3C867Bd3
    0.00001 S
    4641172024-12-16 2:16:52112 days ago1734315412
    0x6748A1DD...a3C867Bd3
    0.0000001 S
    4641172024-12-16 2:16:52112 days ago1734315412
    0x6748A1DD...a3C867Bd3
    0x6748A1DD...a3C867Bd3
    0.00001 S
    4639572024-12-16 2:09:41112 days ago1734314981
    0x6748A1DD...a3C867Bd3
    0x6748A1DD...a3C867Bd3
    0.0001 S
    4635272024-12-16 1:51:46112 days ago1734313906
    0x6748A1DD...a3C867Bd3
    0x6748A1DD...a3C867Bd3
    0.0001 S
    4635222024-12-16 1:51:37112 days ago1734313897
    0x6748A1DD...a3C867Bd3
    0.000001 S
    4635222024-12-16 1:51:37112 days ago1734313897
    0x6748A1DD...a3C867Bd3
    0x6748A1DD...a3C867Bd3
    0.0001 S
    4633502024-12-16 1:44:38112 days ago1734313478
    0x6748A1DD...a3C867Bd3
    0.000001 S
    4633502024-12-16 1:44:38112 days ago1734313478
    0x6748A1DD...a3C867Bd3
    0x6748A1DD...a3C867Bd3
    0.0001 S
    4633492024-12-16 1:44:36112 days ago1734313476
    0x6748A1DD...a3C867Bd3
    0.000001 S
    4633492024-12-16 1:44:36112 days ago1734313476
    0x6748A1DD...a3C867Bd3
    0x6748A1DD...a3C867Bd3
    0.0001 S
    4632592024-12-16 1:40:42112 days ago1734313242
    0x6748A1DD...a3C867Bd3
    0.00001 S
    4632592024-12-16 1:40:42112 days ago1734313242
    0x6748A1DD...a3C867Bd3
    0x6748A1DD...a3C867Bd3
    0.001 S
    4632542024-12-16 1:40:29112 days ago1734313229
    0x6748A1DD...a3C867Bd3
    0.0000881 S
    4632542024-12-16 1:40:29112 days ago1734313229
    0x6748A1DD...a3C867Bd3
    0.00000088 S
    4632402024-12-16 1:39:58112 days ago1734313198
    0x6748A1DD...a3C867Bd3
    0.00000495 S
    4632402024-12-16 1:39:58112 days ago1734313198
    0x6748A1DD...a3C867Bd3
    0.00000005 S
    4632012024-12-16 1:38:28112 days ago1734313108
    0x6748A1DD...a3C867Bd3
    0.00000495 S
    4632012024-12-16 1:38:28112 days ago1734313108
    0x6748A1DD...a3C867Bd3
    0.00000005 S
    4631512024-12-16 1:36:12112 days ago1734312972
    0x6748A1DD...a3C867Bd3
    0.000001 S
    4631512024-12-16 1:36:12112 days ago1734312972
    0x6748A1DD...a3C867Bd3
    0x6748A1DD...a3C867Bd3
    0.0001 S
    4629602024-12-16 1:27:47112 days ago1734312467
    0x6748A1DD...a3C867Bd3
    1.2 S
    4629602024-12-16 1:27:47112 days ago1734312467
    0x6748A1DD...a3C867Bd3
    0 S
    4582892024-12-15 22:13:13112 days ago1734300793
    0x6748A1DD...a3C867Bd3
    1.2 S
    View All Internal Transactions
    Loading...
    Loading

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

    Contract Name:
    Diamond

    Compiler Version
    v0.8.18+commit.87f61d96

    Optimization Enabled:
    Yes with 1337 runs

    Other Settings:
    default evmVersion
    File 1 of 3 : Diamond.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
    pragma solidity 0.8.18;
    /******************************************************************************\
    * Author: Nick Mudge <nick@perfectabstractions.com> (https://twitter.com/mudgen)
    * EIP-2535 Diamonds: https://eips.ethereum.org/EIPS/eip-2535
    *
    * Implementation of a diamond.
    /******************************************************************************/
    import {LibDiamond} from "./libraries/LibDiamond.sol";
    import {IDiamondCut} from "./interfaces/IDiamondCut.sol";
    contract Diamond {
    constructor(address _contractOwner, address _diamondCutFacet) payable {
    LibDiamond.setContractOwner(_contractOwner);
    // Add the diamondCut external function from the diamondCutFacet
    IDiamondCut.FacetCut[] memory cut = new IDiamondCut.FacetCut[](1);
    bytes4[] memory functionSelectors = new bytes4[](1);
    functionSelectors[0] = IDiamondCut.diamondCut.selector;
    cut[0] = IDiamondCut.FacetCut({
    facetAddress: _diamondCutFacet,
    action: IDiamondCut.FacetCutAction.Add,
    functionSelectors: functionSelectors
    });
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 3 : IDiamondCut.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
    pragma solidity 0.8.18;
    /******************************************************************************\
    * Author: Nick Mudge <nick@perfectabstractions.com> (https://twitter.com/mudgen)
    * EIP-2535 Diamonds: https://eips.ethereum.org/EIPS/eip-2535
    /******************************************************************************/
    interface IDiamondCut {
    enum FacetCutAction {
    Add,
    Replace,
    Remove
    }
    // Add=0, Replace=1, Remove=2
    struct FacetCut {
    address facetAddress;
    FacetCutAction action;
    bytes4[] functionSelectors;
    }
    /// @notice Add/replace/remove any number of functions and optionally execute
    /// a function with delegatecall
    /// @param _diamondCut Contains the facet addresses and function selectors
    /// @param _init The address of the contract or facet to execute _calldata
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 3 of 3 : LibDiamond.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
    pragma solidity 0.8.18;
    /******************************************************************************\
    * Author: Nick Mudge <nick@perfectabstractions.com> (https://twitter.com/mudgen)
    * EIP-2535 Diamonds: https://eips.ethereum.org/EIPS/eip-2535
    /******************************************************************************/
    import {IDiamondCut} from "../interfaces/IDiamondCut.sol";
    // Remember to add the loupe functions from DiamondLoupeFacet to the diamond.
    // The loupe functions are required by the EIP2535 Diamonds standard
    error InitializationFunctionReverted(
    address _initializationContractAddress,
    bytes _calldata
    );
    library LibDiamond {
    bytes32 constant DIAMOND_STORAGE_POSITION =
    keccak256("diamond.standard.diamond.storage");
    struct FacetAddressAndPosition {
    address facetAddress;
    uint96 functionSelectorPosition; // position in facetFunctionSelectors.functionSelectors array
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

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

    Contract Security Audit

    Contract ABI

    API
    [{"inputs":[{"internalType":"address","name":"_contractOwner","type":"address"},{"internalType":"address","name":"_diamondCutFacet","type":"address"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"_initializationContractAddress","type":"address"},{"internalType":"bytes","name":"_calldata","type":"bytes"}],"name":"InitializationFunctionReverted","type":"error"},{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}]

    Deployed Bytecode

    0x6080604052361560e95760007fffffffff0000000000000000000000000000000000000000000000000000000081351681527fc8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c131c60205273ffffffffffffffffffffffffffffffffffffffff6040822054168015609157818091368280378136915af43d82803e15608d573d90f35b3d90fd5b7f08c379a0000000000000000000000000000000000000000000000000000000006080526020608452602060a4527f4469616d6f6e643a2046756e6374696f6e20646f6573206e6f7420657869737460c45260646080fd5b00fea2646970667358221220771ed9d5e2f6cd042ed244fe1879475eeabb8d8e69ccd378889335f7f9b0a6c464736f6c63430008120033

    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  ]

    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.