Source Code
Overview
POL Balance
More Info
ContractCreator
Multichain Info
N/A
Latest 25 from a total of 414 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Exec Transaction | 19125436 | 12 days ago | IN | 0 POL | 0.0039775 | ||||
Approve Hash | 19125255 | 12 days ago | IN | 0 POL | 0.00350335 | ||||
Exec Transaction | 18233304 | 34 days ago | IN | 0 POL | 0.04281088 | ||||
Approve Hash | 18233288 | 34 days ago | IN | 0 POL | 0.00148623 | ||||
Exec Transaction | 18068748 | 38 days ago | IN | 0 POL | 0.00395634 | ||||
Approve Hash | 18068734 | 38 days ago | IN | 0 POL | 0.00203331 | ||||
Exec Transaction | 15724513 | 97 days ago | IN | 0 POL | 0.0029376 | ||||
Approve Hash | 15724490 | 97 days ago | IN | 0 POL | 0.0013196 | ||||
Exec Transaction | 12977244 | 166 days ago | IN | 0 POL | 0.02301795 | ||||
Approve Hash | 12977229 | 166 days ago | IN | 0 POL | 0.00541529 | ||||
Exec Transaction | 12481183 | 178 days ago | IN | 0 POL | 0.00212391 | ||||
Approve Hash | 12481137 | 178 days ago | IN | 0 POL | 0.00158354 | ||||
Exec Transaction | 12439112 | 179 days ago | IN | 0 POL | 0.00177161 | ||||
Approve Hash | 12438805 | 179 days ago | IN | 0 POL | 0.00168961 | ||||
Exec Transaction | 12435484 | 179 days ago | IN | 0 POL | 0.00182856 | ||||
Approve Hash | 12435338 | 179 days ago | IN | 0 POL | 0.00179993 | ||||
Exec Transaction | 11073959 | 213 days ago | IN | 0 POL | 0.00217534 | ||||
Approve Hash | 11073946 | 213 days ago | IN | 0 POL | 0.00151754 | ||||
Exec Transaction | 10477118 | 228 days ago | IN | 0 POL | 0.00273902 | ||||
Approve Hash | 10477102 | 228 days ago | IN | 0 POL | 0.00191198 | ||||
Exec Transaction | 10166386 | 236 days ago | IN | 0 POL | 0.00194295 | ||||
Approve Hash | 10166373 | 236 days ago | IN | 0 POL | 0.00248574 | ||||
Exec Transaction | 10083686 | 238 days ago | IN | 0 POL | 0.00318361 | ||||
Approve Hash | 10083670 | 238 days ago | IN | 0 POL | 0.00287117 | ||||
Exec Transaction | 9662544 | 248 days ago | IN | 0 POL | 0.00099212 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
4949175 | 367 days ago | Contract Creation | 0 POL |
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 0x82Bcc9C5...d3a641Fa0 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
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: LGPL-3.0-only pragma solidity >=0.7.0 <0.9.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 { // 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()) } } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_singleton","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]
Deployed Bytecode
0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033
Loading...
Loading
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.