Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Kalshi Eth Gas Correlation Trader

v1.0.5

Trades ETH price markets on Kalshi using on-chain gas prices as a bullish/bearish signal. High gas = strong demand = bullish for ETH. Requires SIMMER_API_KEY...

0· 96·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for diagnostikon/kalshi-eth-gas-correlation-trader.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Kalshi Eth Gas Correlation Trader" (diagnostikon/kalshi-eth-gas-correlation-trader) from ClawHub.
Skill page: https://clawhub.ai/diagnostikon/kalshi-eth-gas-correlation-trader
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install kalshi-eth-gas-correlation-trader

ClawHub CLI

Package manager switcher

npx clawhub@latest install kalshi-eth-gas-correlation-trader
Security Scan
Capability signals
CryptoRequires wallet
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Pending
View report →
OpenClawOpenClaw
Suspicious
medium confidence
!
Purpose & Capability
The skill's stated purpose (trade Kalshi ETH markets using on-chain gas signals) aligns with the code (imports simmer_sdk, uses SimmerClient, market discovery, trade execution). However registry metadata at the top of the report claimed 'Required env vars: none' while SKILL.md and clawhub.json both require SIMMER_API_KEY and SOLANA_PRIVATE_KEY — this inconsistency is concerning. Requiring a Solana private key for Kalshi trading is unusual (Kalshi is a centralized prediction market); the SKILL.md claims live execution uses 'DFlow/Solana', which could explain the Solana key but the relationship should be clearly documented and audited before providing keys.
Instruction Scope
SKILL.md gives concrete trading instructions, defaults to dry-run, and requires live mode to execute real trades. Instructions and code focus on market discovery, gas regime classification and trading; they reference configuration via simmer_sdk.skill.load_config which may write local config. The skill also infers gas from market text if direct gas feeds are not integrated (a heuristic). No instructions in SKILL.md or visible code request unrelated system files or network exfiltration, but the skill does ask for and will use high-value credentials for live trading.
Install Mechanism
There is no custom install spec; the skill is instruction- and code-based and relies on the simmer-sdk Python package (declared in SKILL.md and clawhub.json). Installing a PyPI package is expected for this functionality. No arbitrary downloads, URL shorteners, or extract/install directives were present.
!
Credentials
The skill requires SIMMER_API_KEY (expected) and SOLANA_PRIVATE_KEY (high-value). A Solana private key grants on-chain signing authority and custody of funds — this is a disproportionate and sensitive permission unless you understand why it is needed (SKILL.md claims DFlow/Solana for live execution). Additional environment variables read by the code include AUTOMATON_MAX_BET, TRADING_VENUE and many SIMMER_ETH_* tunables (declared in clawhub.json). The mismatch between the registry's 'no required env vars' and the actual required credentials is a red flag.
Persistence & Privilege
always:false (good). The skill is automaton-managed with an entrypoint (trader.py), meaning it can be run by the platform's automaton system but not forced into every agent run. The code uses simmer_sdk.skill.load_config/update_config/get_config_path which may persist config to disk under the skill's config path — this is expected for a trading skill but you should review where config and any cached credentials are stored. Autonomous invocation is allowed by default (normal), so be cautious when enabling live mode.
Scan Findings in Context
[no_pre-scan-injection-signals] expected: The static pre-scan reported no injection signals. That does not imply safety — the code is present and should be reviewed manually (especially handling of private keys and network calls).
What to consider before installing
This skill appears to implement the described gas-based Kalshi trading strategy, but there are two things to be careful about: (1) the skill requires a SOLANA_PRIVATE_KEY — a high-value credential that allows signing on-chain transactions — even though Kalshi is a centralized market; only provide such a key if you understand and trust the 'DFlow/Solana' execution path and have audited simmer-sdk and trader.py. (2) The registry metadata is inconsistent about required env vars; treat that as a sign to inspect the code and simmer-sdk repository yourself. Recommendations: run the skill in dry-run only, review the full trader.py and simmer-sdk source, run in an isolated environment, do not put live private keys into shared agents/accounts, and prefer least-privilege keys or testnet keys until you fully audit the integration.

