From c7a79362145d3cd9758f56b077828c8461fd70f5 Mon Sep 17 00:00:00 2001 From: Paul Cramer Date: Tue, 17 Dec 2024 10:58:36 -0800 Subject: [PATCH] asdf --- site/.env.local.example | 1 + site/docs/components/AppDemo.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/site/.env.local.example b/site/.env.local.example index 08883429ef..f36eb2812e 100644 --- a/site/.env.local.example +++ b/site/.env.local.example @@ -2,3 +2,4 @@ VITE_CDP_API_KEY="GET_FROM_COINBASE_DEVELOPER_PLATFORM" VITE_CDP_PAYMASTER_AND_BUNDLER_ENDPOINT="GET_FROM_COINBASE_DEVELOPER_PLATFORM_PAYMASTER_AND_BUNDLER" VITE_CDP_PROJECT_ID="GET_FROM_COINBASE_DEVELOPER_PLATFORM" VITE_WALLET_CONNECT_PROJECT_ID="GET_FROM_WALLET_CONNECT" +VITE_DEMO_WALLET_PK="GET_FROM_VERCEL_ENV_VARIABLES" \ No newline at end of file diff --git a/site/docs/components/AppDemo.tsx b/site/docs/components/AppDemo.tsx index 36904a1c16..69f9e8d538 100644 --- a/site/docs/components/AppDemo.tsx +++ b/site/docs/components/AppDemo.tsx @@ -26,7 +26,7 @@ export default function AppDemo({ children }: { children: ReactNode }) { chains: [base, baseSepolia], connectors: [ () => { - const demoWalletPK = import.meta.env.VITE_DEMO_WALLET_PRIVATE_KEY; + const demoWalletPK = import.meta.env.VITE_DEMO_WALLET_PK; const account = privateKeyToAccount(demoWalletPK as `0x${string}`); const client = createWalletClient({ account,