Skip to content

Commit

Permalink
fix(env): add NEXT_PUBLIC_E2E_WALLET_MNEMONIC
Browse files Browse the repository at this point in the history
  • Loading branch information
BrickheadJohnny committed Jul 23, 2024
1 parent 157a275 commit 10939d7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/env.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ export const env = createEnv({
NEXT_PUBLIC_GOOGLE_CLIENT_ID: z.string(),
NEXT_PUBLIC_GOOGLE_SERVICE_ACCOUNT_EMAIL: z.string(),
NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID: z.string(),
// E2E
NEXT_PUBLIC_E2E_WALLET_MNEMONIC: z.string(),
},
runtimeEnv: {
NEXT_PUBLIC_API: process.env.NEXT_PUBLIC_API,
Expand Down Expand Up @@ -131,5 +133,7 @@ export const env = createEnv({

WAAS_VIEM_URL: process.env.WAAS_VIEM_URL,
WAAS_WEB_URL: process.env.WAAS_WEB_URL,

NEXT_PUBLIC_E2E_WALLET_MNEMONIC: process.env.NEXT_PUBLIC_E2E_WALLET_MNEMONIC,
},
})

0 comments on commit 10939d7

Please sign in to comment.