We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
eth95/package.json
Line 10 in 032256b
Line 49 in 032256b
https://www.npmjs.com/package/abi-decoder
GPL-3.0
The text was updated successfully, but these errors were encountered:
Hmmm, that sucks. What do you suggest we do?
Should we remove the abi-decoder dependency? I think Wagmi/Viem has a good option now right? They are MIT licensed.
abi-decoder
Sorry, something went wrong.
Simplest is probably remove dependency and do something like
const contractInterface = new ethers.utils.Interface(selectedContract.abi) receipt.logs.forEach((log) => { const evt = contractInterface.parseLog(log) const values = evt.args.map(arg => arg.toString()) })
Simplest is probably remove dependency and do something like const contractInterface = new ethers.utils.Interface(selectedContract.abi) receipt.logs.forEach((log) => { const evt = contractInterface.parseLog(log) const values = evt.args.map(arg => arg.toString()) })
happy to take a PR for this!
No branches or pull requests
eth95/package.json
Line 10 in 032256b
eth95/package.json
Line 49 in 032256b
https://www.npmjs.com/package/abi-decoder
The text was updated successfully, but these errors were encountered: