From 71f83a884b54764a81f0a1f5155ac62a1901c517 Mon Sep 17 00:00:00 2001 From: 0xFirekeeper <43042585+0xFirekeeper@users.noreply.github.com> Date: Tue, 18 Mar 2025 19:29:08 +0000 Subject: [PATCH] .NET Docs - Synchronous EngineWallet.Create (#6469) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## PR-Codex overview This PR focuses on modifying the instantiation of the `engineWallet` variable by removing the `await` keyword from the `EngineWallet.Create` method call, indicating a change in how the method is executed. ### Detailed summary - Removed `await` from the `EngineWallet.Create` method call for `engineWallet`. - The method now executes synchronously instead of asynchronously. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` --- .../src/app/dotnet/wallets/providers/engine-wallet/page.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/portal/src/app/dotnet/wallets/providers/engine-wallet/page.mdx b/apps/portal/src/app/dotnet/wallets/providers/engine-wallet/page.mdx index 841212e3d9b..ddfb559574b 100644 --- a/apps/portal/src/app/dotnet/wallets/providers/engine-wallet/page.mdx +++ b/apps/portal/src/app/dotnet/wallets/providers/engine-wallet/page.mdx @@ -16,7 +16,7 @@ Instantiate a `Engine` with a given private key. This wallet is capable of signi ```csharp // EngineWallet is compatible with IThirdwebWallet and can be used with any SDK method/extension -var engineWallet = await EngineWallet.Create( +var engineWallet = EngineWallet.Create( client: client, engineUrl: Environment.GetEnvironmentVariable("ENGINE_URL"), authToken: Environment.GetEnvironmentVariable("ENGINE_ACCESS_TOKEN"),