账户
0x0a...1d3e
0x0A...1d3E

0x0A...1d3E

$500
此合同的源代码已经过验证!
合同元数据
编译器
0.8.21+commit.d9974bed
语言
Solidity
合同源代码
文件 1 的 1:AreYouUsingWeb3.sol
// 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": []
}
ABI
[{"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"}]