You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What's testData? Is it transaction.input? Or what is it?
abiDecoder.addABI(testABI); - does this mean that once I've added some abi (abi1), the method decodeMethod will ONLY be able to decode methods using once specified abi1? What if I have multiple abi-s and multiple methods to decode? In other words, how can I decode a specifi method with a specific abi?
The text was updated successfully, but these errors were encountered:
What's testData? Is it transaction.input? Or what is it?
Yep, I believe testData is the transaction's input and includes the function signature in the first eight bytes.
abiDecoder.addABI(testABI); - does this mean that once I've added some abi (abi1), the method decodeMethod will ONLY be able to decode methods using once specified abi1? What if I have multiple abi-s and multiple methods to decode? In other words, how can I decode a specifi method with a specific abi?
In README:
Need to pass the ABI's manually to the library in order to be able to decode params later
What's
testData
? Is ittransaction.input
? Or what is it?abiDecoder.addABI(testABI);
- does this mean that once I've added some abi (abi1
), the methoddecodeMethod
will ONLY be able to decode methods using once specifiedabi1
? What if I have multiple abi-s and multiple methods to decode? In other words, how can I decode a specifi method with a specificabi
?The text was updated successfully, but these errors were encountered: