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 ABI definitions are all hardcoded under App.js in the GUI/scripts folder. Find a way to use solc compiler to replace these hardcode the abi_def and bytecode.
The text was updated successfully, but these errors were encountered:
You cannot programmatically generate the ABI for a given contract using data from the Ethereum blockchain. In Ethereum, the Application Binary Interface (ABI) is a predefined template of the functions a contract exposes. The security aspect is handled in the Smart Contract, Unauthorised entity cannot harm unless there is a loophole in the contact code.
Possible Solutions:
Upload the ABI somewhere safe online and retrieve at time needed, also remove it after interaction is done.
+1 to the above suggestion, I would not recommend uploading the file directly, and then using solc-js to input the abi+bytecode. But then again this is opensource this shouldn't be a problem in our repo
The ABI definitions are all hardcoded under App.js in the GUI/scripts folder. Find a way to use solc compiler to replace these hardcode the abi_def and bytecode.
The text was updated successfully, but these errors were encountered: