CRO Price: $0.09 (+1.49%)

Contract

0x544ffFC37F9ca07DcE2eF98E3b1Ee0928F31608e
Age:30D
Reset Filter

Transaction Hash
Method
Block
From
To

There are no matching entries

> 10 Internal Transactions and > 10 Token Transfers found.

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
189781242025-04-10 15:14:3612 days ago1744298076
0x544ffFC3...28F31608e
1.2 CRO
188663732025-04-03 8:07:1220 days ago1743667632
0x544ffFC3...28F31608e
8.8 CRO
183204742025-02-26 14:57:5155 days ago1740581871
0x544ffFC3...28F31608e
7 CRO
183180552025-02-26 11:10:3356 days ago1740568233
0x544ffFC3...28F31608e
5 CRO
183180472025-02-26 11:09:4756 days ago1740568187
0x544ffFC3...28F31608e
5 CRO
183176592025-02-26 10:33:2156 days ago1740566001
0x544ffFC3...28F31608e
1.5 CRO
183176592025-02-26 10:33:2156 days ago1740566001
0x544ffFC3...28F31608e
1.5 CRO
183176592025-02-26 10:33:2156 days ago1740566001
0x544ffFC3...28F31608e
1.5 CRO
183176592025-02-26 10:33:2156 days ago1740566001
0x544ffFC3...28F31608e
1.5 CRO
183176592025-02-26 10:33:2156 days ago1740566001
0x544ffFC3...28F31608e
1.5 CRO
183176592025-02-26 10:33:2156 days ago1740566001
0x544ffFC3...28F31608e
1.5 CRO
183176592025-02-26 10:33:2156 days ago1740566001
0x544ffFC3...28F31608e
1.5 CRO
182574622025-02-22 12:04:2960 days ago1740225869
0x544ffFC3...28F31608e
7 CRO
182574622025-02-22 12:04:2960 days ago1740225869
0x544ffFC3...28F31608e
7 CRO
182574622025-02-22 12:04:2960 days ago1740225869
0x544ffFC3...28F31608e
5 CRO
182574622025-02-22 12:04:2960 days ago1740225869
0x544ffFC3...28F31608e
5 CRO
182574622025-02-22 12:04:2960 days ago1740225869
0x544ffFC3...28F31608e
5 CRO
182574622025-02-22 12:04:2960 days ago1740225869
0x544ffFC3...28F31608e
5 CRO
182574622025-02-22 12:04:2960 days ago1740225869
0x544ffFC3...28F31608e
4 CRO
182574622025-02-22 12:04:2960 days ago1740225869
0x544ffFC3...28F31608e
8.5 CRO
182574202025-02-22 12:00:3260 days ago1740225632
0x544ffFC3...28F31608e
2 CRO
182574202025-02-22 12:00:3260 days ago1740225632
0x544ffFC3...28F31608e
2 CRO
182574202025-02-22 12:00:3260 days ago1740225632
0x544ffFC3...28F31608e
5 CRO
182574202025-02-22 12:00:3260 days ago1740225632
0x544ffFC3...28F31608e
7.5 CRO
182574202025-02-22 12:00:3260 days ago1740225632
0x544ffFC3...28F31608e
5 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.