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
{{ message }}
This repository has been archived by the owner on May 4, 2023. It is now read-only.
Yes, for the reason that I want to write a program that could parse a contract and get the function name of the contract, and automatically call the functions. But I just don't know how to write evm.call() line. Because the parameter put into the call function should be like contract.function.name(), but I can just get a string to represent the name of the function. So I wonder if I could change the string to the correct type so that I can put it into the eve.call function
The whole point of ethabi-derive is to provide type-safe wrapper for contracts, so you cannot dynamically call a function given it's function name as a string, cause you wouldn't know what types of parameters it's expecting or returns.
I found that if I want to call a function of a contract , this line will be used:
How could I get all of the functions' iterator of function list of a contract.
Thanks a lot if you could do me a favor.
The text was updated successfully, but these errors were encountered: