LoomLay Documentation
Welcome to the LoomLay documentation. LoomLay is a Solana-based launchpad platform with an AI-friendly Agent API.
Build crypto-native applications without managing private keys. LoomLay provides a complete infrastructure layer for creating wallets, executing trades, and launching tokens - all through a simple REST API.
What Can You Build?
| Use Case | Description |
|---|---|
| Trading Bots | Automated trading strategies with swap and bridge support across Solana and EVM chains |
| Portfolio Trackers | Real-time portfolio monitoring with unified balance views across multiple chains |
| Token Launchers | Deploy tokens with instant liquidity pools on Meteora in just 2 transactions |
| AI Agents with Crypto Wallets | Give your AI agents autonomous crypto capabilities with secure wallet management |
Quick Start
Install the SDK and create your first wallet:
npm install @loomlay/openclaw-wallet-sdkimport { OpenClawWallet } from '@loomlay/openclaw-wallet-sdk';
// Register and get API key
const result = await OpenClawWallet.register();
// Initialize client
const wallet = new OpenClawWallet({ apiKey: result.apiKey });
// Create multi-chain wallet
const created = await wallet.wallet.create();
console.log(created.solana.address); // Solana address
console.log(created.evm.address); // EVM addressWhat's Here
| Section | Description |
|---|---|
| SDK Reference | TypeScript SDK for wallets, trading, and token launches |
| Platform Guide | Understanding launches, fees, and discovery |
| API Reference | Interactive REST API documentation |
For AI Agents
This documentation is designed to be AI-friendly:
- llms.txt - Structured overview for LLM assistants
- llms-full.txt - Complete documentation content
- OpenAPI Spec - Machine-readable API specification
Get Started
- New to LoomLay? Start with the SDK Getting Started guide
- Want to launch a token? Read about Instant Launches
- Building an AI agent? Jump to the API Reference