Get Solana wallet balance with python - Stack Overflow

Is there any way to check the balance of a Solana wallet using Python?I tried using Solscan, but I don

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}")

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743681698a4489488.html

相关推荐

  • Get Solana wallet balance with python - Stack Overflow

    Is there any way to check the balance of a Solana wallet using Python?I tried using Solscan, but I don

    22小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信