Facebook
Twitter
LinkedIn
Telegram
WhatsApp
Pinterest
Reddit
  • Algorithm : Scrypt Proof of Work and Proof of Stake
  • Coin name : ILSCoin
  • Coin abbreviation : ILS
  • Public address letter :1
  • Public address letter testnet :9
  • RPC port : 17281
  • P2P port : 17282
  • Block reward : 50 coins
  • Block reward (PoS) : 5 coins
  • Website URL : https://ilscoin.net , https://ils-coin.com
  • Github URL : https://github.com/watsoncoders/ILSCoin
  • Donation percentage : 20% of stake rewards
  • Last PoW block : block 21000000
  • Min. stake age : 8 hours
  • Max. stake age : Unlimited
  • Coinbase maturity : 20 ( + 1 default confirmation) blocks
  • Target spacing : 5 minutes
  • Target timespan : 10 minutes
  • Transaction confirmations : 6 blocks
  • Timestamp : 07 OCT 2024 Hamas launched an unprecedented assault on Israel

Node Lists

  • Node 1 : node1.ils-coin.com
  • Node 2 : 37.60.246.39
  • Node 3 : 84.247.136.131
  • Node 4 : 37.60.228.103
  • node 5 : 167.86.85.8

Block Explorer : https://ilscoin.net/

no premine !!!

BitcoinTalk : https://bitcointalk.org/index.php?topic=5493728.0


https://discord.gg/fHw3zfQT
https://www.facebook.com/ILSCoind
https://www.reddit.com/r/ILScoin/
https://twitter.com/ILScoind

Tutorial – How Mine for ILS blocks with Microsoft Windows

Mine for blocks with your Windows wallet and the following instructions.

Click here to download the file ilscoin-qt-windows.zip.

Open File Explorer and go to your downloads directory.

Extract the zip file ilscoin-qt-windows.zip

Open “Run” with the keyboard shortcut winkey + r.

Enter the following text behind “Open”: notepad

Press on the button “OK”.

Paste the following into notepad.

rpcuser=rpc_ilscoin
rpcpassword=dR2oBQ3K1zYMZQtJFZeAerhWxaJ5Lqeq9J2 (you can put what ever password you want obviously)
rpcbind=127.0.0.1
rpcallowip=127.0.0.1
listen=1
server=1
addnode=ilscoin.net
addnode=37.60.246.39

addnode=84.247.136.131

addnode=167.86.85.8

addnode=37.60.228.103

Click on the menu item “File” -> “Save As…”.

The open dialog box will appear, click on “Save as type” and select the option “All Files (*.*)”.

Enter the following text behind “File name”: ilscoin.conf

Click on the menu bar, type the following text %appdata% and press on the enter key. enter

Create the folder ILSCoin and open the folder.

Press on the button “Save”.

Create a new file with the keyboard shortcut ctrl + n.

Paste the following into notepad.

@echo off
set SCRIPT_PATH=%cd%
cd %SCRIPT_PATH%
echo Press [CTRL+C] to stop mining.
:begin
 for /f %%i in ('ilscoin-cli.exe getnewaddress') do set WALLET_ADDRESS=%%i
 ilscoin-cli.exe generatetoaddress 1 %WALLET_ADDRESS%
goto begin

Click on the menu item “File” -> “Save As…”.

The open dialog box will appear, click on “Save as type” and select the option “All Files (*.*)”.

Enter the following text behind “File name”: mine.bat

Click on the menu bar, open the location where you extracted the zip file ilscoin-qt-windows.zip.

Press on the button “Save”.

Open your wallet and execute mine.bat to mine your ILS blocks.

Tutorial – Stake for coins with Microsoft Windows

Stake for coins with your Windows wallet with the following instructions.

Click here to download the file ilscoin-qt-windows.zip.

Open File Explorer and go to your Downloads directory.

Extract the zip file ilscoin-qt-windows.zip

Open your wallet.

Optional: Unlock your wallet for staking.

Go to Settings -> Unlock Wallet.

 

Tick the option named “*Tick for staking only”.

 

Enter the your passphrase behind the text “Enter passphrase”.

 

Click on the button “OK”.

 

Stake can only be generated when you have coins in your wallet.

Tutorial – Install ILS node on Ubuntu Server 22.04

Install a node for your coin on Ubuntu Server 22.04 with the following tutorial.

Update your Ubuntu server with the following command:

sudo apt-get update && sudo apt-get upgrade -y

Download the Linux daemon for your wallet with the following command:

wget "https://ils-coin.com//downloads/ilscoin-daemon-linux.tar.gz" -O ilscoin-daemon-linux.tar.gz

