Skip to content
This repository was archived by the owner on Apr 14, 2026. It is now read-only.

Commit c26f5ef

Browse files
authored
fix: hide secrets (#33)
1 parent 6d99cd0 commit c26f5ef

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.env.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
VITE_WALLETCONNECT_PROJECT_ID=
2+
VITE_INFURA_API_KEY=

src/wagmiConfig.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import { arbitrumSepolia, baseSepolia, bscTestnet, lineaSepolia, mainnet } from
22
import { WagmiAdapter } from '@reown/appkit-adapter-wagmi';
33
import { http } from 'wagmi';
44

5-
export const walletConnectProjectId = '1640042ae61e8c357b5b6034df2b7821';
6-
const infuraApiKey: string = '2VbuXFYphoB468fyFPinOmis7o5';
5+
export const walletConnectProjectId = import.meta.env.VITE_WALLETCONNECT_PROJECT_ID;
6+
const infuraApiKey = import.meta.env.VITE_INFURA_API_KEY;
77

88
const metadata = {
99
name: 'Verax | Tutorial',

0 commit comments

Comments
 (0)