
区块链技术
文章平均质量分 79
niekai01
这个作者很懒,什么都没留下…
展开
-
linux 安装 Zcash
需求Linux (ubuntu 系统) 64-bit 4GB of free memory 开始 安装依赖的包:sudo apt-get install \ build-essential pkg-config libc6-dev m4 g++-multilib \ autoconf libtool ncurses-dev unzip git python python-z原创 2017-05-11 20:18:15 · 3403 阅读 · 2 评论 -
truffle-init-webpack 项目
Usage To initialize a project with this exapmple, run truffle init webpack inside an empty directory. Building and the frontend First run truffle compile, then run truffle migrate to deploy the contr原创 2017-05-06 12:33:05 · 3222 阅读 · 0 评论 -
区块链实践(一) 以太坊网络+geth搭建私有网络实战
一、以太网网络 理解以太坊 PrivateNetwork 先要理解以太坊的两种官方网络, 目前以太坊官方提供了两种网 生产环境网络 测试网络 TestNet ** 1 以太坊生产网络以太坊的生产网络顾名思义,也就是产生真正有价值的 的以太币的网络。 目前生产网络目前已经生成了300万以上的区块,还在持续生成中。挖矿挖出来的每个以台币在10美金以上。 生产环境下的以太坊状态时如此的(截图自2017原创 2017-03-24 23:02:10 · 16842 阅读 · 2 评论 -
truffle 部署合约
truffle init webpack 目录: 创建合约 在./contracts目录下创建一个新的合约,起名为 SimpleStorage.sol,并添加以下代码: pragma solidity ^0.4.0; contract SimpleStorage { function multiply(uint a) returns(uint d)原创 2017-05-08 23:30:14 · 3929 阅读 · 1 评论 -
Ubuntu 14.04 install python-pip
sudo apt-get update 出现问题: 解决方案: (1) //删除 sudo rm -fR /var/lib/apt/lists/* //新建相应文件夹 sudo mkdir /var/lib/apt/lists/partial //重新update sudo apt-get update (2) 修改dns:配置文件地址 /etc/resolv.c原创 2017-08-30 23:24:58 · 347 阅读 · 0 评论