mmgen.cfg 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. # Configuration file for the MMGen suite
  2. # Everything following a '#' is ignored.
  3. ##################
  4. ## User options ##
  5. ##################
  6. # Uncomment to suppress the GPL license prompt:
  7. # no_license true
  8. # Uncomment to enable quieter output:
  9. # quiet true
  10. # Uncomment to disable color output:
  11. # color false
  12. # Uncomment to force 256-color output when 'color' is true:
  13. # force_256_color true
  14. # Uncomment to use regtest mode (this also sets testnet to true):
  15. # regtest true
  16. # Uncomment to use testnet instead of mainnet:
  17. # testnet true
  18. # Set the RPC host (the host the coin daemon is running on):
  19. # rpc_host localhost
  20. # Set the RPC host's port number:
  21. # rpc_port 8332
  22. # Uncomment to override 'rpcuser' from coin daemon config file:
  23. # rpc_user myusername
  24. # Uncomment to override 'rpcpassword' from coin daemon config file:
  25. # rpc_password mypassword
  26. # Choose the backend to use for JSON-RPC connections. Valid choices are
  27. # 'httplib', 'requests', 'curl', 'aiohttp' (Linux only) or 'auto' (defaults
  28. # to curl for Windows/MSYS2 and httplib for Linux):
  29. # rpc_backend auto
  30. # Increase to allow aiohttp to make more simultaneous RPC connections to the
  31. # daemon. Must be no greater than the 'rpcworkqueue' value in effect on the
  32. # currently running bitcoind (DEFAULT_HTTP_WORKQUEUE = 16). Values over 32
  33. # may produce little benefit or even reduce performance:
  34. # aiohttp_rpc_queue_len 16
  35. # Uncomment to set the coin daemon datadir:
  36. # daemon_data_dir /path/to/datadir
  37. # Set the default hash preset:
  38. # hash_preset 3
  39. # Set the default number of subseeds:
  40. # subseeds 100
  41. # Set the default number of entropy characters to get from user.
  42. # Must be between 10 and 80.
  43. # A value of 0 disables user entropy, but this is not recommended:
  44. # usr_randchars 30
  45. # Set the maximum transaction fee for BTC:
  46. # btc_max_tx_fee 0.003
  47. # Set the transaction fee adjustment factor. Auto-calculated fees are
  48. # multiplied by this value:
  49. # tx_fee_adj 1.0
  50. # Set the maximum transaction file size:
  51. # max_tx_file_size 100000
  52. # Set the maximum input size - applies both to files and standard input:
  53. # max_input_size 1048576
  54. # Set the mnemonic entry mode for each supported wordlist. Setting this option
  55. # also turns off all information output for the configured wordlists:
  56. # mnemonic_entry_modes mmgen:minimal bip39:fixed xmrseed:short
  57. #####################
  58. ## Altcoin options ##
  59. #####################
  60. # Set the maximum transaction fee for BCH:
  61. # bch_max_tx_fee 0.1
  62. # Set the maximum transaction fee for LTC:
  63. # ltc_max_tx_fee 0.3
  64. # Set the maximum transaction fee for ETH:
  65. # eth_max_tx_fee 0.005
  66. # Set the Ethereum mainnet name:
  67. # eth_mainnet_chain_name foundation
  68. # Set the Ethereum testnet name:
  69. # eth_testnet_chain_name kovan
  70. # Set the Monero wallet RPC host:
  71. # monero_wallet_rpc_host localhost
  72. # Set the Monero wallet RPC username:
  73. # monero_wallet_rpc_user monero
  74. # Set the Monero wallet RPC password to something secure:
  75. # monero_wallet_rpc_password passw0rd
  76. #######################################################################
  77. ## The following options are probably of interest only to developers ##
  78. #######################################################################
  79. # Uncomment to display lots of debugging information:
  80. # debug true
  81. # Set the timeout for RPC connections:
  82. # http_timeout 60