From f1f356e873494496793263355b5690abee587251 Mon Sep 17 00:00:00 2001 From: 0xFirekeeper <0xFirekeeper@gmail.com> Date: Fri, 12 Dec 2025 23:22:28 +0700 Subject: [PATCH] Add Dedicated Relayer docs and sidebar link Introduces a new documentation page for Dedicated Relayer, detailing its features, setup, and pricing. Also adds a 'Dedicated Relayer' link to the wallets sidebar for easier navigation. --- .../app/wallets/dedicated-relayer/page.mdx | 62 +++++++++++++++++++ apps/portal/src/app/wallets/sidebar.tsx | 4 ++ 2 files changed, 66 insertions(+) create mode 100644 apps/portal/src/app/wallets/dedicated-relayer/page.mdx diff --git a/apps/portal/src/app/wallets/dedicated-relayer/page.mdx b/apps/portal/src/app/wallets/dedicated-relayer/page.mdx new file mode 100644 index 00000000000..65eef133c2c --- /dev/null +++ b/apps/portal/src/app/wallets/dedicated-relayer/page.mdx @@ -0,0 +1,62 @@ +import { createMetadata, Callout } from "@doc"; + +export const metadata = createMetadata({ + image: { + title: "Dedicated Relayer", + icon: "wallets", + }, + title: "Dedicated Relayer | thirdweb Documentation", + description: + "High-performance, private transaction infrastructure for scaling your application.", +}); + +# Dedicated Relayer + +**Dedicated Relayers** provide fully managed, private transaction infrastructure designed to give your application the dedicated resources it needs to scale. + +Unlike shared relayers where your transactions are processed alongside thousands of other applications, a Dedicated Relayer ensures guaranteed throughput, lower latency, and isolation from traffic spikes. + +## Why use a Dedicated Relayer? + +
+
+

Guaranteed Throughput

+

Your infrastructure is yours alone. No rate limits caused by other users and no "noisy neighbor" problems.

+
+
+

Parallel Execution

+

Scale your transaction capacity by adding multiple executor wallets. Submit transactions in parallel for higher throughput.

+
+
+

Multi-Chain Support

+

Seamless operation across multiple chains. Configure your fleet to handle traffic on the networks that matter to you.

+
+
+

Advanced Analytics

+

Track your fleet's performance, including total gas spent, transaction success rates, and active chain metrics.

+
+
+ +## Setting up a Dedicated Relayer + +1. Navigate to the [thirdweb Dashboard](https://thirdweb.com/dashboard). +2. Select your project and go to **Wallets > Dedicated Relayer** in the sidebar. +3. Choose a plan that fits your needs: + - **Standard**: For startups and apps with moderate volume. + - **Premium**: For enterprise-grade scale with higher throughput limits. +4. Configure your fleet by selecting the chains you want to support. + +Once deployed, your application's gasless transactions will automatically be routed through your dedicated infrastructure. + +## Pricing Tiers + +| Feature | Standard | Premium | Custom | +| :--- | :--- | :--- | :--- | +| **Price** | $99 / month | $299 / month | Custom | +| **Executors** | 1 Wallet | 10 Wallets | Unlimited | +| **Chains** | 1 Chain | Up to 2 Chains | Unlimited | +| **Throughput** | Standard | 10x Parallelization | Custom | + + + For applications operating at massive scale, [contact us](https://ea58c.share.hsforms.com/2o8qbJVozSX2Q4oukYfYGuA) for custom configurations. + diff --git a/apps/portal/src/app/wallets/sidebar.tsx b/apps/portal/src/app/wallets/sidebar.tsx index 6851d8ca3b5..1a405bcd6cd 100644 --- a/apps/portal/src/app/wallets/sidebar.tsx +++ b/apps/portal/src/app/wallets/sidebar.tsx @@ -101,6 +101,10 @@ export const sidebar: SideBar = { href: `${walletSlug}/sponsorship-policies`, name: "Sponsorship Policies", }, + { + href: `${walletSlug}/dedicated-relayer`, + name: "Dedicated Relayer", + }, { href: `${walletSlug}/session-keys`, name: "Session Keys",