
Product
Introducing Reports: An Extensible Reporting Framework for Socket Data
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.
solders
Advanced tools
solders is a high-performance Python toolkit for Solana, written in Rust. It provides robust solutions to the following problems:
solders.litesvm module is an alternative to solana-test-validator that's much more convenient and much faster. It's based on solana-program-test if you know that is.solders and solana-py are good friends. solana-py uses solders under the hood extensively in its
core API and RPC API. The main differences are:
solders doesn't have functions to actually interact with the RPC server (though solana-py does use the RPC code from solders).solders doesn't provide SPL Token and SPL Memo clients.solana-py may not have support for all the RPC requests and responses provided by solders.solana-py doesn't have anything like the litesvm testing kit.Since solana-py uses solders under the hood and they don't duplicate each other's features, you should just use whichever library you need.
pip install solders
Note: Requires Python >= 3.7.
>>> from solders.message import Message
>>> from solders.keypair import Keypair
>>> from solders.instruction import Instruction
>>> from solders.hash import Hash
>>> from solders.transaction import Transaction
>>> from solders.pubkey import Pubkey
>>> program_id = Pubkey.default()
>>> arbitrary_instruction_data = bytes([1])
>>> accounts = []
>>> instruction = Instruction(program_id, arbitrary_instruction_data, accounts)
>>> payer = Keypair()
>>> message = Message([instruction], payer.pubkey())
>>> blockhash = Hash.default() # replace with a real blockhash
>>> tx = Transaction([payer], message, blockhash)
uv sync --dev
uv run works without activation):source .venv/bin/activate
uv run maturin develop to compile the Rust code.uv run make fmt, uv run make lint, and uv run make test.FAQs
Python bindings for Solana Rust tools
We found that solders demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.