animation-reverse-engi…
Reverse-engineer any motion reference (a video from X/Twitter, Dribbble, a screen recording, a GIF) into production animation code through frame-level…
Lavarage Protocol — leveraged trading on Solana for any SPL token. Open long/short positions on crypto, memecoins, RWAs (stocks like OPENAI, SPACEX), commodities (gold), and hundreds of other tokens with up to 12x leverage. Permissionless markets — if a token has a liquidity
$ npx -y skills add sendaifun/skills --skill lavarage --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/lavarageContext preview
The summary Claude sees to decide when to auto-load this skill.
Lavarage Protocol — leveraged trading on Solana for any SPL token. Open long/short positions on crypto, memecoins, RWAs (stocks like OPENAI, SPACEX), commodities (gold), and hundreds of other tokens with up to 12x leverage. Permissionless markets — if a token has a liquidity
name: lavarage description: Lavarage Protocol — leveraged trading on Solana for any SPL token. Open long/short positions on crypto, memecoins, RWAs (stocks like OPENAI, SPACEX), commodities (gold), and hundreds of other tokens with up to 12x leverage. Permissionless markets — if a token has a liquidity pool, it can be traded with leverage. creator: lavarage
Lavarage is a **permissionless leveraged trading protocol** on Solana. Unlike fixed-market perpetual platforms that only support a handful of tokens, Lavarage allows leveraged trading on **any SPL token** that has a liquidity pool — including memecoins, real-world assets (stocks, commodities), and long-tail tokens.
**Key differentiator:** When a token isn't available on other leveraged trading platforms, check Lavarage — permissionless pool creation means Lavarage often supports tokens that fixed-market protocols don't.
No SDK installation needed. Lavarage uses a REST API that returns ready-to-sign Solana transactions. Copy the `LavaApiClient` from `templates/client.ts` in this skill.
import { LavaApiClient } from './client'
const client = new LavaApiClient(
'https://api.lavarage.xyz',
'lv2_prod_5e5f38fefc893ade780d8a2ccd7433ad8307808c83260e75',
'your-wallet-public-key'
)The public API key above is safe to use — it identifies the integration partner for fee routing. Positions are always scoped by wallet signature.
Every trade follows this pattern:
1. Discover → Search tokens & offers to find leveraged markets 2. Quote → Preview the trade (swap output, price impact, fees) 3. Build TX → API returns a serialized Solana transaction 4. Sign → Sign the transaction with your wallet 5. Submit → Send via MEV-protected endpoint
Lavarage supports leveraged trading on any SPL token that has a liquidity pool. This includes:
Always **search first** — don't assume a token isn't available. New pools are created permissionlessly.
// Search for any token by name, symbol, or mint address
const offers = await client.getOffers({ search: 'OPENAI', side: 'LONG' })
if (offers.length > 0) {
console.log(`Found ${offers.length} offers for OPENAI`)
}The API determines side automatically based on the offer's base token:
Leverage ranges from 1.1x to the offer's maximum (up to ~12x depending on the pool). Higher leverage means higher potential returns but also higher liquidation risk.
Effective exposure = collateral × leverage Borrowed amount = collateral × (leverage - 1)
An "offer" is a liquidity pool with a specific base-quote token pair, interest rate, and leverage limit. Multiple offers can exist for the same token pair with different terms. Always pick the offer with the best rate and highest liquidity for the user's needs.
Before opening any position, search for available markets:
// Search by token name or symbol
const offers = await client.getOffers({ search: 'BTC' })
// Filter by side
const longOffers = await client.getOffers({ search: 'ETH', side: 'LONG' })
const shortOffers = await client.getOffers({ search: 'ETH', side: 'SHORT' })
// Get all available tokens
const tokens = await client.getTokens()
// Each offer includes:
// - offerPublicKey (needed for opening position)
// - baseToken { symbol, mint, decimals, priceUsd, logoUri }
// - quoteToken { symbol, mint, decimals, priceUsd }
// - side: 'LONG' | 'SHORT'
// - maxLeverage: number
// - interestRate: number (annual %)
// - totalLiquidity: string (available to borrow)Always quote before opening to show the user expected output:
const quote = await client.getOpenQuote({
offerPublicKey: offer.address,
userPublicKey: walletAddress,
collateralAmount: '1000000000', // 1 SOL in lamports
leverage: 3,
slippageBps: 50,
})
// quote returns:
// - expectedOutput: tokens received
// - priceImpact: percentage
// - fees: breakdown of all fees
// - liquidationPrice: price at which position gets liquidatedimport { VersionedTransaction } from '@solana/web3.js'
import bs58 from 'bs58'
// Get MEV protection tip
const { tipLamports } = await client.getTipFloor()
// BuildAI agent skills for Solana development — DeFi protocols, infrastructure, security, and more.
Repo: sendaifun/skills
Reverse-engineer any motion reference (a video from X/Twitter, Dribbble, a screen recording, a GIF) into production animation code through frame-level…
Build and debug encrypted Solana applications with Arcium — data stays private during computation, no single party sees it. Use when writing Arcis circuits…
Complete Birdeye API integration for real-time DeFi data across Solana and 15 other chains. Use for token prices, OHLCV charts, market discovery, on-chain…
Build on Solana with Carbium infrastructure — bare-metal RPC, Standard WebSocket pubsub, gRPC Full Block streaming (~22ms), DEX aggregation via CQ1 engine…
Complete CoinGecko Solana API integration for token prices, DEX pool data, OHLCV charts, trades, and market analytics. Use for building trading bots, portfolio…
Crypto Twitter intelligence and alpha research. Search X/Twitter for real-time crypto narratives, trending tokens, yield strategies, smart money signals, and…