Extract the tar file with the following command:

tar -xzvf ilscoin-daemon-linux.tar.gz

Download the Linux tools for your wallet with the following command:

wget "https://ils-coin.com/downloads/ilscoin-qt-linux.tar.gz" -O ilscoin-qt-linux.tar.gz

Extract the tar file with the following command:

tar -xzvf ilscoin-qt-linux.tar.gz

Type the following command to install the daemon and tools for your wallet:

sudo mv ilscoind ilscoin-cli ilscoin-tx /usr/bin/

Create the data directory for your coin with the following command:

mkdir $HOME/.ilscoin

Open nano.

nano $HOME/.ilscoin/ilscoin.conf -t

Paste the following into nano.

rpcuser=rpc_ilscoin
rpcpassword=dR2oBQ3K1zYMZQ6766tJFZjkjjWxaJ5Lqeq9J2
rpcbind=127.0.0.1
rpcallowip=127.0.0.1
listen=1
server=1
txindex=1
daemon=1


Save the file with the keyboard shortcut ctrl + x.

Type the following command to start your node:

ilscoind

Tutorial – Compile Linux wallet on Ubuntu Server 22.04

Compile a wallet for Ubuntu Linux on Ubuntu Server 22.04 with the following tutorial.

Update your Ubuntu server with the following command:

sudo apt-get update && sudo apt-get upgrade -y

Install the required dependencies with the following command:

sudo apt-get install make automake cmake curl g++-multilib libtool binutils-gold bsdmainutils pkg-config python3 patch bison -y

Create your source code directory with the following commands:

cd ~/
mkdir source_code
cd source_code


Download the source code of your coin with the following command:

wget "https://ils-coin.com/downloads/ilscoin-source.tar.gz" -O ilscoin-source.tar.gz

Type the following command to extract the tar file:

tar -xzvf ilscoin-source.tar.gz

64-bit

Build x86_64-pc-linux-gnu with the following commands:

PATH=$(echo "$PATH" | sed -e 's/:\/mnt.*//g')
cd depends
make HOST=x86_64-pc-linux-gnu
cd ..


Type the following commands to compile your wallet for Ubuntu Linux.

./autogen.sh
CONFIG_SITE=$PWD/depends/x86_64-pc-linux-gnu/share/config.site ./configure --prefix=/
make


Type the following command to clean your source code:

make clean

32-bit

Build i686-pc-linux-gnu with the following commands:

PATH=$(echo "$PATH" | sed -e 's/:\/mnt.*//g')
cd depends
make HOST=i686-pc-linux-gnu
cd ..


Type the following commands to compile your wallet for Ubuntu Linux.

./autogen.sh
CONFIG_SITE=$PWD/depends/i686-pc-linux-gnu/share/config.site ./configure --prefix=/
make


The compiled wallet for Ubuntu Linux is located in the directory src/qt, the tools are located in the directory src.

Tutorial – Compile Windows wallet on Ubuntu Server 22.04

Compile a wallet for Microsoft Windows on Ubuntu Server 22.04 with the following tutorial.

Update your Ubuntu server with the following command:

sudo apt-get update && sudo apt-get upgrade -y

Install the required dependencies with the following command:

sudo apt-get install make automake cmake curl g++-multilib libtool binutils-gold bsdmainutils pkg-config python3 patch bison -y

Create your source code directory with the following commands:

cd ~/
mkdir source_code
cd source_code


Download the source code of your coin with the following command:

wget "https://ils-coin.com/downloads/ilscoin-source.tar.gz" -O ilscoin-source.tar.gz

Type the following command to extract the tar file:

tar -xzvf ilscoin-source.tar.gz

64-bit

Install the required dependencies with the following command:

sudo apt-get install g++-mingw-w64-x86-64 -y

Set the default x86_64-w64-mingw32-g++ compiler option to posix with the following command:

sudo update-alternatives --set x86_64-w64-mingw32-g++ /usr/bin/x86_64-w64-mingw32-g++-posix

Build x86_64-w64-mingw32 with the following commands:

PATH=$(echo "$PATH" | sed -e 's/:\/mnt.*//g')
cd depends
make HOST=x86_64-w64-mingw32
cd ..


Type the following commands to compile your 64 bit wallet for Microsoft Windows.

./autogen.sh
CONFIG_SITE=$PWD/depends/x86_64-w64-mingw32/share/config.site ./configure --prefix=/
make


The compiled wallet for Microsoft Windows is located in the directory src/qt, the tools are located in the directory src.