diff --git a/src/app/info/info.component.html b/src/app/info/info.component.html
index cddf8df..1bf65be 100644
--- a/src/app/info/info.component.html
+++ b/src/app/info/info.component.html
@@ -5,7 +5,10 @@
-
+ -
+ Please follow this guide to get started
+ and this guide if you are switching from FlexFarmer
+
@@ -13,8 +16,12 @@
- -
- Compressed plots are supported
+
-
+ Compressed Bladebit and Gigahorse plots are supported
+
+ -
+ Light farmers available:
+
-
{{snippetService.getSnippet('info-component.pool-info.block-split-info')}}
diff --git a/src/app/info/info.component.ts b/src/app/info/info.component.ts
index bfa6400..7ea941a 100644
--- a/src/app/info/info.component.ts
+++ b/src/app/info/info.component.ts
@@ -29,6 +29,27 @@ export class InfoComponent implements OnInit, OnDestroy {
return this.poolsProvider.pool.type === PoolType.nft
}
+ public get availableLightFarmersHtml(): string {
+ const lightFarmers = [{
+ name: 'Foxy-Farmer',
+ supports: 'OG & NFT uncompressed and Bladebit compressed plots',
+ link: 'https://docs.foxypool.io/proof-of-spacetime/foxy-farmer/',
+ }]
+ if (this.poolsProvider.pool.type === PoolType.nft) {
+ lightFarmers.push({
+ name: 'Foxy-GH-Farmer',
+ supports: 'NFT uncompressed, Bladebit compressed and Gigahorse compressed plots',
+ link: 'https://docs.foxypool.io/proof-of-spacetime/foxy-gh-farmer/',
+ }, {
+ name: 'Fast Farmer',
+ supports: 'NFT uncompressed and Bladebit compressed plots',
+ link: 'https://docs.foxypool.io/proof-of-spacetime/fast-farmer/',
+ })
+ }
+
+ return lightFarmers.map(lightFarmer => `
- ${lightFarmer.name}: ${lightFarmer.supports}
`).join('')
+ }
+
public get chartTheme(): string {
return this.themeProvider.isDarkTheme ? 'dark' : 'default'
}
diff --git a/src/snippets/en.js b/src/snippets/en.js
index 69bacd7..281c15c 100644
--- a/src/snippets/en.js
+++ b/src/snippets/en.js
@@ -90,10 +90,9 @@ export default {
'info-component.pool-info.dr-info': 'Pool with support for any DR, default DR: {1}',
'info-component.pool-info.payout.fee-info': '{1}% fee, free automatic payouts',
'info-component.pool-info.payout.interval-info': 'Payouts happen once per day at 12:00 UTC',
- 'info-component.pool-info.payout.minimum-info': 'Minimum amount for payouts is {1} {2}, every Sunday the minimum amount is ignored',
+ 'info-component.pool-info.payout.minimum-info': 'Minimum amount for payouts is {1} {2}, every Sunday the minimum amount is ignored unless a custom minimum payout is set',
'info-component.pool-info.pplns-info': 'PPLNS over the last {1} hours',
'info-component.pool-info.title': 'Pool info',
- 'info-component.using-this-pool.docs': 'Please follow this guide to get started',
'info-component.using-this-pool.title': 'Using this pool',
'leave-pool-modal.collateral-warning': 'Warning! This can not be reverted, rejoining the pool is not possible after paying out the collateral balance!',
'leave-pool-modal.leave': 'Leave',