ETH Price: $2,095.30 (+0.79%)
Gas: 0.04 Gwei

Contract

0xB76E40277B79B78dFa954CBEc863D0e4Fd0656ca
 

Overview

ETH Balance

0.00001 ETH

Eth Value

$0.02 (@ $2,095.30/ETH)

Token Holdings

More Info

Private Name Tags

Multichain Info

Transaction Hash
Method
Block
From
To
Exec Transaction244022962026-02-07 3:35:4736 days ago1770435347IN
Smart Account by Safe dHedge: Treasury
0 ETH0.000021870.24186303
Exec Transaction237248852025-11-04 8:52:11131 days ago1762246331IN
Smart Account by Safe dHedge: Treasury
0 ETH0.000233382.72512295
Exec Transaction235740732025-10-14 6:11:47152 days ago1760422307IN
Smart Account by Safe dHedge: Treasury
0 ETH0.000146751.36491928
Exec Transaction235170232025-10-06 6:44:47160 days ago1759733087IN
Smart Account by Safe dHedge: Treasury
0 ETH0.000107091.11082062
Exec Transaction234742292025-09-30 7:10:11166 days ago1759216211IN
Smart Account by Safe dHedge: Treasury
0 ETH0.000034530.37685732
Exec Transaction234528862025-09-27 7:34:35169 days ago1758958475IN
Smart Account by Safe dHedge: Treasury
0 ETH0.000283660.16078755
Transfer231311952025-08-13 9:20:35214 days ago1755076835IN
Smart Account by Safe dHedge: Treasury
0.00001 ETH0.000034731.27117099
Exec Transaction230384872025-07-31 10:27:23227 days ago1753957643IN
Smart Account by Safe dHedge: Treasury
0 ETH0.000265112.91081834
Exec Transaction230175152025-07-28 12:02:35230 days ago1753704155IN
Smart Account by Safe dHedge: Treasury
0 ETH0.000029190.32268841
Exec Transaction228868742025-07-10 6:05:23248 days ago1752127523IN
Smart Account by Safe dHedge: Treasury
0 ETH0.000251213.30350973
Exec Transaction228388962025-07-03 13:07:59255 days ago1751548079IN
Smart Account by Safe dHedge: Treasury
0 ETH0.000314583.8030117
Exec Transaction228382062025-07-03 10:48:23255 days ago1751539703IN
Smart Account by Safe dHedge: Treasury
0 ETH0.00024863.00490771
Exec Transaction221726252025-04-01 7:40:59348 days ago1743493259IN
Smart Account by Safe dHedge: Treasury
0 ETH0.000071630.71633904
Exec Transaction208763592024-10-02 7:36:23529 days ago1727854583IN
Smart Account by Safe dHedge: Treasury
0 ETH0.002091927.19303882
Exec Transaction208691662024-10-01 7:31:11530 days ago1727767871IN
Smart Account by Safe dHedge: Treasury
0 ETH0.0012883513.53686963
Exec Transaction208691362024-10-01 7:25:11530 days ago1727767511IN
Smart Account by Safe dHedge: Treasury
0 ETH0.0019824713.27528565
Exec Transaction208691212024-10-01 7:22:11530 days ago1727767331IN
Smart Account by Safe dHedge: Treasury
0 ETH0.0013264714.38913855
Exec Transaction208690832024-10-01 7:14:35530 days ago1727766875IN
Smart Account by Safe dHedge: Treasury
0 ETH0.0012026814.94202443
Exec Transaction208690352024-10-01 7:04:59530 days ago1727766299IN
Smart Account by Safe dHedge: Treasury
0 ETH0.0019906616.54753567
Exec Transaction208690222024-10-01 7:02:23530 days ago1727766143IN
Smart Account by Safe dHedge: Treasury
0 ETH0.0037868416.16534188
Exec Transaction208185072024-09-24 5:57:47537 days ago1727157467IN
Smart Account by Safe dHedge: Treasury
0 ETH0.0099459411.99939853
Exec Transaction206113912024-08-26 7:51:35566 days ago1724658695IN
Smart Account by Safe dHedge: Treasury
0 ETH0.000072070.99428191
Transfer204388822024-08-02 5:49:59590 days ago1722577799IN
Smart Account by Safe dHedge: Treasury
30 ETH0.000061462.37135576
Transfer204388582024-08-02 5:45:11590 days ago1722577511IN
Smart Account by Safe dHedge: Treasury
0.01 ETH0.000064692.49617936
Exec Transaction202106632024-07-01 9:05:59622 days ago1719824759IN
Smart Account by Safe dHedge: Treasury
0 ETH0.000439685.29614044
View all transactions

