How it works
Three simple steps to get funded for your CIFER SDK project.
Apply
Connect your wallet and submit your project proposal. Tell us what you're building with the CIFER SDK.
Build
Once approved, start building. Integrate quantum-resistant encryption into your project.
Get Funded
Submit your completed project for review. Approved projects receive their grant funding directly.
Choose your tier
Pick the tier that matches your project scope. Total pool: $25,000.
Explorer
$1,000
- Small SDK integrations
- Proof of concepts
- Tutorials & educational content
- Developer tooling snippets
Builder
$3,000
- Working dApps using CIFER SDK
- Developer tools & libraries
- Middleware & integrations
- Open-source SDK extensions
Pioneer
$5,000
- Production-ready applications
- Significant ecosystem contributions
- Novel quantum-resistant use cases
- Cross-chain encryption solutions
What we evaluate
SDK Integration
Meaningful use of the CIFER SDK for encryption, key management, or on-chain commitments.
Innovation
Novel approaches and creative use cases for quantum-resistant encryption.
Ecosystem Impact
Projects that benefit the broader CIFER and Web3 developer ecosystem.
Technical Quality
Clean code, good documentation, and well-thought-out architecture.
Built on CIFER
Post-quantum cryptographic infrastructure for blockchain applications. ML-KEM-768 key encapsulation, AES-GCM encryption, multi-chain support.
// Initialize with auto-discovery
const sdk = await createCiferSdk({
blackboxUrl: 'https://cifer-blackbox.ternoa.dev:3010',
});
// Encrypt with quantum-resistant encryption
const encrypted = await blackbox.payload.encryptPayload({
chainId: 752025,
secretId: 123n,
plaintext: 'My confidential data',
signer, readClient: sdk.readClient,
blackboxUrl: sdk.blackboxUrl,
});