編碼的世界 / 優質文選 / 文明

獲取ETH指定代幣的餘額


2022年7月21日
-   

https://blog.csdn.net/wypeng2010/article/details/81362562
引言 之前的文章介紹了獲取eth餘額的方法和離線簽名的方法(指定代幣的離線簽名),今天就來介紹一下如何獲取滿足ERC20協議的代幣餘額的。
要想獲取代幣的餘額,要通過rpc接口得到接口為:eth_call
參數
1.object字段:
from: 錢包地址 to: 代幣地址(智能合約地址) data:0x70a08231000000000000000000000000b60e8dd61c5d32be8058bb8eb970870f07233155 data數據格式:最前邊的“0x70a08231000000000000000000000000”是固定的,後邊的是錢包地址(不帶“0x”前綴)
2.QUANTITY|TAG,”latest”, “earliest” or “pending”
參數示例
params: [{   "from": "0xb60e8dd61c5d32be8058bb8eb970870f07233155",   "to": "0xd46e8dd67c5d32be8058bb8eb970870f07244567",   "data": "0x70a08231000000000000000000000000b60e8dd61c5d32be8058bb8eb970870f072331555675" },"latest"] 1 2 3 4 5 請求示例
// Request curl -X POST data '{"jsonrpc":"2.0","method":"eth_call","params":[{see above}],"id":1}'
// Result {   "id":1,   "jsonrpc": "2.0",   "result": "0x" } 1 2 3 4 5 6 7 8 9 注:result字段的值,就是餘額 -  作者:wypeng2010  來源:CSDN  原文:https://blog.csdn.net/wypeng2010/article/details/81362562  版權聲明:本文為博主原創文章,轉載請附上博文鏈接!

熱門文章