Skip to main content

Nova Connect LogoNova Connect

Nova Connect is the official wallet adapter that enables dApps to connect with Nova Wallet (mobile) and Nova Desk (desktop). It provides a unified interface for wallet connectivity across both platforms.

Nova Connect Screenshot

For complete integration documentation, visit:

Nova Connect Documentation

Quick Integration

// Side-effect import - auto-registers Nova Connect
import "@inferenco/nova-wallet-adapter/auto-register";

// Use with wallet-standard
import { getCedraWallets, connect } from "@cedra-labs/wallet-standard";

// Connect to Nova Wallet/Nova Desk
const wallets = getCedraWallets();
await connect("Nova Connect");
const wallet = wallets.find(w => w.name === "Nova Connect");
const account = await wallet.account();

For full details, see the official documentation.