@@ -295,37 +314,20 @@ function SkeletonRow() {
}
function TransactionHashCell(props: { hash: string; chainId: string }) {
- const { idToChain } = useAllChainsData();
- const chain = idToChain.get(Number(props.chainId));
-
- const explorerUrl = chain?.explorers?.[0]?.url;
const txHashToShow = `${props.hash.slice(0, 6)}...${props.hash.slice(-4)}`;
- if (explorerUrl) {
- return (
-
);
}
@@ -362,7 +364,7 @@ function TransactionFeeCell(props: { usdValue: number | null }) {
}
return (
);
}
@@ -379,7 +381,7 @@ function ChainFilter(props: {
client={props.client}
chainId={props.chainId}
onChange={(chainId) => props.setChainId(chainId)}
- popoverContentClassName="z-[10001]"
+ popoverContentClassName="z-[10001] !w-[280px]"
align="end"
placeholder="All Chains"
className="min-w-[150px]"
diff --git a/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/wallets/dedicated-relayer/components/empty-state.tsx b/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/wallets/dedicated-relayer/components/empty-state.tsx
index af1f07381a1..42394530266 100644
--- a/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/wallets/dedicated-relayer/components/empty-state.tsx
+++ b/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/wallets/dedicated-relayer/components/empty-state.tsx
@@ -71,8 +71,8 @@ export function DedicatedRelayerEmptyState(
}
};
- const requiredChains =
- selectedTier === "product:dedicated_relayer_standard" ? 2 : 4;
+ const maxChains =
+ selectedTier === "product:dedicated_relayer_standard" ? 1 : 2;
return (
@@ -90,7 +90,7 @@ export function DedicatedRelayerEmptyState(
- Select {requiredChains} chains for your dedicated relayer.
+ Select up to {maxChains} chains for your dedicated relayer.
diff --git a/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/wallets/dedicated-relayer/components/page-client.tsx b/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/wallets/dedicated-relayer/components/page-client.tsx
index 29c97d80b8b..1742dd27eed 100644
--- a/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/wallets/dedicated-relayer/components/page-client.tsx
+++ b/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/wallets/dedicated-relayer/components/page-client.tsx
@@ -73,6 +73,7 @@ export function DedicatedRelayerPageClient(
refetchInterval: 5000,
});
+ const isCheckingActivity = hasActivityQuery.isPending;
const totalTransactions = hasActivityQuery.data?.data.totalTransactions ?? 0;
const hasTransactions = totalTransactions > 0;
@@ -117,23 +118,28 @@ export function DedicatedRelayerPageClient(
)}
- {fleetStatus === "active" && fleet && !hasTransactions && (
-
- )}
-
- {fleetStatus === "active" && fleet && hasTransactions && (
-
- )}
+ {fleetStatus === "active" &&
+ fleet &&
+ !hasTransactions &&
+ !isCheckingActivity && (
+
+ )}
+
+ {fleetStatus === "active" &&
+ fleet &&
+ (hasTransactions || isCheckingActivity) && (
+
+ )}
);
}
diff --git a/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/wallets/dedicated-relayer/components/tier-selection.tsx b/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/wallets/dedicated-relayer/components/tier-selection.tsx
index 5024778355e..662fefe47ec 100644
--- a/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/wallets/dedicated-relayer/components/tier-selection.tsx
+++ b/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/wallets/dedicated-relayer/components/tier-selection.tsx
@@ -33,12 +33,12 @@ const TIERS: TierConfig[] = [
icon: FolderIcon,
name: "Standard",
description:
- "Most suitable for small startups and apps doing less than 10,000 transactions per day",
+ "Most suitable for startups and applications with moderate transaction volume",
price: "$99",
isPerMonth: true,
features: [
{ icon: WalletProductIcon, label: "Single executor wallet" },
- { icon: BoxesIcon, label: "Support for up to 2 chains" },
+ { icon: BoxesIcon, label: "Support for 1 chain" },
],
cta: "Select",
},
@@ -47,7 +47,7 @@ const TIERS: TierConfig[] = [
icon: FoldersIcon,
name: "Premium",
description:
- "Best for large enterprise companies and apps doing 100,000+ transactions per day",
+ "Best for enterprise companies and applications with high transaction volume",
price: "$299",
isPerMonth: true,
features: [
@@ -55,7 +55,7 @@ const TIERS: TierConfig[] = [
icon: WalletProductIcon,
label: "10 executor wallets (10x throughput)",
},
- { icon: BoxesIcon, label: "Support for up to 4 chains" },
+ { icon: BoxesIcon, label: "Support for up to 2 chains" },
],
cta: "Select",
isRecommended: true,
@@ -65,7 +65,7 @@ const TIERS: TierConfig[] = [
icon: FolderCogIcon,
name: "Custom",
description:
- "Contact us for more throughput with custom number of chains and executor wallets",
+ "Contact us for applications operating at a global scale with custom requirements",
price: "Custom",
features: [
{ icon: WalletProductIcon, label: "Unlimited executor wallets" },