| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- ## cashierd configuration file
- ##
- ## Please make sure you go through all the settings so you can configre
- ## your daemon properly.
- # The DNS name of the cashier (can also be an IP, or a .onion address)
- dns_addr = "testnet.cashier.dark.fi"
- # The endpoint where cashierd will bind its RPC socket
- rpc_listen_address = "127.0.0.1:9000"
- # Whether to listen with TLS or plain TCP
- serve_tls = false
- # Path to DER-formatted PKCS#12 archive. (Unused if serve_tls=false)
- # This can be created using openssl:
- # openssl pkcs12 -export -out identity.pfx -inkey key.pem -in cert.pem -certfile chain_certs.pem
- tls_identity_path = "~/.config/darkfi/localdata/cashierd_identity.pfx"
- # Password for the created TLS identity. (Unused if serve_tls=false)
- tls_identity_password = "FOOBAR"
- # The endpoint to a gatewayd protocol API
- gateway_protocol_url = "tcp://127.0.0.1:3333"
- # The endpoint to a gatewayd publisher API
- gateway_publisher_url = "tcp://127.0.0.1:4444"
- # Path to cashierd wallet
- cashier_wallet_path = "~/.config/darkfi/localdata/cashier_wallet.db"
- # Password for cashierd wallet
- cashier_wallet_password = "TEST_PASSWORD"
- # Path to client wallet
- client_wallet_path = "~/.config/darkfi/localdata/cashier_client_wallet.db"
- # Password for client wallet
- client_wallet_password = "TEST_PASSWORD"
- # Path to database
- database_path = "~/.config/darkfi/localdata/cashier_database.db"
- # Geth IPC endpoint
- geth_socket= "~/.ethereum/ropsten/geth.ipc"
- # Geth passphrase
- geth_passphrase= "TEST_PASS"
- # The configured networks to use.
- [[networks]]
- name = "sol"
- blockchain = "devnet"
- # The path to a secret key (can be created with solana-keygen new --no-bip39-passphrase)
- keypair = ""
- [[networks]]
- name = "btc"
- blockchain = "testnet"
- keypair = ""
- [[networks]]
- name = "eth"
- blockchain = "ropsten"
- keypair = ""
|