No wallet extension required
Solana Wallet
Without the Hassle
Experience Solana with passkey authentication. No seed phrases, no browser extensions, just your fingerprint or face ID.
Passkey Auth
Gasless Transactions
Smart Wallet
Easy Integration
Passkey Authentication
Log in with your fingerprint or Face ID. No more seed phrases to remember or lose.
Gasless Transactions
Send SOL and tokens without worrying about gas fees. Smart wallet handles it all.
Smart Wallet Security
Built on Solana's native passkey support. Your keys, secured by your device.
Integration Examples
See how easy it is to integrate Lazorkit
// 1. Install Lazorkit SDK
npm install @lazorkit/wallet @solana/web3.js
// 2. Wrap your app with LazorkitProvider
import { LazorkitProvider } from "@lazorkit/wallet";
export default function App() {
return (
<LazorkitProvider
rpcUrl="https://api.devnet.solana.com"
portalUrl="https://portal.lazor.sh"
paymasterConfig={{
paymasterUrl: "https://kora.devnet.lazorkit.com"
}}
>
<YourApp />
</LazorkitProvider>
);
}