cashierd.toml 664 B

1234567891011121314151617181920212223242526272829303132
  1. rpc_url = "127.0.0.1:9000"
  2. gateway_url = "127.0.0.1:3333"
  3. gateway_subscriber_url = "127.0.0.1:4444"
  4. log_path = "/tmp/cashierd.log"
  5. password = "TEST_PASSWORD"
  6. client_password = "TEST_PASSWORD"
  7. # Whether to listen with TLS or plain TCP
  8. use_tls = false
  9. # Path to DER-formatted PKCS#12 archive.
  10. # This can be created using openssl:
  11. # openssl pkcs12 -export -out identity.pfx -inkey key.pem -in cert.pem -certfile chain_certs.pem
  12. tls_identity_path = "~/.config/darkfi/darkfid_identity.pfx"
  13. # Password for the created identity
  14. tls_identity_password = "FOOBAR"
  15. [[networks]]
  16. name = "sol"
  17. blockchain = "testnet"
  18. [[networks]]
  19. name = "btc"
  20. blockchain = "testnet"