CRO Price: $0.09 (+18.72%)

Contract

0x7d13BB0E6A337E1C48c3D905526E9fa31a007409
Transaction Hash
Method
Block
From
To
Exec Transaction165325182024-10-31 21:25:285 days ago1730409928IN
0x7d13BB0E...31a007409
0 CRO0.5313545,900
Exec Transaction165316422024-10-31 20:03:265 days ago1730405006IN
0x7d13BB0E...31a007409
0 CRO0.53769045,200
Transfer164392512024-10-25 19:23:4811 days ago1729884228IN
0x7d13BB0E...31a007409
47.60943185 CRO0.14211085,200
Exec Transaction164196232024-10-24 12:41:3812 days ago1729773698IN
0x7d13BB0E...31a007409
0 CRO0.438375355,050
Exec Transaction163291552024-10-18 15:12:1918 days ago1729264339IN
0x7d13BB0E...31a007409
0 CRO0.530749955,050
Exec Transaction160865812024-10-02 19:05:1334 days ago1727895913IN
0x7d13BB0E...31a007409
0 CRO0.42491285,200
Exec Transaction160865612024-10-02 19:03:1934 days ago1727895799IN
0x7d13BB0E...31a007409
0 CRO0.54644725,200
Exec Transaction160255962024-09-28 19:28:2238 days ago1727551702IN
0x7d13BB0E...31a007409
0 CRO0.519629855,050
Exec Transaction160242342024-09-28 17:20:4938 days ago1727544049IN
0x7d13BB0E...31a007409
0 CRO0.5572325,200
Exec Transaction160242022024-09-28 17:17:4938 days ago1727543869IN
0x7d13BB0E...31a007409
0 CRO0.4683125,200
Exec Transaction158408672024-09-16 18:16:3050 days ago1726510590IN
0x7d13BB0E...31a007409
0 CRO0.41259515,050
Exec Transaction158403872024-09-16 17:31:3050 days ago1726507890IN
0x7d13BB0E...31a007409
0 CRO0.45740245,200
Exec Transaction158402122024-09-16 17:15:0650 days ago1726506906IN
0x7d13BB0E...31a007409
0 CRO0.53050255,050
Exec Transaction158401592024-09-16 17:10:0650 days ago1726506606IN
0x7d13BB0E...31a007409
0 CRO0.499571255,050
Exec Transaction158397922024-09-16 16:35:4350 days ago1726504543IN
0x7d13BB0E...31a007409
0 CRO0.43564335,050
Exec Transaction158393922024-09-16 15:58:1150 days ago1726502291IN
0x7d13BB0E...31a007409
0 CRO0.55729445,200
Transfer149863432024-07-22 15:42:14106 days ago1721662934IN
0x7d13BB0E...31a007409
2,800 CRO0.137970455,048.5
Transfer149863362024-07-22 15:41:34106 days ago1721662894IN
0x7d13BB0E...31a007409
3,700 CRO0.136711275,002.425
Transfer146519352024-06-30 19:10:56128 days ago1719774656IN
0x7d13BB0E...31a007409
78.81372653 CRO1.015,050
Transfer146507432024-06-30 17:18:26128 days ago1719767906IN
0x7d13BB0E...31a007409
946 CRO1.015,050
Transfer146492932024-06-30 15:01:39128 days ago1719759699IN
0x7d13BB0E...31a007409
40 CRO0.14211085,200
Transfer146370562024-06-29 19:49:02129 days ago1719690542IN
0x7d13BB0E...31a007409
40 CRO0.106055,050
Transfer146369522024-06-29 19:39:14129 days ago1719689954IN
0x7d13BB0E...31a007409
40 CRO0.106055,050
Exec Transaction146368302024-06-29 19:27:43129 days ago1719689263IN
0x7d13BB0E...31a007409
0 CRO0.68905765,600
Transfer146358242024-06-29 17:53:02129 days ago1719683582IN
0x7d13BB0E...31a007409
10 CRO0.14211085,200

Latest 7 internal transactions

Parent Transaction Hash Block From To
162278532024-10-12 0:31:5725 days ago1728693117
0x7d13BB0E...31a007409
104,930.05980754 CRO
160865812024-10-02 19:05:1334 days ago1727895913
0x7d13BB0E...31a007409
7,560 CRO
160255962024-09-28 19:28:2238 days ago1727551702
0x7d13BB0E...31a007409
14.81272653 CRO
158414012024-09-16 19:06:3650 days ago1726513596
0x7d13BB0E...31a007409
50 CRO
158408672024-09-16 18:16:3050 days ago1726510590
0x7d13BB0E...31a007409
50 CRO
146368302024-06-29 19:27:43129 days ago1719689263
0x7d13BB0E...31a007409
0.001 CRO
146354082024-06-29 17:13:48129 days ago1719681228  Contract Creation0 CRO
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x2F43E36d...6Be9298Fe
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, None license
/**
 *Submitted for verification at cronoscan.com on 2023-03-29
*/

/// @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

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

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033

Deployed Bytecode Sourcemap

228:1528:0:-:0;;;1080:42;1076:1;1070:8;1066:57;1260:66;1256:1;1243:15;1240:87;1237:2;;;1357:10;1354:1;1347:21;1396:4;1393:1;1386:15;1237:2;1449:14;1446:1;1443;1430:34;1547:1;1544;1528:14;1525:1;1513:10;1506:5;1493:56;1584:16;1581:1;1578;1563:38;1630:1;1621:7;1618:14;1615:2;;;1662:16;1659:1;1652:27;1615:2;1718:16;1715:1;1708:27

Swarm Source

ipfs://d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b9552

Block Transaction Gas Used Reward
view all blocks validated

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