CRO Price: $0.08 (-0.90%)

Contract

0x493a152A821c6418b62A46bEda4de941b128A4Ac

Overview

CRO Balance

Cronos Chain LogoCronos Chain LogoCronos Chain Logo46,027.25 CRO

CRO Value

$3,614.12 (@ $0.08/CRO)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

> 10 Internal Transactions found.

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
186716262025-03-21 14:40:016 hrs ago1742568001
0x493a152A...1b128A4Ac
1.5 CRO
186679132025-03-21 8:49:5712 hrs ago1742546997
0x493a152A...1b128A4Ac
0.25 CRO
186650692025-03-21 4:21:3616 hrs ago1742530896
0x493a152A...1b128A4Ac
0.5 CRO
186539472025-03-20 10:53:3834 hrs ago1742468018
0x493a152A...1b128A4Ac
0.25 CRO
186519772025-03-20 7:47:5037 hrs ago1742456870
0x493a152A...1b128A4Ac
1.25 CRO
186501962025-03-20 5:00:0540 hrs ago1742446805
0x493a152A...1b128A4Ac
4.75 CRO
186477702025-03-20 1:11:4344 hrs ago1742433103
0x493a152A...1b128A4Ac
3 CRO
186474182025-03-20 0:38:3644 hrs ago1742431116
0x493a152A...1b128A4Ac
7.75 CRO
186460012025-03-19 22:25:2046 hrs ago1742423120
0x493a152A...1b128A4Ac
4.5 CRO
186459982025-03-19 22:25:0346 hrs ago1742423103
0x493a152A...1b128A4Ac
2.25 CRO
186448342025-03-19 20:35:362 days ago1742416536
0x493a152A...1b128A4Ac
0.75 CRO
186434352025-03-19 18:24:032 days ago1742408643
0x493a152A...1b128A4Ac
0.25 CRO
186434322025-03-19 18:23:462 days ago1742408626
0x493a152A...1b128A4Ac
0.25 CRO
186425532025-03-19 17:01:082 days ago1742403668
0x493a152A...1b128A4Ac
2.25 CRO
186419332025-03-19 16:02:472 days ago1742400167
0x493a152A...1b128A4Ac
0.5 CRO
186338642025-03-19 3:24:332 days ago1742354673
0x493a152A...1b128A4Ac
2.75 CRO
186317372025-03-19 0:04:412 days ago1742342681
0x493a152A...1b128A4Ac
0.25 CRO
186317352025-03-19 0:04:302 days ago1742342670
0x493a152A...1b128A4Ac
0.25 CRO
186317332025-03-19 0:04:192 days ago1742342659
0x493a152A...1b128A4Ac
0.25 CRO
186317302025-03-19 0:04:032 days ago1742342643
0x493a152A...1b128A4Ac
0.25 CRO
186264782025-03-18 15:50:373 days ago1742313037
0x493a152A...1b128A4Ac
2.75 CRO
186255062025-03-18 14:19:163 days ago1742307556
0x493a152A...1b128A4Ac
0.25 CRO
186254992025-03-18 14:18:363 days ago1742307516
0x493a152A...1b128A4Ac
0.25 CRO
186254612025-03-18 14:15:013 days ago1742307301
0x493a152A...1b128A4Ac
0.25 CRO
186254572025-03-18 14:14:393 days ago1742307279
0x493a152A...1b128A4Ac
0.25 CRO
View All Internal Transactions
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

API
[{"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  ]

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.