S Price: $0.781091 (+0.14%)

Contract

0x6840Bd91417373Af296cc263e312DfEBcAb494ae

Overview

S Balance

Sonic LogoSonic LogoSonic Logo0 S

S Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction43030042025-01-17 20:11:255 hrs ago1737144685IN
Beets: stS Operator
0 S0.02685215115
Exec Transaction42366042025-01-17 6:37:0618 hrs ago1737095826IN
Beets: stS Operator
0 S0.02440999110
Exec Transaction42038962025-01-16 22:53:2026 hrs ago1737068000IN
Beets: stS Operator
0 S0.02440999110
Exec Transaction41955972025-01-16 21:11:2128 hrs ago1737061881IN
Beets: stS Operator
0 S0.0256861110
Exec Transaction41722352025-01-16 16:45:3532 hrs ago1737045935IN
Beets: stS Operator
0 S0.02568324110
Exec Transaction41665942025-01-16 15:52:4733 hrs ago1737042767IN
Beets: stS Operator
0 S0.02568324110
Exec Transaction41395452025-01-16 11:27:4937 hrs ago1737026869IN
Beets: stS Operator
0 S0.0256861110
Exec Transaction41189542025-01-16 8:03:5041 hrs ago1737014630IN
Beets: stS Operator
0 S0.0077045733
Exec Transaction41188602025-01-16 8:03:1441 hrs ago1737014594IN
Beets: stS Operator
0 S0.007705433
Exec Transaction40620352025-01-15 22:51:312 days ago1736981491IN
Beets: stS Operator
0 S0.007322633
Exec Transaction40394952025-01-15 19:39:482 days ago1736969988IN
Beets: stS Operator
0 S0.007705433
Exec Transaction40234282025-01-15 17:05:372 days ago1736960737IN
Beets: stS Operator
0 S0.007705433
Exec Transaction40213762025-01-15 16:47:142 days ago1736959634IN
Beets: stS Operator
0 S0.0087916537.65
Exec Transaction40213072025-01-15 16:46:362 days ago1736959596IN
Beets: stS Operator
0 S0.0077049733
Exec Transaction40212692025-01-15 16:46:132 days ago1736959573IN
Beets: stS Operator
0 S0.0077058333
Exec Transaction40212162025-01-15 16:45:402 days ago1736959540IN
Beets: stS Operator
0 S0.007705433
Exec Transaction40211742025-01-15 16:45:142 days ago1736959514IN
Beets: stS Operator
0 S0.0077081633.01
Exec Transaction39627302025-01-15 7:13:292 days ago1736925209IN
Beets: stS Operator
0 S0.0071087933
Exec Transaction38986782025-01-14 17:50:383 days ago1736877038IN
Beets: stS Operator
0 S0.0077058333
Exec Transaction38518212025-01-14 9:30:373 days ago1736847037IN
Beets: stS Operator
0 S0.00128435.5
Exec Transaction37788362025-01-13 18:49:234 days ago1736794163IN
Beets: stS Operator
0 S0.00128435.5
Exec Transaction37658352025-01-13 16:54:584 days ago1736787298IN
Beets: stS Operator
0 S0.001459276.25
Exec Transaction37652932025-01-13 16:50:554 days ago1736787055IN
Beets: stS Operator
0 S0.001284165.5
Exec Transaction37648842025-01-13 16:47:234 days ago1736786843IN
Beets: stS Operator
0 S0.00128435.5
Exec Transaction37644332025-01-13 16:43:294 days ago1736786609IN
Beets: stS Operator
0 S0.001284235.5
View all transactions

Latest 1 internal transaction

Parent Transaction Hash Block From To
3978272024-12-14 9:32:4434 days ago1734168764  Contract Creation0 S
Loading...
Loading

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

Contract Name:
GnosisSafeProxy

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license
/**
 *Submitted for verification at SonicScan.org on 2024-12-20
*/

// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity >=0.7.0 <0.9.0;

/// @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 GnosisSafeProxy - 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 GnosisSafeProxy {
    // singleton 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 singleton;

    /// @dev Constructor function sets address of singleton contract.
    /// @param _singleton Singleton address.
    constructor(address _singleton) {
        require(_singleton != address(0), "Invalid singleton address provided");
        singleton = _singleton;
    }

    /// @dev Fallback function forwards all transactions and returns all received return data.
    fallback() external payable {
        // solhint-disable-next-line no-inline-assembly
        assembly {
            let _singleton := and(sload(0), 0xffffffffffffffffffffffffffffffffffffffff)
            // 0xa619486e == keccak("masterCopy()"). The value is right padded to 32-bytes with 0s
            if eq(calldataload(0), 0xa619486e00000000000000000000000000000000000000000000000000000000) {
                mstore(0, _singleton)
                return(0, 0x20)
            }
            calldatacopy(0, 0, calldatasize())
            let success := delegatecall(gas(), _singleton, 0, calldatasize(), 0, 0)
            returndatacopy(0, 0, returndatasize())
            if eq(success, 0) {
                revert(0, returndatasize())
            }
            return(0, returndatasize())
        }
    }
}

Contract Security Audit

Contract ABI

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

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033

Deployed Bytecode Sourcemap

524:1528:0:-:0;;;1376:42;1372:1;1366:8;1362:57;1556:66;1552:1;1539:15;1536:87;1533:2;;;1653:10;1650:1;1643:21;1692:4;1689:1;1682:15;1533:2;1745:14;1742:1;1739;1726:34;1843:1;1840;1824:14;1821:1;1809:10;1802:5;1789:56;1880:16;1877:1;1874;1859:38;1926:1;1917:7;1914:14;1911:2;;;1958:16;1955:1;1948:27;1911:2;2014:16;2011:1;2004:27

Swarm Source

ipfs://d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b9552

Block Transaction Gas Used Reward
view all blocks produced

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

OVERVIEW

The Flagship LST Hub on Sonic. From seamless staking to earning real yield on LST-focused liquidity pools, beets is the ultimate destination for your liquid-staked tokens.

Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block 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.