Skip to content
Source index synced with Binance Skills Hub

Smart money entry check

Reads a smart money buy event, refuses to act until the contract passes an audit and the pool is deep enough, then swaps inside your wallet limit.

Author
srgwdd
Version
v1.4.0
Updated
2026-08-14
Steps
4
Gates
3
01Sequence4 steps / 3 gates
  1. 1
    trading-signalSignals

    Pull buy events from tracked smart money wallets on BSC for the last 60 minutes.

    continue if max gain since trigger is under 40% and exit rate is under 25%

    otherwise Report the signal as late and stop.

  2. 2
    query-token-auditSecurity

    Audit the contract address carried by the signal.

    continue if no honeypot flag and token risk level is below 3

    otherwise Report the audit findings verbatim and stop. Do not swap.

  3. 3
    query-token-infoMarket data

    Read liquidity, holder count and 24h volume for the same address.

    continue if liquidity is above the floor set in the user config

    otherwise Report thin liquidity and stop.

  4. 4
    binance-agentic-walletWalletauth

    Quote the swap, then execute it at or below the configured slippage and daily limit.

    no gate on this step

02Rules
  • Every gate is a stop, not a warning. The agent does not swap on a failed audit.
  • Position size stays with the wallet skill. This build never overrides a daily limit.
03Triggerswhat makes the agent reach for this file
smart money just boughtshould I follow this whalecopy trade this signal
04The file60 lines
SKILL.md
---
name: smart-money-entry-check
description: >-
  Reads a smart money buy event, refuses to act until the contract passes an audit and the pool is deep enough, then swaps inside your wallet limit.
  Trigger on: smart money just bought, should I follow this whale, copy trade this signal.
---

# Smart money entry check

## PREREQUISITE

Install and authenticate these skills first:

- `trading-signal`
- `query-token-audit`
- `query-token-info`
- `binance-agentic-wallet`

If any of them is missing, say which one and stop. Do not improvise a replacement.

## SEQUENCE

### Step 1. `trading-signal`

Pull buy events from tracked smart money wallets on BSC for the last 60 minutes.

**Continue only if** max gain since trigger is under 40% and exit rate is under 25%.

**Otherwise:** Report the signal as late and stop.

### Step 2. `query-token-audit`

Audit the contract address carried by the signal.

**Continue only if** no honeypot flag and token risk level is below 3.

**Otherwise:** Report the audit findings verbatim and stop. Do not swap.

### Step 3. `query-token-info`

Read liquidity, holder count and 24h volume for the same address.

**Continue only if** liquidity is above the floor set in the user config.

**Otherwise:** Report thin liquidity and stop.

### Step 4. `binance-agentic-wallet`

Quote the swap, then execute it at or below the configured slippage and daily limit.

## RULES

- Every gate is a stop, not a warning. The agent does not swap on a failed audit.
- Position size stays with the wallet skill. This build never overrides a daily limit.

## OUTPUT

Report each step that ran, the gate result, and the step that stopped the sequence if one did.
Never report a step as done when its skill returned an error.
NextBuilds in the same areaAll builds