POL Price: $0.119601 (-4.07%)
 

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction797577682025-12-01 20:22:544 days ago1764620574IN
0x9c667a1d...4Ed346b66
0 POL0.006438447.45039615
Exec Transaction797229532025-12-01 1:02:244 days ago1764550944IN
0x9c667a1d...4Ed346b66
0 POL0.891165245,506.76476104
Exec Transaction797205152025-11-30 23:41:084 days ago1764546068IN
0x9c667a1d...4Ed346b66
0 POL0.0019396735.23349182
Exec Transaction797205142025-11-30 23:41:064 days ago1764546066IN
0x9c667a1d...4Ed346b66
0 POL0.003150235.23247786
Exec Transaction794959332025-11-25 18:55:0110 days ago1764096901IN
0x9c667a1d...4Ed346b66
0 POL0.0141283198.72622011
Exec Transaction787421872025-11-08 8:07:3527 days ago1762589255IN
0x9c667a1d...4Ed346b66
0 POL0.03253436374.59109904
Exec Transaction785998722025-11-05 1:03:2730 days ago1762304607IN
0x9c667a1d...4Ed346b66
0 POL0.02392773117.76329234
Exec Transaction783761052025-10-30 20:43:5936 days ago1761857039IN
0x9c667a1d...4Ed346b66
0 POL0.006981747.38916731
Exec Transaction783761012025-10-30 20:43:5136 days ago1761857031IN
0x9c667a1d...4Ed346b66
0 POL0.011147447.39764881
Exec Transaction783760982025-10-30 20:43:4536 days ago1761857025IN
0x9c667a1d...4Ed346b66
0 POL0.0076805547.40408918
Exec Transaction783760962025-10-30 20:43:4136 days ago1761857021IN
0x9c667a1d...4Ed346b66
0 POL0.0083660847.37092391
Exec Transaction783760942025-10-30 20:43:3736 days ago1761857017IN
0x9c667a1d...4Ed346b66
0 POL0.0090536347.35682532
Exec Transaction783760922025-10-30 20:43:3336 days ago1761857013IN
0x9c667a1d...4Ed346b66
0 POL0.0076765747.40853167
Exec Transaction783760902025-10-30 20:43:2936 days ago1761857009IN
0x9c667a1d...4Ed346b66
0 POL0.006979947.44589112
Exec Transaction783760882025-10-30 20:43:2536 days ago1761857005IN
0x9c667a1d...4Ed346b66
0 POL0.0090861547.48124797
Exec Transaction783760232025-10-30 20:41:1536 days ago1761856875IN
0x9c667a1d...4Ed346b66
0 POL0.0070672747.99445737
Exec Transaction783760212025-10-30 20:41:1136 days ago1761856871IN
0x9c667a1d...4Ed346b66
0 POL0.0098929148.04252417
Exec Transaction783760202025-10-30 20:41:0936 days ago1761856869IN
0x9c667a1d...4Ed346b66
0 POL0.0084768248.04011794
Exec Transaction783760172025-10-30 20:41:0336 days ago1761856863IN
0x9c667a1d...4Ed346b66
0 POL0.0070752148.03919355
Exec Transaction783760142025-10-30 20:40:5736 days ago1761856857IN
0x9c667a1d...4Ed346b66
0 POL0.0098992648.04373626
Exec Transaction783760122025-10-30 20:40:5336 days ago1761856853IN
0x9c667a1d...4Ed346b66
0 POL0.007078448.06938579
Exec Transaction783760102025-10-30 20:40:4936 days ago1761856849IN
0x9c667a1d...4Ed346b66
0 POL0.0077703847.99198095
Exec Transaction783760082025-10-30 20:40:4536 days ago1761856845IN
0x9c667a1d...4Ed346b66
0 POL0.0077822348.03936448
Exec Transaction783760052025-10-30 20:40:3936 days ago1761856839IN
0x9c667a1d...4Ed346b66
0 POL0.0084894548.04637755
Exec Transaction783760032025-10-30 20:40:3536 days ago1761856835IN
0x9c667a1d...4Ed346b66
0 POL0.0077881548.08985422
View all transactions

Latest 1 internal transaction

Parent Transaction Hash Block From To
692104122025-03-18 19:03:43262 days ago1742324623  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.