BulkEdit

Description:

Smart contract deployed on Ethereum with Factory features.

Blockchain: Ethereum

Source Code: View Code On The Blockchain

Solidity Source Code:

{{
  "language": "Solidity",
  "sources": {
    "BulkEdit.sol": {
      "content": "// SPDX-License-Identifier: MIT
pragma solidity ^0.8.26;

interface Etheria {
    function editBlock(uint8 col, uint8 row, uint index, int8[5] memory _block) external;
}

contract BulkEdit {

    function bulkEdit(uint[] memory indexes, int8[5][] memory _blocks) public {
        address addr = 0xe468D26721b703D224d05563cB64746A7A40E1F4;
        Etheria e = Etheria(addr);
        
        for (uint i = 0; i < indexes.length; i++) {
            e.editBlock(18, 18, indexes[i], _blocks[i]);
        }
    }
}"
    }
  },
  "settings": {
    "optimizer": {
      "enabled": false,
      "runs": 200
    },
    "outputSelection": {
      "*": {
        "*": [
          "evm.bytecode",
          "evm.deployedBytecode",
          "devdoc",
          "userdoc",
          "metadata",
          "abi"
        ]
      }
    },
    "remappings": []
  }
}}

Tags:
Factory|addr:0x572cf8eba441c4681288e8c1e9abebe0ca1db3ef|verified:true|block:23591508|tx:0x61ec2d730d8e937c652d87457ff70f1ef9a7e0edc5754dbaf4882061eef9d9a6|first_check:1760636889

Submitted on: 2025-10-16 19:48:10

Comments

Log in to comment.

No comments yet.