mktcat_bot.py — live terminal
next post in 03:00
Current token
$MKTCAT
BULLISH posting every 3 minutes
mktcat
Live feed — bot activity log
Buy $MKTCAT 𝕏 Twitter CA: click to copy when available
Bot stats — session
Total posts 0 since bot started
Green posts 0 bullish updates
Red posts / Burns 0 buys triggered
Total burned 0 $MKTCAT
0%burned this session
Bot uptime 00:00:00 and counting
Buy $MKTCAT →
// bot mechanics

The bot runs.
The game plays itself.

01 / ALWAYS ⏱️ Every 3 minutes

The bot fires on a 3-minute interval. No human input. No manual trigger. The cron job runs, the post goes out, the image gets attached.

02 / GREEN 📈 Price is up → Post it

Green candle detected. The bot posts a bullish $MKTCAT update with image. The streak counter increments. The cat is happy.

03 / RED 🔴 Price drops → Claim fees

Red detected. The bot claims all creator fees that have accumulated. No human touches the wallet. The contract handles it automatically.

04 / BURN 🔥 Buy → Burn → Post tx

Fees → buy $MKTCAT on market → send to dead wallet. The bot posts the burn transaction. Supply decreases. The cat gets rarer.

// burn logic

Red candle =
free burn.

Every sell, every dump, every paperhander directly funds a buy-and-burn. The mechanism is automatic. The more it dips, the more gets burned.

Creator fees accumulate with every transaction. When red is detected, 100% of accumulated fees are deployed as a market buy. Instant. Automatic. On-chain proof posted every time.

The bot posts the burn transaction publicly on Twitter. You can verify every single one. The supply decreases transparently, with receipts.

# mktcat_bot.py — burn logic

def check_and_act():
  price = get_price("$MKTCAT")
  prev  = get_last_price()

  if price >= prev:
      # green — just post
    post_update(
      status="🟢 BULLISH",
      img=gen_image(price)
    )

  else:
      # red — claim + burn
    fees = claim_creator_fees()
    tx   = buy_and_burn(fees)
    post_update(
      status="🔥 BURNED",
      tx=tx,
      amount=fees
    )

# runs every 3 minutes
schedule(check_and_act, 180)
// contract

$MKTCAT.

Solana mainnet. Bot-driven buy pressure on every red candle. Creator fees fund burns. The supply goes one way.

CA
click to select · solana mainnet · verified on-chain

mktcat

bot active · 3 min interval · red = burn
the game is live · the cat never stops

copied