S Price: $0.430854 (+0.89%)

Contract

0x179B816a930376b89627FD3016B2A0086487a79E

Overview

S Balance

Sonic LogoSonic LogoSonic Logo0 S

S Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction79150692025-02-14 22:53:0024 days ago1739573580IN
0x179B816a...86487a79E
0 S0.0054903855.01
Exec Transaction61551112025-02-01 17:03:1137 days ago1738429391IN
0x179B816a...86487a79E
0 S0.0269116655.01
Exec Transaction56308102025-01-27 23:24:0342 days ago1738020243IN
0x179B816a...86487a79E
0 S0.0054910955.01
Exec Transaction55046522025-01-26 22:22:1943 days ago1737930139IN
0x179B816a...86487a79E
0 S0.0392832166.01
Exec Transaction46920982025-01-20 14:49:1949 days ago1737384559IN
0x179B816a...86487a79E
0 S0.0166497155.01
Exec Transaction46920312025-01-20 14:48:3149 days ago1737384511IN
0x179B816a...86487a79E
0 S0.0045011355.01
Exec Transaction40305182025-01-15 18:16:5854 days ago1736965018IN
0x179B816a...86487a79E
0 S0.0182351233.01
Exec Transaction40120832025-01-15 15:30:2254 days ago1736955022IN
0x179B816a...86487a79E
0 S0.0027010133.01
Exec Transaction40119592025-01-15 15:29:2454 days ago1736954964IN
0x179B816a...86487a79E
0 S0.0099922933.01
Exec Transaction39447442025-01-15 2:36:4555 days ago1736908605IN
0x179B816a...86487a79E
0 S0.0158263133.01
Exec Transaction35933972025-01-12 14:51:2357 days ago1736693483IN
0x179B816a...86487a79E
0 S0.001516755.51
Exec Transaction35932102025-01-12 14:49:5957 days ago1736693399IN
0x179B816a...86487a79E
0 S0.002666375.51
Exec Transaction26555392025-01-06 2:47:5464 days ago1736131674IN
0x179B816a...86487a79E
0 S0.000402011.11
Exec Transaction26528122025-01-06 2:17:3864 days ago1736129858IN
0x179B816a...86487a79E
0 S0.000618451.43
Exec Transaction26521072025-01-06 2:11:4564 days ago1736129505IN
0x179B816a...86487a79E
0 S0.000419321.51
Exec Transaction26520732025-01-06 2:11:2664 days ago1736129486IN
0x179B816a...86487a79E
0 S0.000908113
Exec Transaction26496482025-01-06 1:49:5864 days ago1736128198IN
0x179B816a...86487a79E
0 S0.000093671.42
Exec Transaction25304862025-01-05 1:44:3965 days ago1736041479IN
0x179B816a...86487a79E
0 S0.000104611.11
Exec Transaction25146032025-01-04 22:13:1065 days ago1736028790IN
0x179B816a...86487a79E
0 S0.000105051.11
Exec Transaction23232232025-01-03 4:40:1767 days ago1735879217IN
0x179B816a...86487a79E
0 S0.000104751.11
Exec Transaction23231972025-01-03 4:39:3467 days ago1735879174IN
0x179B816a...86487a79E
0 S0.000295931.11
Exec Transaction22108052025-01-02 0:28:0868 days ago1735777688IN
0x179B816a...86487a79E
0 S0.00075672.5
Exec Transaction21960882025-01-01 21:02:5468 days ago1735765374IN
0x179B816a...86487a79E
0 S0.000224092.2
Exec Transaction19145662024-12-29 15:58:0871 days ago1735487888IN
0x179B816a...86487a79E
0 S0.000436471.24
Exec Transaction15141112024-12-25 0:50:3476 days ago1735087834IN
0x179B816a...86487a79E
0 S0.000637241.11
View all transactions

Latest 1 internal transaction

Parent Transaction Hash Block From To
4764992024-12-16 10:57:0284 days ago1734346622  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

API
[{"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
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.