woosh meteora
Manage Meteora Stake2Earn pool creation and post-launch token selling strategies.
This module contains commands to create locked pools, run smart-sell automation, and manually sell tokens from worker wallets.
All commands rely on properly configured pool_settings
, stake_settings
, or smart_sell_settings
blocks in your woosh.config
.
⚙️ Command: woosh meteora create-pool
Creates a Stake2Earn Memecoin Pool and locks it using your configured parameters.
Required Config Fields:
"pool_settings": {
"pool_token_percentage": 74,
"pool_sol_amount": 0.15,
"snipe_amount": 0.97,
"pool_lock_percentage": 100
},
"stake_settings": {
"maximum_stake_wallet": 100,
"unstake_lock_duration_in_hour": 48,
"full_unlock_fee_duration_in_day": 2,
"start_fee_distribution_in_sec": 60
}
Field Descriptions:
pool_token_percentage
: % of total token supply to deposit into the liquidity pool.pool_sol_amount
: Amount of SOL to pair with your token (use decimal, e.g.0.15
).snipe_amount
: Amount of SOL used for sniping the pool post-creation.pool_lock_percentage
: % of liquidity to permanently lock (100 = full lock).maximum_stake_wallet
: Max number of wallets allowed to stake tokens.unstake_lock_duration_in_hour
: Hours users must wait after initiating unstake.full_unlock_fee_duration_in_day
: Days before trading fees become claimable.start_fee_distribution_in_sec
: Interval (in seconds) for fee distribution visibility.
Usage:
woosh meteora create-pool
📊 Command: woosh meteora smart-sell
Automatically sells tokens when buy volume exceeds sell volume based on real-time trade tracking.
Required Config Fields:
"smart_sell_settings": {
"solana_tracker_api_key": "YOUR_API_KEY",
"token_address": "TOKEN_ADDRESS",
"pool_address": "POOL_ADDRESS",
"interval": 1,
"buy_volume_threshold": 20
}
Field Descriptions:
solana_tracker_api_key
: API key to fetch trading volume from Solana Tracker.token_address
: Your launched token’s address (get from Dexscreener).pool_address
: Your token’s pool address (get from Dexscreener).interval
: Seconds between trade volume checks.buy_volume_threshold
: % difference (e.g.,20
= 20%) of buy vs sell volume required to trigger sell.
💡 When threshold is met, tokens are sold from 4 random active worker wallets.
Usage:
woosh meteora smart-sell
🧾 Command: woosh meteora sell <percentage>
Manually sell a portion of token supply from 4 random active worker wallets. Useful for liquidity adjustments or partial exits.
Example:
To sell 5% of the total supply:
woosh meteora sell 5
💡 Ensure:
- Active worker wallets hold tokens from the launched pool.
- Each wallet has enough SOL to pay transaction fees.
🧠 Summary
Stake2Earn Pools (also known as StakeForFee
or feeFarm
) on Meteora allow token holders to stake and earn a share of trading fees.
Liquidity is permanently locked, and staking rewards are distributed based on activity and pool rules.
- Memecoin Pool: The main DEX pool with locked liquidity.
- Stake2Earn Vault: Fee-sharing vault for stakers.
For more information, refer to the Meteora Docs or community tutorials.