Python SDK + optional CLI for Pump.fun’s PumpSwap AMM on Solana
Project description
PumpSwapAMM
Python SDK + CLI client for PumpSwap AMM on Solana. Trade, create, and manage - Pools, and Tokens. The module implements ways to fetch pool keys and price or account reserves, deriving addresses, finding pools and more...
Tip wallet: 3oFDwxVtZEpSGeNgdWRiJtNiArv4k9FiMsMz3yjudgeS, Thanks đź’™
Discord: FLOCK4H.CAVE, Telegram: FLOCK4H.CAVE
Telegram private handle: @dubskii420
Setup
Most convenient:
$ pip install PumpSwapAMM
If above fails for any reason:
$ git clone https://github.com/FLOCK4H/PumpSwapAMM
$ cd PumpSwapAMM
$ pip install .
[NEW] PumpSwapCLI
- Create tokens via Metaplex, mint & modify authorities via user-friendly CLI application
- Deploy and manage PumpSwap Liquidity Pools including:
- Withdraw
- Deposit
- Create_Pool
- Trade on PumpSwap: buy and sell tokens
How to setup:
$ pip install PumpSwapAMMfor quick install of the CLI + library- Upload metadata for the token yourself/ use existing, or setup an account on Bunny.net (1$/month) and create a storage zone + pull zone
- Make sure to create .env file with these fields:
ACCESS_KEY=bunny-access-key
STORAGE_ZONE_NAME=bunny-storage-zone-name
PRIVATE_KEY=your-solana-private-key
RPC_URL="https://mainnet.helius-rpc.com/?api-key=your-api-key"
REGION=
PULL_ZONE_NAME=yourzonename
Usage
Check out the example.py and example_pool.py scripts 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]
(method) def derive_pool_address(
creator: Pubkey,
base_mint: Pubkey,
quote_mint: Pubkey,
index: int = 0
) -> Pubkey
(method) def create_pool(
base_mint: Pubkey,
base_amount_tokens: float,
quote_amount_sol: float,
decimals_base: int = 6,
index: int = 0,
fee_sol: float = 0.0005,
mute: bool = False
) -> Coroutine[Any, Any, bool]
(method) def withdraw(
pool_data: dict,
withdraw_pct: float,
fee_sol: float = 0.0003,
mute: bool = False
) -> Coroutine[Any, Any, bool]
(method) def deposit(
pool_data: dict,
base_amount_tokens: float,
slippage_pct: float = 1,
fee_sol: float = 0.0003,
sol_cap: float | None = None,
mute: bool = False
) -> Coroutine[Any, Any, bool]
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,
)
import asyncio
from solders.pubkey import Pubkey # type: ignore
from solana.rpc.async_api import AsyncClient
from solders.keypair import Keypair # type: ignore
from solana.rpc.commitment import Processed
from PumpSwapAMM import PumpSwap, fetch_pool, WSOL_MINT
from PumpSwapAMM.fetch_reserves import fetch_pool_base_price
PRIVATE_KEY = "YOUR_PRIVATE_KEY_HERE"
RPC_ENDPOINT = "ANY_RPC_ENDPOINT" # e.g. "https://mainnet.helius-rpc.com/?api-key=YOUR_API_KEY_HERE"
async_client = AsyncClient(RPC_ENDPOINT)
async_payer_keypair = Keypair.from_base58_string(PRIVATE_KEY)
async def main():
"""
Every PumpSwapAMM function takes in 'mute' argument,
which is set to False by default.
If set to True, it will not print any logs.
"""
client = PumpSwap(async_client, signer=async_payer_keypair)
pool_addr = None
mint_id = "8oubm4nEgTFFa6SQWUoav9hpGt6MCrWQt5yXUBWEpump"
# 1. create a brand-new pool
# Comment it out when pool is already created and you just want to withdraw/ deposit (like with the one above)
pool_addr = await client.create_pool(
base_mint = Pubkey.from_string(mint_id),
base_amount_tokens = 990_000_000, # How many tokens to deposit, in this case 990_000_000 equals to 990M tokens
quote_amount_sol = 0.01, # How much SOL to deposit
decimals_base = 6,
index = 0,
fee_sol = 0.001,
)
if not pool_addr:
return
print("Pool PDA:", pool_addr)
# Here stop the comment if so
if not pool_addr:
# If we didnt create the pool in this session we can still derive the pool address
pool_addr = client.derive_pool_address(
creator=async_payer_keypair.pubkey(),
base_mint=Pubkey.from_string(mint_id),
quote_mint=WSOL_MINT
)
pool_addr = str(pool_addr)
print("Pool PDA:", pool_addr)
pool_keys = await fetch_pool(pool_addr, async_client)
_, base_bal, quote_bal = await fetch_pool_base_price(pool_keys, async_client)
# Compose pool data
pool_data = {
"pool_pubkey": Pubkey.from_string(pool_addr),
"token_base": Pubkey.from_string(pool_keys["base_mint"]),
"token_quote": Pubkey.from_string(pool_keys["quote_mint"]),
"lp_mint": pool_keys["lp_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_bal,
"quote_balance_sol": quote_bal,
"decimals_base": dec_base,
}
# fetch decimals of the token
mint_info = await async_client.get_account_info_json_parsed(
Pubkey.from_string(mint_id),
commitment=Processed
)
if not mint_info:
print("Error: Failed to fetch mint info (tried to fetch token decimals).")
return
dec_base = mint_info.value.data.parsed['info']['decimals']
# 2. Deposit tokens into the pool if the pool is already created
# await client.deposit(
# pool_data = pool_data,
# base_amount_tokens = 2_000_000, # <- NOT SOL any more
# slippage_pct = 1.0,
# fee_sol = 0.0002,
# sol_cap = 0.1
# )
print("Waiting for 15 seconds to withdraw...")
await asyncio.sleep(15)
# 3. Withdraw reserves from the pool
await client.withdraw(
pool_data = pool_data,
withdraw_pct = 100,
fee_sol = 0.0002,
)
await client.close()
if __name__ == "__main__":
asyncio.run(main())
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.1.tar.gz.
File metadata
- Download URL: pumpswapamm-2.0.1.tar.gz
- Upload date:
- Size: 31.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
180cd51125515fa79756bb8453408ed190fab2335456e0b4ef7d8335596265a0
|
|
| MD5 |
476b31d2c55035607972b888ac230d38
|
|
| BLAKE2b-256 |
630fce954edde89d592a5cb84e54a14bf3cbcee6ee8c4ec3c7ea5381b2138900
|
File details
Details for the file PumpSwapAMM-2.0.1-py3-none-any.whl.
File metadata
- Download URL: PumpSwapAMM-2.0.1-py3-none-any.whl
- Upload date:
- Size: 34.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 |
7240d8cfb0c796da3a3ea27aa562c2d504ef954a402fffa2b8fb053d44de043c
|
|
| MD5 |
7529642a08bafb4983061630c835e533
|
|
| BLAKE2b-256 |
bb791260a673dfde1c55acf0b98c6b98909d0c8f8d6bc1b61e72f77b939dfc64
|