-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add brink as zapplanner recipient, fix opensats lightning addr…
…ess (#970)
- Loading branch information
Showing
2 changed files
with
10 additions
and
2 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,7 @@ import { handleRequestError } from "src/utils/handleRequestError"; | |
import { LightningAddress } from "@getalby/lightning-tools"; | ||
import { ExternalLinkIcon, PlusCircle } from "lucide-react"; | ||
import alby from "src/assets/suggested-apps/alby.png"; | ||
import bitcoinbrink from "src/assets/zapplanner/bitcoinbrink.png"; | ||
import hrf from "src/assets/zapplanner/hrf.png"; | ||
import opensats from "src/assets/zapplanner/opensats.png"; | ||
import ExternalLink from "src/components/ExternalLink"; | ||
|
@@ -47,7 +48,7 @@ const recipients: Recipient[] = [ | |
name: "Alby", | ||
logo: alby, | ||
description: | ||
"Support the open-source development of Hub, Go, Lightning Browser Extension, developer tools, NWC, WebLN, Podcasting 2.0 & more.", | ||
"Support the open-source development of Hub, Go, Lightning Browser Extension, developer tools and open protocols.", | ||
lightningAddress: "[email protected]", | ||
}, | ||
{ | ||
|
@@ -61,9 +62,16 @@ const recipients: Recipient[] = [ | |
name: "OpenSats", | ||
description: | ||
"Help us to provide sustainable funding for free and open-source contributors working on freedom tech and projects that help bitcoin flourish.", | ||
lightningAddress: "opensats@btcpay0.voltageapp.io", | ||
lightningAddress: "opensats@vlt.ge", | ||
logo: opensats, | ||
}, | ||
{ | ||
name: "Brink", | ||
description: | ||
"Brink exists to strengthen the Bitcoin protocol and network through fundamental research, development, funding, mentoring.", | ||
lightningAddress: "[email protected]", | ||
logo: bitcoinbrink, | ||
}, | ||
]; | ||
|
||
export function ZapPlanner() { | ||
|