cashierd.toml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. ## cashierd configuration file
  2. ##
  3. ## Please make sure you go through all the settings so you can configre
  4. ## your daemon properly.
  5. # The DNS name of the cashier (can also be an IP, or a .onion address)
  6. dns_addr = "testnet.cashier.dark.fi"
  7. # The endpoint where cashierd will bind its RPC socket
  8. rpc_listen_address = "127.0.0.1:9000"
  9. # Whether to listen with TLS or plain TCP
  10. serve_tls = false
  11. # Path to DER-formatted PKCS#12 archive. (Unused if serve_tls=false)
  12. # This can be created using openssl:
  13. # openssl pkcs12 -export -out identity.pfx -inkey key.pem -in cert.pem -certfile chain_certs.pem
  14. tls_identity_path = "~/.config/darkfi/localdata/cashierd_identity.pfx"
  15. # Password for the created TLS identity. (Unused if serve_tls=false)
  16. tls_identity_password = "FOOBAR"
  17. # The endpoint to a gatewayd protocol API
  18. gateway_protocol_url = "tcp://127.0.0.1:3333"
  19. # The endpoint to a gatewayd publisher API
  20. gateway_publisher_url = "tcp://127.0.0.1:4444"
  21. # Path to cashierd wallet
  22. cashier_wallet_path = "~/.config/darkfi/localdata/cashier_wallet.db"
  23. # Password for cashierd wallet
  24. cashier_wallet_password = "TEST_PASSWORD"
  25. # Path to client wallet
  26. client_wallet_path = "~/.config/darkfi/localdata/cashier_client_wallet.db"
  27. # Password for client wallet
  28. client_wallet_password = "TEST_PASSWORD"
  29. # Path to database
  30. database_path = "~/.config/darkfi/localdata/cashier_database.db"
  31. # Geth IPC endpoint
  32. geth_socket= "~/.ethereum/ropsten/geth.ipc"
  33. # Geth passphrase
  34. geth_passphrase= "TEST_PASS"
  35. # The configured networks to use.
  36. [[networks]]
  37. name = "sol"
  38. blockchain = "devnet"
  39. # The path to a secret key (can be created with solana-keygen new --no-bip39-passphrase)
  40. keypair = ""
  41. [[networks]]
  42. name = "btc"
  43. blockchain = "testnet"
  44. keypair = ""
  45. [[networks]]
  46. name = "eth"
  47. blockchain = "ropsten"
  48. keypair = ""