Solathon
Solathon is an high performance, easy to use and feature-rich Solana SDK for Python. Easy for beginners, powerful for real world applications.
|
The project is in beta phase |
---|
✨
Getting started
Installation
pip install solathon
Client example
from solathon import Client
client = Client("https://api.devnet.solana.com")
Basic usage example
# Basic example on generating a random public key and fetching it's balance
from solathon import Client, PublicKey
client = Client("https://api.devnet.solana.com")
public_key = PublicKey(1) # Creating a random public key
balance = client.get_balance(public_key)
print(balance)
🗃️
Contribution
Just drop a pull request lol