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
Using this transaction: https://polygonscan.com/tx/0x1b4165c1093936b74803666c75edd720fbd1713b5f77160e3a726299fb04078d
I thought I could simply decode the Input Data to figure out the function name and parameters, so I can call that function directly from Nodejs.
Input Data
However, it's just returning undefined 🤔
undefined
const inputData = "0x4ae301550000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b400000000000000000000000000000000000000000000000000000000000000034254430000000000000000000000000000000000000000000000000000000000"; const decodedData = abiDecoder.decodeMethod(inputData); console.log(decodedData);
Am I using this package incorrectly? Is there any other way to figure out the contract function name and parameters for this transaction?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using this transaction: https://polygonscan.com/tx/0x1b4165c1093936b74803666c75edd720fbd1713b5f77160e3a726299fb04078d
I thought I could simply decode the
Input Data
to figure out the function name and parameters, so I can call that function directly from Nodejs.However, it's just returning
undefined
🤔Am I using this package incorrectly? Is there any other way to figure out the contract function name and parameters for this transaction?
The text was updated successfully, but these errors were encountered: