ETH Price: $2,716.35 (-0.91%)

Contract

0x7935AFFC4Ac2448199C46A490ced31F0EDCb3B33
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Swap Catnip V1205365542024-08-15 20:56:47174 days ago1723755407IN
0x7935AFFC...0EDCb3B33
0 ETH0.000250542.77408386
Approve205365042024-08-15 20:46:35174 days ago1723754795IN
0x7935AFFC...0EDCb3B33
0 ETH0.000200433.90761762
Swap Catnip V1205364942024-08-15 20:44:35174 days ago1723754675IN
0x7935AFFC...0EDCb3B33
0 ETH0.000321373.75748137
Get Reward203292952024-07-17 22:40:47203 days ago1721256047IN
0x7935AFFC...0EDCb3B33
0 ETH0.000600568
Approve196003092024-04-07 0:39:11305 days ago1712450351IN
0x7935AFFC...0EDCb3B33
0 ETH0.0005312310.35689358
Approve195221752024-03-27 0:34:47316 days ago1711499687IN
0x7935AFFC...0EDCb3B33
0 ETH0.0006561822.57325534
Get Reward194553012024-03-17 14:57:59326 days ago1710687479IN
0x7935AFFC...0EDCb3B33
0 ETH0.0027238330.88179826
Approve190444322024-01-20 0:16:59383 days ago1705709819IN
0x7935AFFC...0EDCb3B33
0 ETH0.0010191519.86935071
Approve180265372023-08-30 9:30:35526 days ago1693387835IN
0x7935AFFC...0EDCb3B33
0 ETH0.0010317420.22364867
Get Reward179075832023-08-13 17:59:11542 days ago1691949551IN
0x7935AFFC...0EDCb3B33
0 ETH0.0009532612.59933252
Approve177871882023-07-27 21:49:59559 days ago1690494599IN
0x7935AFFC...0EDCb3B33
0 ETH0.0013583426.4820772
Approve177759292023-07-26 8:01:59561 days ago1690358519IN
0x7935AFFC...0EDCb3B33
0 ETH0.0009264118.15890201
Transfer177758982023-07-26 7:55:35561 days ago1690358135IN
0x7935AFFC...0EDCb3B33
0 ETH0.0009074916.80824262
Approve176724972023-07-11 19:37:35575 days ago1689104255IN
0x7935AFFC...0EDCb3B33
0 ETH0.0010264220.11933389
Get Reward176724832023-07-11 19:34:47575 days ago1689104087IN
0x7935AFFC...0EDCb3B33
0 ETH0.0019931521.7868983
Get Reward175319632023-06-22 1:40:59595 days ago1687398059IN
0x7935AFFC...0EDCb3B33
0 ETH0.0014240515.59270714
Approve174424182023-06-09 11:36:23608 days ago1686310583IN
0x7935AFFC...0EDCb3B33
0 ETH0.0010630220.72449417
Approve173967812023-06-03 1:06:23614 days ago1685754383IN
0x7935AFFC...0EDCb3B33
0 ETH0.001114321.84695632
Get Reward173967742023-06-03 1:04:59614 days ago1685754299IN
0x7935AFFC...0EDCb3B33
0 ETH0.002100223.0694931
Approve163891132023-01-12 7:04:35756 days ago1673507075IN
0x7935AFFC...0EDCb3B33
0 ETH0.0008221716.01016576
Get Reward163889672023-01-12 6:35:23756 days ago1673505323IN
0x7935AFFC...0EDCb3B33
0 ETH0.0013118817.44905497
Approve162063022022-12-17 18:46:47781 days ago1671302807IN
0x7935AFFC...0EDCb3B33
0 ETH0.0007078113.79950322
Approve161753562022-12-13 11:01:59786 days ago1670929319IN
0x7935AFFC...0EDCb3B33
0 ETH0.0007460214.52735441
Get Reward161753532022-12-13 11:01:23786 days ago1670929283IN
0x7935AFFC...0EDCb3B33
0 ETH0.0010187313.46464806
Approve160371672022-11-24 3:30:59805 days ago1669260659IN
0x7935AFFC...0EDCb3B33
0 ETH0.0006186412.04686298
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

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

Contract Name:
CatnipV2Proxy

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2020-10-24
*/

pragma solidity ^0.6.6;

contract CatnipV2Proxy {
    event myEvent(bytes);
    
    // Code position in storage is keccak256("PROXIABLE") = "0xc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7"
    constructor(bytes memory constructData, address contractLogic) public {
        // save the code address
        assembly { // solium-disable-line
            sstore(0xc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7, contractLogic)
        }
        (bool success, bytes memory _ ) = contractLogic.delegatecall(constructData); // solium-disable-line
        emit myEvent(_);
        require(success, "Construction failed");
    }

    fallback() external payable {
        assembly { // solium-disable-line
            let contractLogic := sload(0xc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7)
            calldatacopy(0x0, 0x0, calldatasize())
            let success := delegatecall(gas(), contractLogic, 0x0, calldatasize(), 0, 0)
            
            returndatacopy(0, 0, returndatasize())
            switch success
            case 0 {
                revert(0, returndatasize())
            }
            default {
                return(0, returndatasize())
            }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes","name":"constructData","type":"bytes"},{"internalType":"address","name":"contractLogic","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes","name":"","type":"bytes"}],"name":"myEvent","type":"event"},{"stateMutability":"payable","type":"fallback"}]

Deployed Bytecode

0x60806040527fc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf75460003681823780813683855af43d82833e8080156041573d83f35b3d83fdfea2646970667358221220cd7f77305ebd961548ba26934b4ebd6b3fd4cbd250bdb6965079f1bde17b8e0964736f6c63430006060033

Deployed Bytecode Sourcemap

27:1257:0:-:0;;;795:66;789:73;894:3;899:14;894:3;;876:38;894:3;;899:14;894:3;963:13;956:5;943:61;1053:16;894:3;;1032:38;1091:7;1112:68;;;;1231:16;894:3;1221:27;1112:68;1148:16;894:3;1138:27

Swarm Source

ipfs://cd7f77305ebd961548ba26934b4ebd6b3fd4cbd250bdb6965079f1bde17b8e09

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  ]

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.