`
liue
  • 浏览: 18176 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
文章分类
社区版块
存档分类
最新评论

zcash 启动配置

 
阅读更多
本文转自:https://github.com/zcash/zcash/blob/master/contrib/debian/examples/zcash.conf

##
## zcash.conf configuration file. Lines beginning with # are comments.
##

# Network-related settings:

# Run on the test network instead of the real zcash network.
#testnet=0

# Run a regression test network
#regtest=0

# Connect via a SOCKS5 proxy
#proxy=127.0.0.1:9050

# Bind to given address and always listen on it. Use [host]:port notation for IPv6
#bind=<addr>

# Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6
#whitebind=<addr>

##############################################################
##            Quick Primer on addnode vs connect            ##
##  Let's say for instance you use addnode=4.2.2.4          ##
##  addnode will connect you to and tell you about the      ##
##    nodes connected to 4.2.2.4.  In addition it will tell ##
##    the other nodes connected to it that you exist so     ##
##    they can connect to you.                              ##
##  connect will not do the above when you 'connect' to it. ##
##    It will *only* connect you to 4.2.2.4 and no one else.##
##                                                          ##
##  So if you're behind a firewall, or have other problems  ##
##  finding nodes, add some using 'addnode'.                ##
##                                                          ##
##  If you want to stay private, use 'connect' to only      ##
##  connect to "trusted" nodes.                             ##
##                                                          ##
##  If you run multiple nodes on a LAN, there's no need for ##
##  all of them to open lots of connections.  Instead       ##
##  'connect' them all to one node that is port forwarded   ##
##  and has lots of connections.                            ##
##       Thanks goes to [Noodle] on Freenode.               ##
##############################################################

# Use as many addnode= settings as you like to connect to specific peers
#addnode=69.164.218.197
#addnode=10.0.0.2:8233

# Alternatively use as many connect= settings as you like to connect ONLY to specific peers
#connect=69.164.218.197
#connect=10.0.0.1:8233

# Listening mode, enabled by default except when 'connect' is being used
#listen=1

# Maximum number of inbound+outbound connections.
#maxconnections=

#
# JSON-RPC options (for controlling a running Zcash/zcashd process)
#

# server=1 tells zcashd to accept JSON-RPC commands (set as default if not specified)
#server=1

# Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6.
# This option can be specified multiple times (default: bind to all interfaces)
#rpcbind=<addr>

# You must set rpcuser and rpcpassword to secure the JSON-RPC api
#rpcuser=Ulysses
#rpcpassword=YourSuperGreatPasswordNumber_DO_NOT_USE_THIS_OR_YOU_WILL_GET_ROBBED_385593

# How many seconds zcash will wait for a complete RPC HTTP request.
# after the HTTP connection is established.
#rpcclienttimeout=30

# By default, only RPC connections from localhost are allowed.
# Specify as many rpcallowip= settings as you like to allow connections from other hosts,
# either as a single IPv4/IPv6 or with a subnet specification.

# NOTE: opening up the RPC port to hosts outside your local trusted network is NOT RECOMMENDED,
# because the rpcpassword is transmitted over the network unencrypted and also because anyone
# that can authenticate on the RPC port can steal your keys + take over the account running zcashd
# For more information see https://github.com/zcash/zcash/issues/1497

#rpcallowip=10.1.1.34/255.255.255.0
#rpcallowip=1.2.3.4/24
#rpcallowip=2001:db8:85a3:0:0:8a2e:370:7334/96

# Listen for RPC connections on this TCP port:
#rpcport=8232

# You can use Zcash or zcashd to send commands to Zcash/zcashd
# running on another host using this option:
#rpcconnect=127.0.0.1

# Transaction Fee

# Send transactions as zero-fee transactions if possible (default: 0)
#sendfreetransactions=0

# Create transactions that have enough fees (or priority) so they are likely to # begin confirmation within n blocks (default: 1).
# This setting is overridden by the -paytxfee option.
#txconfirmtarget=n

# Miscellaneous options

# Enable attempt to mine zcash.
#gen=0

# Set the number of threads to be used for mining zcash (-1 = all cores).
#genproclimit=1

# Specify a different Equihash solver (e.g. "tromp") to try to mine zcash
# faster when gen=1.
#equihashsolver=default

# Pre-generate this many public/private key pairs, so wallet backups will be valid for
# both prior transactions and several dozen future transactions.
#keypool=100

# Pay an optional transaction fee every time you send zcash.  Transactions with fees
# are more likely than free transactions to be included in generated blocks, so may
# be validated sooner. This setting does not affect private transactions created with
# 'z_sendmany'.
#paytxfee=0.00
分享到:
评论

相关推荐

    zcash:适用于Node.js的最小Zcash库

    npm install zcash --save 特征 快速,简洁的代码库,零依赖。 支持列出的所有命令。 测试套件! 去做 编写更完整的测试套件。 原料药 Zcash.auto() 从HOME/.zcash/zcash.conf读取用户名和密码后,返回一个新...

    zcash-rpc.github.io:zcash rpc文档

    Zcash RPC文档生成器该工具提取和格式化每个Zcash RPC调用的帮助文本。 该脚本的输出托管在。 请参阅script目录,以zcash.go生成输出和模板的zcash.go脚本。如何使用确保您有去安装和工作运行zcashd实例,该zcash-...

    zcash-pow, Zcash工作算法的证明.zip

    zcash-pow, Zcash工作算法的证明 Zcash proof-of-work的 python-参考实现目前Zcash使用的功率是 Equihash,这是一种基于广义生日问题的内存硬算法。安装virtualenv. env.. env/bin/activate

    Parity-Zcash — Zcash协议的Rust实现-Rust开发

    奇偶校验Zcash客户端。 Gitter博客:Parity与Zcash Foundation for Parity Zcash客户端合作,从源代码安装安装快照运行Parity Zcash客户端。 Gitter博客:Parity与Zcash Foundation for Parity Zcash客户端合作从源...

    zcash-light:Go中的轻量级Zcash API-钱包库

    零钱Go中的轻量级Zcash API钱包库。 它连接到Insight API端点以获取和发送事务。 图书馆使用情况: // Create a new configconfig := zcash. Config {}// Select networkconfig . Params = & chaincfg . TestNet3...

    docker-zcash:Dockerized Zcash守护程序

    docker-zcash Dockerized Zcash守护程序 键值版3.1.0 卷/data RPC端口8232 RPC用户zcash RPC通行证password

    zcash-mini:用于脱机纸钱包的最小便携式Zcash z地址生成器

    zcash-mini是Go中最小的便携式Zcash钱包生成器。 $ go get -u github.com/FiloSottile/zcash-mini - or - $ git clone https://github.com/FiloSottile/zcash-mini $ cd zcash-mini && make && sudo cp ./bin/...

    js-ipld-zcash:Zcash IPLD格式JavaScript实现

    Zcash的IPLD Zcash块的JavaScript实现。 首席维护者 目录 安装 npm 在Node.js中使用 在带有browserify,webpack或任何其他捆绑程序的浏览器中使用 在浏览器中使用使用脚本标签 用法 贡献 执照 安装 npm &gt; npm ...

    Zcash Hoje-crx插件

    【Zcash Hoje-crx插件】是一款专为葡萄牙语(巴西)用户设计的浏览器扩展程序,它旨在提供与Zcash加密货币相关的实时信息和服务。Zcash是一种专注于隐私保护的数字货币,采用零知识证明技术来确保交易的匿名性。这款...

    react-native-zcash:Zcash生态系统的OSS React库,组件和应用程序

    React原生Zcash 该存储库使用纱线工作区并进行本地响应。 要详细了解我是如何工作的,。 此项目正在开发中,并且是前Alpha版质量。 现在仅与testnet令牌一起使用。 先决条件 安装git和yarn以及Xcode和其他东西。 ...

    今天Zcash「Zcash Hoje」-crx插件

    通过DolarHoje.com/zcash查看Zcash的报价 Aplicaçãodo DolarHoje.com/zcash/可为您提供真正的礼品,是真正的uma calculadora externa或folhas de papel必需品 :) 支持语言:português (Brasil)

    zips:Zcash改进建议

    zips:Zcash改进建议

    java版商城源码下载-zcash-analysis-19733:zcash-analysis-19733

    java版商城源码下载zcash-经验分析 这是研究论文中使用的源代码: Zcash 中匿名性的实证分析George Kappos、Haaroon Yousaf、Mary Maller、Sarah Meiklejohn,2018 年第 27 届 USENIX 安全研讨会, 所有作者均得到 ...

    zcash_script:zcash的zcashconsensus库的防锈包装

    zcash_script Rust绑定到ECC的zcash_script c ++库。更新depend/zcash 要从上游仓库获取最新更改,请运行以下命令: git subtree pull -P depend/zcash &lt;repo&gt; &lt;branch&gt; --squash

    zebra:Zcash节点的正在进行的Rust实现。 :zebra:

    关于是Zcash基金会的Zcash协议的独立的,兼容共识的实现,目前正在开发中。 如果您想了解更多信息或参与其中,请 。Alpha版本每隔几周,我们就会发布一个新的Zebra alpha版本。 Alpha版本系列的目标是: 参与Zcash...

    zcash_service_status_library

    使用此存储库中包含的prometheus.yml文件进行配置。 对于Docker: docker run \ -p 9090:9090 \ -v /Users/aviralsrivastava/dev/zcash_service_status_library/prometheus.yml:/etc/prometheus/prometheus.yml ...

    ZCash Flypool显示器「ZCash Flypool Monitor」-crx插件

    这是快速监视ZCash Flypool工作人员的工具。 支持语言:English

    ZCash Mining Certificate - 优化及扩增计划1

    ZMC背景与介绍71.2.3.ZMC 参与者 84.ZMC 发售情况 10二、1.初代 ZMC 的意义 122.ZMC 优化与扩增的意义 13三、ZMC 扩增计

    zcash-grant-system:Zcash基金会资助系统

    Zcash赠款系统 这是组成Zcash Grant System的各种服务和组件的集合。 设置 有关每个组件的说明,请参见: /backend/README.md /frontend/README.md /admin/README.md /e2e/README.md /blockchain/README.md ...

Global site tag (gtag.js) - Google Analytics