Your smart contract has a small vulnerabilities you can not see.
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; contract SimpleStorage { string private storedValue; event ValueChanged(string newValue); // Function to set the value function setValue(string calldata newValue) external { ...