POL Price: $0.119526 (-4.13%)
 

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction799175792025-12-05 13:09:5910 hrs ago1764940199IN
0x6A72f618...1Ea3033EE
0 POL0.029412760.63025493
Exec Transaction799028122025-12-05 4:57:4518 hrs ago1764910665IN
0x6A72f618...1Ea3033EE
0 POL0.0086958560.07333392
Exec Transaction799027412025-12-05 4:55:2318 hrs ago1764910523IN
0x6A72f618...1Ea3033EE
0 POL0.0085125558.82693771
Exec Transaction799024852025-12-05 4:46:5118 hrs ago1764910011IN
0x6A72f618...1Ea3033EE
0 POL0.004365850.725623
Exec Transaction799024482025-12-05 4:45:3718 hrs ago1764909937IN
0x6A72f618...1Ea3033EE
0 POL0.0042527249.41183418
Exec Transaction799023352025-12-05 4:41:5118 hrs ago1764909711IN
0x6A72f618...1Ea3033EE
0 POL0.0131807450.27211648
Exec Transaction799022462025-12-05 4:38:5318 hrs ago1764909533IN
0x6A72f618...1Ea3033EE
0 POL0.0098345950.04680568
Exec Transaction798789702025-12-04 15:43:0131 hrs ago1764862981IN
0x6A72f618...1Ea3033EE
0 POL0.08484216233.58277403
Exec Transaction798603882025-12-04 5:23:3742 hrs ago1764825817IN
0x6A72f618...1Ea3033EE
0 POL0.03434388115.40477008
Exec Transaction798562912025-12-04 3:07:0344 hrs ago1764817623IN
0x6A72f618...1Ea3033EE
0 POL0.0176715753.59814975
Exec Transaction798557782025-12-04 2:49:5744 hrs ago1764816597IN
0x6A72f618...1Ea3033EE
0 POL0.0229236856.82688981
Exec Transaction798172592025-12-03 5:25:592 days ago1764739559IN
0x6A72f618...1Ea3033EE
0 POL0.0084867462.53268076
Exec Transaction798172162025-12-03 5:24:332 days ago1764739473IN
0x6A72f618...1Ea3033EE
0 POL0.0230050963.06827496
Exec Transaction798171032025-12-03 5:20:472 days ago1764739247IN
0x6A72f618...1Ea3033EE
0 POL0.0202167959.56785241
Exec Transaction798151152025-12-03 4:14:312 days ago1764735271IN
0x6A72f618...1Ea3033EE
0 POL0.0098431158.75152505
Exec Transaction798144122025-12-03 3:51:052 days ago1764733865IN
0x6A72f618...1Ea3033EE
0 POL0.02164011106.136237
Exec Transaction798113322025-12-03 2:08:252 days ago1764727705IN
0x6A72f618...1Ea3033EE
0 POL0.01351096156.98194652
Exec Transaction797912132025-12-02 14:57:463 days ago1764687466IN
0x6A72f618...1Ea3033EE
0 POL0.03871464188.32368319
Exec Transaction797760312025-12-02 6:31:423 days ago1764657102IN
0x6A72f618...1Ea3033EE
0 POL0.0138172665.37960641
Exec Transaction797750452025-12-02 5:58:503 days ago1764655130IN
0x6A72f618...1Ea3033EE
0 POL0.0087113664.19573818
Exec Transaction797739452025-12-02 5:22:103 days ago1764652930IN
0x6A72f618...1Ea3033EE
0 POL0.010671663.66929021
Exec Transaction797739282025-12-02 5:21:363 days ago1764652896IN
0x6A72f618...1Ea3033EE
0 POL0.0129742663.61492089
Exec Transaction797735372025-12-02 5:08:343 days ago1764652114IN
0x6A72f618...1Ea3033EE
0 POL0.0154550960.27727117
Exec Transaction797730552025-12-02 4:52:303 days ago1764651150IN
0x6A72f618...1Ea3033EE
0 POL0.0117876460.4401815
Exec Transaction797691882025-12-02 2:43:343 days ago1764643414IN
0x6A72f618...1Ea3033EE
0 POL0.0084970263.37848228
View all transactions

Latest 1 internal transaction

Parent Transaction Hash Block From To
729358132025-06-18 21:58:38170 days ago1750283918  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.