Frequently Asked Questions (FAQ)

What is Widecoin (WCN)?

WCN is a digital currency that enables instant payments to anyone, anywhere in the world. WCN uses peer-to-peer technology to operate with no central authority: managing transactions and issuing money are carried out collectively by the network. WCN Core is the name of open source software which enables the use of this currency.

Where is my blockchain data directory?

Windows 7, 8.1, 10
Default Directory: %APPDATA%\widecoin\
Full Configuration File Path: C:\Users\username\AppData\Roaming\widecoin\widecoin.conf

Linux
Default Directory: $HOME/.widecash/
Full Configuration File Path: /home/username/.widecoin/widecoin.conf

Mac OS
Default Directory: $HOME/Library/Application Support/Widecoin/
Full Configuration File Path: /Users/username/Library/Application Support/Widecoin/Widecoin.conf

How do I backup my wallet?
– Close your wallet.
– Open the folder “%APPDATA%\widecoin”.
– Copy the file wallet.dat to a safe location.
or
– Open wallet.
– Click File -> Click Bakup Wallet -> Chose location to save wallet file.

How can I restore my wallet?
– Close your wallet.
– Make a backup of the folder “%APPDATA%\widecoin”.
– Copy the file wallet.dat from your backup to the folder “%APPDATA%\widecoin”.

How do you mine a block? (SHA256 PoW)

Open your wallet, and make sure you are connected to another wallet.
Close your wallet and create the file widecoin.conf in the folder “%APPDATA%\widecoin\”.
Paste the following text into widecoin.conf and save the file.

rpcuser=xxxxxxx
rpcpassword=xxxxxxx
rpcallowip=127.0.0.1
rpcport=xxxxxxx
listen=1
server=1
addnode=xxxxxxx

Download the latest version of cpuminer from here and extract the zip file.
Create a .bat file named mine.bat and paste the following text into mine.bat.


Mining software :

https://github.com/ckolivas/cgminer.git
https://github.com/pooler/cpuminer.git

or other mining softwares that support SHA256 algorithm.

Example of running cpuminer (compilation instruction is based on those github repositories)

Linux

1- Solo Minining:
minerd –algo=sha256d –url=127.0.0.1:8552 –user=rpcuser –pass=rpcpassword –coinbase-addr=walletaddress

2- Mining Pool:

http://miningp01.widecoin.org:8181
minerd –algo=sha256d –url=stratum+tcp://miningp01.widecoin.org:3331 –user=walletaddress

  Windows

  1- Solo Minining:
   minerd.exe –algo=sha256d –url=127.0.0.1:8552 –user=rpcuser –pass=rpcpassword –coinbase-addr=walletaddress

  2- Mining Pool:
  http://miningp01.widecoin.org:8181
  minerd.exe –algo=sha256d –url=stratum+tcp://miningp01.widecoin.org:3331 –user=walletaddress

  Save the file inside the extracted cpuminer folder. Open your wallet and execute mine.bat to start mining your first coins.