第三章 第一个以太坊Dapp开发

第三章 第一个以太坊Dapp开发,第1张

本章以hardhat脚手架作为项目开发框架,具体环境搭建详见第二章

1、启动本地网络ganache

2、编写合约

在hardhat项目的contracts下面新建HelloContract.sol合约,代码如下:

//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
​
import "hardhat/console.sol";
​
contract HelloContract {
​
    event ValueChanged(address indexed author, string oldValue, string newValue);
​
    string _value;
​
    constructor(string value) public {
        _value = value;
    }
​
    function getValue() view public returns (string) {
        return _value;
    }
​
    function setValue(string value) public {
        emit ValueChanged(msg.sender, _value, value);
       

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/1298480.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-10
下一篇 2022-06-10

发表评论

登录后才能评论

评论列表(0条)

保存