This repository has been archived by the owner on Oct 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
.env-testnet-sample
67 lines (55 loc) · 2.13 KB
/
.env-testnet-sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
###############################################################
# TestNet Sparkswap Environment File
#
# These settings control the underlying functionality of sparkswapd and the
# associated lightning implementations (engines).
#
###############################################################
# Set the network that sparkswap and engines will work on.
NETWORK=testnet
# Set secure credentials for your sparkswap daemon
RPC_USER=sparkswap
RPC_PASS=sparkswap
# Relayer Host Addresses for TestNet
RELAYER_RPC_HOST=relayer.testnet.sparkswap.com:28492
# Bitcoin Settings
#
# We have provided default username/passwords for all active engines (ltc, btc)
# on the daemon, HOWEVER, if you are self-hosting these files OR running w/ real money
# then it is highly recommended that you change these defaults for your security
#
# BTC_RPC_HOST=your.btc.rpc.host
BTC_RPC_USER=sparkswapbtc
BTC_RPC_PASS=sparkswapbtc
# Block Broadcast Address
# BTC_ZMQPUBRAWBLOCK=your.bitcoin.node.block.address
# Transaction Broadcast Address
# BTC_ZMQPUBRAWTX=your.bitcoin.node.transaction.address
# Litecoin Settings
#
# We have provided default username/passwords for all active engines (ltc, btc)
# on the daemon, HOWEVER, if you are self-hosting these files OR running w/ real money
# then it is highly recommended that you change these defaults for your security
#
# LTC_RPC_HOST=your.ltc.rpc.host
LTC_RPC_USER=sparkswapltc
LTC_RPC_PASS=sparkswapltc
# Block Broadcast Address
# LTC_ZMQPUBRAWBLOCK=your.litecoin.node.block.address
# Transaction Broadcast Address
# LTC_ZMQPUBRAWTX=your.litecoin.node.transaction.address
# External IP Addresses
#
# This flag sets a static IP address for your LND instance. This address can either
# be a TLD or an IP address. This setting is optional.
#
# EXTERNAL_BTC_ADDRESS=sample.ip.address
# EXTERNAL_LTC_ADDRESS=sample.ip.address
# Path to rpc certs and identity keys
SECURE_PATH=~/.sparkswap/secure
# Docker compose files
# All sparkswap compose files joined by the COMPOSE_PATH_SEPARATOR will be applied and used
# with docker-compose
#
COMPOSE_PATH_SEPARATOR=:
COMPOSE_FILE=docker-compose.yml:docker-compose.bitcoind.yml:docker-compose.litecoind.yml