最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Get Solana wallet balance with python - Stack Overflow

programmeradmin1浏览0评论

Is there any way to check the balance of a Solana wallet using Python?

I tried using Solscan, but I don't understand how it works and I can't find information about it on the internet.

Is there any way to check the balance of a Solana wallet using Python?

I tried using Solscan, but I don't understand how it works and I can't find information about it on the internet.

Share Improve this question edited Mar 5 at 13:54 Dharman 33.4k27 gold badges101 silver badges147 bronze badges asked Feb 20 at 11:40 JoNeoXJoNeoX 151 gold badge2 silver badges6 bronze badges 4
  • 23 Recently, many throwaway accounts on Hacker News have been trying to promote this question, usually with misleading links claiming that the question is about some unrelated topic. For example, about an hour ago, someone submitted this Q&A as a new post there, titling it "How to Debug Memory Leaks in C++: A Step-by-Step Guide". I have no idea what their endgame is. – Karl Knechtel Commented Mar 6 at 1:25
  • 6 @KarlKnechtel maybe a plan to answer the question with a compromised library? – Dogbert Commented Mar 7 at 10:53
  • 2 I would tend to agree that this question is on-topic, even if it does not look very effortful. I would rather people did not DV, as we can't know that the OP is involved in brigading this question from Hacker News. – halfer Commented Mar 9 at 13:05
  • 4 If people are downvoting this question because they were misled by links on Hacker News, please stop. Evaluate the question based on its own merits. – Dharman Commented Mar 9 at 13:36
Add a comment  | 

2 Answers 2

Reset to default 4

You could use solana-py. If you haven't already, install it through pip install solana. Then you can run the following Python code to check the balance of your wallet, replacing YOUR_WALLET_ADDRESS with your actual wallet address.

from solana.rpc.api import Client
from solana.publickey import PublicKey
client = Client("https://api.mainnet-beta.solana")
public_key = PublicKey(wallet_address)
response = client.get_balance(public_key)
balance_lamports = response.value
balance_sol = balance_lamports / 1e9
print(f"Wallet balance: {balance_lamports} lamports ({balance_sol} SOL)")

If you using Binance :

#pip install python-binance 

from binance.client import Client
api_key = "API"
secret_key = "SECRET"
#Staring Client 
client = Client(api_key, secret_key)
#getting user balance 
ac_info = client.get_account()
for balance in ac_info["balances"]
    if balance["asset"] == "SOL" # Or BTC etc.
        sol_balance = balance.["free"]
        print(f"[SOL] Balance : {sol_balance}")

If there is an active sell order, your balance will appear lower.

Second, using requests:

import requests

url = "https://api.solscan.io/account/tokens"

# Your wallet address (Solana public key)
wallet_address = "YOUR_WALLET_ADDRESS"

# Make a request to Solscan's API
response = requests.get(f"{url}?address={wallet_address}")

# Check if the request was successful
if response.status_code == 200:
    data = response.json()

    # Extract balance information (SOL is typically under 'sol_balance')
    sol_balance = data.get('data', {}).get('sol_balance', None)
    
    if sol_balance is not None:
        print(f"Wallet Balance: {sol_balance} SOL")
    else:
        print("Error: Could not find SOL balance.")
else:
    print(f"Failed to fetch data: {response.status_code}")
发布评论

评论列表(0)

  1. 暂无评论