POL Price: $0.220549 (+6.29%)
 

Overview

POL Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo10 POL

POL Value

$2.21 (@ $0.22/POL)

Token Holdings

Multichain Info

Transaction Hash
Method
Block
From
To
Exec Transaction704576902025-04-18 15:37:494 days ago1744990669IN
0xAB1DA89e...d42A32D13
0 POL0.0063533426.31767372
Exec Transaction620217342024-09-19 16:11:58215 days ago1726762318IN
0xAB1DA89e...d42A32D13
0 POL0.0091249130.03958228
Exec Transaction617846022024-09-13 18:39:16221 days ago1726252756IN
0xAB1DA89e...d42A32D13
0 POL0.0098973770.74053299
Exec Transaction610338172024-08-25 20:05:48240 days ago1724616348IN
0xAB1DA89e...d42A32D13
0 POL0.0018573225.00000002
Exec Transaction603802932024-08-09 12:58:42256 days ago1723208322IN
0xAB1DA89e...d42A32D13
0 POL0.0031087730.60000012
Exec Transaction603021332024-08-07 13:39:14258 days ago1723037954IN
0xAB1DA89e...d42A32D13
0 POL0.0057798456.89831456
Exec Transaction599916062024-07-30 14:33:52266 days ago1722350032IN
0xAB1DA89e...d42A32D13
0 POL0.0076072830.00000015
Exec Transaction599915922024-07-30 14:33:22266 days ago1722350002IN
0xAB1DA89e...d42A32D13
0 POL0.0027883230.4991289
Exec Transaction599915622024-07-30 14:32:18266 days ago1722349938IN
0xAB1DA89e...d42A32D13
0 POL0.0093612230.40000008
Exec Transaction599915472024-07-30 14:31:46266 days ago1722349906IN
0xAB1DA89e...d42A32D13
0 POL0.00252730.60000007
Exec Transaction599915292024-07-30 14:31:08266 days ago1722349868IN
0xAB1DA89e...d42A32D13
0 POL0.0142546530.40000005
Exec Transaction599915152024-07-30 14:30:38266 days ago1722349838IN
0xAB1DA89e...d42A32D13
0 POL0.0024618930.00000018
Exec Transaction599915022024-07-30 14:30:10266 days ago1722349810IN
0xAB1DA89e...d42A32D13
0 POL0.0098439630.1204596
Exec Transaction599914882024-07-30 14:29:42266 days ago1722349782IN
0xAB1DA89e...d42A32D13
0 POL0.0025799430.00000022
Exec Transaction599914732024-07-30 14:29:10266 days ago1722349750IN
0xAB1DA89e...d42A32D13
0 POL0.0069141530.66579553
Exec Transaction599914652024-07-30 14:28:40266 days ago1722349720IN
0xAB1DA89e...d42A32D13
0 POL0.0028764930.60000001
Exec Transaction599914572024-07-30 14:28:08266 days ago1722349688IN
0xAB1DA89e...d42A32D13
0 POL0.0119782830.00000012
Exec Transaction599914452024-07-30 14:27:38266 days ago1722349658IN
0xAB1DA89e...d42A32D13
0 POL0.0024586230.00000013
Exec Transaction599914282024-07-30 14:27:02266 days ago1722349622IN
0xAB1DA89e...d42A32D13
0 POL0.0151986832.49999997
Exec Transaction599914122024-07-30 14:26:28266 days ago1722349588IN
0xAB1DA89e...d42A32D13
0 POL0.0029771130.00000015
Transfer599913892024-07-30 14:25:38266 days ago1722349538IN
0xAB1DA89e...d42A32D13
10 POL0.0008198730.00000013

Latest 1 internal transaction

Parent Transaction Hash Block From To
563883612024-04-29 14:47:42358 days ago1714402062  Contract Creation0 POL
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xb412684F...aB3ae124D
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 polygonscan.com on 2021-07-05
*/

/**
 *Submitted for verification at polygonscan.com on 2021-06-16
*/

// 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())
        }
    }
}

