v1.37 Windows Wallet
http://xc-official.com/release/wallets/I will update user guides tomorrow morning, with the correct details
Also there are 3 core nodes - DNS seeding will be implemented shortly as well, the run-xc.bat batch also disables IRC via the "-irc" option, so make sure you have nodes listed in your X11Coin.conf if you use the batch file
east01.xcnode.xc-official.com
west01.xcnode.xc-official.com
west02.xcnode.xc-official.com
ATCSECURE
IS THIS INFORMATION BELOW STILL THE BEST WAY TO IMPLEMENT, I BELIEVE IT IS, CORRECT IF WRONT ATCSECURE.
Here are the directions to create a batch file that will make a new data directory, a default configuration file and run the xnode with the new data directory and wallet.
One caveat, you can't run this on the same computer when another XC wallet is currently running becuase it uses the same ports.
But, this should make the xnode startup easier for some.
Copy/paste this into a new .bat file in the wallet directory and run it.
It is a modified version of the run-xc-node-mainnet.bat file. Create a new file called something like xnode-new-wallet.bat and run it.
It will create a new data directory at AppData\Roaming\XC\xnode. The current wallet release uses X11Coin for the data dir. I hope this is changed in the future release.
It will check for an existing xnode.conf file and create it if not found. The RCP username and password are generated as random numbers. So if you want to change that just open the created file at AppData\Roaming\XC\xnode\xnode.conf and change it.
The last command starts the xnode using the new datadir containing the xnode wallet and xnode.conf
@echo off
echo ************************************************************
echo ************************************************************
echo ************************************************************
echo ****** **********
echo ****** THIS RELEASE IS FOR TESTING ONLY **********
echo ****** **********
echo ************************************************************
echo ************************************************************
echo .
echo .
echo Press Enter to continue and test
echo .
pause
IF NOT EXIST "%APPDATA%\XC\xnode" mkdir "%APPDATA%\XC\xnode"
IF EXIST "%APPDATA%\XC\xnode\xnode.conf" GOTO STARTUP
echo rpcuser=%random%%random%%random%%random%%random%%random%%random% > "%APPDATA%\XC\xnode\xnode.conf"
echo rpcpassword=%random%%random%%random%%random%%random%%random%%random% >> "%APPDATA%\XC\xnode\xnode.conf"
echo rpcallowip=127.0.0.1 >> "%APPDATA%\XC\xnode\xnode.conf"
echo rpcport=32347 >> "%APPDATA%\XC\xnode\xnode.conf"
echo port= >> "%APPDATA%\XC\xnode\xnode.conf"
echo gen=0 >> "%APPDATA%\XC\xnode\xnode.conf"
echo server=1 >> "%APPDATA%\XC\xnode\xnode.conf"
echo addnode=west01.xcnode.xc-official.com >> "%APPDATA%\XC\xnode\xnode.conf"
echo addnode=east01.xcnode.xc-official.com >> "%APPDATA%\XC\xnode\xnode.conf"
echo reservebalance=20 >> "%APPDATA%\XC\xnode\xnode.conf"
:STARTUP
x11coin-qt.exe -xmixer -listen -server -datadir="%APPDATA%\XC\xnode" -conf="%APPDATA%\XC\xnode\xnode.conf"