CRO Price: $0.09 (-1.86%)

Contract

0xA0c8102f74f311f616A9959625E644F4aA3b149C

Overview

CRO Balance

Cronos Chain LogoCronos Chain LogoCronos Chain Logo0.098 CRO

CRO Value

Less Than $0.01 (@ $0.09/CRO)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction145395802024-06-23 10:24:52304 days ago1719138292IN
0xA0c8102f...4aA3b149C
0 CRO0.412539555,050
Exec Transaction145389132024-06-23 9:21:52304 days ago1719134512IN
0xA0c8102f...4aA3b149C
0 CRO0.479674255,050
Transfer143583512024-06-11 13:38:44316 days ago1718113124IN
0xA0c8102f...4aA3b149C
0.1 CRO0.15304245,600

Latest 3 internal transactions

Parent Transaction Hash Block From To
145395802024-06-23 10:24:52304 days ago1719138292
0xA0c8102f...4aA3b149C
0.001 CRO
145389132024-06-23 9:21:52304 days ago1719134512
0xA0c8102f...4aA3b149C
0.001 CRO
143574532024-06-11 12:13:18316 days ago1718107998  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

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