Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/0xW1re/solvedocs/llms.txt

Use this file to discover all available pages before exploring further.

The standard model receives a 68-feature vector assembled at inference time from wallet profiles, signal-level event data, creator intelligence, token state, social graph analysis, and market context. Every feature is documented below with its source and what it represents.
Features must be assembled in exactly the order defined by the FEATURE_ORDER constant in the codebase. The metadata file for each .onnx model contains the ordered feature list used during training. A mismatch in feature ordering silently corrupts every prediction.

Wallet point-in-time (4 features)

These are the wallet’s stats as they were when the signal fired — not current values. Using point-in-time snapshots is what prevents lookahead bias: the model sees only the information that was available at the moment of the trading decision.
FeatureDescription
alpha_score0–100 composite quality score at time of signal
wallet_graduation_rateShare of tokens bought that graduated, at signal time
wallet_avg_buy_rankTypical buy rank at signal time (lower = earlier entry)
wallet_trades_atTotal trades observed at signal time

Wallet behavioural (15 features)

Computed from the wallet’s full trading history by FeatureComputer, rolled up on a 30-minute cadence.
FeatureDescription
tokens_tradedTotal unique tokens bought
pct_top10_entriesFraction of buys that were in the first 10 wallets
avg_seconds_after_creationAverage delay between token creation and the wallet’s buy
pct_buys_under_60sFraction of buys within 60 seconds of token creation
pct_buys_under_300sFraction of buys within 300 seconds of token creation
avg_sol_per_buyMean buy size in SOL
median_sol_per_buyMedian buy size in SOL
sol_size_stddevStandard deviation of buy sizes (high = inconsistent sizing)
max_single_buyLargest single buy ever recorded
avg_hold_time_secondsAverage time between buy and sell
pct_quick_flipsFraction of positions closed within 5 minutes
pct_diamond_handsFraction of positions held over 24 hours
unique_creators_tradedNumber of distinct token creators engaged with
pct_repeat_creator_buysFraction of buys on tokens from already-seen creators
active_days_30dDistinct active days in the last 30 days

Wallet returns (11 features)

Computed from PnlCalculator and PeakTracker output across the wallet’s full trade history.
FeatureDescription
graduation_rateShare of bought tokens that graduated
win_rateShare of closed positions in profit
sol_weighted_returnSOL-weighted average return across all positions
avg_realized_multipleAverage exit multiple
avg_peak_multipleAverage of peak prices seen during hold
capture_efficiencyRatio of realised multiple to peak multiple (0–1)
profit_factorTotal profit divided by total loss
return_stddevStandard deviation of per-trade returns
avg_loss_pct_on_losersAverage loss magnitude on losing trades
avg_gain_pct_on_winnersAverage gain magnitude on winning trades
is_bot1 if the wallet has been classified as a bot

Wallet context (1 feature)

FeatureDescription
wallet_age_daysDays since the wallet was first observed by the pipeline

Signal-level (10 features)

These describe the specific signal event — not the wallet’s history. They capture the conditions at the exact moment of the tracked buy.
FeatureDescription
buy_rankThis wallet’s buy rank on this token
sol_amountSize of this specific buy in SOL
curve_pct_at_buyBonding curve fill percentage at time of buy (0–1)
curve_solCurve SOL reserves at time of buy
velocity_buys_60sBuy count on this token in the last 60 seconds
velocity_buys_300sBuy count on this token in the last 300 seconds
sol_volume_60sSOL volume on this token in the last 60 seconds
buy_rank_percentileBuy rank divided by unique buyer count (0–1)
sol_vs_wallet_avgThis buy’s SOL amount vs the wallet’s average (1.0 = typical)
token_age_at_signalToken age in seconds at time of signal

Temporal (3 features)

FeatureDescription
buy_sell_ratioTotal buys divided by (total sells + 1) at time of signal
hour_of_dayUTC hour of the signal (0–23)
day_of_weekDay of week (0 = Sunday, 6 = Saturday)

Creator intelligence (8 features)

Sourced from CreatorRiskScorer, which aggregates historical data across all tokens created by this address.
FeatureDescription
creator_graduation_rateThis token creator’s historical graduation rate
creator_rug_rateQuick-death rate across this creator’s tokens
creator_risk_score0–100 composite creator risk score
creator_tokens_createdTotal tokens ever created by this creator
creator_serial_velocityTokens created per day over the last 30 days
creator_avg_insider_pctAverage insider presence across the creator’s tokens
creator_avg_bot_pctAverage bot buyer percentage across the creator’s tokens
creator_is_serial1 if the creator has been classified as a serial creator

Token state (7 features)

Current on-chain and risk state of the token at the moment of the signal.
FeatureDescription
token_unique_buyersUnique buyers on this token so far
token_total_buysTotal buy transactions
token_total_sellsTotal sell transactions
token_risk_scoreToken-level risk score (0–100)
token_bot_buyer_pctFraction of buyers classified as bots
token_top10_concentrationShare of token supply held by the top 10 wallets
token_bundle_confidenceHighest bundle confidence score detected for this token

Lifecycle (1 feature)

FeatureDescription
lifecycle_state_encodedToken lifecycle state encoded as an integer (0 = launch … 7 = graduated)

Social graph (5 features)

Sourced from the CoOccurrence and GraphBuilder services, which maintain a wallet co-buy frequency graph updated hourly.
FeatureDescription
cluster_sizeNumber of wallets in this wallet’s co-occurrence cluster
co_occurrence_max_scoreHighest co-occurrence edge score for this wallet
cluster_avg_grad_rateAverage graduation rate of wallets in the same cluster
tracked_wallets_already_inCount of tracked wallets already holding this token
is_first_tracked_buy1 if this is the first tracked wallet to buy this token

Market context (2 features)

Market-wide signals that capture the current environment at the time of the signal.
FeatureDescription
tokens_created_last_hourMarket-wide token creation rate over the last hour
rolling_graduation_rate_2hMarket-wide graduation rate over the last 2 hours

Default values

Every feature has a carefully chosen default value applied when data is unavailable — for example, a wallet that has never been seen before, or a creator with no prior tokens. Defaults represent a neutral, unknown entity in a neutral market — not a worst-case assumption, which would introduce systematic bias toward rejecting unknown wallets. The model was trained with these same defaults applied during training wherever data was missing, so it handles them correctly in production. For example: wallet_avg_buy_rank defaults to 50 (median rank), avg_sol_per_buy defaults to 0.5 SOL (typical size), and lifecycle_state_encoded defaults to -1 (unknown state).

Build docs developers (and LLMs) love