Accounts
0x8f...4414
0x8f...4414

0x8f...4414

$500
This contract's source code is verified!
Contract Metadata
Compiler
0.8.26+commit.8a97fa7a
Language
Solidity
Contract Source Code
File 1 of 1: AyeAyeGet.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.26;

interface AyeAyeCoin {
    function sendCoin(address _receiver, uint256 _amount) external;
}

contract AyeAyeGet {

    function grab(uint n) public {
        address addr = 0x3edDc7ebC7db94f54b72D8Ed1F42cE6A527305bB;
        AyeAyeCoin aa = AyeAyeCoin(addr);
        bytes memory sign = hex"5479f98b";
        for (uint256 i = 0; i < n; i++) {
            addr.call(sign);
        }
        aa.sendCoin(msg.sender, n);
    }
}
Settings
{
  "compilationTarget": {
    "AyeAyeGet.sol": "AyeAyeGet"
  },
  "evmVersion": "cancun",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs"
  },
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "remappings": []
}
ABI
[{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"grab","outputs":[],"stateMutability":"nonpayable","type":"function"}]