Author

Topic: [XC][XCurrency] Decentralised Trustless Privacy Platform / Encrypted XChat / Pos - page 1327. (Read 1484248 times)

sr. member
Activity: 602
Merit: 252
I am running my client as a xnode, anybody want to try the anonymous transaction?



yes me!

So try to use sendfrommixer command.
sr. member
Activity: 602
Merit: 255
I am running my client as a xnode, anybody want to try the anonymous transaction?



yes me!
sr. member
Activity: 602
Merit: 255
So, now that we r talking about the xnode, any1 got an answer? ty!

http://forum.xctalk.com/index.php?/topic/40-running-an-xnode-why-should-you/


I am still confused by this as well.  Why would someone want to run an Xnode and what are the pros and cons of doing so?

when u are a xnode u get fees for being pat of the mixing system : )
legendary
Activity: 1918
Merit: 1001
Where can i find the information on creating an Xnode?
Do i need a linux box, or will the windows qt wallet do the trick?

Here you go, the user guide on how to be a xnode.

http://xc-official.com/XCPlatform/user_guides/Running-an_XNode.pdf

thanks, it looks so easy!
sr. member
Activity: 602
Merit: 252
I am running my client as a xnode, anybody want to try the anonymous transaction?

hero member
Activity: 756
Merit: 500
With this update, you need to create a wallet called MIXER and put the coins in that wallet
sr. member
Activity: 420
Merit: 250
So i downloaded the new wallet & this is the message i receive?HuhHuh are you joking?

https://i.imgur.com/tThONvq.png



Anyone know how to fix? all the other wallets ran perfectly fine w/ the xnode & staking...downloaded the new wallet and this is what i get.
sr. member
Activity: 602
Merit: 252
So, now that we r talking about the xnode, any1 got an answer? ty!

http://forum.xctalk.com/index.php?/topic/40-running-an-xnode-why-should-you/


I am still confused by this as well.  Why would someone want to run an Xnode and what are the pros and cons of doing so?

You will get some tips to be a xnode.  Wink
legendary
Activity: 1260
Merit: 1000
So, now that we r talking about the xnode, any1 got an answer? ty!

http://forum.xctalk.com/index.php?/topic/40-running-an-xnode-why-should-you/


I am still confused by this as well.  Why would someone want to run an Xnode and what are the pros and cons of doing so?
sr. member
Activity: 602
Merit: 252

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"

ATCSECURE is always working hard, let him have some sleep, OK?
member
Activity: 63
Merit: 10
x11 coin is a sort of Chinese coin?
sr. member
Activity: 476
Merit: 250
Gone......
hero member
Activity: 616
Merit: 500

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

What is the significant change/s of this updated wallet?  Why release a new wallet and not tell why it was updated?
newbie
Activity: 10
Merit: 0

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"
sr. member
Activity: 476
Merit: 250
Gone......

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
full member
Activity: 122
Merit: 100
☆☆☆☆☆☆☆

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

Thanks for your commitment to advancing XC. You've been rock solid. Much respect.
hero member
Activity: 672
Merit: 501
Alright lets push this bit$h up!
sr. member
Activity: 476
Merit: 250
Gone......

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
hero member
Activity: 756
Merit: 500

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
sr. member
Activity: 602
Merit: 252

v1.37 will be uploaded shortly, the required XC's [to run as xnode] for this release is 550XC's

ATCSECURE



Great, thanks!  But what is the significance / changes of this wallet update?

I suppose it will not for test only.
Jump to: