Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Open Source Webchain Mining Pool
## Open Source MintMe.com Coin Mining Pool

What follows next is the basic short guide. Main page of the project is located at https://webchain.network. If you have a need to learn how to install in a more detailed way, we invite you to read our <b>[Guide on Wiki](https://github.com/webchain-network/webchain-pool/wiki/Detailed-guide-about-Webchain-pool-installation)</b>
What follows next is the basic short guide. Main page of the project is located at https://webchain.network. If you have a need to learn how to install in a more detailed way, we invite you to read our <b>[Guide on Wiki](https://github.com/webchain-network/webchain-pool/wiki/Detailed-guide-about-MintMe.com Coin-pool-installation)</b>

### Features

Expand Down Expand Up @@ -304,7 +304,7 @@ I recommend this deployment strategy:
* If `poolFeeAddress` is not specified all pool profit will remain on coinbase address. If it specified, make sure to periodically send some dust back required for payments.

### Credits
Ported to Webchain by Webchain project. Licensed under GPLv3.
Ported to MintMe.com Coin by MintMe.com Coin project. Licensed under GPLv3.
Ported to Ethereum Classic by LeChuckDE, Licensed under GPLv3.
Made by sammy007. Licensed under GPLv3.

Expand Down
4 changes: 2 additions & 2 deletions payouts/unlocker.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,8 @@ func getEraUncleBlockReward(era *big.Int) *big.Int {
// GetRewardByEra gets a block reward at disinflation rate.
// Constants MaxBlockReward, DisinflationRateQuotient, and DisinflationRateDivisor assumed.
func GetBlockWinnerRewardByEra(eraOrig *big.Int) *big.Int {
MaximumBlockReward := big.NewInt(5e+18) // 5 WEB
MaximumBlockReward.Mul(MaximumBlockReward, big.NewInt(10)) // 50 WEB
MaximumBlockReward := big.NewInt(5e+18) // 5 MINTME
MaximumBlockReward.Mul(MaximumBlockReward, big.NewInt(10)) // 50 MINTME

era := new(big.Int).Set(eraOrig)

Expand Down
6 changes: 3 additions & 3 deletions www/app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel='shortcut icon' type='image/x-icon' href='favicon.ico'/>
<title>Webchain Mining Pool</title>
<meta name="description" content="High profitability Webchain mining pool with a minimum payout threshold of 10 WEB. Users can check their miner and workers statistics and payment history by searching their webchain wallet address"/>
<title>MintMe.com Coin Mining Pool</title>
<meta name="description" content="High profitability MintMe.com Coin mining pool with a minimum payout threshold of 10 MINTME. Users can check their miner and workers statistics and payment history by searching their webchain wallet address"/>
<meta name="keywords" content="Pool, Miners, Hashrate, pool Fee, pool hashrate, Blockchain, Network Difficulty, Network Hashrate, Minimum Payout."/>
<script src="https://cdn.polyfill.io/v1/polyfill.min.js?features=Intl.~locale.en"></script>
{{content-for "head"}}
Expand All @@ -25,7 +25,7 @@
<footer class="footer">
<div class="container">
<p class="text-muted">&copy; LeChuckDE & M.E.O.W. Software, 2018<br/>
&copy; Webchain project, 2018<br/>
&copy; MintMe.com Coin project, 2018<br/>
<a href="https://www.mintme.com/">mintMe - monetize traffic</a><br>
Powered by <a href="https://github.com/webchain-network/webchain-pool" target="_blank">webchain-pool</a>
</p>
Expand Down
2 changes: 1 addition & 1 deletion www/app/templates/application.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand"><span class="logo-1">Webchain</span><span class="logo-2">Pool</span></a>
<a class="navbar-brand"><span class="logo-1">MintMe.com Coin</span><span class="logo-2">Pool</span></a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
Expand Down
4 changes: 2 additions & 2 deletions www/app/templates/index.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="row">
<div class="col-md-5">
<h1 style="font-size: 24px">
<strong>Webchain Pool</strong>
<strong>MintMe.com Coin Pool</strong>
</h1>
<strong>Min. payout threshold: {{config.PayoutThreshold}}</strong>, Payouts run every 10 minutes.<br/>
<span class="label label-success">PROP</span> Stable and profitable pool with regular payouts.
Expand All @@ -30,7 +30,7 @@
<div class="stats">
<h4>Your Stats &amp; Payment History</h4>
<div class="input-group">
{{input value=cachedLogin class="form-control" placeholder="Enter Your Webchain Address"}}
{{input value=cachedLogin class="form-control" placeholder="Enter Your MintMe.com Coin Address"}}
<span class="input-group-btn">
<button class="btn btn-primary" type="button" {{action 'lookup' cachedLogin}}>
<span style="display: inline;"><i class="fa fa-search"></i> Lookup</span>
Expand Down
2 changes: 1 addition & 1 deletion www/config/environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module.exports = function(environment) {

// Fee and payout details
PoolFee: '1%',
PayoutThreshold: '5 WEB',
PayoutThreshold: '5 MINTME',

// For network hashrate (change for your favourite fork)
BlockTime: 12.0
Expand Down