More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 25 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Exec Transaction | 16532518 | 5 days ago | IN | 0 CRO | 0.531354 | ||||
Exec Transaction | 16531642 | 5 days ago | IN | 0 CRO | 0.5376904 | ||||
Transfer | 16439251 | 11 days ago | IN | 47.60943185 CRO | 0.1421108 | ||||
Exec Transaction | 16419623 | 12 days ago | IN | 0 CRO | 0.43837535 | ||||
Exec Transaction | 16329155 | 18 days ago | IN | 0 CRO | 0.53074995 | ||||
Exec Transaction | 16086581 | 34 days ago | IN | 0 CRO | 0.4249128 | ||||
Exec Transaction | 16086561 | 34 days ago | IN | 0 CRO | 0.5464472 | ||||
Exec Transaction | 16025596 | 38 days ago | IN | 0 CRO | 0.51962985 | ||||
Exec Transaction | 16024234 | 38 days ago | IN | 0 CRO | 0.557232 | ||||
Exec Transaction | 16024202 | 38 days ago | IN | 0 CRO | 0.468312 | ||||
Exec Transaction | 15840867 | 50 days ago | IN | 0 CRO | 0.4125951 | ||||
Exec Transaction | 15840387 | 50 days ago | IN | 0 CRO | 0.4574024 | ||||
Exec Transaction | 15840212 | 50 days ago | IN | 0 CRO | 0.5305025 | ||||
Exec Transaction | 15840159 | 50 days ago | IN | 0 CRO | 0.49957125 | ||||
Exec Transaction | 15839792 | 50 days ago | IN | 0 CRO | 0.4356433 | ||||
Exec Transaction | 15839392 | 50 days ago | IN | 0 CRO | 0.5572944 | ||||
Transfer | 14986343 | 106 days ago | IN | 2,800 CRO | 0.13797045 | ||||
Transfer | 14986336 | 106 days ago | IN | 3,700 CRO | 0.13671127 | ||||
Transfer | 14651935 | 128 days ago | IN | 78.81372653 CRO | 1.01 | ||||
Transfer | 14650743 | 128 days ago | IN | 946 CRO | 1.01 | ||||
Transfer | 14649293 | 128 days ago | IN | 40 CRO | 0.1421108 | ||||
Transfer | 14637056 | 129 days ago | IN | 40 CRO | 0.10605 | ||||
Transfer | 14636952 | 129 days ago | IN | 40 CRO | 0.10605 | ||||
Exec Transaction | 14636830 | 129 days ago | IN | 0 CRO | 0.6890576 | ||||
Transfer | 14635824 | 129 days ago | IN | 10 CRO | 0.1421108 |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
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
Contract Source Code (Solidity)
/** *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
- No Contract Security Audit Submitted- Submit Audit Here
[{"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
Loading...
Loading
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.