Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions lib/stacks/lib/config/stacksConfigDefaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ export function stacksNodeConfigDefaults(
const defaultStacksNetworkConfig: configTypes.StacksNetworkConfig = stacksNetwork === "mainnet"
? {
stacksNetwork: "mainnet",
stacksBootstrapNode: "02196f005965cebe6ddc3901b7b1cc1aa7a88f305bb8c5893456b8f9a605923893@seed.mainnet.hiro.so:20444,02539449ad94e6e6392d8c1deb2b4e61f80ae2a18964349bc14336d8b903c46a8c@cet.stacksnodes.org:20444,02ececc8ce79b8adf813f13a0255f8ae58d4357309ba0cedd523d9f1a306fcfb79@sgt.stacksnodes.org:20444,0303144ba518fe7a0fb56a8a7d488f950307a4330f146e1e1458fc63fb33defe96@est.stacksnodes.org:20444",
stacksBootstrapNode: "02da7a464ac770ae8337a343670778b93410f2f3fef6bea98dd1c3e9224459d36b@seed-0.mainnet.stacks.co:20444,02afeae522aab5f8c99a00ddf75fbcb4a641e052dd48836408d9cf437344b63516@seed-1.mainnet.stacks.co:20444,03652212ea76be0ed4cd83a25c06e57819993029a7b9999f7d63c36340b34a4e62@seed-2.mainnet.stacks.co:20444",
stacksChainstateArchive: "https://archive.hiro.so/mainnet/stacks-blockchain/mainnet-stacks-blockchain-latest.tar.gz",
stacksP2pPort: 20444,
stacksRpcPort: 20443,
bitcoinPeerHost: "bitcoind.stacks.co",
bitcoinRpcUsername: "blockstack",
bitcoinRpcPassword: "blockstacksystem",
bitcoinPeerHost: "bitcoin.mainnet.stacks.org",
bitcoinRpcUsername: "stacks",
bitcoinRpcPassword: "foundation",
bitcoinP2pPort: 8333,
bitcoinRpcPort: 8332,
}
Expand All @@ -48,9 +48,9 @@ export function stacksNodeConfigDefaults(
stacksChainstateArchive: "https://archive.hiro.so/testnet/stacks-blockchain/testnet-stacks-blockchain-latest.tar.gz",
stacksP2pPort: 20444,
stacksRpcPort: 20443,
bitcoinPeerHost: "bitcoind.testnet.stacks.co",
bitcoinRpcUsername: "blockstack",
bitcoinRpcPassword: "blockstacksystem",
bitcoinPeerHost: "bitcoin.testnet.stacks.org",
bitcoinRpcUsername: "stacks",
bitcoinRpcPassword: "foundation",
bitcoinP2pPort: 18333,
bitcoinRpcPort: 18332,
}
Expand Down
6 changes: 3 additions & 3 deletions lib/stacks/sample-configs/.env-sample-follower
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ STACKS_NODE_CONFIGURATION="follower" # Node configurati
STACKS_NETWORK="mainnet" # Network onto which this node should connect. One of "mainnet", "testnet", "xenon", "helium", "mocknet"
# STACKS_P2P_PORT=20444 # Port for P2P network connections. IMPORTANT: Replace with valid port number
# STACKS_RPC_PORT=20443 # Port for RPC connections. IMPORTANT: Replace with valid port number
# BITCOIN_PEER_HOST="bitcoind.stacks.co" # Hostname of the Bitcoin peer node. REQUIRED for connection to Bitcoin network
# BITCOIN_RPC_USERNAME="blockstack" # Username for Bitcoin RPC authentication
# BITCOIN_RPC_PASSWORD="blockstacksystem" # Password for Bitcoin RPC authentication
# BITCOIN_PEER_HOST="bitcoin.mainnet.stacks.org" # Hostname of the Bitcoin peer node. REQUIRED for connection to Bitcoin network
# BITCOIN_RPC_USERNAME="stacks" # Username for Bitcoin RPC authentication
# BITCOIN_RPC_PASSWORD="foundation" # Password for Bitcoin RPC authentication
# BITCOIN_RPC_PORT=8332 # Port for Bitcoin RPC connections
# BITCOIN_P2P_PORT=8333 # Port for Bitcoin P2P network connections

Expand Down
Loading