From 6e87b9205f60b13757d032fbcec6e26965d1ebae Mon Sep 17 00:00:00 2001 From: saminacodes Date: Thu, 18 Dec 2025 20:59:07 +0000 Subject: [PATCH] added audits (#8577) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ## 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}` ## 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 ✏️ Tip: You can customize this high-level summary in your review settings. --- apps/portal/src/app/bridge/link/page.mdx | 22 +++++++++++++++++ .../src/app/tokens/build-tokens/page.mdx | 3 +++ .../tokens/deploy-programmatically/page.mdx | 24 +++++++++++++++++++ apps/portal/src/app/wallets/security/page.mdx | 13 ++++++++++ 4 files changed, 62 insertions(+) create mode 100644 apps/portal/src/app/bridge/link/page.mdx create mode 100644 apps/portal/src/app/tokens/build-tokens/page.mdx create mode 100644 apps/portal/src/app/tokens/deploy-programmatically/page.mdx diff --git a/apps/portal/src/app/bridge/link/page.mdx b/apps/portal/src/app/bridge/link/page.mdx new file mode 100644 index 00000000000..85627160d3c --- /dev/null +++ b/apps/portal/src/app/bridge/link/page.mdx @@ -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 + + + +Generate a link to request a specific amount of tokens from a specific wallet. + + +Host the link on your website + + +Host the link on your website + + +Host the link on your website + + \ No newline at end of file diff --git a/apps/portal/src/app/tokens/build-tokens/page.mdx b/apps/portal/src/app/tokens/build-tokens/page.mdx new file mode 100644 index 00000000000..238d0a1c0e8 --- /dev/null +++ b/apps/portal/src/app/tokens/build-tokens/page.mdx @@ -0,0 +1,3 @@ +# Build with tokens + +### \ No newline at end of file diff --git a/apps/portal/src/app/tokens/deploy-programmatically/page.mdx b/apps/portal/src/app/tokens/deploy-programmatically/page.mdx new file mode 100644 index 00000000000..f7507610885 --- /dev/null +++ b/apps/portal/src/app/tokens/deploy-programmatically/page.mdx @@ -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 + + + + + + + diff --git a/apps/portal/src/app/wallets/security/page.mdx b/apps/portal/src/app/wallets/security/page.mdx index c943c21e6cf..147cffed684 100644 --- a/apps/portal/src/app/wallets/security/page.mdx +++ b/apps/portal/src/app/wallets/security/page.mdx @@ -23,6 +23,9 @@ export const metadata = createMetadata({ Server Wallets + + Audits + @@ -189,4 +192,14 @@ The response also arrives in the same payload format. We just perform the steps + + +## 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) + + \ No newline at end of file