LOADING...
LOADING...
LOADING...
当前位置: 玩币族首页 > 区块链资产 > 如何发行一个自己的代币并且实现基本功能

如何发行一个自己的代币并且实现基本功能

2021-05-28 天颂讲币 来源:区块链网络

1.首先安装依赖

$ sudo npm install -g yarn

$ curl https://install.meteor.com/ | sh

$ sudo npm install -g electron --unsafe-perm=true --allow-root --registry=https://registry.npm.taobao.org

$ npm install -g gulp`

可能会出现 timeout, 因为你的 npm 没换源

需要先vim ~/.npmrc,再加入

registry=https://registry.npm.taobao.org

sass_binary_site=https://npm.taobao.org/mirrors/node-sass/

phantomjs_cdnurl=http://npm.taobao.org/mirrors/phantomjs

ELECTRON_MIRROR=http://npm.taobao.org/mir

2.安装完依赖,开始安装 mist 钱包

$ git clone https://github.com/ethereum/mist.git

$ cd mist

$ git submodule update --init

$ yarn

3.运行Mist

cd mist/interface && meteor --no-release-check

然后再开一个命令窗口

然后cd mist再yarn dev:electron . --rpc /Users/admin/Desktop/zhihu/geth.ipc 。进入项目可以看到

这个 geth.ipc 就是前面我们新建的以太坊私有链下的geth.ipc文件。

完成这一切,你应该能开到自动打开了一个应用

mist 钱包算是安装好了.

怎么测试合约代码呢?

如果有自己做代币想法的可以找我:篇幅原因代码注释没写

zp193108

—-

编译者/作者:天颂讲币

玩币族申明:玩币族作为开放的资讯翻译/分享平台,所提供的所有资讯仅代表作者个人观点,与玩币族平台立场无关,且不构成任何投资理财建议。文章版权归原作者所有。

LOADING...
LOADING...