Like a lobster shell, security has layers — review code before you run it.

latestvk9740t2sp5c06ny3vezg8az76s84724r
96downloads
0stars
6versions
Updated 3w ago
v1.0.5
MIT-0

Kalshi ETH Gas Correlation Trader

This is a template. The default signal uses gas price regimes as a directional indicator -- remix it with live Etherscan gas API, EIP-1559 base fee tracking, or L2 activity metrics. The skill handles all the plumbing (market discovery, trade execution, safeguards). Your agent provides the alpha.

Strategy Overview

High on-chain gas prices indicate strong demand for Ethereum block space (DeFi activity, NFT mints, token launches). This demand correlates positively with ETH price. This skill classifies gas into regimes and applies a directional bias to ETH price market probabilities.

Key advantages:

  • Leading indicator -- gas spikes often precede price moves
  • On-chain verifiable -- gas data is public and real-time
  • Regime-based -- avoids noise by classifying into discrete regimes

Signal Logic

Gas Regime Model

  1. Classify current gas price into regime (extreme/high/normal/low/dead)
  2. Map regime to directional bias (+15% to -10%)
  3. Apply bias to each ETH price market probability
  4. Trade when |fair - market| >= entry_edge

Gas Regimes

RegimeGas (gwei)BiasInterpretation
Extreme>100+15%Very bullish
High>50+8%Bullish
Normal>200%Neutral
Low>10-5%Bearish
Dead<10-10%Very bearish

Remix Ideas

  • Live Etherscan API: Real-time gas price feed instead of estimates
  • EIP-1559 base fee: More accurate demand metric post-merge
  • L2 activity: Track Arbitrum/Optimism activity for full picture
  • DeFi TVL overlay: Combine gas with total value locked trends

Risk Parameters

ParameterDefaultNotes
Entry edge10%Min model-vs-market divergence to trade
Exit threshold45%Sell when position price reaches this
Max position size$5.00 USDCPer market
Max trades per run3Rate limiting
Gas high threshold50 gweiAbove this = high demand regime
Gas low threshold10 gweiBelow this = dead regime

Installation & Setup

clawhub install kalshi-eth-gas-correlation-trader

Requires: SIMMER_API_KEY and SOLANA_PRIVATE_KEY environment variables.

Cron Schedule

Cron is set to null -- the skill does not run on a schedule until you configure it in the Simmer UI.

Safety & Execution Mode

The skill defaults to dry-run mode. Real trades only execute when --live is passed explicitly.

ScenarioModeFinancial risk
python trader.pyDry runNone
Cron / automatonDry runNone
python trader.py --liveLive (Kalshi via DFlow)Real USDC

Required Credentials

VariableRequiredNotes
SIMMER_API_KEYYesTrading authority. Treat as a high-value credential.
SOLANA_PRIVATE_KEYYesBase58-encoded Solana private key for live trading.

Tunables (Risk Parameters)

VariableDefaultPurpose
SIMMER_ETH_GAS_ENTRY_EDGE0.10Min divergence to trigger trade
SIMMER_ETH_GAS_EXIT_THRESHOLD0.45Sell position when price reaches this level
SIMMER_ETH_GAS_MAX_POSITION_USD5.00Max USDC per trade
SIMMER_ETH_GAS_MAX_TRADES_PER_RUN3Max trades per execution cycle
SIMMER_ETH_GAS_SLIPPAGE_MAX0.15Max slippage before skipping (15%)
SIMMER_ETH_GAS_MIN_LIQUIDITY0Min market liquidity USD (0 = disabled)
SIMMER_ETH_GAS_HIGH_GWEI50Gas threshold for high-demand regime
SIMMER_ETH_GAS_LOW_GWEI10Gas threshold for dead regime

Dependency

simmer-sdk is published on PyPI by Simmer Markets.

Review the source before providing live credentials if you require full auditability.

Comments

Loading comments...