-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Impl Beacon dApp deeplink, fix iOS libsodium, refactoring. (#75)
* Impl deeplinks for iOS + connect dApp by deeplink * Impl deeplinks for Android * Change deepLink format * Impl logic of connection on deep link * Dapp connect with scan and copy/paste methods * Constants and structures to Models + refactor * Revert to static libsodium library, increase beacon v1.0.12 * Add beacon nuget * Resolve dapp connection by deep link with locked wallet
- Loading branch information
Showing
79 changed files
with
5,211 additions
and
3,637 deletions.
There are no files selected for viewing
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
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
6,307 changes: 3,538 additions & 2,769 deletions
6,307
atomex.Android/Resources/Resource.designer.cs
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
Binary file not shown.
Binary file not shown.
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
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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
namespace atomex.Models | ||
{ | ||
public static class Constants | ||
{ | ||
public const string YoutubeUrl = "https://www.youtube.com/c/BakingBad"; | ||
public const string TwitterUrl = "https://twitter.com/atomex_official"; | ||
public const string TelegramUrl = "https://t.me/atomex_official"; | ||
public const string SupportUrl = "mailto:[email protected]"; | ||
|
||
public static string[] WertRedirectedUrls = | ||
{ | ||
"https://widget.wert.io/terms-and-conditions", | ||
"https://widget.wert.io/privacy-policy", | ||
"https://support.wert.io/", | ||
"https://sandbox.wert.io/terms-and-conditions", | ||
"https://sandbox.wert.io/privacy-policy" | ||
}; | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using System.ComponentModel; | ||
|
||
namespace atomex.Models | ||
{ | ||
public enum CurrencyActionType | ||
{ | ||
[Description("Show")] Show, | ||
[Description("Send")] Send, | ||
[Description("Receive")] Receive | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using System.ComponentModel; | ||
|
||
namespace atomex.Models | ||
{ | ||
public enum CurrencyTab | ||
{ | ||
[Description("Activity")] Activity, | ||
[Description("Collectibles")] Collectibles, | ||
[Description("Addresses")] Addresses, | ||
[Description("Delegations")] Delegations, | ||
[Description("Tokens")] Tokens, | ||
[Description("Details")] Details, | ||
[Description("Dapps")] Dapps | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
namespace atomex.Models | ||
{ | ||
public enum DelegationSortField | ||
{ | ||
ByRating, | ||
ByRoi, | ||
ByValidator, | ||
ByMinTez | ||
} | ||
} |
Oops, something went wrong.