瀏覽代碼

(add):获取dalao balance

windowdog 5 月之前
父節點
當前提交
e2fc4b3505
共有 1 個文件被更改,包括 38 次插入0 次删除
  1. 38 0
      src/code/013_get_dalao_balance.py

+ 38 - 0
src/code/013_get_dalao_balance.py

@@ -1,6 +1,44 @@
 
 
 
+import requests
+import json
+url_0 = "https://eth-mainnet.g.alchemy.com/v2/WLI0ohbUlvbsJVmoIvB1wTSwUA8qP5qS"
+
+
+url_1 = ("https://eth-mainnet.g.alchemy.com/v2/ck1dtOx8tHkjAH2PX2FwTGN2T2gDaGtV")
+url_2 = "https://eth-mainnet.g.alchemy.com/v2/pxF-cEkEE1JxzxgotGyww5ra5w1IvAkJ"
+
+
+ 
+url = "https://eth-mainnet.g.alchemy.com/v2/WLI0ohbUlvbsJVmoIvB1wTSwUA8qP5qS"
+
+eth_getBalance_payload = {
+    "id": 1,
+    "jsonrpc": "2.0",
+    "params": ["0x0f6e93a1d47c92ebf83bcb995e9fb4238187f030", "latest"],
+    "method": "eth_getBalance"
+}
+headers = {
+    "accept": "application/json",
+    "content-type": "application/json"
+}
+
+req_response = requests.post(url, json=eth_getBalance_payload, headers=headers)
+
+print(req_response.text)
+response = json.loads(
+            req_response.text)
+print(response)
+
+dalao_balance = int(response["result"], 16)/10**18
+print(dalao_balance)
+
+
+
+# https://docs.alchemy.com/reference/eth-getbalance
+# https://docs.alchemy.com/reference/alchemy-gettokenbalances
+
 
 
 如果是在合约外部判断,则可以使用web3.eth.getCode(),或者是对应的JSON-RPC方法eth_getcode。