Python SDK + optional CLI for Pump.fun’s PumpSwap AMM on Solana
Project description
PumpSwapAMM
Python SDK + optional CLI for Pump.fun’s PumpSwap AMM on Solana
Trade, create, and manage - Pools and Tokens. The module implements ways to fetch pool keys and price or account reserves.
Tip wallet: 3oFDwxVtZEpSGeNgdWRiJtNiArv4k9FiMsMz3yjudgeS
Thanks đź’™
Discord: FLOCK4H.CAVE, Telegram: FLOCK4H.CAVE
Telegram private handle: @dubskii420
Setup
$ git clone https://github.com/FLOCK4H/PumpSwapAMM
$ cd PumpSwapAMM
$ pip install .
Usage
Check out the example.py script for a plug&play implementation
class PumpSwap(
async_client: AsyncClient,
signer: Keypair
)
(method) def buy(
pool_data: dict,
sol_amount: float,
slippage_pct: float,
fee_sol: float
) -> Coroutine[Any, Any, bool]
Args:
pool_data: dict
sol_amount: float
slippage_pct: float
fee_sol: float
Returns:
bool: True if successful, False otherwise
(method) def sell(
pool_data: dict,
sell_pct: float,
slippage_pct: float,
fee_sol: float
) -> Coroutine[Any, Any, bool]
Args:
pool_data: dict
sell_pct: float
slippage_pct: float
fee_sol: float
Returns:
bool: True if successful, False otherwise
(function) def fetch_pool(
pool: str,
async_client: AsyncClient
) -> Coroutine[Any, Any, dict[str, Any]]
(function) def fetch_pool_base_price(
pool_keys: Any,
async_client: Any
) -> Coroutine[Any, Any, tuple[Decimal, Any, Any] | None]
Examples
# 1) Initialize PumpSwap client
client = PumpSwap(async_client, signer=async_payer_keypair)
# Example pool: https://solscan.io/account/9NXBQSt63ZZcw3e4DhbDPGP2FjnwW3aDJWEXRwcGEsN3
pool = "9NXBQSt63ZZcw3e4DhbDPGP2FjnwW3aDJWEXRwcGEsN3" # Change this to the token pool address you want to buy
# 2) Fetch pool data
pool_keys = await fetch_pool(pool, async_client)
base_price, base_balance_tokens, quote_balance_sol = await fetch_pool_base_price(pool_keys, async_client)
decimals_base = 6 # Pump.fun mints got 6 decimals, otherwise it can be read from Pool Creation, or Mint Creation transaction
# 3) Prepare pool data
pool_data = {
"pool_pubkey": Pubkey.from_string(pool),
"token_base": Pubkey.from_string(pool_keys["base_mint"]),
"token_quote": Pubkey.from_string(pool_keys["quote_mint"]),
"pool_base_token_account": pool_keys["pool_base_token_account"],
"pool_quote_token_account": pool_keys["pool_quote_token_account"],
"base_balance_tokens": base_balance_tokens,
"quote_balance_sol": quote_balance_sol,
"decimals_base": decimals_base
}
await client.buy(
pool_data,
sol_amount=0.002,
slippage_pct=10,
fee_sol=0.0005,
)
await client.sell(
pool_data,
sell_pct=100,
slippage_pct=10,
fee_sol=0.0005,
)
Issues
- "get_account_info_json_parsed" may throw a 401 or 403 if you're using helius/ (any other triton) dedicated node or staked APIs
LICENSE
Standard MIT License
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pumpswapamm-2.0.0.tar.gz.
File metadata
- Download URL: pumpswapamm-2.0.0.tar.gz
- Upload date:
- Size: 29.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12c1b5e5e9a5267b089698c1900d87fc2c848d194218cbc2b669131c9d40a21e
|
|
| MD5 |
4465ada753f8b0f69c8883b0749bebf0
|
|
| BLAKE2b-256 |
3c8064b06c39a7a37226b885e719c56f498974ec327a07b4609eb2affb7391c1
|
File details
Details for the file PumpSwapAMM-2.0.0-py3-none-any.whl.
File metadata
- Download URL: PumpSwapAMM-2.0.0-py3-none-any.whl
- Upload date:
- Size: 32.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72f3bc92b98267244f510798375b58f58b78c668fe781718081856ed623c20c9
|
|
| MD5 |
bcbac399c299a6f2efd2186c2aeb5e6b
|
|
| BLAKE2b-256 |
171f6da3778bdef0216db966e457dc3c9fb37c0a4898d9c6ad15612d4c457782
|