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": []
}
}}
Submitted on: 2025-10-16 19:48:10
Comments
Log in to comment.
No comments yet.