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
Currently contract compilation works by supplying Solidity source code. This creates a contract instance that enables direct interaction with the contract functions.
We should be able to create contract instances without source code.
What other things would be necessary to facilitate this?
compiled bytecode
abi
We require bytecode in order to actually build the contract instance.
We require abi in order to correctly decode the structure of the bytecode into named functions for interaction.
The text was updated successfully, but these errors were encountered:
Currently contract compilation works by supplying Solidity source code. This creates a contract instance that enables direct interaction with the contract functions.
We should be able to create contract instances without source code.
What other things would be necessary to facilitate this?
We require bytecode in order to actually build the contract instance.
We require abi in order to correctly decode the structure of the bytecode into named functions for interaction.
The text was updated successfully, but these errors were encountered: