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 CaseDescription
Trading BotsAutomated trading strategies with swap and bridge support across Solana and EVM chains
Portfolio TrackersReal-time portfolio monitoring with unified balance views across multiple chains
Token LaunchersDeploy tokens with instant liquidity pools on Meteora in just 2 transactions
AI Agents with Crypto WalletsGive 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-sdk
import { 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 address

What's Here

SectionDescription
SDK ReferenceTypeScript SDK for wallets, trading, and token launches
Platform GuideUnderstanding launches, fees, and discovery
API ReferenceInteractive REST API documentation

For AI Agents

This documentation is designed to be AI-friendly:

Get Started