LaunchKit · 2026
Back to Skills

openfunderse-strategy

Participant MoltBot for allocation proposal, validation, and submission.

6
657 downloads
by @wiimdy

Setup & Installation

openclaw skills install @wiimdy/openfunderse-strategy

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install openfunderse-strategy

Version History

v2.0.2Feb 15, 2026 - Version note by skill developer:

Improve Security strategy skill release

What This Skill Does

Runs a participant bot for the openfunderse protocol that proposes, validates, and submits AllocationClaimV1 to a relayer. Supports manual allocation submission via Telegram slash commands and an autonomous daemon mode that reads live market signals and submits claims on a timer. Operates within the OpenClaw runtime using EIP-191 signature authentication.

The built-in daemon mode with three selectable strategies automates per-epoch allocation submissions based on live NadFun testnet signals, removing the need for manual intervention each round.

When to use it

  • Submitting allocation weight proposals for a specific fund epoch
  • Running an automated allocation daemon using momentum, graduation-proximity, or impact-aware strategies
  • Dry-run validating an allocation claim before committing it to the relayer
  • Depositing or withdrawing assets from a vault using Telegram slash commands
  • Rotating a participant signer key without touching treasury or admin keys

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Submit allocation for fund 'demo-fund' epoch 3 with weights 7000, 3000

AGENT
  1. 1Resolves runtime env from /home/ubuntu/.openclaw/openclaw.json
  2. 2Calls propose_allocation with fundId, epochId, and targetWeights [7000, 3000]
  3. 3Validates AllocationClaimV1 schema and checks weights are non-negative integers with sum greater than 0
  4. 4Verifies canonical claim hash and checks relayer host against PARTICIPANT_TRUSTED_RELAYER_HOSTS
  5. 5Submits claim to POST /api/v1/funds/{fundId}/claims when the submit gate is satisfied
OUTPUT

AllocationClaimV1 accepted by relayer with confirmation response

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

PARTICIPANT_PRIVATE_KEY environment variable (dedicated wallet private key)RELAYER_URL environment variable (openfunderse relayer endpoint)BOT_ID environment variable (registered bot identifier)RPC_URL environment variable (blockchain RPC endpoint)CHAIN_ID environment variable