Skip to content

Update branding from Engine Cloud to Transactions #7516

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/portal/src/app/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ const apisLinks = [
},
{
href: "https://engine.thirdweb.com/reference#tag/write",
name: "Engine Cloud",
name: "Transactions",
},
{
href: "https://bridge.thirdweb.com/reference",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const metadata = createMetadata({

# EngineWallet.Create

A .NET integration of thirdweb [Engine](https://thirdweb.com/engine).
A .NET integration of thirdweb Transactions.

Instantiate a `Engine` with a given private key. This wallet is capable of signing transactions and messages, interacting with smart contracts, and performing other blockchain operations. **This wallet type is intended for backend applications only,** due to the sensitive nature of private keys.

Comment on lines +11 to 14
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Branding update applied only to the first sentence – remaining text still uses “Engine”
After line 11 the docs repeatedly reference “Engine”, “ENGINE_URL”, “Engine dashboard”, etc. This mixed terminology can confuse readers. Recommend a holistic pass:

-Instantiate a `Engine` with a given private key.
+Instantiate a `TransactionsEngine` (formerly “Engine”) with a given private key.

and similarly update parameter descriptions (engineUrl, authToken, etc.) or add a note that “Transactions was previously called Engine”.

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
A .NET integration of thirdweb Transactions.
Instantiate a `Engine` with a given private key. This wallet is capable of signing transactions and messages, interacting with smart contracts, and performing other blockchain operations. **This wallet type is intended for backend applications only,** due to the sensitive nature of private keys.
A .NET integration of thirdweb Transactions.
Instantiate a `TransactionsEngine` (formerly “Engine”) with a given private key. This wallet is capable of signing transactions and messages, interacting with smart contracts, and performing other blockchain operations. **This wallet type is intended for backend applications only,** due to the sensitive nature of private keys.
🤖 Prompt for AI Agents
In apps/portal/src/app/dotnet/wallets/providers/engine-wallet/page.mdx around
lines 11 to 14, the documentation inconsistently uses the old branding "Engine"
after updating the first sentence to "Transactions." Update all subsequent
references such as "Engine," "ENGINE_URL," "Engine dashboard," and parameter
names like "engineUrl" and "authToken" to use the new "Transactions" branding
consistently, or add a clear note explaining that "Transactions was previously
called Engine" to avoid reader confusion.

Expand Down
Loading