Skip to content
This repository was archived by the owner on Apr 14, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
VITE_WALLETCONNECT_PROJECT_ID=
VITE_INFURA_API_KEY=
4 changes: 2 additions & 2 deletions src/wagmiConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { arbitrumSepolia, baseSepolia, bscTestnet, lineaSepolia, mainnet } from
import { WagmiAdapter } from '@reown/appkit-adapter-wagmi';
import { http } from 'wagmi';

export const walletConnectProjectId = '1640042ae61e8c357b5b6034df2b7821';
const infuraApiKey: string = '2VbuXFYphoB468fyFPinOmis7o5';
export const walletConnectProjectId = import.meta.env.VITE_WALLETCONNECT_PROJECT_ID;
const infuraApiKey = import.meta.env.VITE_INFURA_API_KEY;

const metadata = {
name: 'Verax | Tutorial',
Expand Down