안녕하세요. 오랜만에 찾아뵙습니다.
특정 EOA가 홀딩하고 있는 토큰 리스트를 수집하고 있습니다.
근데 여기서 발생한게
제가 생각한 방법이 Transfer 이벤트를 이용해서 logs를 까보면서 리스트를 수집하고 있는데
여기서 발생한게 erc20, erc721 모두 Transfer 이벤트가 있다는 것이었습니다.
fromBlock = 0;
toBlock = 5000000;
// signature 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
const addressTopic = `0x${address.slice(2).padStart(64, "0")}`;
const drOptions = {
fromBlock: fromBlock,
toBlock: toBlock,
topics: [signature, addressTopic, null], // signature
};
let erc20 = [];
let erc721 = [];
const drLogs = await web3.eth.getPastLogs(drOptions);
for (const log of drLogs) {
const isERC20Dupl = erc20.some((k) => k === log.address);
const isERC721Dupl = erc721.some((k) => k === log.address);
if (!isERC20Dupl && !isERC721Dupl) {
const contract = new web3.eth.Contract(abi, log.address);
try {
const owner = await contract.methods.ownerOf(1).call();
if (owner) {
isERC20 = false;
isERC721 = true;
}
if (isERC721) {
erc721.push(log.address);
}
isERC721 = false;
} catch (error) {
if (error.message.includes("execution revert")) {
isERC20 = true;
isERC721 = false;
}
if (isERC20) {
erc20.push(log.address);
}
isERC20 = false;
}
}
위와 같이 ownerOf 메서드를 call하여 erc20, erc721을 구별하고 있는데
이 방식이 잘못된거 같아서 혹시 더 좋은 방법이 있거나 혹은 제가 이해하고 있는 바가 잘못되었다면 가감없이 지적해주시면 겸허히 배우겠습니다. 감사합니다.