以太坊
文章平均质量分 68
ChairmenMao
这个作者很懒,什么都没留下…
展开
-
win10 安装 Ganache
下载官网 下载的是appx文件,下载速度很慢,使用了idm下载工具下载好,直接双击运行,没有自定义安装位置的选项,直接装在了C盘。 安装好之后没有快捷方式,在启动项找到新安装的ganache,将图标固定到任务栏。 同时,控制面板里的卸载或更改程序选项中居然没有安装的Ganache。 电脑 设置->应用和功能 中可以查看安装的Ganache,尝试更改安装位置移到D盘,移动之后,D盘出现了一个新的无权限访问的WindowsApps文件夹,通过重新设置电脑用户权限才可以打开查看。转移Ganache安装位置原创 2021-02-23 15:53:01 · 2158 阅读 · 0 评论 -
Win10安装truffle+vue-cli运行一个以太坊dapp
安装truffle 与Ubuntu系统不同,这里直接安装就成功了 F:\ethProjects\simple_voting_dapp_truffle>npm install -g truffle@4.1.14 npm WARN deprecated mkdirp@0.5.1: Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has c原创 2021-02-22 16:19:57 · 1075 阅读 · 0 评论 -
基于token的投票系统笔记
安装truffle 问题一 truffle init 报错, truffle unbox webpack 安装报错 更新hosts文件 使用Google hosts 替换本地/etc/hosts文件 重启网络 sudo service network-manager restart 问题解决参考博客 使用git clone到当前文件夹,参考1,参考2 run npm dev 出错,参考2方法,同时 npm install出错,使用cnpm install: 问题, 同源请求问题: 原因:可能是更改.原创 2021-02-20 23:56:58 · 246 阅读 · 0 评论 -
Geth使用笔记
问题-----解决方法 在geth命令行启动时添加–allow-insecure-unlock eth.sendTransaction({from:eth.accounts[0], to:"0x8973eF760c378dfc84d6791C338d7DB288Ba2d2B", value:web3.toWei(14.027284256,'ether')}) Error: authentication needed: password or unlock at web3.js:3143:20原创 2021-02-15 16:17:28 · 362 阅读 · 0 评论 -
Solidity笔记,使用Remix
Solidity笔记 pragma solidity >0.4.22 # 版本要求大于等于0.4.22 contract Car { # solidity中的公共的成员变量,如果没有,编译器自动生成get方法,返回price uint public price; string brand; function setPrice(uint newPrice) public { price = newPrice; } } # pure 关键字代表为纯计算 function pureAd原创 2021-02-10 18:49:56 · 955 阅读 · 0 评论