Latest 4 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer206113912024-08-26 7:51:35566 days ago1724658695
Smart Account by Safe dHedge: Treasury
30.01 ETH
Transfer192099672024-02-12 5:49:47762 days ago1707716987
Smart Account by Safe dHedge: Treasury
30 ETH
-124046062021-05-10 5:01:171770 days ago1620622877
Smart Account by Safe dHedge: Treasury
0.00405719 ETH
-107794612020-09-02 3:43:532020 days ago1599018233  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 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

Contract Source Code (Solidity)

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

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

0x608060405234801561001057600080fd5b506040516101e73803806101e78339818101604052602081101561003357600080fd5b8101908080519060200190929190505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156100ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806101c36024913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505060aa806101196000396000f3fe608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea265627a7a72315820d8a00dc4fe6bf675a9d7416fc2d00bb3433362aa8186b750f76c4027269667ff64736f6c634300050e0032496e76616c6964206d617374657220636f707920616464726573732070726f766964656400000000000000000000000034cfac646f301356faa8b21e94227e3583fe3f5f

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 Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
0xB76E40277B79B78dFa954CBEc863D0e4Fd0656ca
Net Worth in USD
$3,350,208.84

Net Worth in ETH
1,598.918032

Token Allocations
DHT 98.81%
USDC 0.96%
DRV 0.06%
Others 0.16%
Chain Token Portfolio % Price Amount Value
ETH98.81%$0.07970741,532,652.4879$3,310,443.13
ETH0.96%$0.99993932,300.4024$32,298.43
ETH0.06%$0.08820622,064.599$1,946.23
ETH0.04%$11,417.1605$1,417.16
ETH0.04%$0.3253833,741.476$1,217.41
ETH0.02%$112.487.3654$828.47
ETH0.02%$0.852108868.0147$739.64
ETH0.02%$2304.69$609.38
ETH<0.01%$0.995852201.115$200.28
ETH<0.01%$0.272462500$136.23
ETH<0.01%$0.85479522.9858$19.65
ETH<0.01%$0.025322133.4481$3.38
ETH<0.01%$9.160.2448$2.24
ETH<0.01%$0.006521302.1803$1.97
ETH<0.01%$0.9962170.8558$0.8525
ETH<0.01%$0.03054923.1806$0.7081
ETH<0.01%$0.02133821.6577$0.4621
ETH<0.01%$0.9920490.418$0.4146
ETH<0.01%$0.9997120.4$0.3998
ETH<0.01%$0.000.01$0.00
ETH<0.01%$0.3030450.346$0.1048
ETH
Ether (ETH)
<0.01%$2,095.30.00001$0.020953
OP<0.01%$2,095.820.0881$184.69
OP<0.01%$0.3258392.5601$0.8341
OP<0.01%$2,263.380.00011675$0.2642
POL<0.01%$0.00155.8889$0.00
POL<0.01%$10.1173$0.1173
POL<0.01%$0.0958220.3853$0.036919
AVAX<0.01%$10.1595$0.1595
BSC<0.01%$0.00492331.1892$0.1535
BSC<0.01%$659.390.000000503139$0.000332
ARB<0.01%$2,095.690.000000000186<$0.000001
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.