Add Breez & Bitcoin Beach wallets
Closes: #187 Changelog-Added: Added Breez wallet to wallet selector Changelog-Added: Added Bitcoin Beach wallet to wallet selector
This commit is contained in:
committed by
William Casarin
parent
2c15d22d86
commit
4781795187
21
damus/Assets.xcassets/bbw.imageset/Contents.json
vendored
Normal file
21
damus/Assets.xcassets/bbw.imageset/Contents.json
vendored
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
{
|
||||||
|
"images" : [
|
||||||
|
{
|
||||||
|
"filename" : "bbw.jpg",
|
||||||
|
"idiom" : "universal",
|
||||||
|
"scale" : "1x"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom" : "universal",
|
||||||
|
"scale" : "2x"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom" : "universal",
|
||||||
|
"scale" : "3x"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"info" : {
|
||||||
|
"author" : "xcode",
|
||||||
|
"version" : 1
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
damus/Assets.xcassets/bbw.imageset/bbw.jpg
vendored
Normal file
BIN
damus/Assets.xcassets/bbw.imageset/bbw.jpg
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
21
damus/Assets.xcassets/breez.imageset/Contents.json
vendored
Normal file
21
damus/Assets.xcassets/breez.imageset/Contents.json
vendored
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
{
|
||||||
|
"images" : [
|
||||||
|
{
|
||||||
|
"filename" : "breez.jpg",
|
||||||
|
"idiom" : "universal",
|
||||||
|
"scale" : "1x"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom" : "universal",
|
||||||
|
"scale" : "2x"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom" : "universal",
|
||||||
|
"scale" : "3x"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"info" : {
|
||||||
|
"author" : "xcode",
|
||||||
|
"version" : 1
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
damus/Assets.xcassets/breez.imageset/breez.jpg
vendored
Normal file
BIN
damus/Assets.xcassets/breez.imageset/breez.jpg
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 21 KiB |
@@ -17,6 +17,8 @@
|
|||||||
</array>
|
</array>
|
||||||
<key>LSApplicationQueriesSchemes</key>
|
<key>LSApplicationQueriesSchemes</key>
|
||||||
<array>
|
<array>
|
||||||
|
<string>bitcoinbeach</string>
|
||||||
|
<string>breez</string>
|
||||||
<string>muun</string>
|
<string>muun</string>
|
||||||
<string>zeusln</string>
|
<string>zeusln</string>
|
||||||
<string>zebedee</string>
|
<string>zebedee</string>
|
||||||
|
|||||||
@@ -31,6 +31,8 @@ enum Wallet: String, CaseIterable, Identifiable {
|
|||||||
case zeusln
|
case zeusln
|
||||||
case lnlink
|
case lnlink
|
||||||
case phoenix
|
case phoenix
|
||||||
|
case breez
|
||||||
|
case bitcoinbeach
|
||||||
|
|
||||||
var model: Model {
|
var model: Model {
|
||||||
switch self {
|
switch self {
|
||||||
@@ -63,6 +65,12 @@ enum Wallet: String, CaseIterable, Identifiable {
|
|||||||
case .phoenix:
|
case .phoenix:
|
||||||
return .init(index: 8, tag: "phoenix", displayName: "Phoenix", link: "phoenix://",
|
return .init(index: 8, tag: "phoenix", displayName: "Phoenix", link: "phoenix://",
|
||||||
appStoreLink: "https://apps.apple.com/us/app/phoenix-wallet/id1544097028", image: "phoenix")
|
appStoreLink: "https://apps.apple.com/us/app/phoenix-wallet/id1544097028", image: "phoenix")
|
||||||
|
case .breez:
|
||||||
|
return .init(index: 9, tag: "breez", displayName: "Breez", link: "breez:",
|
||||||
|
appStoreLink: "https://apps.apple.com/us/app/breez-lightning-client-pos/id1463604142", image: "breez")
|
||||||
|
case .bitcoinbeach:
|
||||||
|
return .init(index: 10, tag: "bitcoinbeach", displayName: "Bitcoin Beach", link: "bitcoinbeach://",
|
||||||
|
appStoreLink: "https://apps.apple.com/sv/app/bitcoin-beach-wallet/id1531383905", image: "bbw")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user