-
Notifications
You must be signed in to change notification settings - Fork 34
/
stagenet_env.sh
executable file
·14 lines (9 loc) · 990 Bytes
/
stagenet_env.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
export NETTYPE=stagenet
export DIFFICULT=1
alias pnode1="monerod --$NETTYPE --no-igd --hide-my-port --data-dir ~/$NETTYPE/node_01 --p2p-bind-ip 127.0.0.1 --log-level 0 --add-exclusive-node 127.0.0.1:38080 --add-exclusive-node 127.0.0.1:48080 --fixed-difficulty $DIFFICULT --disable-rpc-ban"
alias pwallet1="monero-wallet-cli --$NETTYPE --trusted-daemon --wallet-file ~/$NETTYPE/wallet_01.bin --password '' --log-file ~/$NETTYPE/wallet_01.log"
alias pwallet2="monero-wallet-cli --$NETTYPE --trusted-daemon --wallet-file ~/$NETTYPE/wallet_02.bin --password '' --log-file ~/$NETTYPE/wallet_02.log"
alias pwallet3="monero-wallet-cli --$NETTYPE --trusted-daemon --wallet-file ~/$NETTYPE/wallet_03.bin --password '' --log-file ~/$NETTYPE/wallet_03.log"
alias pwallet4="monero-wallet-cli --$NETTYPE --trusted-daemon --wallet-file ~/$NETTYPE/wallet_04.bin --password '' --log-file ~/$NETTYPE/wallet_04.log"
echo "private stagenet pnode1 pwallet1 to pwallet4 aliases avaliable now"