Python SDK for interacting with the PumpSwap on Solana blockchain. Simplifies buying, selling, token price retrieval, and pool data access.
PumpSwap SDK
A Python SDK for interacting with the PumpSwap decentralized exchange (DEX) on the Solana blockchain. This SDK simplifies buying, selling, token price retrieval, and pool data access on the PumpSwap platform, allowing developers to integrate Solana-based trading into their applications with ease.
Features
- Buy and Sell Tokens: Easily interact with PumpSwap’s liquidity pools to buy and sell tokens.
- Pool Analytics: Detailed liquidity pool statistics
- Price Retrieval: Fetch the current price of a token in the market.
- Transaction Handling: Handle transactions securely with support for signing and sending transactions.
- Solana Blockchain Integration: Built specifically for Solana, leveraging libraries like
solanaandsolders.
Installation
You can install the PumpSwap SDK using Poetry or pip.
Using Poetry
poetry add pumpswap-sdk
Using pip
pip install pumpswap-sdk
Setup
Before using the SDK, create a .env file in your project root with the following environment variables:
HTTPSRPCENDPOINT=yourrpcurl_here
BUY_SLIPPAGE=0.3 # Example: 0.3 means 0.3% slippage tolerance
SELL_SLIPPAGE=5 # Example: 5 means 5% slippage tolerance
SWAPPRIORITYFEE=1500000
Example .env:
HTTPSRPCENDPOINT=https://api.mainnet-beta.solana.com
BUY_SLIPPAGE=0.3 # Example: 0.3 means 0.3% slippage tolerance
SELL_SLIPPAGE=5 # Example: 5 means 5% slippage tolerance
SWAPPRIORITYFEE=1500000
Usage
Here’s how to get started with the PumpSwap SDK in your Python project.
- Initialize the SDK
from pumpswap_sdk import PumpSwapSDK
from solders.pubkey import Pubkey
Initialize the SDK
sdk = PumpSwapSDK()
Example data
mint = "EiKZAWphC65hFKz9kygWgKGcRZUGgdMmH2zSPtbGpump"
userprivatekey = "yourprivatekey_here"
quoteaccountpubkey = Pubkey.fromstring("quoteaccountpublickey")
- Buy Tokens
# Buy tokens
sol_amount = 0.0001 # Amount of SOL you want to spend
result = await sdk.buy(mint, solamount, userprivate_key)
print(result)
- Sell Tokens
# Sell tokens
token_amount = 10.0 # Amount of tokens you want to sell
result = await sdk.sell(mint, tokenamount, userprivate_key)
print(result)
- Get Token Price
# Get the price of a token
tokenprice = await sdk.gettoken_price(mint)
print(f"Token Price: {token_price}")
Development
If you want to contribute to the SDK or run tests locally, follow these steps:
- Clone the repository:
git clone https://github.com/yourusername/pumpswap-sdk.git
cd pumpswap-sdk
- Install dependencies:
poetry install
- Run tests:
pytest, use the following command:
poetry run pytest
- Build the package:
poetry build
License
This project is licensed under the MIT License - see the LICENSE file for details.
Contact
For more information, or if you have any questions, feel free to contact the author:
- Email: SajadSolidity@gmail.com