mmgen.cfg 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. # Configuration file for the MMGen suite
  2. # Everything following a '#' is ignored.
  3. #####################
  4. ## General options ##
  5. #####################
  6. # Uncomment to enable the curses-like scrolling UI for tracking wallet views
  7. # scroll true
  8. # Uncomment to suppress the GPL license prompt:
  9. # no_license true
  10. # Uncomment to enable quieter output:
  11. # quiet true
  12. # Uncomment to disable color output:
  13. # color false
  14. # Uncomment to force 256-color output when 'color' is true:
  15. # force_256_color true
  16. # Uncomment to use regtest mode:
  17. # regtest true
  18. # Uncomment to use testnet instead of mainnet:
  19. # testnet true
  20. # Set the RPC host (the host the coin daemon is running on):
  21. # rpc_host localhost
  22. # Set the RPC host's port number:
  23. # rpc_port 8332
  24. # Uncomment to override 'rpcuser' from coin daemon config file:
  25. # rpc_user myusername
  26. # Uncomment to override 'rpcpassword' from coin daemon config file:
  27. # rpc_password mypassword
  28. # Choose the backend to use for JSON-RPC connections. Valid choices:
  29. # 'auto' (defaults to 'httplib'), 'httplib', 'requests', 'curl', 'aiohttp':
  30. # rpc_backend auto
  31. # Increase to allow aiohttp to make more simultaneous RPC connections to the
  32. # daemon. Must be no greater than the 'rpcworkqueue' value in effect on the
  33. # currently running bitcoind (DEFAULT_HTTP_WORKQUEUE = 16). Values over 32
  34. # may produce little benefit or even reduce performance:
  35. # aiohttp_rpc_queue_len 16
  36. # Uncomment to set the coin daemon datadir:
  37. # daemon_data_dir /path/to/datadir
  38. # Set the default hash preset:
  39. # hash_preset 3
  40. # Set the default number of subseeds:
  41. # subseeds 100
  42. # Set the default number of entropy characters to get from user.
  43. # Must be between 10 and 80.
  44. # A value of 0 disables user entropy, but this is not recommended:
  45. # usr_randchars 30
  46. # Set the maximum transaction fee for BTC:
  47. # btc_max_tx_fee 0.003
  48. # Set the transaction fee adjustment factor. Auto-calculated fees are
  49. # multiplied by this value:
  50. # fee_adjust 1.0
  51. # Set the maximum transaction file size:
  52. # max_tx_file_size 100000
  53. # Set the maximum input size - applies both to files and standard input:
  54. # max_input_size 1048576
  55. # Set the mnemonic entry mode for each supported wordlist. Setting this option
  56. # also turns off all information output for the configured wordlists:
  57. # mnemonic_entry_modes mmgen:minimal bip39:fixed xmrseed:short
  58. # Uncomment to allow addresses with labels to be used as change addresses.
  59. # This option is meaningful only for automatic change address selection.
  60. # When change addresses are chosen manually the option is ignored:
  61. # autochg_ignore_labels true
  62. # Set the size in MB of the ramdisk used to store the temporary offline
  63. # autosign wallet(s) on macOS machines. This option is of interest only for
  64. # setups with unusually large Monero wallets:
  65. # macos_autosign_ramdisk_size 10
  66. ############################
  67. ## Ignore daemon versions ##
  68. ############################
  69. # Ignore Bitcoin Core version:
  70. # btc_ignore_daemon_version false
  71. # Ignore Litecoin Core version:
  72. # ltc_ignore_daemon_version false
  73. # Ignore Bitcoin Cash Node version:
  74. # bch_ignore_daemon_version false
  75. # Ignore OpenEthereum version for ETH:
  76. # eth_ignore_daemon_version false
  77. # Ignore OpenEthereum version for ETC:
  78. # etc_ignore_daemon_version false
  79. # Ignore daemon version for Monero:
  80. # xmr_ignore_daemon_version false
  81. #####################
  82. ## Altcoin options ##
  83. #####################
  84. # Set this to false to prefer legacy BCH address format:
  85. # bch_cashaddr true
  86. # Set the maximum transaction fee for BCH:
  87. # bch_max_tx_fee 0.1
  88. # Set the maximum transaction fee for LTC:
  89. # ltc_max_tx_fee 0.3
  90. # Set the maximum transaction fee for ETH:
  91. # eth_max_tx_fee 0.005
  92. # Set the Ethereum mainnet chain names (space-separated list, first is default):
  93. # eth_mainnet_chain_names ethereum foundation
  94. # Set the Ethereum testnet chain names (space-separated list, first is default):
  95. # eth_testnet_chain_names kovan
  96. # Set the Monero wallet RPC username:
  97. # monero_wallet_rpc_user monero
  98. # Set the Monero wallet RPC password to something secure:
  99. # monero_wallet_rpc_password passw0rd
  100. #######################################################################
  101. ## The following options are probably of interest only to developers ##
  102. #######################################################################
  103. # Uncomment to display lots of debugging information:
  104. # debug true
  105. # Set the timeout for RPC connections:
  106. # http_timeout 60