Skip to content
Merged
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
22 changes: 22 additions & 0 deletions apps/portal/src/app/bridge/link/page.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import { Steps, Step } from "@doc";

# Bridge Link

You can host a one-time bridge link to request a specific amount of tokens from a specific wallet.

### Generate a bridge link

<Steps>
<Step title="Generate Links">
Generate a link to request a specific amount of tokens from a specific wallet.
</Step>
<Step title="Share payment ">
Host the link on your website
</Step>
<Step title="Host Link">
Host the link on your website
</Step>
<Step title="Host Link">
Host the link on your website
</Step>
</Steps>
Comment on lines +9 to +22
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

Fix duplicate steps and mismatched content.

The Steps component contains duplicate and incomplete content:

  1. Line 13-15: The "Share payment" step title doesn't match its content ("Host the link on your website").
  2. Lines 16-21: Steps 3 and 4 both have the identical title "Host Link" and identical content, appearing to be copy-paste duplicates.

This creates confusing documentation that doesn't provide distinct, actionable guidance for each step.

🔎 Suggested structure for the steps:
 <Steps>
 <Step title="Generate Links">
 Generate a link to request a specific amount of tokens from a specific wallet.
 </Step>
-<Step title="Share payment ">
-Host the link on your website 
+<Step title="Customize the link">
+[Add content about customizing the bridge link parameters]
 </Step>
 <Step title="Host Link">
 Host the link on your website 
 </Step>
-<Step title="Host Link">
-Host the link on your website 
+<Step title="Share with users">
+[Add content about sharing the link with users]
 </Step>
 </Steps>

Would you like me to help draft appropriate content for each step based on typical bridge link workflows?

🤖 Prompt for AI Agents
In apps/portal/src/app/bridge/link/page.mdx around lines 9 to 22, the Steps
block has a mismatched title/content for "Share payment" (title shows “Share
payment” but content says “Host the link on your website”) and two duplicate
"Host Link" steps; replace the four entries with four distinct steps (e.g.,
"Generate Links" — describe creating a payment link with amount and wallet;
"Share Payment" — explain how to distribute the link to payers via
email/QR/embed/social; "Host Link" — describe embedding or hosting the link on
your website and required config); and "Monitor Payments" or "Confirm Receipt" —
describe how to verify and handle incoming payments; remove the duplicate step
and ensure each Step title matches its content and is concise and actionable.

3 changes: 3 additions & 0 deletions apps/portal/src/app/tokens/build-tokens/page.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Build with tokens

###
Comment on lines +1 to +3
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

Remove the empty heading or add content.

Line 3 contains an empty heading marker (###) with no text. This creates incomplete documentation structure and should either have meaningful content added or be removed entirely.

🔎 Apply this diff to remove the empty heading:
 # Build with tokens
 
-### 

Do you want me to help draft content for this placeholder section?

📝 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
# Build with tokens
###
# Build with tokens
🤖 Prompt for AI Agents
In apps/portal/src/app/tokens/build-tokens/page.mdx around lines 1 to 3, there
is an empty third-level heading marker ("###") on line 3; either delete that
line to remove the empty heading or replace it with a meaningful subheading and
accompanying content (e.g., a short description or list explaining the build
tokens section). Ensure markdown structure remains valid (no stray heading
markers) and update any nearby TOC or references if you add a new subsection
title.

24 changes: 24 additions & 0 deletions apps/portal/src/app/tokens/deploy-programmatically/page.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import { OpenApiEndpoint } from "@doc";

# Deploy Programmatically through API


Deploy ERC-20, ERC-721, and ERC-1155 tokens programmatically using the thirdweb API.

Deploying tokens programmatically is useful for:

- Doing high-volume or dynamic token creation for users or creators
- Creator coins who need their own token or NFT upon signup or specific actions
- Creating your own token creation marketplace or platform

and more!


## Deploy ERC-20 Token

<OpenApiEndpoint path="/v1/tokens" method="POST" />





13 changes: 13 additions & 0 deletions apps/portal/src/app/wallets/security/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ export const metadata = createMetadata({
<TabsTrigger value="server-wallets" className="flex items-center [&>p]:mb-0">
Server Wallets
</TabsTrigger>
<TabsTrigger value="audits" className="flex items-center [&>p]:mb-0">
Audits
</TabsTrigger>
</TabsList>
<TabsContent value="user-wallets">

Expand Down Expand Up @@ -189,4 +192,14 @@ The response also arrives in the same payload format. We just perform the steps

</TabsContent>

<TabsContent value="audits">

## Wallets Audits

View the full audit reports for any wallets related features and specs:

- [7702 (Minimal Account)](https://0xmacro.com/library/audits/thirdweb-22)
- [Managed Account Factory](https://ipfs.io/ipfs/Qmc36VUCuwG2u7kZrqmXmJsH5c8sF7SHySVbPnwVmo3XYX/thirdweb%20A-14%20_%20Macro%20Audits%20_%20The%200xMacro%20Library.pdf)
</TabsContent>

</Tabs>
Loading