Add Alby Go to mobile wallets selection

Changelog-Added: Added Alby Go to mobile wallets selection menu
Signed-off-by: Tomek K <itstomekk@getalby.com>
This commit is contained in:
Tomek ⚡ K
2024-11-08 09:02:24 +01:00
committed by Daniel D’Aquino
parent 282bf80daa
commit e106be1412
5 changed files with 21 additions and 0 deletions

View File

@@ -46,6 +46,7 @@ enum Wallet: String, CaseIterable, Identifiable, StringCodable {
case bitcoinbeach
case blixtwallet
case river
case albygo
var model: Model {
switch self {
@@ -90,6 +91,9 @@ enum Wallet: String, CaseIterable, Identifiable, StringCodable {
case .river:
return .init(index: 12, tag: "river", displayName: "River", link: "river://",
appStoreLink: "https://apps.apple.com/us/app/river-buy-mine-bitcoin/id1536176542", image: "river")
case .albygo:
return .init(index: 13, tag: "albygo", displayName: "Alby Go", link: "alby:",
appStoreLink: "https://apps.apple.com/us/app/alby-go/id6471335774", image: "alby-go")
}
}