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
The current interface of ethereum wrap can be simplified with the core building blocks to interact with ethereum. This means that currently we have methods like:
This is inspired by the previous ethereum plugin. We can improve this interface to just expose one method, and the different functionalities can be defined through arguments; for example, in this callContract* methods, we can create one and receive an option that can allow the method to wait or do a staticCall
Another example can be that we have sendTransaction & deployContract, we can expose the send method, and the user can do a deployment of a contract by defining the correct arguments
The text was updated successfully, but these errors were encountered:
The current interface of ethereum wrap can be simplified with the core building blocks to interact with ethereum. This means that currently we have methods like:
This is inspired by the previous ethereum plugin. We can improve this interface to just expose one method, and the different functionalities can be defined through arguments; for example, in this
callContract*
methods, we can create one and receive an option that can allow the method towait
or do astaticCall
Another example can be that we have
sendTransaction
&deployContract
, we can expose thesend
method, and the user can do a deployment of a contract by defining the correct argumentsThe text was updated successfully, but these errors were encountered: