-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: This is the first commit of wallet-connect branch which include poc: deep-links and poc: wallet-connect. I gonna begin to work from here to finish the implementation of the whole wallet connect feature. * poc: deep-links working * poc: wallet-connect working Co-authored-by: Matias Grote <mattgrote@Matiass-MBP.fibertel.com.ar> Co-authored-by: Matias Grote <44204622+mattgle@users.noreply.github.com> Co-authored-by: Nico Poggi <73345016+nicolaspoggi@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: nachosan <ignacio.santise@gmail.com> Co-authored-by: ignaciosantise <nachosan@fleek.co> Author: Alejo Acevedo <ale.acevedo@live.com.ar> Changes to be committed: modified: App.js modified: ios/Plug.xcodeproj/project.pbxproj modified: ios/Plug/AppDelegate.m modified: ios/Plug/Info.plist new file: ios/Plug/Plug.entitlements modified: ios/Podfile.lock modified: package.json modified: shim.js new file: src/constants/walletconnect.js new file: src/hooks/useDeepLink.js modified: src/navigation/Routes.js modified: src/navigation/index.js modified: src/navigation/navigators/SwipeNavigator.js modified: src/redux/slices/user.js new file: src/redux/slices/walletconnect.js modified: src/redux/store.js new file: src/screens/flows/WalletConnect/index.js new file: src/screens/flows/WalletConnect/screens/RequestCall/index.js new file: src/screens/flows/WalletConnect/styles.js new file: src/utils/deepLink.js new file: src/utils/utilities.js new file: src/utils/walletConnect.js modified: yarn.lock Summary: After poc: wallet-connect we make a refactor to follow plug-mobile infra and implement main functions to be compatible with extension provider. We need to make the merge of the controller to use just one controller for mobile and extension * refactor: make it clear and follow plug-mobile infrastructure * feat : implement utils and other stuff for modules implementation * feat: implement connection, information and transaction modules * feat: unify controllers * feat: changing parse functions of tokens for new controller * feat: unified getAssets and getBalance * fix: send params as object (#386) * feat: implement allWhitelisted method * fix: request transfer * chore: use checkPassword * chore: install last controller Co-authored-by: nachosan <ignacio.santise@gmail.com> Co-authored-by: Matias Grote <mattgrote@MacBook-Pro.home>
- Loading branch information
1 parent
590f469
commit 0d998d4
Showing
91 changed files
with
4,958 additions
and
398 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
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,4 @@ | ||
declare module '*.jpg'; | ||
declare module '*.json'; | ||
declare module '*.png'; | ||
declare module '*.mp4'; |
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,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>com.apple.developer.associated-domains</key> | ||
<array> | ||
<string>applinks:plugwallet.ooo</string> | ||
</array> | ||
</dict> | ||
</plist> |
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.