This repository has been archived by the owner on Aug 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* pay updates * blocks updates * zksync note * rename
- Loading branch information
1 parent
c657ef7
commit f53efca
Showing
15 changed files
with
25 additions
and
19 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
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
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 |
---|---|---|
|
@@ -22,7 +22,7 @@ var sdk = ThirdwebManager.Instance.SDK; | |
|
||
// Configure the connection | ||
var connection = new WalletConnection( | ||
provider: WalletProvider.EmbeddedWallet, | ||
provider: WalletProvider.InAppWallet, | ||
chainId: 1, | ||
email: "[email protected]", | ||
); | ||
|
@@ -41,7 +41,7 @@ var sdk = ThirdwebManager.Instance.SDK; | |
|
||
// Configure the connection | ||
var connection = new WalletConnection( | ||
provider: WalletProvider.EmbeddedWallet, | ||
provider: WalletProvider.InAppWallet, | ||
chainId: 1, | ||
phoneNumber: "+1234567890", | ||
authOptions: new AuthOptions( | ||
|
@@ -67,7 +67,7 @@ var sdk = ThirdwebManager.Instance.SDK; | |
|
||
// Configure the connection | ||
var connection = new WalletConnection( | ||
provider: WalletProvider.EmbeddedWallet, | ||
provider: WalletProvider.InAppWallet, | ||
chainId: 1, | ||
authOptions: new AuthOptions( | ||
authProvider: AuthProvider.Google, | ||
|
@@ -94,7 +94,7 @@ var sdk = ThirdwebManager.Instance.SDK; | |
|
||
// Configure the connection | ||
var connection = new WalletConnection( | ||
provider: WalletProvider.EmbeddedWallet, | ||
provider: WalletProvider.InAppWallet, | ||
chainId: 1, | ||
authOptions: new AuthOptions( | ||
authProvider: AuthProvider.JWT, | ||
|
@@ -141,4 +141,4 @@ If using Custom Auth flow, attempts to connect directly after verifying the auth | |
|
||
## Miscellaneous | ||
|
||
You may modify the `WalletProvider_EmbeddedWallet` prefab to fit your app's design, it is primarily used during the Email OTP process. | ||
You may modify the `WalletProvider_InAppWallet` prefab to fit your app's design, it is primarily used during the Email OTP process. |