-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7aa5fc9
commit d5cc2fe
Showing
98 changed files
with
2,800 additions
and
1,390 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Bug fixes and performance improvements |
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 @@ | ||
Previously, we introduced the first-ever multichain wallet on TON with support for TON & TRON networks. Now, we're back with exciting new updates! Here's what's inside: | ||
|
||
• Auto-lock feature and an ability to change password for enhanced wallet security. | ||
|
||
• Easier dapp navigation: connected applications are now displayed in the "Explore" section. | ||
|
||
•️ Connect your Ledger on a mobile device: Bluetooth and USB options are available depending on your platform. | ||
|
||
• Convenient operations through W5 Gasless and Mintless Jettons for TON users. Make transactions even with zero $TON balance. | ||
|
||
•️ With anti-poisoning, MyTonWallet automatically detects suspicious addresses and marks them with a ‘Scam’ label. | ||
|
||
•️ Search for saved addresses: easily filter addresses using test auto-suggest. | ||
|
||
• New deeplinks for quick access: send TON, USDT, jettons, NFTs, perform swaps or stake in one click. | ||
|
||
• Switched our UI links to Tonscan, the first and the most powerful TON explorer. | ||
|
||
• Updated UI animations, bug fixes, performance improvements, and other tiny optimizations for a smoother, more enjoyable experience. |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import UIKit | ||
import Capacitor | ||
|
||
class MyTonWalletApp: UIApplication { | ||
|
||
private var lastTouchEventTimestamp = TimeInterval(0) | ||
|
||
override func sendEvent(_ event: UIEvent) { | ||
super.sendEvent(event) | ||
|
||
guard let touches = event.allTouches, | ||
!touches.isEmpty else { | ||
return | ||
} | ||
|
||
let now = Date().timeIntervalSince1970 | ||
guard now >= lastTouchEventTimestamp + 5 else { | ||
return | ||
} | ||
|
||
guard let vc = (delegate as? AppDelegate)?.window?.rootViewController as? CAPBridgeViewController else { | ||
return | ||
} | ||
lastTouchEventTimestamp = now | ||
vc.bridge?.triggerWindowJSEvent(eventName: "touch") | ||
} | ||
|
||
} |
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,8 @@ | ||
import UIKit | ||
|
||
UIApplicationMain( | ||
CommandLine.argc, | ||
CommandLine.unsafeArgv, | ||
NSStringFromClass(MyTonWalletApp.self), | ||
NSStringFromClass(AppDelegate.self) | ||
) |
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
Oops, something went wrong.