No project description provided
Project description
easysolpay
One-line SOL transfer from JSON wallet files on Solana
A minimalist Python package that enables sending SOL (Solana's native token) from a JSON-formatted private key file (exported from wallets like Phantom, Solflare, Backpack, etc.) using a single function call.
Perfect for automation scripts, bots, CLI tools, testing utilities, or any scenario requiring simple programmatic SOL transfers.
Features
- Extremely simple API:
send_sol(json_path, to_address, amount_sol) - Automatically handles rent-exempt minimum balance for new/uninitialized accounts
- Uses modern VersionedTransaction (MessageV0)
- Built-in sender balance check before transaction
- Supports custom RPC endpoints (mainnet, devnet, testnet, private nodes)
- Configurable commitment level for confirmation
- Prints Solscan link and user-friendly messages
- Optional automatic adjustment for rent-exempt amount
Installation
From PyPI (recommended for end users)
pip install easysolpay
Quick Start
from easysolpay import send_sol
# Basic transfer
tx_signature = send_sol(
json_path="~/my-wallet.json",
to_address="9xY8zQw...RecipientPublicKeyHere",
amount_sol=0.42
)
print(f"Transaction sent: https://solscan.io/tx/{tx_signature}")
Sending to a new (uninitialized) account
# Small amount → automatically adjusted to rent-exempt minimum (~0.00089088 SOL)
send_sol(
json_path="wallet.json",
to_address="NewAccount11111111111111111111111111111",
amount_sol=0.0001, # will be raised if needed
# auto_adjust_for_rent=True # this is the default
)
Testing on devnet (highly recommended before mainnet)
send_sol(
json_path="devnet-wallet.json",
to_address="RecipientOnDevnet...",
amount_sol=1.0,
rpc_url="https://api.devnet.solana.com"
)
Function Signature
send_sol(
json_path: Union[str, Path],
to_address: Union[str, Pubkey],
amount_sol: float,
rpc_url: str = "https://api.mainnet-beta.solana.com",
commitment = Confirmed,
auto_adjust_for_rent: bool = True
) -> str
Returns: the transaction signature as a string.
License
easysolpay is distributed under the terms of the MIT license.
Project details
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 easysolpay-0.0.2.tar.gz.
File metadata
- Download URL: easysolpay-0.0.2.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6662de8bc0e324edf52a9b5ad503ccd78658584731326006c71c4cb6d538b8d
|
|
| MD5 |
78ef75bb8100cdb261ac904e9528e36e
|
|
| BLAKE2b-256 |
1b5f9591769512bc6a87724c85db5f806e7c8f6ee4400b3594d3feb3d82c231d
|
File details
Details for the file easysolpay-0.0.2-py3-none-any.whl.
File metadata
- Download URL: easysolpay-0.0.2-py3-none-any.whl
- Upload date:
- Size: 5.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
191bc081d9475737ef1a8e5e62cd5e3330661fb7a55051272b1befb70ebfec3a
|
|
| MD5 |
a4da99237b231621f8f3c49f60f40637
|
|
| BLAKE2b-256 |
fae3bab4904b7bf7aacbc98a765b231e762f08c420bf57c7402eef3fe951fa76
|