How-to guides > Connect wallet
Connect a wallet
Connect a Solana wallet to Quovra for deposit and claim actions.
Connect a wallet
Wallet connection is required for deposit and claim actions. Read-only pages do not require a wallet.
Steps
- Open
https://quovra.xyz. - Connect a Solana wallet such as Phantom.
- Switch the wallet to devnet.
- Open
/markets. - Request test USDC if the faucet is configured.
Expected result:
- The wallet public key appears in the UI.
- Deposit and claim buttons can build wallet-signed transactions.
JavaScript example
js
import { Connection } from "@solana/web3.js"
import { deposit } from "./src/lib/quovra-client"
const connection = new Connection("https://api.devnet.solana.com", "confirmed")
await deposit(connection, wallet, marketPubkey, 1, 10)Security tips
- Use devnet for demos.
- Do not ask users for seed phrases.
- Do not store wallet private keys in the app.
- Keep faucet authority server-only.
Related pages
Search keywords
wallet, Phantom, Solana, devnet, connect wallet
Last updated: [YYYY-MM-DD]