POL Price: $0.120071 (-3.83%)
 

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction799372272025-12-06 0:04:552 mins ago1764979495IN
0xbacD00C9...732B0aB35
0 POL0.0115066936.25000141
Exec Transaction799315562025-12-05 20:55:533 hrs ago1764968153IN
0xbacD00C9...732B0aB35
0 POL0.0075236335.00129213
Exec Transaction799315452025-12-05 20:55:313 hrs ago1764968131IN
0xbacD00C9...732B0aB35
0 POL0.0097181735.00128153
Exec Transaction799315412025-12-05 20:55:233 hrs ago1764968123IN
0xbacD00C9...732B0aB35
0 POL0.0047028435.00128457
Exec Transaction799315262025-12-05 20:54:533 hrs ago1764968093IN
0xbacD00C9...732B0aB35
0 POL0.0083411935.00128183
Exec Transaction799315172025-12-05 20:54:353 hrs ago1764968075IN
0xbacD00C9...732B0aB35
0 POL0.0092024635.00126609
Exec Transaction799262072025-12-05 17:57:356 hrs ago1764957455IN
0xbacD00C9...732B0aB35
0 POL0.0066692149.63398395
Exec Transaction799237022025-12-05 16:34:057 hrs ago1764952445IN
0xbacD00C9...732B0aB35
0 POL0.03614864151.57107532
Exec Transaction799234472025-12-05 16:25:357 hrs ago1764951935IN
0xbacD00C9...732B0aB35
0 POL0.008845155.36083406
Exec Transaction799234402025-12-05 16:25:217 hrs ago1764951921IN
0xbacD00C9...732B0aB35
0 POL0.01501735152.10219908
Exec Transaction799234222025-12-05 16:24:457 hrs ago1764951885IN
0xbacD00C9...732B0aB35
0 POL0.02072827154.2707394
Exec Transaction799233942025-12-05 16:23:497 hrs ago1764951829IN
0xbacD00C9...732B0aB35
0 POL0.03895986155.73916704
Exec Transaction799233912025-12-05 16:23:437 hrs ago1764951823IN
0xbacD00C9...732B0aB35
0 POL0.03931576157.10595878
Exec Transaction799231702025-12-05 16:16:217 hrs ago1764951381IN
0xbacD00C9...732B0aB35
0 POL0.00902304158.48810959
Exec Transaction799231672025-12-05 16:16:157 hrs ago1764951375IN
0xbacD00C9...732B0aB35
0 POL0.02004555158.66858231
Exec Transaction799231572025-12-05 16:15:557 hrs ago1764951355IN
0xbacD00C9...732B0aB35
0 POL0.04196869159.63384357
Exec Transaction799231532025-12-05 16:15:477 hrs ago1764951347IN
0xbacD00C9...732B0aB35
0 POL0.03788963158.9864024
Exec Transaction799227482025-12-05 16:02:178 hrs ago1764950537IN
0xbacD00C9...732B0aB35
0 POL0.04702138187.89765878
Exec Transaction799225022025-12-05 15:54:058 hrs ago1764950045IN
0xbacD00C9...732B0aB35
0 POL0.0102119179.40805787
Exec Transaction799224952025-12-05 15:53:518 hrs ago1764950031IN
0xbacD00C9...732B0aB35
0 POL0.0179433181.75036325
Exec Transaction799224832025-12-05 15:53:278 hrs ago1764950007IN
0xbacD00C9...732B0aB35
0 POL0.02490575185.35481133
Exec Transaction799224752025-12-05 15:53:118 hrs ago1764949991IN
0xbacD00C9...732B0aB35
0 POL0.02314659183.23193166
Exec Transaction799224582025-12-05 15:52:378 hrs ago1764949957IN
0xbacD00C9...732B0aB35
0 POL0.04603196175.08906348
Exec Transaction799224472025-12-05 15:52:158 hrs ago1764949935IN
0xbacD00C9...732B0aB35
0 POL0.04140849173.70499251
Exec Transaction799224442025-12-05 15:52:098 hrs ago1764949929IN
0xbacD00C9...732B0aB35
0 POL0.04316923172.50444875
View all transactions

Latest 1 internal transaction

Parent Transaction Hash Block From To
711691662025-05-06 4:57:25213 days ago1746507445  Contract Creation0 POL
Cross-Chain Transactions
Loading...
Loading

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

Contract Name:
GnosisSafeProxy

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2025-10-27
*/

// 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"}]

0x608060405234801561001057600080fd5b5060405161017138038061017183398101604081905261002f916100b9565b6001600160a01b0381166100945760405162461bcd60e51b815260206004820152602260248201527f496e76616c69642073696e676c65746f6e20616464726573732070726f766964604482015261195960f21b606482015260840160405180910390fd5b600080546001600160a01b0319166001600160a01b03929092169190911790556100e7565b6000602082840312156100ca578081fd5b81516001600160a01b03811681146100e0578182fd5b9392505050565b607c806100f56000396000f3fe6080604052600080546001600160a01b0316813563530ca43760e11b1415602857808252602082f35b3682833781823684845af490503d82833e806041573d82fd5b503d81f3fea264697066735822122015938e3bf2c49f5df5c1b7f9569fa85cc5d6f3074bb258a2dc0c7e299bc9e33664736f6c63430008040033000000000000000000000000e51abdf814f8854941b9fe8e3a4f65cab4e7a4a8

Deployed Bytecode

0x6080604052600080546001600160a01b0316813563530ca43760e11b1415602857808252602082f35b3682833781823684845af490503d82833e806041573d82fd5b503d81f3fea264697066735822122015938e3bf2c49f5df5c1b7f9569fa85cc5d6f3074bb258a2dc0c7e299bc9e33664736f6c63430008040033

Deployed Bytecode Sourcemap

524:1528:0:-:0;;;1372:1;1366:8;;-1:-1:-1;;;;;1362:57:0;1539:15;;-1:-1:-1;;;1536:87:0;1533:2;;;1653:10;1372:1;1643:21;1692:4;1372:1;1682:15;1533:2;1745:14;1372:1;;1726:34;1372:1;;1745:14;1372:1;1809:10;1802:5;1789:56;1774:71;;1880:16;1372:1;;1859:38;1917:7;1911:2;;1958:16;1372:1;1948:27;1911:2;;2014:16;1372:1;2004:27

Swarm Source

ipfs://15938e3bf2c49f5df5c1b7f9569fa85cc5d6f3074bb258a2dc0c7e299bc9e336

Block Transaction Gas Used Reward
view all blocks produced

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

Validator Index Block Amount
View All Withdrawals

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