More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 103 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Exec Transaction | 39569937 | 7 days ago | IN | 0 xDAI | 0.0001952 | ||||
Exec Transaction | 38319795 | 81 days ago | IN | 0 xDAI | 0.00024334 | ||||
Exec Transaction | 37552647 | 127 days ago | IN | 0 xDAI | 0.00026446 | ||||
Exec Transaction | 37439389 | 134 days ago | IN | 0 xDAI | 0.00008011 | ||||
Exec Transaction | 33569911 | 365 days ago | IN | 0 xDAI | 0.00401156 | ||||
Exec Transaction | 32906326 | 405 days ago | IN | 0 xDAI | 0.00266008 | ||||
Exec Transaction | 31505354 | 491 days ago | IN | 0 xDAI | 0.00020565 | ||||
Exec Transaction | 30310358 | 565 days ago | IN | 0 xDAI | 0.00019387 | ||||
Exec Transaction | 29243304 | 630 days ago | IN | 0 xDAI | 0.00033317 | ||||
Exec Transaction | 29228003 | 631 days ago | IN | 0 xDAI | 0.00023022 | ||||
Exec Transaction | 29107994 | 638 days ago | IN | 0 xDAI | 0.00034032 | ||||
Exec Transaction | 28759102 | 659 days ago | IN | 0 xDAI | 0.00027432 | ||||
Exec Transaction | 28416168 | 680 days ago | IN | 0 xDAI | 0.00038072 | ||||
Exec Transaction | 27279392 | 749 days ago | IN | 0 xDAI | 0.00018056 | ||||
Exec Transaction | 27038360 | 764 days ago | IN | 0 xDAI | 0.00040097 | ||||
Exec Transaction | 26628291 | 789 days ago | IN | 0 xDAI | 0.00041956 | ||||
Exec Transaction | 25371884 | 865 days ago | IN | 0 xDAI | 0.00029648 | ||||
Exec Transaction | 25335923 | 867 days ago | IN | 0 xDAI | 0.0001976 | ||||
Exec Transaction | 25335904 | 867 days ago | IN | 0 xDAI | 0.00023964 | ||||
Exec Transaction | 25288319 | 870 days ago | IN | 0 xDAI | 0.00027654 | ||||
Exec Transaction | 25231422 | 874 days ago | IN | 0 xDAI | 0.00008328 | ||||
Exec Transaction | 25229038 | 874 days ago | IN | 0 xDAI | 0.00026135 | ||||
Exec Transaction | 25218512 | 875 days ago | IN | 0 xDAI | 0.00015024 | ||||
Exec Transaction | 25218497 | 875 days ago | IN | 0 xDAI | 0.00017784 | ||||
Exec Transaction | 25215924 | 875 days ago | IN | 0 xDAI | 0.00013231 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
12596066 | 1646 days ago | Contract Creation | 0 xDAI |
Loading...
Loading
Contract Name:
GnosisSafeProxy
Compiler Version
v0.5.14+commit.01f1aaa4
Contract Source Code (Solidity)
/** *Submitted for verification at gnosisscan.io on 2024-03-05 */ pragma solidity >=0.5.0 <0.7.0; /// @title IProxy - Helper interface to access masterCopy of the Proxy on-chain /// @author Richard Meissner - <[email protected]> interface IProxy { function masterCopy() external view returns (address); } /// @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 { // masterCopy 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 masterCopy; /// @dev Constructor function sets address of master copy contract. /// @param _masterCopy Master copy address. constructor(address _masterCopy) public { require(_masterCopy != address(0), "Invalid master copy address provided"); masterCopy = _masterCopy; } /// @dev Fallback function forwards all transactions and returns all received return data. function () external payable { // solium-disable-next-line security/no-inline-assembly assembly { let masterCopy := and(sload(0), 0xffffffffffffffffffffffffffffffffffffffff) // 0xa619486e == keccak("masterCopy()"). The value is right padded to 32-bytes with 0s if eq(calldataload(0), 0xa619486e00000000000000000000000000000000000000000000000000000000) { mstore(0, masterCopy) return(0, 0x20) } calldatacopy(0, 0, calldatasize()) let success := delegatecall(gas, masterCopy, 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
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_masterCopy","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"}]
Contract Creation Code
608060405234801561001057600080fd5b506040516101e73803806101e78339818101604052602081101561003357600080fd5b8101908080519060200190929190505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156100ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806101c36024913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505060aa806101196000396000f3fe608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea265627a7a723158200a23d2285c529de46060100feb312da05c409802321897869814263b54bb746264736f6c634300050e0032496e76616c6964206d617374657220636f707920616464726573732070726f766964656400000000000000000000000034cfac646f301356faa8b21e94227e3583fe3f5f
Deployed Bytecode
0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea265627a7a723158200a23d2285c529de46060100feb312da05c409802321897869814263b54bb746264736f6c634300050e0032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000034cfac646f301356faa8b21e94227e3583fe3f5f
-----Decoded View---------------
Arg [0] : _masterCopy (address): 0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000034cfac646f301356faa8b21e94227e3583fe3f5f
Deployed Bytecode Sourcemap
481:1564:0:-;;;1401:42;1397:1;1391:8;1387:57;1581:66;1577:1;1564:15;1561:87;1558:2;;;1678:10;1675:1;1668:21;1717:4;1714:1;1707:15;1558:2;1770:14;1767:1;1764;1751:34;1866:1;1863;1847:14;1844:1;1832:10;1827:3;1814:54;1903:16;1900:1;1897;1882:38;1949:1;1940:7;1937:14;1934:2;;;1964:16;1961:1;1954:27;1934:2;2007:16;2004:1;1997:27
Swarm Source
bzzr://0a23d2285c529de46060100feb312da05c409802321897869814263b54bb7462
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
GNO | ![]() | 100.00% | $0.999842 | 2.0619 | $2.06 |
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.