// SPDX-License-Identifier: GPL-2.0
pragma solidity ^0.8.21;
contract AreYouUsingWeb3 {
event AreYouUsingWEB3(bool _FalseORtrue);
function areYouUsingWEB3(bool FalseORtrue) public {
emit AreYouUsingWEB3(FalseORtrue);
}
}
{
"compilationTarget": {
"AreYouUsingWeb3.sol": "AreYouUsingWeb3"
},
"evmVersion": "shanghai",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
}
[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_FalseORtrue","type":"bool"}],"name":"AreYouUsingWEB3","type":"event"},{"inputs":[{"internalType":"bool","name":"FalseORtrue","type":"bool"}],"name":"areYouUsingWEB3","outputs":[],"stateMutability":"nonpayable","type":"function"}]