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
Binary file added frontend/src/assets/suggested-apps/blitzpool.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
46 changes: 46 additions & 0 deletions frontend/src/components/connections/SuggestedAppData.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import amethyst from "src/assets/suggested-apps/amethyst.png";
import bitcoinCardTopup from "src/assets/suggested-apps/bitcoin-card-topup.png";
import bitrefill from "src/assets/suggested-apps/bitrefill.png";
import bitrequest from "src/assets/suggested-apps/bitrequest.png";
import blitzpool from "src/assets/suggested-apps/blitzpool.png";
import bringin from "src/assets/suggested-apps/bringin.png";
import btcpay from "src/assets/suggested-apps/btcpay.png";
import buzzpay from "src/assets/suggested-apps/buzzpay.png";
Expand Down Expand Up @@ -131,6 +132,10 @@ export const appStoreCategories = {
title: "Games",
priority: 50,
},
mining: {
title: "Mining",
priority: 20,
},
misc: {
title: "Misc",
priority: 100,
Expand Down Expand Up @@ -2499,6 +2504,47 @@ export const appStoreApps: AppStoreApp[] = (
categories: ["payment-tools"],
addedDate: "2026-04-10",
},
{
id: "blitzpool",
title: "Blitzpool",
description: "Rent and sell Bitcoin hashrate",
webLink: "https://blitzpool.yourdevice.ch",
logo: blitzpool,
categories: ["mining"],
extendedDescription:
"A peer-to-peer hashrate marketplace: anyone running a miner can put " +
"it up for rent and earn from it, not just buy. Rent hashrate from " +
"other miners and pay only for work actually delivered, or list your " +
"own rigs and get paid straight to your Hub. Settlement runs " +
"continuously against delivered hashrate, so a rig that " +
"under-delivers simply costs less.",
installGuide: (
<>
<p className="text-muted-foreground">
Open{" "}
<ExternalLink
to="https://blitzpool.yourdevice.ch"
className="font-medium text-foreground underline"
>
blitzpool.yourdevice.ch
</ExternalLink>{" "}
and sign in with your Bitcoin address.
</p>
<p className="text-muted-foreground">
Go to{" "}
<span className="font-medium text-foreground">
Hashrate Market &rarr; Wallet &amp; Payouts
</span>{" "}
and choose{" "}
<span className="font-medium text-foreground">
Connect with Alby Hub
</span>
, then scan the code shown here.
</p>
</>
),
addedDate: "2026-07-25",
},
] satisfies AppStoreApp[]
).sort((a, b) => (a.title.toUpperCase() > b.title.toUpperCase() ? 1 : -1));

Expand Down