Amoy Testnet

Contract

0xa4E0d4c798226360944D9E90A7Fb233b61496C62

Overview

POL Balance

Polygon PoS Chain Amoy LogoPolygon PoS Chain Amoy LogoPolygon PoS Chain Amoy Logo0 POL

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Exec Transaction191254362025-03-12 20:46:5712 days ago1741812417IN
0xa4E0d4c7...b61496C62
0 POL0.003977566.3714452
Approve Hash191252552025-03-12 20:39:4912 days ago1741811989IN
0xa4E0d4c7...b61496C62
0 POL0.0035033566.3714452
Exec Transaction182333042025-02-18 17:46:0934 days ago1739900769IN
0xa4E0d4c7...b61496C62
0 POL0.0428108828.15690219
Approve Hash182332882025-02-18 17:45:3534 days ago1739900735IN
0xa4E0d4c7...b61496C62
0 POL0.0014862328.15690219
Exec Transaction180687482025-02-14 15:30:0438 days ago1739547004IN
0xa4E0d4c7...b61496C62
0 POL0.0039563438.52141443
Approve Hash180687342025-02-14 15:29:3438 days ago1739546974IN
0xa4E0d4c7...b61496C62
0 POL0.0020333138.52141443
Exec Transaction157245132024-12-17 18:20:3197 days ago1734459631IN
0xa4E0d4c7...b61496C62
0 POL0.002937625.74703581
Approve Hash157244902024-12-17 18:19:4197 days ago1734459581IN
0xa4E0d4c7...b61496C62
0 POL0.001319625.00000001
Exec Transaction129772442024-10-09 17:30:27166 days ago1728495027IN
0xa4E0d4c7...b61496C62
0 POL0.0230179594.04412095
Approve Hash129772292024-10-09 17:29:55166 days ago1728494995IN
0xa4E0d4c7...b61496C62
0 POL0.00541529102.59358651
Exec Transaction124811832024-09-27 11:11:18178 days ago1727435478IN
0xa4E0d4c7...b61496C62
0 POL0.0021239130.00000004
Approve Hash124811372024-09-27 11:09:42178 days ago1727435382IN
0xa4E0d4c7...b61496C62
0 POL0.0015835430.00053336
Exec Transaction124391122024-09-26 10:21:18179 days ago1727346078IN
0xa4E0d4c7...b61496C62
0 POL0.0017716129.55000001
Approve Hash124388052024-09-26 10:10:26179 days ago1727345426IN
0xa4E0d4c7...b61496C62
0 POL0.0016896132.01000001
Exec Transaction124354842024-09-26 8:12:48179 days ago1727338368IN
0xa4E0d4c7...b61496C62
0 POL0.0018285630.50000001
Approve Hash124353382024-09-26 8:07:06179 days ago1727338026IN
0xa4E0d4c7...b61496C62
0 POL0.0017999334.10000003
Exec Transaction110739592024-08-23 14:17:38213 days ago1724422658IN
0xa4E0d4c7...b61496C62
0 POL0.0021753428.75000001
Approve Hash110739462024-08-23 14:17:10213 days ago1724422630IN
0xa4E0d4c7...b61496C62
0 POL0.0015175428.75000001
Exec Transaction104771182024-08-08 15:12:26228 days ago1723129946IN
0xa4E0d4c7...b61496C62
0 POL0.0027390236.22286352
Approve Hash104771022024-08-08 15:11:52228 days ago1723129912IN
0xa4E0d4c7...b61496C62
0 POL0.0019119836.22286352
Exec Transaction101663862024-07-31 17:44:34236 days ago1722447874IN
0xa4E0d4c7...b61496C62
0 POL0.0019429533.19704068
Approve Hash101663732024-07-31 17:44:06236 days ago1722447846IN
0xa4E0d4c7...b61496C62
0 POL0.0024857447.09273348
Exec Transaction100836862024-07-29 16:45:45238 days ago1722271545IN
0xa4E0d4c7...b61496C62
0 POL0.0031836154.3948
Approve Hash100836702024-07-29 16:45:11238 days ago1722271511IN
0xa4E0d4c7...b61496C62
0 POL0.0028711754.3948
Exec Transaction96625442024-07-19 7:49:26248 days ago1721375366IN
0xa4E0d4c7...b61496C62
0 POL0.0009921215.75000001
View all transactions

Latest 1 internal transaction

Parent Transaction Hash Block From To
49491752024-03-22 10:44:41367 days ago1711104281  Contract Creation0 POL
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x82Bcc9C5...d3a641Fa0
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

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 1 : GnosisSafeProxy.sol
// 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())
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_singleton","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033

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
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.