diff --git a/src/app/api/registry/route.ts b/src/app/api/registry/route.ts index 25b6924..413f0b4 100644 --- a/src/app/api/registry/route.ts +++ b/src/app/api/registry/route.ts @@ -193,7 +193,7 @@ export async function POST(request: NextRequest) { console.log('LNT transfer completed:', lntTransferResult.transactionHash); const finalTxHash = lntTransferResult.transactionHash!; // Use LNT transfer hash for registry - // Validate required environment variables for GOR/Solana payments + // Validate required environment variables for Solana payments const requiredEnvVars = [ 'REGISTRY_CHAIN_ID', 'REGISTRY_GQL_ENDPOINT', @@ -204,7 +204,7 @@ export async function POST(request: NextRequest) { 'DEPLOYER_LRN', // LNT transfer variables 'LACONIC_TRANSFER_AMOUNT', - // Solana/GOR specific variables + // Solana specific variables 'NEXT_PUBLIC_SOLANA_RPC_URL', 'NEXT_PUBLIC_SOLANA_TOKEN_MINT_ADDRESS', 'NEXT_PUBLIC_SOLANA_TOKEN_RECIPIENT_ADDRESS' diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 40db9cb..da6d05b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -16,7 +16,7 @@ const geistMono = Geist_Mono({ export const metadata: Metadata = { title: `Deploy Frontends using ${process.env.NEXT_PUBLIC_SOLANA_TOKEN_SYMBOL} and Laconic`, - description: "Deploy URLs to Laconic Registry using GOR payments", + description: `Deploy URLs to Laconic Registry using ${process.env.NEXT_PUBLIC_SOLANA_TOKEN_SYMBOL} payments`, }; export default function RootLayout({ diff --git a/src/app/page.tsx b/src/app/page.tsx index 74d34e4..682709b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -97,7 +97,7 @@ export default function Home() {

- Deploy Frontends with GOR + Laconic + Deploy Frontends with {process.env.NEXT_PUBLIC_SOLANA_TOKEN_SYMBOL} + Laconic

diff --git a/src/components/PaymentModal.tsx b/src/components/PaymentModal.tsx index ec40735..1c73976 100644 --- a/src/components/PaymentModal.tsx +++ b/src/components/PaymentModal.tsx @@ -47,14 +47,14 @@ export default function PaymentModal({ } finally { setLoading(false); } - }, [connection]); + }, [connection, walletState, amount, onPaymentComplete]); if (!isOpen) return null; return (
+ style={{ background: 'var(--card-bg)', border: '1px solid var(--card-border)' }}>

Complete {process.env.NEXT_PUBLIC_SOLANA_TOKEN_SYMBOL} Payment