ETH Price: $2,312.21 (-0.27%)

Contract

0x3b66890289366175c360c1F0e1BafaE06276BA03
 

Overview

ETH Balance

1.52 ETH

Eth Value

$3,514.56 (@ $2,312.21/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction205923822024-08-23 16:05:4725 days ago1724429147IN
Rally: Multisig
0 ETH0.000165022.07178191
Exec Transaction205923652024-08-23 16:02:2325 days ago1724428943IN
Rally: Multisig
0 ETH0.000306513.16835319
Exec Transaction204279482024-07-31 17:12:5948 days ago1722445979IN
Rally: Multisig
0 ETH0.0018159718.77131883
Exec Transaction202701552024-07-09 16:33:3570 days ago1720542815IN
Rally: Multisig
0 ETH0.000911449.43933835
Exec Transaction199415732024-05-24 18:37:23116 days ago1716575843IN
Rally: Multisig
0 ETH0.0010353413
Exec Transaction199275702024-05-22 19:40:47118 days ago1716406847IN
Rally: Multisig
0 ETH0.001160912
Exec Transaction199275662024-05-22 19:39:59118 days ago1716406799IN
Rally: Multisig
0 ETH0.0013425213.87568687
Exec Transaction199266152024-05-22 16:28:47118 days ago1716395327IN
Rally: Multisig
0 ETH0.0020315821
Exec Transaction197632322024-04-29 20:04:59141 days ago1714421099IN
Rally: Multisig
0 ETH0.0008942611.22687626
Exec Transaction197632282024-04-29 20:04:11141 days ago1714421051IN
Rally: Multisig
0 ETH0.0010641611
Exec Transaction195282072024-03-27 21:28:35174 days ago1711574915IN
Rally: Multisig
0 ETH0.0029471937
Exec Transaction194854062024-03-21 20:28:11180 days ago1711052891IN
Rally: Multisig
0 ETH0.0027049633.95892315
Exec Transaction194853982024-03-21 20:26:35180 days ago1711052795IN
Rally: Multisig
0 ETH0.0037729339
Exec Transaction194853932024-03-21 20:25:35180 days ago1711052735IN
Rally: Multisig
0 ETH0.0035066444.0168865
Exec Transaction194853892024-03-21 20:24:47180 days ago1711052687IN
Rally: Multisig
0 ETH0.0035849745
Exec Transaction194791912024-03-20 23:29:59181 days ago1710977399IN
Rally: Multisig
0 ETH0.0040672642.04243539
Exec Transaction194791882024-03-20 23:29:23181 days ago1710977363IN
Rally: Multisig
0 ETH0.0040631642
Exec Transaction193930022024-03-08 21:03:11193 days ago1709931791IN
Rally: Multisig
0 ETH0.0065180973.62580334
Exec Transaction193278152024-02-28 18:28:35202 days ago1709144915IN
Rally: Multisig
0 ETH0.01151865119.08043688
Exec Transaction193278022024-02-28 18:25:59202 days ago1709144759IN
Rally: Multisig
0 ETH0.01086392136.38900293
Exec Transaction190368172024-01-18 22:46:11243 days ago1705617971IN
Rally: Multisig
0 ETH0.002628627.17125304
Exec Transaction190368142024-01-18 22:45:35243 days ago1705617935IN
Rally: Multisig
0 ETH0.0023559429.57718391
Exec Transaction190367992024-01-18 22:42:35243 days ago1705617755IN
Rally: Multisig
0 ETH0.0022850428.68713847
Exec Transaction190367952024-01-18 22:41:47243 days ago1705617707IN
Rally: Multisig
0 ETH0.0021506527
Exec Transaction188161142023-12-18 23:22:11274 days ago1702941731IN
Rally: Multisig
0 ETH0.0053056753
View all transactions

Latest 11 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
137169242021-11-30 20:30:061022 days ago1638304206
Rally: Multisig
4 ETH
133298432021-09-30 22:58:441083 days ago1633042724
Rally: Multisig
10 ETH
131373722021-09-01 3:28:111113 days ago1630466891
Rally: Multisig
7.31 ETH
129335252021-07-31 13:14:431144 days ago1627737283
Rally: Multisig
21.65 ETH
127392892021-07-01 3:01:191175 days ago1625108479
Rally: Multisig
23.08 ETH
125998992021-06-09 10:47:191197 days ago1623235639
Rally: Multisig
20.66 ETH
125289782021-05-29 11:29:531208 days ago1622287793
Rally: Multisig
18.11 ETH
123640222021-05-03 22:46:461233 days ago1620082006
Rally: Multisig
23.94 ETH
111870832020-11-03 23:12:081414 days ago1604445128
Rally: Multisig
6 ETH
110584022020-10-15 5:09:211434 days ago1602738561
Rally: Multisig
0.08 ETH
110432332020-10-12 21:32:321436 days ago1602538352  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x655A9e6b...77e966e18
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.14+commit.1f1aaa4

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2020-01-13
*/

pragma solidity ^0.5.3;

/// @title Proxy - 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 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

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

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea265627a7a72315820d8a00dc4fe6bf675a9d7416fc2d00bb3433362aa8186b750f76c4027269667ff64736f6c634300050e0032

Deployed Bytecode Sourcemap

245:1554:0:-;;;1155:42;1151:1;1145:8;1141:57;1335:66;1331:1;1318:15;1315:87;1312:2;;;1432:10;1429:1;1422:21;1471:4;1468:1;1461:15;1312:2;1524:14;1521:1;1518;1505:34;1620:1;1617;1601:14;1598:1;1586:10;1581:3;1568:54;1657:16;1654:1;1651;1636:38;1703:1;1694:7;1691:14;1688:2;;;1718:16;1715:1;1708:27;1688:2;1761:16;1758:1;1751:27

Swarm Source

bzzr://d8a00dc4fe6bf675a9d7416fc2d00bb3433362aa8186b750f76c4027269667ff

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.