4 Star 8 Fork 34

coin-exchange-all / Exchange-Listing-Guide

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ZEC - Zcash.md 1.91 KB
一键复制 编辑 原始数据 按行查看 历史
Lion 提交于 2020-03-16 23:51 . 版本升级检查

Zcash - ZEC

文档版本:2.1.1-1

检查日期: 2020.03.16

官网地址:

https://z.cash/

钱包下载:

https://zcash.readthedocs.io/en/latest/rtd_pages/install_binary_tarball.html

查询网站:

https://zcash.tokenview.com/

开发文档

https://zcash.readthedocs.io/

安装说明:

  • 同 BTC - Bitcoin (文件名区别)

配置文件:

  • 同 BTC - Bitcoin
  • 加上一下这段
addnode=mainnet.z.cash

升级说明:

  • 同 BTC - Bitcoin

创建地址:

  • 同 BTC - Bitcoin

追踪入账:

  • 同 BTC - Bitcoin

对外提币:

1、估算当前费用

curl -X POST -H 'content-type: text/plain;' http://127.0.0.1:8332/ -u RPC用户:RPC密码 \
-d '{"jsonrpc":"1.0","id":"随便写","method":"estimatefee","params":[期望多少个区块内到达]}'  

2、创建RAW交易

curl -X POST -H 'content-type: text/plain;' http://127.0.0.1:8332/ -u RPC用户:RPC密码 \
-d '{"jsonrpc":"1.0","id":"随便写","method":"createrawtransaction","params":[[{"txid":"输出的Txid","vout":输出的Tx的序号}],[{"接收地址":接收金额}]}'  

3、导入私钥(如果私钥已在节点上,可跳过)

curl -X POST -H 'content-type: text/plain;' http://127.0.0.1:8332/ -u RPC用户:RPC密码 \
-d '{"jsonrpc":"1.0","id":"随便写","method":"importprivkey","params":["私钥密文","标签(可留空)",false]}'  

4、签名RAW交易

curl -X POST -H 'content-type: text/plain;' http://127.0.0.1:8332/ -u RPC用户:RPC密码 \
-d '{"jsonrpc":"1.0","id":"随便写","method":"signrawtransaction","params":["创建RAW返回的Hex"]}'  

5、发送RAW交易

curl -X POST -H 'content-type: text/plain;' http://127.0.0.1:8332/ -u RPC用户:RPC密码 \
-d '{"jsonrpc":"1.0","id":"随便写","method":"sendrawtransaction","params":["完成签名的Hex"]}'  

归集处理:

  • 同 BTC - Bitcoin

灾难恢复:

  • 同 BTC - Bitcoin

注意事项:

1
https://gitee.com/coin-exchange-all/Exchange-Listing-Guide.git
git@gitee.com:coin-exchange-all/Exchange-Listing-Guide.git
coin-exchange-all
Exchange-Listing-Guide
Exchange-Listing-Guide
master

搜索帮助