You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmonero/config/config.json

71 lines
2.4 KiB

{
"daemon-url" :
{
"_comment" : "RPC urls to monero deamon",
"mainnet" : "http://127.0.0.1:34568",
"testnet" : "http://127.0.0.1:28081",
"stagenet" : "http://127.0.0.1:38081"
},
"blockchain-path" :
{
"_comment" : "if paths are empty, default Monero paths will be used",
"mainnet" : "",
"testnet" : "",
"stagenet" : ""
},
"database" :
{
"_comment" : "how should the backend connect to the mysql database",
"url" : "127.0.0.1",
"port" : 3306,
"dbname" : "openmonero",
"user" : "root",
"password" : "root"
},
"database_test":
{
"_comment" : "how should the backend connect to the test mysql database",
"url" : "127.0.0.1",
"port" : 3306,
"dbname" : "openmonero_test",
"user" : "root",
"password" : "root"
},
"wallet_import" :
{
"_comment": "if fee is 0, then importing is free. fee is in base 1e12, e.g., 0.1 xmr is 0.1 x 1e12 = 100000000000",
"fee" : 0,
"testnet" :
{
"address" : "9tzmPMTViHYM3z6NAgQni1Qm1Emzxy5hQFibPgWD3LVTAz91yok5Eni1pH6zKhBHzpTU15GZooPHSGHXFvFuXEdmEG2sWAZ",
"viewkey" : "ae6184287ca791609844f140b8502ccfa2223c04c8699cf31fcd0af1f1d0be08"
},
"mainnet" :
{
"_comment": "these are official monero project donation address and viewkey. change it to yours",
"address" : "Wo3MWeKwtA918DU4c69hVSNgejdWFCRCuWjShRY66mJkU2Hv58eygJWDJS1MNa2Ge5M1WjUkGHuLqHkweDxwZZU42d16v94mP",
"viewkey" : "e62e40bfd5ca7e3a7f199602a3c97df511780489e1c1861884b00c28abaea406"
},
"stagenet" :
{
"address" : "53mqDDKtVkib8inMa41HuNJG4tj9CcaNKGr6EVSbvhWGJdpDQCiNNYBUNF1oDb8BczU5aD68d3HNKXaEsPq8cvbQE2FBkTS",
"viewkey" : "53c5850e895122574c53a4f952c726be3fe22bcd2b08f4bfed8946d887cc950b"
}
},
"refresh_block_status_every_seconds" : 10,
"blocks_search_lookahead" : 200,
"search_thread_life_in_seconds" : 120,
"max_number_of_blocks_to_import" : 132000,
"mysql_ping_every_seconds" : 200,
"_comment": "if the threadpool_size (no of threads) below is 0, its size is automaticly set based on your cpu. If its not 0, the value specified is used instead",
"blockchain_treadpool_size" : 1,
"ssl" :
{
"enable" : false,
"_comment": "below are example paths to crt and key files need to be given",
"ssl-key": "file:///tmp/server.key",
"ssl-crt": "file:///tmp/server.crt",
"dh-pem" : "file:///tmp/dh2048.pem"
}
}