From 4fe41a1b32a01fb4d614cc641e1f8202ed4cda8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?22388o=E2=9A=A1=EF=B8=8F?= <83122757+22388o@users.noreply.github.com> Date: Tue, 31 Oct 2023 08:28:25 -0300 Subject: [PATCH 1/2] Update settings.default.yml --- settings.default.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/settings.default.yml b/settings.default.yml index 8b137891..0d0d0ee3 100644 --- a/settings.default.yml +++ b/settings.default.yml @@ -1 +1,5 @@ - +rpc: +port: +dlc_contract: +tor: +i2p: From e870686c3c2d1b4c2e9c1074a0abc7d4050d8c7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?22388o=E2=9A=A1=EF=B8=8F?= <83122757+22388o@users.noreply.github.com> Date: Thu, 2 Nov 2023 08:56:36 -0300 Subject: [PATCH 2/2] Update settings.default.yml --- settings.default.yml | 42 +++++++++++++++++++++++++++++++++++++----- 1 file changed, 37 insertions(+), 5 deletions(-) diff --git a/settings.default.yml b/settings.default.yml index 0d0d0ee3..c9125ce0 100644 --- a/settings.default.yml +++ b/settings.default.yml @@ -1,5 +1,37 @@ -rpc: -port: -dlc_contract: -tor: -i2p: +# Bitcoin Core RPC settings +bitcoin_rpc: + enabled: true + host: localhost + port: 8332 + username: your_bitcoin_rpc_username + password: your_bitcoin_rpc_password + +# Lightning Node settings +lightning_node: + enabled: true + implementation: c-lightning # Replace with your Lightning implementation (e.g., LND, Eclair, etc.) + host: localhost + port: 9735 + pubkey: your_lightning_node_pubkey + rpc_host: localhost + rpc_port: 8080 # Replace with the actual RPC port for your Lightning Node + rpc_username: your_lightning_rpc_username + rpc_password: your_lightning_rpc_password + + +# DLC (Discreet Log Contract) settings +dlc: + contract: deployed_contract_on_chain # Replace with your DLC contract details + utxo: # UTXO details for the DLC + transaction_id: your_utxo_transaction_id + vout: your_utxo_vout + +# Network settings +network: + mainnet: true # Set to true for mainnet, false for testnet + +# Other settings +other_settings: + log_level: info # Set the desired log level (info, debug, error, etc.) + data_directory: /path/to/your/data/directory + network: mainnet # Change to testnet if you're using the Bitcoin testnet