Integrate Quantum Security in 5 Minutes
Drop-in SDK for iOS, Android, and Web. NIST PQC certified encryption with a single line of code.
iOS SDK
Swift Package Manager & CocoaPods support.
🤖
Android SDK
Gradle dependency & Maven Central.
Web3 SDK
React, Vue, and Vanilla JS support.
1
Initialize the Engine
App.tsx
import { IceKey } from '@icekey/sdk';
// Initialize with your API Key
await IceKey.init({
apiKey: 'sk_live_hskg_8f92...',
environment: 'production'
});
2
Execute Ice Touch Transfer
PaymentController.ts
// This triggers the Bio-Resonance UI automatically
const result = await IceKey.transfer({
amount: 500,
currency: 'USDT',
recipient: 'Alice_NYC'
});
if (result.success) {
console.log('Quantum Transfer Complete!');
}