forked from farcaster-project/farcaster-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
farcasterd.toml
32 lines (29 loc) · 1.16 KB
/
farcasterd.toml
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
# Syncers configuration
# configures the Bitcoin and Monero syncers for the three
# networks.
# Mainnet daemons
[syncers.mainnet]
# Electrum Server used by the Bitcoin syncer
electrum_server = "ssl://blockstream.info:700"
# Monero daemon used by the Monero syncer
monero_daemon = "http://node.monerooutreach.org:18081"
# Monero Wallet RPC used by the Monero syncer
# Point to local running wallet
monero_rpc_wallet = "http://localhost:18083"
# Testnet/stagenet daemons
[syncers.testnet]
# Electrum Server used by the Bitcoin syncer on testnet
electrum_server = "ssl://blockstream.info:993"
# Monero daemon used by the Monero syncer on stagenet
monero_daemon = "http://stagenet.melo.tools:38081"
# Monero Wallet RPC used by the Monero syncer on stagenet
# Point to local running wallet
monero_rpc_wallet = "http://localhost:38083"
# Local development daemons, null by default
[syncers.local]
# Electrum Server used by the Bitcoin syncer on regtest
electrum_server = "tcp://localhost:50001"
# Monero daemon used by the Monero syncer on regtest
monero_daemon = "http://localhost:18081"
# Monero Wallet RPC used by the Monero syncer on regtest
monero_rpc_wallet = "http://localhost:18083"