ETH Price: $2,080.26 (+2.59%)

Contract

0x77BFdEC1Da3858Ff959cC104Eb6D2055d0448679
 

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction121760832021-04-04 23:13:561800 days ago1617578036IN
0x77BFdEC1...5d0448679
0 ETH0.0101687889
Exec Transaction121758692021-04-04 22:23:521800 days ago1617575032IN
0x77BFdEC1...5d0448679
0 ETH0.012018586
Exec Transaction120778472021-03-20 20:20:471815 days ago1616271647IN
0x77BFdEC1...5d0448679
0 ETH0.01314264120
Exec Transaction116180632021-01-09 3:02:351886 days ago1610161355IN
0x77BFdEC1...5d0448679
0 ETH0.0078235971.01
Exec Transaction116180632021-01-09 3:02:351886 days ago1610161355IN
0x77BFdEC1...5d0448679
0 ETH0.0078145471
Exec Transaction116180632021-01-09 3:02:351886 days ago1610161355IN
0x77BFdEC1...5d0448679
0 ETH0.0188110271.011
Exec Transaction116043712021-01-07 0:43:321888 days ago1609980212IN
0x77BFdEC1...5d0448679
0 ETH0.008663191
Exec Transaction116043712021-01-07 0:43:321888 days ago1609980212IN
0x77BFdEC1...5d0448679
0 ETH0.0099059490.00000145
Exec Transaction114336292020-12-11 19:53:171914 days ago1607716397IN
0x77BFdEC1...5d0448679
0 ETH0.0112540522
Exec Transaction113667842020-12-01 12:53:411925 days ago1606827221IN
0x77BFdEC1...5d0448679
0 ETH0.02586865103
Exec Transaction113667702020-12-01 12:51:551925 days ago1606827115IN
0x77BFdEC1...5d0448679
0 ETH0.02150007101
Exec Transaction112115822020-11-07 17:12:571948 days ago1604769177IN
0x77BFdEC1...5d0448679
0 ETH0.0114896744.00000156
Exec Transaction111854352020-11-03 17:13:371952 days ago1604423617IN
0x77BFdEC1...5d0448679
0 ETH0.0060243729
Exec Transaction111841052020-11-03 12:03:511953 days ago1604405031IN
0x77BFdEC1...5d0448679
0 ETH0.0051432823.1
Exec Transaction111840242020-11-03 11:47:111953 days ago1604404031IN
0x77BFdEC1...5d0448679
0 ETH0.005366824.1
Exec Transaction111838342020-11-03 11:07:211953 days ago1604401641IN
0x77BFdEC1...5d0448679
0 ETH0.0084621838.00000145
Exec Transaction111837302020-11-03 10:43:111953 days ago1604400191IN
0x77BFdEC1...5d0448679
0 ETH0.005686522.1
Exec Transaction111614482020-10-31 0:34:181956 days ago1604104458IN
0x77BFdEC1...5d0448679
0 ETH0.0048768821.9
Exec Transaction111329592020-10-26 15:56:581961 days ago1603727818IN
0x77BFdEC1...5d0448679
0 ETH0.0169243676.00000145
Exec Transaction109794042020-10-02 22:59:281984 days ago1601679568IN
0x77BFdEC1...5d0448679
0 ETH0.0074280941
Exec Transaction109794042020-10-02 22:59:281984 days ago1601679568IN
0x77BFdEC1...5d0448679
0 ETH0.0081234439.28125
Exec Transaction109793352020-10-02 22:41:551984 days ago1601678515IN
0x77BFdEC1...5d0448679
0 ETH0.0094529139.28125
Exec Transaction109273412020-09-24 19:55:171992 days ago1600977317IN
0x77BFdEC1...5d0448679
0 ETH0.0158166281
Exec Transaction108349532020-09-10 15:58:342007 days ago1599753514IN
0x77BFdEC1...5d0448679
0 ETH0.27932164255
Exec Transaction108348462020-09-10 15:33:302007 days ago1599752010IN
0x77BFdEC1...5d0448679
0 ETH0.05667425250
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
-98599542020-04-12 21:27:522157 days ago1586726872  Contract Creation0 ETH
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x3Aa9F166...D1c5663C3
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Proxy

Compiler Version
v0.5.12+commit.7709ece9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-07-09
*/

pragma solidity >=0.5.0 <0.7.0;

/// @title IProxy - Helper interface to access masterCopy of the Proxy on-chain
/// @author Richard Meissner - <richard@gnosis.io>
interface IProxy {
    function masterCopy() external view returns (address);
}

/// @title Proxy - Generic proxy contract allows to execute all transactions applying the code of a master contract.
/// @author Stefan George - <stefan@gnosis.io>
/// @author Richard Meissner - <richard@gnosis.io>
contract Proxy {

    // 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

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_masterCopy","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"}]

0x608060405234801561001057600080fd5b506040516101e73803806101e78339818101604052602081101561003357600080fd5b8101908080519060200190929190505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156100ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806101c36024913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505060aa806101196000396000f3fe608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea265627a7a7231582099bf9ecf033b5a5cd7073e2e717749e94f49c79dbfc065d6204cb99db2ba11ab64736f6c634300050c0032496e76616c6964206d617374657220636f707920616464726573732070726f766964656400000000000000000000000034cfac646f301356faa8b21e94227e3583fe3f5f

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea265627a7a7231582099bf9ecf033b5a5cd7073e2e717749e94f49c79dbfc065d6204cb99db2ba11ab64736f6c634300050c0032

Deployed Bytecode Sourcemap

471:1554:0:-;;;1381:42;1377:1;1371:8;1367:57;1561:66;1557:1;1544:15;1541:87;1538:2;;;1658:10;1655:1;1648:21;1697:4;1694:1;1687:15;1538:2;1750:14;1747:1;1744;1731:34;1846:1;1843;1827:14;1824:1;1812:10;1807:3;1794:54;1883:16;1880:1;1877;1862:38;1929:1;1920:7;1917:14;1914:2;;;1944:16;1941:1;1934:27;1914:2;1987:16;1984:1;1977:27

Swarm Source

bzzr://99bf9ecf033b5a5cd7073e2e717749e94f49c79dbfc065d6204cb99db2ba11ab

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
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.