Skip to content

Sajad-Salehi/PumpSwap_SDK

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 solana and solders.

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:

HTTPS_RPC_ENDPOINT=your_rpc_url_here
BUY_SLIPPAGE=0.3  # Example: 0.3 means 0.3% slippage tolerance
SELL_SLIPPAGE=5   # Example: 5 means 5% slippage tolerance
SWAP_PRIORITY_FEE=1500000

Example .env:

HTTPS_RPC_ENDPOINT=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
SWAP_PRIORITY_FEE=1500000

Usage

Here’s how to get started with the PumpSwap SDK in your Python project.

  1. Initialize the SDK
from pumpswap_sdk import PumpSwapSDK
from solders.pubkey import Pubkey

# Initialize the SDK
sdk = PumpSwapSDK()

# Example data
mint = "EiKZAWphC65hFKz9kygWgKGcRZUGgdMmH2zSPtbGpump"
user_private_key = "your_private_key_here"
quote_account_pubkey = Pubkey.from_string("quote_account_public_key")
  1. Buy Tokens
# Buy tokens
sol_amount = 0.0001  # Amount of SOL you want to spend
result = await sdk.buy(mint, sol_amount, user_private_key)

print(result)
  1. Sell Tokens
# Sell tokens
token_amount = 10.0  # Amount of tokens you want to sell
result = await sdk.sell(mint, token_amount, user_private_key)

print(result)
  1. Get Token Price
# Get the price of a token
token_price = await sdk.get_token_price(mint)

print(f"Token Price: {token_price}")

Development

If you want to contribute to the SDK or run tests locally, follow these steps:

  1. Clone the repository:
git clone https://github.com/yourusername/pumpswap-sdk.git
cd pumpswap-sdk
  1. Install dependencies:
poetry install
  1. Run tests:

To run tests with pytest, use the following command:

poetry run pytest
  1. Build the package:

To build the SDK package locally:

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:

About

Python SDK for interacting with the PumpSwap on Solana blockchain. Simplifies buying, selling, token price retrieval, and pool data access.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages