Quick Start
🚀 Installation
Get up and running with the Loopz SDK in minutes. Install via npm and configure your environment.
📖 Quick Start Guide
Learn the basics of authentication, chat, and trading with our comprehensive quick start tutorial.
💡 Use Cases
Explore real-world examples including NFT marketplaces and social trading networks.
Simple Integration
Get started with just a few lines of code. The Loopz SDK provides everything you need to build Web3 trading applications with integrated encrypted chat.
OTP Authentication
End-to-End Encrypted Chat
NFT & Token Trading
Real-time Notifications
Multi-chain Support
Reward System
Airdrop
SBTs tokens
User Metrics
Sybil Attacks Protection
import { LoopzProvider, useLoopzAuth } from '@salad-labs/loopz-typescript'
function App() {
const config = {
apiKey: process.env.NEXT_PUBLIC_LOOPZ_API_KEY,
privyAppId: process.env.NEXT_PUBLIC_PRIVY_APP_ID,
// ... other config
}
return (
<LoopzProvider config={config}>
<YourApp />
</LoopzProvider>
)
}