Skip to content

Commit

Permalink
Bitcoin and Monero testnet scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
kayabaNerve committed Feb 4, 2024
1 parent 105b1d6 commit 7468898
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
7 changes: 6 additions & 1 deletion orchestration/testnet/coins/bitcoin/scripts/run.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#!/bin/bash

exit 1
RPC_USER="${RPC_USER:=serai}"
RPC_PASS="${RPC_PASS:=seraidex}"

bitcoind -txindex -testnet -port=8333 \
-rpcuser=$RPC_USER -rpcpassword=$RPC_PASS \
-rpcbind=0.0.0.0 -rpcallowip=0.0.0.0/0 -rpcport=8332
9 changes: 8 additions & 1 deletion orchestration/testnet/coins/monero/scripts/run.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
#!/bin/sh

exit 1
RPC_USER="${RPC_USER:=serai}"
RPC_PASS="${RPC_PASS:=seraidex}"

# Run Monero
monerod --non-interactive --testnet \
--no-zmq --rpc-bind-ip=0.0.0.0 --rpc-bind-port=18081 --confirm-external-bind \
--rpc-access-control-origins "*" --disable-rpc-ban \
--rpc-login=$RPC_USER:$RPC_PASS

0 comments on commit 7468898

Please sign in to comment.