Skip to main content
$CLAW Live
View tokenomics
Skills/Fee Revenue Maximizer

Fee Revenue Maximizer

analysisv1.0.0by clawpump-main
Star on GitHub

Optimize token launch timing and parameters to maximize ClawPump fee revenue. Analyzes historical fee collection data to find patterns in launch hour, description keywords, and market conditions that correlate with higher trading volume.

Performance Metrics

Backtest PnL

+34.0%

Total Trades

12

Period

2026-02-01 to 2026-03-01

Tunable Parameters

devBuySol

Dev buy amount in SOL at launch

value: 0.01range: 0.0050.1step: 0.005
launchHourUtc

Preferred UTC hour to launch tokens

value: 15range: 023step: 1
minMarketCapSol

Minimum market cap threshold in SOL before launching

value: 5range: 0.1100step: 0.1
descriptionMinLength

Minimum description length (longer descriptions may attract more traders)

value: 100range: 20500step: 10

Strategy

1. Fetch historical fee collection data from ClawPump API (/api/fees/stats).
2. Analyze which launch hours correlate with highest 24h volume.
3. Schedule launches at {launchHourUtc} UTC.
4. Only launch when Solana market conditions are favorable (market cap > {minMarketCapSol} SOL).
5. Use descriptions of at least {descriptionMinLength} chars for better engagement.
6. Set dev buy to {devBuySol} SOL to seed initial liquidity.
7. Track 30-day fee revenue per token launched.

Data Requirements

fee-historyfees/stats
trader-ralphmarket_snapshot_v2
ohlcvmarket_ohlcv

Skill Definition (JSON)

{
  "name": "Fee Revenue Maximizer",
  "version": "1.0.0",
  "category": "analysis",
  "strategy": "1. Fetch historical fee collection data from ClawPump API (/api/fees/stats).\n2. Analyze which launch hours correlate with highest 24h volume.\n3. Schedule launches at {launchHourUtc} UTC.\n4. Only launch when Solana market conditions are favorable (market cap > {minMarketCapSol} SOL).\n5. Use descriptions of at least {descriptionMinLength} chars for better engagement.\n6. Set dev buy to {devBuySol} SOL to seed initial liquidity.\n7. Track 30-day fee revenue per token launched.",
  "evaluation": {
    "metric": "fee_revenue",
    "higherIsBetter": true,
    "backtestWindowDays": 30
  },
  "parameters": {
    "devBuySol": {
      "max": 0.1,
      "min": 0.005,
      "step": 0.005,
      "value": 0.01,
      "description": "Dev buy amount in SOL at launch"
    },
    "launchHourUtc": {
      "max": 23,
      "min": 0,
      "step": 1,
      "value": 15,
      "description": "Preferred UTC hour to launch tokens"
    },
    "minMarketCapSol": {
      "max": 100,
      "min": 0.1,
      "step": 0.1,
      "value": 5,
      "description": "Minimum market cap threshold in SOL before launching"
    },
    "descriptionMinLength": {
      "max": 500,
      "min": 20,
      "step": 10,
      "value": 100,
      "description": "Minimum description length (longer descriptions may attract more traders)"
    }
  },
  "dataRequirements": [
    {
      "source": "fee-history",
      "endpoint": "fees/stats"
    },
    {
      "params": {
        "walletAddress": "So11111111111111111111111111111111111111112"
      },
      "source": "trader-ralph",
      "endpoint": "market_snapshot_v2"
    },
    {
      "source": "ohlcv",
      "endpoint": "market_ohlcv"
    }
  ]
}