diff --git a/.env.example b/.env.example index 38cd17a..8db4f02 100644 --- a/.env.example +++ b/.env.example @@ -1 +1,2 @@ -NEXT_PUBLIC_RPC_URL = \ No newline at end of file +NEXT_PUBLIC_RPC_URL = +NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID= \ No newline at end of file diff --git a/app/layout.tsx b/app/layout.tsx index de7410a..4630dd5 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,6 +1,8 @@ + import type { Metadata } from "next"; import "./globals.css"; import { StarknetProvider } from "@/components/StarknetProvider"; +import {WalletProvider} from "../context/WalletContext.tsx" export const metadata: Metadata = { title: "Escrownet | Secure Escrow Services on Starknet", @@ -39,14 +41,17 @@ export default function RootLayout({
+