Launch Your MVP
Build your privacy-first dApp in minutes with Zekta SDK. Start with our quickstart guide and ship your MVP today.
Quick Start in 3 Steps
1
Install SDK
Add Zekta to your project with your favorite package manager.
npm install @zekta/core @zekta/react2
Initialize Client
Configure Zekta with your network and API keys.
import { ZektaProvider } from '@zekta/react';
<ZektaProvider
config={{
network: 'mainnet'
}}
>
<App />
</ZektaProvider>3
Create Proofs
Generate and execute zero-knowledge proofs for your actions.
const { prove, execute } = useZekta();
const proof = await prove(action);
const result = await execute(proof);Choose Your Framework
Zekta SDK works seamlessly with your favorite frameworks
import { ZektaProvider, useZekta } from '@zekta/react';
function App() {
return (
<ZektaProvider config={{ network: 'mainnet' }}>
<PaymentFlow />
</ZektaProvider>
);
}
function PaymentFlow() {
const { prove, execute } = useZekta();
const sendPayment = async (to, amount) => {
const proof = await prove({
action: 'transfer',
params: { to, amount }
});
const result = await execute(proof);
return result;
};
return <YourUI />;
}Everything You Need to Ship Fast
๐
Easy Integration
Drop-in SDK with minimal configuration required.
๐
Complete Documentation
Comprehensive guides, API references, and examples.
๐ง
Developer Tools
CLI, debugging tools, and browser extensions.
๐จ
UI Components
Pre-built React components for common workflows.
๐งช
Testing Suite
Mock providers and testing utilities included.
๐
Multi-Chain Support
Works with Ethereum, Polygon, BSC, and more.
Start Building Today
Join thousands of developers building the future of private blockchain applications.
Get Started Now