/// @title Proxy Factory - Allows to create new proxy contact and execute a message call to the new proxy within one transaction.
/// @author Stefan George - <[email protected]>
contract GnosisSafeProxyFactory {
    event ProxyCreation(GnosisSafeProxy proxy, address singleton);

    /// @dev Allows to create new proxy contact and execute a message call to the new proxy within one transaction.
    /// @param singleton Address of singleton contract.
    /// @param data Payload for message call sent to new proxy contract.
    function createProxy(address singleton, bytes memory data) public returns (GnosisSafeProxy proxy) {
        proxy = new GnosisSafeProxy(singleton);
        if (data.length > 0)
            // solhint-disable-next-line no-inline-assembly
            assembly {
                if eq(call(gas(), proxy, 0, add(data, 0x20), mload(data), 0, 0), 0) {
                    revert(0, 0)
                }
            }
        emit ProxyCreation(proxy, singleton);
    }

    /// @dev Allows to retrieve the runtime code of a deployed Proxy. This can be used to check that the expected Proxy was deployed.
    function proxyRuntimeCode() public pure returns (bytes memory) {
        return type(GnosisSafeProxy).runtimeCode;
    }

    /// @dev Allows to retrieve the creation code used for the Proxy deployment. With this it is easily possible to calculate predicted address.
    function proxyCreationCode() public pure returns (bytes memory) {
        return type(GnosisSafeProxy).creationCode;
    }

    /// @dev Allows to create new proxy contact using CREATE2 but it doesn't run the initializer.
    ///      This method is only meant as an utility to be called from other methods
    /// @param _singleton Address of singleton contract.
    /// @param initializer Payload for message call sent to new proxy contract.
    /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract.
    function deployProxyWithNonce(
        address _singleton,
        bytes memory initializer,
        uint256 saltNonce
    ) internal returns (GnosisSafeProxy proxy) {
        // If the initializer changes the proxy address should change too. Hashing the initializer data is cheaper than just concatinating it
        bytes32 salt = keccak256(abi.encodePacked(keccak256(initializer), saltNonce));
        bytes memory deploymentData = abi.encodePacked(type(GnosisSafeProxy).creationCode, uint256(uint160(_singleton)));
        // solhint-disable-next-line no-inline-assembly
        assembly {
            proxy := create2(0x0, add(0x20, deploymentData), mload(deploymentData), salt)
        }
        require(address(proxy) != address(0), "Create2 call failed");
    }

    /// @dev Allows to create new proxy contact and execute a message call to the new proxy within one transaction.
    /// @param _singleton Address of singleton contract.
    /// @param initializer Payload for message call sent to new proxy contract.
    /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract.
    function createProxyWithNonce(
        address _singleton,
        bytes memory initializer,
        uint256 saltNonce
    ) public returns (GnosisSafeProxy proxy) {
        proxy = deployProxyWithNonce(_singleton, initializer, saltNonce);
        if (initializer.length > 0)
            // solhint-disable-next-line no-inline-assembly
            assembly {
                if eq(call(gas(), proxy, 0, add(initializer, 0x20), mload(initializer), 0, 0), 0) {
                    revert(0, 0)
                }
            }
        emit ProxyCreation(proxy, _singleton);
    }

    /// @dev Allows to create new proxy contact, execute a message call to the new proxy and call a specified callback within one transaction
    /// @param _singleton Address of singleton contract.
    /// @param initializer Payload for message call sent to new proxy contract.
    /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract.
    /// @param callback Callback that will be invoced after the new proxy contract has been successfully deployed and initialized.
    function createProxyWithCallback(
        address _singleton,
        bytes memory initializer,
        uint256 saltNonce,
        IProxyCreationCallback callback
    ) public returns (GnosisSafeProxy proxy) {
        uint256 saltNonceWithCallback = uint256(keccak256(abi.encodePacked(saltNonce, callback)));
        proxy = createProxyWithNonce(_singleton, initializer, saltNonceWithCallback);
        if (address(callback) != address(0)) callback.proxyCreated(proxy, _singleton, initializer, saltNonce);
    }

    /// @dev Allows to get the address for a new proxy contact created via `createProxyWithNonce`
    ///      This method is only meant for address calculation purpose when you use an initializer that would revert,
    ///      therefore the response is returned with a revert. When calling this method set `from` to the address of the proxy factory.
    /// @param _singleton Address of singleton contract.
    /// @param initializer Payload for message call sent to new proxy contract.
    /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract.
    function calculateCreateProxyWithNonceAddress(
        address _singleton,
        bytes calldata initializer,
        uint256 saltNonce
    ) external returns (GnosisSafeProxy proxy) {
        proxy = deployProxyWithNonce(_singleton, initializer, saltNonce);
        revert(string(abi.encodePacked(proxy)));
    }
}

