I can't open the website link !is it a scam?
I want join the airdrop

Website has been up all the time. Maybe it was just very busy when you tried to visit it? Did you get an error message?

Picture not work haha
0.55Btc in 24 hours wow greatYes, very happy with that
Updates :Seems like the walletgenerator.net dev may no longer updating the site so we'll just be hosting our own paper wallet generator instead.
LinX has been submitted to coinmarketcap.com so it should be listed on there soon hopefully.
Added a latest price / 24h volume ticker to the website (under the stats).
Added a simple public API in case anybody wants to display any of the LinX data on their own pages or blogs :
https://mylinx.io/stats_jsonYou can display this info with PHP like this...
// Load the file and convert JSON to PHP array
$linXdata = file_get_contents('https://mylinx.io/stats_json');
$linX = json_decode($linXdata,true);
// Display the current block count
echo 'Blocks : ' . $linX['network']['blocks'];
// Display the current Coin supply
echo 'Total coins : ' . $linX['network']['supply'];
// Display the current Network hashrate
echo 'Nethash : ' .$linX['network']['nethash'];
// Display the last price
echo 'Last Price : ' .$linX['exchanges']['coinexchange']['last_price'];
etc etc...