- Coin: Zano → Lethean, ticker: ZAN/ZANO → LTHN - Ports: 11211 → 36941 (mainnet RPC), 46941 (testnet RPC) - Wallet: 11212 → 36944/46944 - Address prefix: iTHN - URLs: zano.org → lethean.io - Explorer links: explorer.lthn.io Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
102 lines
7.5 KiB
JavaScript
102 lines
7.5 KiB
JavaScript
'use strict';
|
|
|
|
app.controller('FAQCtrl', function($scope, $location, $anchorScroll, $sce, dataService) {
|
|
// BooHoo:p
|
|
$scope.goto = function(topic, index) {
|
|
var newHash = topic + '_' + index;
|
|
if ($location.hash() !== newHash) {
|
|
// set the $location.hash to `newHash` and
|
|
// $anchorScroll will automatically scroll to it
|
|
$location.hash(newHash);
|
|
} else {
|
|
// call $anchorScroll() explicitly,
|
|
// since $location.hash hasn't changed
|
|
$anchorScroll();
|
|
}
|
|
};
|
|
|
|
$scope.faq = {
|
|
"General" : [
|
|
{
|
|
title: "What is mining and why should I be interested?",
|
|
answer: $sce.trustAsHtml("Cryptocurrencies achieve decentralisation via a process called mining. When new transactions are created, they need to be validated. Miners compete with each other to validate a group of transactions(a.k.a. block). The winning miner is paid a block reward and collects transaction fees for the work carried out. Block rewards are also how new coins are generated and help regulate the economy of the currency.")
|
|
},
|
|
{
|
|
title: "How do I start mining?",
|
|
answer: $sce.trustAsHtml("You can start mining today if you have a computer that sits idle. Lethean can be mined on CPUs, GPU's or even a raspberry PI. To start mining you need to find the right mining software for your hardware and get going.<br/><br/>Read <a hred='#/help/getting_started'>Getting Started</a> for more details.")
|
|
},
|
|
{
|
|
title: "What is pool mining?",
|
|
answer: $sce.trustAsHtml("If you are mining on a small scale, it becomes extremely hard and unpredictable to earn a stable profit on your mining income. Pool mining gives you the opportunity to join a group of miners and share earnings for a consistent payout.")
|
|
},
|
|
{
|
|
title: "What is PPLNS?",
|
|
answer: $sce.trustAsHtml("PPLNS is short for pay per last N shares. It is a method to split miner earnings fairly based on rounds. PPLNS hence favours loyal pool memebers over pool hoppers.")
|
|
},
|
|
{
|
|
title: "What does SOLO mining mean?",
|
|
answer: $sce.trustAsHtml("Solo mining is the opposite of pool mining. You essentially submit your shares directly to the blockchain, which is the most profitable method if you run your own farm.")
|
|
},
|
|
{
|
|
title: "Is mining profitable?",
|
|
answer: $sce.trustAsHtml("Mining can be profitable depending on the conditions involved. Your primary cost is your electricity and the cost of your hardware.<br/>It is not practical to calculate the exact amount you would earn as it depends on the total hash rate of the network, difficulty and your luck.<br/><br/>An accurate estimate of earnings of the pool can be calculated by observing average daily number of blocks found ... followed by some mathematics?<br/><br/>* An earnings estimator may be implemented in the future.")
|
|
},
|
|
],
|
|
"Pool Help": [
|
|
{
|
|
title: "How payouts work?",
|
|
answer: $sce.trustAsHtml("You might often wonder why you haven't been paid yet. This is normal and is how the payment cycle is designed to work.<br/><br/>Every 2 hours a master payment check is executed which pays out all dues. If everything goes as planned all dues that exceed the set payment thresholds are paid out. <br/><br/>In case of a wallet lock up or failure, the pool automatically requeues futher checks at 15 minute intervals until all payments are successfully completed. Once everything is paid out the system returns to the 2 hourly master cycle.<br/><br/> If you have any questions please dont hesitate to contact your pool admin.")
|
|
},
|
|
{
|
|
title: "Payout thresholds?",
|
|
answer: $sce.trustAsHtml("Payout threshold is the minimum amount that needs to be earned before the pool pays out to your wallet. Since transactions in Lethean have a significant miner fees, it's cost effective to set a higher payout threshold for your pool. The minimum value for this is usually 0.3 LTHN.<br/><br/>To change your payment threshold, click the wrench after you login via \"Login\" button on the top right.<br/><br/>You could also adjust your payout threshold to regulate your payout schedule etc daily/weekly etc depending on your hash rate.")
|
|
},
|
|
{
|
|
title: "Why hasn't my \"Total Due\" amount increased?",
|
|
answer: $sce.trustAsHtml("Sometimes, the Lethean blockchain will take a couple days for a new block to be found. Although you are contributing shares, the pool cannot guarantee your earnings until they are static.")
|
|
},
|
|
{
|
|
title: "Getting paid in BTC",
|
|
answer: $sce.trustAsHtml("nodejs-pool supports direct payments to btc. This is done by using the shapeshift API to convert your LTHN and send them to a BTC wallet.<br/><br/>To configure BTC payments please have a look at <a href='#/help/getting_started'>Getting Started</a> command line samples.")
|
|
},
|
|
{
|
|
title: "Payments to exchanges/markets?",
|
|
answer: $sce.trustAsHtml("Direct payment to exchange / pool wallets are supported. The only primary difference when using this method is that the minimum payout threshold is higher and usually defaults to 3 LTHN.")
|
|
},
|
|
{
|
|
title: "IP Banning?",
|
|
answer: $sce.trustAsHtml("Your IP gets banned if you submit invalid shares to the pool server. This usually happens if your card is overclocked or unstable.<br/><br/> The ban is temporary and usually cleared in xx mins. You could also contact your pool admin and request an unban.")
|
|
},
|
|
{
|
|
title: "How Fixed / Variable Difficulty works",
|
|
answer: $sce.trustAsHtml("When you select a pool port, the starting difficulty only represents your initial setting. As soon as your miner starts submitting shares the server will try to adjust your difficulty to reflect your hash rate.<br/><br/>This assures you not creating too many or too few requests to your server optimizing bandwidth consumption and server loads.<br/><br/>Optionally you could set a fixed difficulty via your miner command line options, though if you set a difficulty too high, you could exceed the 60 seconds job limit and loose earnings.")
|
|
},
|
|
{
|
|
title: "Can i mine other coins?",
|
|
answer: $sce.trustAsHtml("Not yet, but we may add more soon. Follow <a href='https://github.com/Snipa22/nodejs-pool/issues/27' target='_new'>https://github.com/Snipa22/nodejs-pool/issues/27</a>.")
|
|
}
|
|
],
|
|
"Mining":[
|
|
{
|
|
title: "Hardware?",
|
|
answer: $sce.trustAsHtml("Lethean uses the ProgPoWZ mining algorithm, which is designed to be ASIC resistant and optimised for GPU mining. Desktop-grade hardware can earn a fair share of the network hashrate and earnings.")
|
|
},
|
|
{
|
|
title: "Software?",
|
|
answer: $sce.trustAsHtml("Read -- <a href='#/help/getting_started'>Getting Started</a>.")
|
|
}
|
|
],
|
|
"Support":[
|
|
{
|
|
title: "Chat Support",
|
|
answer: $sce.trustAsHtml("For support, visit the Lethean community channels at <a href='https://lethean.io' target='_new'>lethean.io</a>.")
|
|
},
|
|
{
|
|
title: "Interesting links.",
|
|
answer: $sce.trustAsHtml("<a href='https://lethean.io' target='_new'>https://lethean.io</a><br/><a href='https://github.com/letheanVPN' target='_new'>https://github.com/letheanVPN</a>")
|
|
}
|
|
]
|
|
}
|
|
|
|
// end
|
|
});
|