我正在使用web3
js。我想通过地址令牌交易列表(非交易列表)。我已经使用了getBlock
函数,但它仅用于特定块。我没有阻止列表,我只想按地址列表。所以请帮助我如何获得令牌交易清单
答案 0 :(得分:6)
我已使用getPastEvents使用web3-eth
和web3-utils
1.0测试版来实现此功能。
我从此repo
检索到的ERC20令牌standardAbi
import Eth from "web3-eth";
import Utils from "web3-utils";
async function getERC20TransactionsByAddress({
tokenContractAddress,
tokenDecimals,
address,
fromBlock
}) {
// initialize the ethereum client
const eth = new Eth(
Eth.givenProvider || "ws://some.local-or-remote.node:8546"
);
const currentBlockNumber = await eth.getBlockNumber();
// if no block to start looking from is provided, look at tx from the last day
// 86400s in a day / eth block time 10s ~ 8640 blocks a day
if (!fromBlock) fromBlock = currentBlockNumber - 8640;
const contract = new eth.Contract(standardAbi, tokenContractAddress);
const transferEvents = await contract.getPastEvents("Transfer", {
fromBlock,
filter: {
isError: 0,
txreceipt_status: 1
},
topics: [
Utils.sha3("Transfer(address,address,uint256)"),
null,
Utils.padLeft(address, 64)
]
});
return transferEvents
.sort((evOne, evTwo) => evOne.blockNumber - evTwo.blockNumber)
.map(({ blockNumber, transactionHash, returnValues }) => {
return {
transactionHash,
confirmations: currentBlockNumber - blockNumber,
amount: returnValues._value * Math.pow(10, -tokenDecimals)
};
});
}
我还没有对这段代码进行过测试,因为它与我的版本稍有不同,但它绝对可以优化,但我希望它有所帮助。
我按照影响Transfer
事件的主题进行过滤,定位参数中提供的address
。