Avatar
0
monkey Enlightened
monkey Enlightened
Sử dụng smart contract trong mạng etherum với web3js
Giả sử contract của chúng ta có nội dung thế này: <p> </p> <pre> // SPDX-License-Identifier: MIT pragma solidity &gt;=0.4.22 &lt;0.9.0; contract Migrations { string public _message; uint public _last_completed_migration; function Hello() public{ _message = &quot;Hello World!&quot;; } function setComplet
Answer