OPEN-SOURCE SDK · LIVE SINCE 2023
Keep the Solana plumbing in one TypeScript kit.
SolToolkit is an open-source TypeScript SDK for work that appears in project after project: connections, transactions, tokens, Solana names, and supporting utilities.
ILLUSTRATIVE PRODUCT RECREATION
const cm = await ConnectionManager.getManager({
})
triton
—
helius
—
quicknode
—
ankr
—
public rpc
—
HOW IT WORKS
Small modules around the work you repeat.
Use the pieces you need instead of rebuilding connection selection, transaction handling, and token helpers around every application.
- 01
Install the package
Add the published SolToolkit SDK to a TypeScript project.
- 02
Choose a module
Start with connections, transactions, tokens, names, or another included utility.
- 03
Configure the network
Set the cluster and any endpoints the application should use.
- 04
Build the product layer
Keep application behavior separate from repeated Solana plumbing.
PRODUCT LEDGER
Utilities, not a framework tax.
SolToolkit is designed as a set of focused modules. The application still decides how the product should behave.
Utilities reduce repeated code; they do not replace transaction review or application-level tests.
- CONNECTIONS
- Cluster and endpoint management
- TRANSACTIONS
- Builders, wrappers, sending, and confirmation
- TOKENS
- Common token operations
- NAMES
- Solana name resolution utilities
KEEP FOLLOWING THE JOB