Skip to main content

Loopz Developers

Loopz SDK & API Documentation - Loopz, the new door for the web3

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>
)
}