diff --git a/src/app/page.tsx b/src/app/page.tsx
index 1bff5db..26ea6da 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,23 +1,26 @@
'use client';
-import { useCallback, useState } from 'react';
+import { useCallback, useEffect, useState } from 'react';
import dynamic from 'next/dynamic';
import { WalletMultiButton } from '@solana/wallet-adapter-react-ui';
import { useWallet } from '@solana/wallet-adapter-react';
+import { BackpackWalletName } from '@solana/wallet-adapter-backpack';
import URLForm from '@/components/URLForm';
import StatusDisplay from '@/components/StatusDisplay';
import { createApplicationDeploymentRequest } from '@/services/registry';
import { PaymentMethod, PAYMENT_METHOD_LABELS } from '@/constants/payments';
-
import { usePaymentMethod } from '@/contexts/PaymentMethodContext';
// Dynamically import components to avoid SSR issues with browser APIs
const PaymentModal = dynamic(() => import('@/components/PaymentModal'), { ssr: false });
+const GORBAGANA_GENESIS_HASH = '533uBE9RRquhTBqEX58oV52FdTTsReMdAvaUvP6hNjsn';
+
export default function Home() {
- const { wallet, connected, publicKey } = useWallet();
+ const { wallet, connected, publicKey, disconnect } = useWallet();
+
const { selectedPaymentMethod, setSelectedPaymentMethod } = usePaymentMethod();
const [url, setUrl] = useState
+
This wallet is not compatible with {PAYMENT_METHOD_LABELS[selectedPaymentMethod]} payments. Please select a different wallet or payment method.
)} + {incorrectChainWarining && ( ++ {incorrectChainWarining} +
+ )}{publicKey.toBase58()}