Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.2] - 2026-01-29

### Changed
- **Pump.fun data source migrated to PumpPortal** - The old Pump.fun API endpoints are dead
- Now uses PumpPortal WebSocket API (`wss://pumpportal.fun/api/data`)
- Real-time streaming for new tokens, trades, and migrations
- Free tier: Bonding curve data (no API key needed)
- BYOK support: Set `PUMPPORTAL_API_KEY` for PumpSwap data after migration
- Backward compatible: `PumpFunClient` alias still works

### Fixed
- **Dead API endpoints removed** - Removed non-functional `frontend-api.pump.fun` and Heroku endpoints
- **Added `websockets` dependency** - Required for PumpPortal WebSocket connections

## [0.3.1] - 2026-01-29

### Added
Expand Down Expand Up @@ -270,7 +284,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

---

[Unreleased]: https://github.com/BAGWATCHER/SlopeSniper/compare/v0.3.03...HEAD
[Unreleased]: https://github.com/BAGWATCHER/SlopeSniper/compare/v0.3.2...HEAD
[0.3.2]: https://github.com/BAGWATCHER/SlopeSniper/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/BAGWATCHER/SlopeSniper/compare/v0.3.03...v0.3.1
[0.3.03]: https://github.com/BAGWATCHER/SlopeSniper/compare/v0.3.02...v0.3.03
[0.3.02]: https://github.com/BAGWATCHER/SlopeSniper/compare/v0.3.0...v0.3.02
[0.3.0]: https://github.com/BAGWATCHER/SlopeSniper/compare/v0.2.92...v0.3.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
[![Version](https://img.shields.io/badge/version-0.3.1-green.svg)](https://github.com/BAGWATCHER/SlopeSniper/releases)
[![Version](https://img.shields.io/badge/version-0.3.2-green.svg)](https://github.com/BAGWATCHER/SlopeSniper/releases)

[Quick Start](#-quick-start) · [Features](#-features) · [Documentation](#-documentation) · [Contributing](#-contributing)

Expand Down
2 changes: 1 addition & 1 deletion docs/MOLTBOT_COMPATIBILITY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SlopeSniper + MoltBot Compatibility Assessment

*Created: 2026-01-28 | Updated: 2026-01-29 | Version: 0.3.1*
*Created: 2026-01-28 | Updated: 2026-01-29 | Version: 0.3.2*

## Executive Summary

Expand Down
3 changes: 2 additions & 1 deletion mcp-extension/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "slopesniper-mcp"
version = "0.3.1"
version = "0.3.2"
description = "SlopeSniper MCP Server - Safe Solana Token Trading"
requires-python = ">=3.10"
dependencies = [
Expand All @@ -11,6 +11,7 @@ dependencies = [
"fastapi>=0.109.0",
"uvicorn>=0.27.0",
"cryptography>=42.0.0",
"websockets>=16.0",
]

[project.scripts]
Expand Down
2 changes: 1 addition & 1 deletion mcp-extension/src/slopesniper_skill/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# Version is the single source of truth - update here for releases
# Follow semantic versioning: MAJOR.MINOR.PATCH
# Beta versions use 0.x.x (0.MINOR.PATCH)
__version__ = "0.3.1"
__version__ = "0.3.2"

from .tools import (
export_wallet,
Expand Down
Loading
Loading