diff --git a/apps/playground-web/next.config.mjs b/apps/playground-web/next.config.mjs index 420ea92fecd..93d918ee3ff 100644 --- a/apps/playground-web/next.config.mjs +++ b/apps/playground-web/next.config.mjs @@ -111,6 +111,21 @@ const nextConfig = { destination: "/transactions/webhooks", permanent: false, }, + { + source: "/wallets/account-abstraction/sponsor", + destination: "/wallets/account-abstraction/eip-4337", + permanent: false, + }, + { + source: "/wallets/account-abstraction/7702", + destination: "/wallets/account-abstraction/eip-7702", + permanent: false, + }, + { + source: "/wallets/account-abstraction/5792", + destination: "/wallets/account-abstraction/eip-5792", + permanent: false, + }, ]; }, async rewrites() { diff --git a/apps/playground-web/src/app/navLinks.ts b/apps/playground-web/src/app/navLinks.ts index f23d746245b..522db5a5b80 100644 --- a/apps/playground-web/src/app/navLinks.ts +++ b/apps/playground-web/src/app/navLinks.ts @@ -26,15 +26,15 @@ const staticSidebarLinks: SidebarLink[] = [ name: "Ecosystem Wallets", }, { - href: "/wallets/account-abstraction/sponsor", + href: "/wallets/account-abstraction/eip-4337", name: "EIP-4337", }, { - href: "/wallets/account-abstraction/7702", + href: "/wallets/account-abstraction/eip-7702", name: "EIP-7702", }, { - href: "/wallets/account-abstraction/5792", + href: "/wallets/account-abstraction/eip-5792", name: "EIP-5792", }, { diff --git a/apps/playground-web/src/app/wallets/account-abstraction/sponsor/page.tsx b/apps/playground-web/src/app/wallets/account-abstraction/eip-4337/page.tsx similarity index 100% rename from apps/playground-web/src/app/wallets/account-abstraction/sponsor/page.tsx rename to apps/playground-web/src/app/wallets/account-abstraction/eip-4337/page.tsx diff --git a/apps/playground-web/src/app/wallets/account-abstraction/5792/page.tsx b/apps/playground-web/src/app/wallets/account-abstraction/eip-5792/page.tsx similarity index 100% rename from apps/playground-web/src/app/wallets/account-abstraction/5792/page.tsx rename to apps/playground-web/src/app/wallets/account-abstraction/eip-5792/page.tsx diff --git a/apps/playground-web/src/app/wallets/account-abstraction/7702/page.tsx b/apps/playground-web/src/app/wallets/account-abstraction/eip-7702/page.tsx similarity index 100% rename from apps/playground-web/src/app/wallets/account-abstraction/7702/page.tsx rename to apps/playground-web/src/app/wallets/account-abstraction/eip-7702/page.tsx