Skip to content

Commit 6e87b92

Browse files
committed
added audits (#8577)
<!-- ## title your PR with this format: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes" If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000): ## Notes for the reviewer Anything important to call out? Be sure to also clarify these in your comments. ## How to test Unit tests, playground, etc. --> <!-- start pr-codex --> --- ## PR-Codex overview This PR adds documentation for building and deploying tokens programmatically, generating bridge links, and auditing wallets. It enhances the user experience by providing clear instructions and examples for developers. ### Detailed summary - Added a section titled `Build with tokens` in `page.mdx`. - Introduced `Deploy Programmatically through API` section with details on ERC-20, ERC-721, and ERC-1155 tokens in `deploy-programmatically/page.mdx`. - Included a guide on generating bridge links with steps in `link/page.mdx`. - Added `Wallets Audits` section with links to audit reports in `security/page.mdx`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex --> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Documentation** * Added Bridge Link guide with step-by-step instructions for generating payment links and hosting them on websites * Added Build with Tokens guide * Added Deploying Tokens Programmatically guide with API examples for ERC-20, ERC-721, and ERC-1155 tokens * Added Wallet Security Audits section highlighting audit reports <sub>✏️ Tip: You can customize this high-level summary in your review settings.</sub> <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 9383ccd commit 6e87b92

File tree

4 files changed

+62
-0
lines changed

4 files changed

+62
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import { Steps, Step } from "@doc";
2+
3+
# Bridge Link
4+
5+
You can host a one-time bridge link to request a specific amount of tokens from a specific wallet.
6+
7+
### Generate a bridge link
8+
9+
<Steps>
10+
<Step title="Generate Links">
11+
Generate a link to request a specific amount of tokens from a specific wallet.
12+
</Step>
13+
<Step title="Share payment ">
14+
Host the link on your website
15+
</Step>
16+
<Step title="Host Link">
17+
Host the link on your website
18+
</Step>
19+
<Step title="Host Link">
20+
Host the link on your website
21+
</Step>
22+
</Steps>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Build with tokens
2+
3+
###
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import { OpenApiEndpoint } from "@doc";
2+
3+
# Deploy Programmatically through API
4+
5+
6+
Deploy ERC-20, ERC-721, and ERC-1155 tokens programmatically using the thirdweb API.
7+
8+
Deploying tokens programmatically is useful for:
9+
10+
- Doing high-volume or dynamic token creation for users or creators
11+
- Creator coins who need their own token or NFT upon signup or specific actions
12+
- Creating your own token creation marketplace or platform
13+
14+
and more!
15+
16+
17+
## Deploy ERC-20 Token
18+
19+
<OpenApiEndpoint path="/v1/tokens" method="POST" />
20+
21+
22+
23+
24+

apps/portal/src/app/wallets/security/page.mdx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ export const metadata = createMetadata({
2323
<TabsTrigger value="server-wallets" className="flex items-center [&>p]:mb-0">
2424
Server Wallets
2525
</TabsTrigger>
26+
<TabsTrigger value="audits" className="flex items-center [&>p]:mb-0">
27+
Audits
28+
</TabsTrigger>
2629
</TabsList>
2730
<TabsContent value="user-wallets">
2831

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

190193
</TabsContent>
191194

195+
<TabsContent value="audits">
196+
197+
## Wallets Audits
198+
199+
View the full audit reports for any wallets related features and specs:
200+
201+
- [7702 (Minimal Account)](https://0xmacro.com/library/audits/thirdweb-22)
202+
- [Managed Account Factory](https://ipfs.io/ipfs/Qmc36VUCuwG2u7kZrqmXmJsH5c8sF7SHySVbPnwVmo3XYX/thirdweb%20A-14%20_%20Macro%20Audits%20_%20The%200xMacro%20Library.pdf)
203+
</TabsContent>
204+
192205
</Tabs>

0 commit comments

Comments
 (0)