Skip to content

Commit afcaa91

Browse files
authored
Docs remove legacy enc key arg (#6220)
1 parent 51f9553 commit afcaa91

File tree

1 file changed

+2
-3
lines changed
  • apps/portal/src/app/unity/v5/wallets/in-app-wallet

1 file changed

+2
-3
lines changed

apps/portal/src/app/unity/v5/wallets/in-app-wallet/page.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ var inAppWalletOptions = new InAppWalletOptions(
107107
### Login with Custom Auth - OIDC Compatible
108108

109109
```csharp
110-
var inAppWalletOptions = new InAppWalletOptions(authprovider: AuthProvider.JWT, jwtOrPayload: "myjwt", encryptionKey: "myencryptionkey");
110+
var inAppWalletOptions = new InAppWalletOptions(authprovider: AuthProvider.JWT, jwtOrPayload: "myjwt");
111111
var options = new WalletOptions(
112112
provider: WalletProvider.InAppWallet,
113113
chainId: 1,
@@ -121,8 +121,7 @@ var wallet = await ThirdwebManager.Instance.ConnectWallet(options);
121121
```csharp
122122
var inAppWalletOptions = new InAppWalletOptions(
123123
authprovider: AuthProvider.AuthEndpoint,
124-
jwtOrPayload: "mypayload",
125-
encryptionKey: "myencryptionkey"
124+
jwtOrPayload: "mypayload"
126125
);
127126
var options = new WalletOptions(
128127
provider: WalletProvider.InAppWallet,

0 commit comments

Comments
 (0)