|
@@ -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。
|