ETH Price: $2,014.28 (-0.97%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Caress231633392025-08-17 21:03:11176 days ago1755464591IN
0xf3Fe4300...52F130cBe
0 ETH0.000004340.18569592
Caress231461392025-08-15 11:28:59179 days ago1755257339IN
0xf3Fe4300...52F130cBe
0 ETH0.000010790.46154831
Caress231365502025-08-14 3:16:35180 days ago1755141395IN
0xf3Fe4300...52F130cBe
0 ETH0.000018270.78147956
Caress231288182025-08-13 1:22:59181 days ago1755048179IN
0xf3Fe4300...52F130cBe
0 ETH0.000020750.88751492
Caress231195832025-08-11 18:25:35182 days ago1754936735IN
0xf3Fe4300...52F130cBe
0 ETH0.000022060.94334023
Caress231116042025-08-10 15:39:59183 days ago1754840399IN
0xf3Fe4300...52F130cBe
0 ETH0.000024231.03606386
Caress230923522025-08-07 23:06:23186 days ago1754607983IN
0xf3Fe4300...52F130cBe
0 ETH0.000012830.548846
Caress230854572025-08-06 23:58:23187 days ago1754524703IN
0xf3Fe4300...52F130cBe
0 ETH0.000004720.20192733
Caress230447412025-08-01 7:28:23193 days ago1754033303IN
0xf3Fe4300...52F130cBe
0 ETH0.000062382.45783811
Batch Transfer230447392025-08-01 7:27:59193 days ago1754033279IN
0xf3Fe4300...52F130cBe
0 ETH0.000166582.45674488
Caress230447292025-08-01 7:25:59193 days ago1754033159IN
0xf3Fe4300...52F130cBe
0 ETH0.000057232.44717456
Batch Transfer230447272025-08-01 7:25:35193 days ago1754033135IN
0xf3Fe4300...52F130cBe
0 ETH0.000089942.44902489

Advanced mode:
Parent Transaction Hash Method Block
From
To
View All Internal Transactions
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

Contract Source Code Verified (Exact Match)

Contract Name:
OverflowCat

Compiler Version
v0.4.26+commit.4563c3fc

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
// SPDX-License-Identifier: WTFPL
pragma solidity ^0.4.26;

import "../interface/BugCat.sol";

contract OverflowCat is BugCat {
    mapping(address => uint) public balance;

    function batchTransfer(address[] memory _receivers, uint256 _value) public {
        uint count = _receivers.length;
        uint amount = count * _value;
        require(_value > 0 && balance[msg.sender] >= amount);
        balance[msg.sender] -= amount;
        for (uint i = 0; i < count; i++) {
            balance[_receivers[i]] += _value;
        }
    }

    function caress() public {
        if (balance[msg.sender] > 0) {
            emit Meow(msg.sender, "overflow");
        }
    }

    function remember() external view returns (bool) {
        address BecToken = 0xC5d105E63711398aF9bbff092d4B6769C82F793D;
        uint256 size; assembly { size := extcodesize(BecToken) }
        return size > 0;
    }
}

// SPDX-License-Identifier: WTFPL
pragma solidity ^0.4.26;

interface BugCat {
    event Meow(address indexed caretaker, string wound);
    function caress() external;
    function remember() external view returns (bool);
}

Settings
{
  "viaIR": true,
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"constant":false,"inputs":[],"name":"caress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"remember","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_receivers","type":"address[]"},{"name":"_value","type":"uint256"}],"name":"batchTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"caretaker","type":"address"},{"indexed":false,"name":"wound","type":"string"}],"name":"Meow","type":"event"}]

608060405234801561001057600080fd5b506102ba806100206000396000f3006080604052600436106100615763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166301288f3c81146100665780635ac687a81461007d57806383f12fec146100a6578063e3d670d7146100fd575b600080fd5b34801561007257600080fd5b5061007b61013d565b005b34801561008957600080fd5b506100926101b9565b604080519115158252519081900360200190f35b3480156100b257600080fd5b506040805160206004803580820135838102808601850190965280855261007b9536959394602494938501929182918501908490808284375094975050933594506101d59350505050565b34801561010957600080fd5b5061012b73ffffffffffffffffffffffffffffffffffffffff6004351661027c565b60408051918252519081900360200190f35b3360009081526020819052604081205411156101b7576040805160208082526008908201527f6f766572666c6f7700000000000000000000000000000000000000000000000081830152905133917f55d68e0254b44d1d00659bd7e45544dea474c1b9d01304669332e1111dcd9d33919081900360600190a25b565b600073c5d105e63711398af9bbff092d4b6769c82f793d3b1190565b8151818102600080841180156101fa5750336000908152602081905260409020548211155b151561020557600080fd5b50336000908152602081905260408120805483900390555b828110156102755783600080878481518110151561023757fe5b602090810290910181015173ffffffffffffffffffffffffffffffffffffffff1682528101919091526040016000208054909101905560010161021d565b5050505050565b600060208190529081526040902054815600a165627a7a723058202d63a47066eeb5ef520e213ee7f643090745b0da63c17547f628386fda2f208a0029

Deployed Bytecode

0x6080604052600436106100615763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166301288f3c81146100665780635ac687a81461007d57806383f12fec146100a6578063e3d670d7146100fd575b600080fd5b34801561007257600080fd5b5061007b61013d565b005b34801561008957600080fd5b506100926101b9565b604080519115158252519081900360200190f35b3480156100b257600080fd5b506040805160206004803580820135838102808601850190965280855261007b9536959394602494938501929182918501908490808284375094975050933594506101d59350505050565b34801561010957600080fd5b5061012b73ffffffffffffffffffffffffffffffffffffffff6004351661027c565b60408051918252519081900360200190f35b3360009081526020819052604081205411156101b7576040805160208082526008908201527f6f766572666c6f7700000000000000000000000000000000000000000000000081830152905133917f55d68e0254b44d1d00659bd7e45544dea474c1b9d01304669332e1111dcd9d33919081900360600190a25b565b600073c5d105e63711398af9bbff092d4b6769c82f793d3b1190565b8151818102600080841180156101fa5750336000908152602081905260409020548211155b151561020557600080fd5b50336000908152602081905260408120805483900390555b828110156102755783600080878481518110151561023757fe5b602090810290910181015173ffffffffffffffffffffffffffffffffffffffff1682528101919091526040016000208054909101905560010161021d565b5050505050565b600060208190529081526040902054815600a165627a7a723058202d63a47066eeb5ef520e213ee7f643090745b0da63c17547f628386fda2f208a0029

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