interface IProxyCreationCallback {
    function proxyCreated(
        GnosisSafeProxy proxy,
        address _singleton,
        bytes calldata initializer,
        uint256 saltNonce
    ) external;
}

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

598:1528:0:-:0;;;1450:42;1446:1;1440:8;1436:57;1630:66;1626:1;1613:15;1610:87;1607:2;;;1727:10;1724:1;1717:21;1766:4;1763:1;1756:15;1607:2;1819:14;1816:1;1813;1800:34;1917:1;1914;1898:14;1895:1;1883:10;1876:5;1863:56;1954:16;1951:1;1948;1933:38;2000:1;1991:7;1988:14;1985:2;;;2032:16;2029:1;2022:27;1985:2;2088:16;2085:1;2078: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
Chain Token Portfolio % Price Amount Value
BSC78.59%$125,331.9865$25,331.99
BSC1.10%$2.07170.794$353.54
BSC0.79%$619.520.4092$253.51
BSC0.52%$1.62103.3029$167.35
BSC0.32%$3.5528.6481$101.7
BSC0.28%$0.0309992,910.0123$90.21
BSC0.22%$0.283392253.2168$71.76
BSC0.18%$1,806.210.0319$57.62
BSC0.12%$0.64576460.7321$39.22
BSC0.06%$0.69573728.1278$19.57
BSC0.05%$0.008641,685.6708$14.56
BSC0.04%$3.154.1044$12.93
BSC0.03%$0.0011857,905.1469$9.37
BSC0.02%$0.33624915.5088$5.21
BSC<0.01%$586.90.00510619$3
BSC<0.01%$11.9728$1.97
ZKEVM2.81%$0.2218124,089.0776$907.01
ZKEVM1.62%$1,807.250.2898$523.74
ZKEVM0.80%$1259.4672$259.47
ZKEVM0.80%$0.999853259.347$259.31
ARB1.91%$0.99986615.4951$615.41
ARB1.01%$1.62200.3131$324.51
ARB0.96%$3.5586.9641$308.72
ARB0.56%$2,167.590.0827$179.29
ARB0.38%$0.0059620,307.0103$121.03
ARB0.31%$1,807.190.055$99.42
ARB0.15%$0.9902150.428$49.93
ARB0.15%$147.9736$47.97
ARB0.14%$0.284938159.4149$45.42
ARB0.12%$0.330879115.0102$38.05
ARB0.08%$0.030967863.6009$26.74
ARB0.05%$117.0374$17.04
ARB0.05%$93,5100.00015717$14.7
ARB0.04%$0.33561243.0401$14.44
ARB0.03%$1,801.940.00559618$10.08
ARB0.03%$19.8712$9.91
ARB<0.01%$0.001006670.2652$0.6743
ARB<0.01%$1,797.020.00014373$0.2582
POL1.58%$1,805.940.2824$510.05
POL1.09%$0.2219031,589.7226$352.76
POL0.71%$1227.3478$227.35
POL0.59%$0.69003276.5552$190.83
POL0.51%$0.999898164.7314$164.71
POL0.39%$0.999898125.2578$125.25
POL0.20%$0.00626110,076.2115$63.09
POL0.19%$93,3710.00065708$61.35
POL0.06%$0.33545961.2558$20.55
POL0.05%$14.61.1269$16.45
POL0.04%$0.028492485.54$13.83
POL0.04%$0.00104812,044.9527$12.62
POL0.04%$2,163.450.00546386$11.82
POL0.03%$0.49690321.4054$10.64
POL0.03%$0.66950912.9419$8.66
POL0.03%$0.00039321,300.4665$8.38
POL0.02%$1.045.0403$5.26
POL0.02%$0.9839095.2289$5.14
POL0.01%$0.006464521.9825$3.37
POL0.01%$0.25861512.751$3.3
POL<0.01%$0.12651823.4674$2.97
POL<0.01%$0.3088177.6608$2.37
POL<0.01%<$0.0000016,567,008.3932$2.34
POL
Polygon (POL)
<0.01%$0.22053810$2.21
POL<0.01%<$0.000001135,873,454.5441$0.8016
POL<0.01%$0.2259851.6319$0.3687
POL<0.01%$0.00424348.6242$0.2062
Loading...
Loading
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.