This commit is contained in:
Ben
2025-11-29 12:06:14 -05:00
parent 0c5c40c7ac
commit e1c665f017
4 changed files with 16 additions and 9 deletions

View File

@@ -33,12 +33,12 @@
<div class="info mb-2 p-4 border-dashed border-1 border-round">
<code>stratum+tcp://{{stratumURL}}</code>
<br>
<code>stratum+tls://{{secureStratumURL}}</code>
<br>
<code>username: &lt;your BTC address&gt;.&lt;worker name&gt;, password: x</code>
</div>
<span><b>NO FEES</b></span>
<br>
<span><b>PLUS AFFILIATE REWARDS</b></span>
<br>
<span>No second best.</span>
</div>
@@ -133,9 +133,7 @@
<div class="col-12">
<div class="card">
<h4 style="text-align: center;">Affiliate Program</h4>
<p>Purchase products through the affiliate links below to enjoy discounts on mining hardware. Every
month, the miner who submits the highest difficulty will be rewarded with 100% of the affiliate
earnings.</p>
<p>Purchase products through the affiliate links below to enjoy discounts on mining hardware.</p>
<div class="grid" style="padding-top: 20px;">

View File

@@ -27,10 +27,11 @@ export class SplashComponent {
public chartOptions: any;
public stratumURL = '';
public secureStratumURL = '';
private info$: Observable<any>;
private networkInfo:any;
private networkInfo: any;
constructor(private appService: AppService, private cdr: ChangeDetectorRef) {
@@ -42,6 +43,12 @@ export class SplashComponent {
this.stratumURL = window.location.hostname + ':3333';
}
if (environment.SECURE_STRATUM_URL.length > 1) {
this.secureStratumURL = environment.SECURE_STRATUM_URL;
} else {
this.secureStratumURL = window.location.hostname + ':4333';
}
this.blockData$ = this.info$.pipe(map(info => info.blockData));
this.userAgents$ = this.info$.pipe(map(info => info.userAgents));
this.highScores$ = this.info$.pipe(map(info => info.highScores));
@@ -107,7 +114,7 @@ export class SplashComponent {
ticks: {
color: textColorSecondary,
callback: (value: number) => {
return HashSuffixPipe.transform(value) + " - " + AverageTimeToBlockPipe.transform(value, this.networkInfo.difficulty);
return HashSuffixPipe.transform(value) + " - " + AverageTimeToBlockPipe.transform(value, this.networkInfo.difficulty);
}
},
grid: {

View File

@@ -1,5 +1,6 @@
export const environment = {
production: true,
API_URL: 'https://public-pool.io:40557',
STRATUM_URL: 'public-pool.io:21496'
STRATUM_URL: 'public-pool.io:3333',
SECURE_STRATUM_URL: 'public-pool.io:4333',
};

View File

@@ -1,5 +1,6 @@
export const environment = {
production: false,
API_URL: 'http://localhost:3334',
STRATUM_URL: 'public-pool.io:21496'
STRATUM_URL: 'public-pool.io:3333',
SECURE_STRATUM_URL: 'public-pool.io:4333',
};