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 index, int8[5][] memory _blocks) public {
        address addr = 0xe468D26721b703D224d05563cB64746A7A40E1F4;
        Etheria e = Etheria(addr);
        
        for (uint i = 0; i < _blocks.length; i++) {
            int8[5] memory _block = _blocks[i];
            e.editBlock(18, 18, index, _block);
        }
    }
}"
    }
  },
  "settings": {
    "optimizer": {
      "enabled": false,
      "runs": 200
    },
    "outputSelection": {
      "*": {
        "*": [
          "evm.bytecode",
          "evm.deployedBytecode",
          "devdoc",
          "userdoc",
          "metadata",
          "abi"
        ]
      }
    },
    "remappings": []
  }
}}

Tags:
Factory|addr:0x61506c89020f750346c9a97de1dba0f2484c7e1a|verified:true|block:23591465|tx:0x32da86675c3ebd5f184776269aad62abb65ba095e214961e55ac72f1ce1cacc6|first_check:1760636378

Submitted on: 2025-10-16 19:39:38

Comments

Log in to comment.

No comments yet.