WTFAcademy / WTF-Ethers

我最近在重新学ethers.js,巩固一下细节,也写一个“WTF Ethers.js极简入门”,供小白们使用,每周更新1-3讲。Now supports English! 官网: https://wtf.academy
https://wtf.academy
Other
3.03k stars 489 forks source link

update chapter DecodeTx #98

Closed LBJyang closed 1 year ago

LBJyang commented 1 year ago

原教程内的代码并不能按预期执行。Throttle函数有点多余,修改后很清晰直观。比如console.log(parsedTx)语句并不能直接输出解码tx,iface.getFunction("transfer").selector并不能获取到函数选择器,iface.getFunction("transfer")返回的是名为 "transfer" 的函数的对象,没有seletor属性。 已修改js等文件。